diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 7109d4226..9014dff11 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -82271,6 +82271,542 @@ } } }, + "/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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": 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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": 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", + "nullable": true + }, + { + "type": "integer", + "nullable": true + }, + { + "type": "array", + "nullable": true, + "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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": 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", + "nullable": true + }, + { + "type": "integer", + "nullable": true + }, + { + "type": "array", + "nullable": true, + "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/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 42d4ae28f..8ae9bc10c 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -872,7 +872,7 @@ paths: - subscriptions_url - type - url - type: &476 + type: &477 type: string description: The type of credit the user is receiving. enum: @@ -1005,7 +1005,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &268 + schema: &269 title: Validation Error Simple description: Validation Error Simple type: object @@ -1038,7 +1038,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: - - &810 + - &811 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -3682,7 +3682,7 @@ paths: GitHub. type: object nullable: true - properties: &226 + properties: &227 id: description: Unique identifier of the GitHub app example: 37 @@ -3815,7 +3815,7 @@ paths: about itself. example: 5 type: integer - required: &227 + required: &228 - id - node_id - owner @@ -4120,7 +4120,7 @@ paths: schema: type: integer default: 30 - - &373 + - &374 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 @@ -4129,7 +4129,7 @@ paths: required: false schema: type: string - - &374 + - &375 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4149,7 +4149,7 @@ paths: application/json: schema: type: array - items: &375 + items: &376 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4229,7 +4229,7 @@ paths: - installation_id - repository_id examples: - default: &376 + default: &377 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4261,7 +4261,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &819 + schema: &820 title: Scim Error description: Scim Error type: object @@ -4288,7 +4288,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &267 + schema: &268 title: Validation Error description: Validation Error type: object @@ -4357,7 +4357,7 @@ paths: description: Response content: application/json: - schema: &377 + schema: &378 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4471,7 +4471,7 @@ paths: - request - response examples: - default: &378 + default: &379 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4672,7 +4672,7 @@ paths: parameters: - *17 - *19 - - &238 + - &239 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) @@ -5482,7 +5482,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &447 + properties: &448 id: description: Unique identifier of the repository example: 42 @@ -5502,7 +5502,7 @@ paths: title: License Simple description: License Simple type: object - properties: &234 + properties: &235 key: type: string example: mit @@ -5524,7 +5524,7 @@ paths: html_url: type: string format: uri - required: &235 + required: &236 - key - name - url @@ -5933,7 +5933,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &448 + required: &449 - archive_url - assignees_url - blobs_url @@ -10249,7 +10249,7 @@ paths: description: Response content: application/json: - schema: &269 + schema: &270 type: object properties: total_active_caches_count: @@ -10264,7 +10264,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &270 + default: &271 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -10457,7 +10457,7 @@ paths: - public_ip_enabled - platform examples: - default: &271 + default: &272 value: total_count: 2 runners: @@ -10752,7 +10752,7 @@ paths: application/json: schema: *49 examples: - default: &272 + default: &273 value: id: 1 platform: linux-x64 @@ -10892,7 +10892,7 @@ paths: application/json: schema: *52 examples: - default: &273 + default: &274 value: version: 1.0.0 size_gb: 75 @@ -11056,7 +11056,7 @@ paths: description: Response content: application/json: - schema: &274 + schema: &275 type: object properties: public_ips: @@ -11081,7 +11081,7 @@ paths: required: - public_ips examples: - default: &275 + default: &276 value: public_ips: current_usage: 17 @@ -11121,7 +11121,7 @@ paths: type: array items: *56 examples: - default: &276 + default: &277 value: id: 4-core cpu_cores: 4 @@ -11436,7 +11436,7 @@ paths: required: true content: application/json: - schema: &277 + schema: &278 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -11547,7 +11547,7 @@ paths: - all - local_only - selected - selected_actions_url: &279 + selected_actions_url: &280 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` @@ -11627,7 +11627,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &281 + schema: &282 type: object properties: days: @@ -11645,7 +11645,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &820 + '401': &821 description: Authorization failure '404': *6 x-github: @@ -11673,7 +11673,7 @@ paths: required: true content: application/json: - schema: &282 + schema: &283 type: object properties: days: @@ -11722,7 +11722,7 @@ paths: required: - approval_policy examples: - default: &283 + default: &284 value: approval_policy: first_time_contributors '404': *6 @@ -11780,7 +11780,7 @@ paths: description: Response content: application/json: - schema: &284 + schema: &285 type: object required: - run_workflows_from_fork_pull_requests @@ -11834,7 +11834,7 @@ paths: required: true content: application/json: - schema: &285 + schema: &286 type: object required: - run_workflows_from_fork_pull_requests @@ -12257,7 +12257,7 @@ paths: description: Success response content: application/json: - schema: &288 + schema: &289 type: object properties: default_workflow_permissions: &69 @@ -12305,7 +12305,7 @@ paths: required: true content: application/json: - schema: &289 + schema: &290 type: object properties: default_workflow_permissions: *69 @@ -13150,7 +13150,7 @@ paths: application/json: schema: type: array - items: &293 + items: &294 title: Runner Application description: Runner Application type: object @@ -13175,7 +13175,7 @@ paths: - download_url - filename examples: - default: &294 + default: &295 value: - os: osx architecture: x64 @@ -13259,7 +13259,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &295 + '201': &296 description: Response content: application/json: @@ -13374,7 +13374,7 @@ paths: - token - expires_at examples: - default: &296 + default: &297 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -13414,7 +13414,7 @@ paths: application/json: schema: *81 examples: - default: &297 + default: &298 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -13446,7 +13446,7 @@ paths: application/json: schema: *78 examples: - default: &298 + default: &299 value: id: 23 name: MBP @@ -13663,7 +13663,7 @@ paths: - *41 - *77 responses: - '200': &299 + '200': &300 description: Response content: application/json: @@ -13719,7 +13719,7 @@ paths: parameters: - *41 - *77 - - &300 + - &301 name: name description: The name of a self-hosted runner's custom label. in: path @@ -13810,7 +13810,7 @@ paths: required: true content: application/json: - schema: &314 + schema: &315 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -14451,7 +14451,7 @@ paths: required: false schema: type: string - - &317 + - &318 name: include description: |- The event types to include: @@ -14507,7 +14507,7 @@ paths: application/json: schema: type: array - items: &318 + items: &319 type: object properties: "@timestamp": @@ -14629,7 +14629,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &319 + default: &320 value: - "@timestamp": 1606929874512 action: team.add_member @@ -15295,7 +15295,7 @@ paths: application/json: schema: type: array - items: &320 + items: &321 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -15456,7 +15456,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &321 + default: &322 value: - id: 21 number: 42 @@ -15561,7 +15561,7 @@ paths: application/json: schema: type: array - items: &323 + items: &324 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -15686,7 +15686,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &324 + default: &325 value: - id: 21 number: 42 @@ -15771,7 +15771,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &329 + - &330 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`, @@ -15781,7 +15781,7 @@ paths: schema: &113 type: string description: The name of the tool used to generate the code scanning analysis. - - &330 + - &331 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 @@ -15804,7 +15804,7 @@ paths: be returned. in: query required: false - schema: &331 + schema: &332 type: string description: State of a code scanning alert. enum: @@ -15837,7 +15837,7 @@ paths: application/json: schema: type: array - items: &332 + items: &333 type: object properties: number: &134 @@ -15866,7 +15866,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &566 + instances_url: &567 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -15901,7 +15901,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &567 + dismissed_reason: &568 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -15910,13 +15910,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &568 + dismissed_comment: &569 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &569 + rule: &570 type: object properties: id: @@ -15969,7 +15969,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &570 + tool: &571 type: object properties: name: *113 @@ -15979,26 +15979,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *114 - most_recent_instance: &571 + most_recent_instance: &572 type: object properties: - ref: &564 + ref: &565 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &581 + analysis_key: &582 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: &582 + environment: &583 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: &583 + category: &584 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16018,7 +16018,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: &584 + location: &585 type: object description: Describe a region within a file for the alert. properties: @@ -16039,7 +16039,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: &585 + items: &586 type: string description: A classification of the file. For example to identify it as generated. @@ -16352,7 +16352,7 @@ paths: - most_recent_instance - repository examples: - default: &333 + default: &334 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -17235,7 +17235,7 @@ paths: description: Response content: application/json: - schema: &335 + schema: &336 type: array description: A list of default code security configurations items: @@ -17251,7 +17251,7 @@ paths: default configuration: *116 examples: - default: &336 + default: &337 value: - default_for_new_repos: public configuration: @@ -17709,7 +17709,7 @@ paths: default: value: default_for_new_repos: all - configuration: &334 + configuration: &335 value: id: 1325 target_type: organization @@ -17799,7 +17799,7 @@ paths: application/json: schema: type: array - items: &337 + items: &338 type: object description: Repositories associated with a code security configuration and attachment status @@ -17823,7 +17823,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &338 + repository: &339 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -18312,7 +18312,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &325 + - &326 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -18398,7 +18398,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &413 + properties: &414 id: description: Unique identifier of the team type: integer @@ -18470,7 +18470,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &414 + required: &415 - id - node_id - url @@ -19151,7 +19151,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': &345 + '413': &346 description: Payload Too Large content: application/json: @@ -20307,7 +20307,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &350 + - &351 name: classification in: query description: |- @@ -20316,7 +20316,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &351 + - &352 name: state in: query description: |- @@ -20325,7 +20325,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &352 + - &353 name: severity in: query description: |- @@ -20334,7 +20334,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &353 + - &354 name: ecosystem in: query description: |- @@ -20343,14 +20343,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &354 + - &355 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 - - &355 + - &356 name: epss_percentage in: query description: |- @@ -20362,7 +20362,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 - - &628 + - &629 name: has in: query description: |- @@ -20376,7 +20376,7 @@ paths: type: string enum: - patch - - &356 + - &357 name: assignee in: query description: |- @@ -20385,7 +20385,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &357 + - &358 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -20395,7 +20395,7 @@ paths: enum: - development - runtime - - &358 + - &359 name: sort in: query description: |- @@ -20421,7 +20421,7 @@ paths: application/json: schema: type: array - items: &359 + items: &360 type: object description: A Dependabot alert. properties: @@ -20485,7 +20485,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &629 + security_advisory: &630 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -20724,14 +20724,14 @@ paths: nullable: true maxLength: 280 fixed_at: *144 - auto_dismissed_at: &630 + auto_dismissed_at: &631 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &631 + dismissal_request: &632 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -20793,7 +20793,7 @@ paths: - repository additionalProperties: false examples: - default: &360 + default: &361 value: - number: 2 state: dismissed @@ -21178,7 +21178,7 @@ paths: description: Response content: application/json: - schema: &361 + schema: &362 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -21204,7 +21204,7 @@ paths: nullable: true additionalProperties: false examples: - default: &362 + default: &363 value: default_level: public accessible_repositories: @@ -21426,7 +21426,7 @@ paths: - *105 - *106 - *107 - - &364 + - &365 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -21452,7 +21452,7 @@ paths: application/json: schema: type: array - items: &366 + items: &367 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -21573,7 +21573,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &367 + default: &368 value: - id: 21 number: 42 @@ -22652,7 +22652,7 @@ paths: application/json: schema: *22 examples: - default: &390 + default: &391 value: id: 1 account: @@ -22906,7 +22906,7 @@ paths: - name - created_on examples: - default: &481 + default: &482 value: total_count: 2 network_configurations: @@ -23157,7 +23157,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &482 + - &483 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -23169,7 +23169,7 @@ paths: description: Response content: application/json: - schema: &483 + schema: &484 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -23203,7 +23203,7 @@ paths: - subnet_id - region examples: - default: &484 + default: &485 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -24022,7 +24022,7 @@ paths: required: true content: application/json: - schema: &446 + schema: &447 title: Custom Property Set Payload description: Custom property set payload type: object @@ -25253,7 +25253,7 @@ paths: nullable: true anyOf: - *169 - - &452 + - &453 title: Organization ruleset conditions type: object description: |- @@ -25300,7 +25300,7 @@ paths: - *172 rules: type: array - items: &775 + items: &776 title: Repository Rule type: object description: A repository rule. @@ -25309,7 +25309,7 @@ paths: - *178 - *179 - *180 - - &772 + - &773 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -25400,7 +25400,7 @@ paths: - *191 - *192 - *193 - - &773 + - &774 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -25649,7 +25649,7 @@ paths: type: string format: date-time examples: - default: &455 + default: &456 value: - version_id: 3 actor: @@ -25702,7 +25702,7 @@ paths: description: Response content: application/json: - schema: &456 + schema: &457 allOf: - *202 - type: object @@ -25757,7 +25757,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &457 + - &458 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -25768,7 +25768,7 @@ paths: enum: - open - resolved - - &458 + - &459 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -25778,7 +25778,7 @@ paths: required: false schema: type: string - - &459 + - &460 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -25789,7 +25789,7 @@ paths: required: false schema: type: string - - &460 + - &461 name: exclude_providers in: query description: |- @@ -25800,7 +25800,7 @@ paths: required: false schema: type: string - - &461 + - &462 name: providers in: query description: |- @@ -25811,7 +25811,7 @@ paths: required: false schema: type: string - - &462 + - &463 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -25820,7 +25820,7 @@ paths: required: false schema: type: string - - &463 + - &464 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -25839,7 +25839,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &464 + - &465 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. @@ -25855,7 +25855,7 @@ paths: - *17 - *110 - *111 - - &465 + - &466 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -25864,7 +25864,7 @@ paths: required: false schema: type: string - - &466 + - &467 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -25873,7 +25873,7 @@ paths: schema: type: boolean default: false - - &467 + - &468 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -25882,7 +25882,7 @@ paths: schema: type: boolean default: false - - &468 + - &469 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -25891,7 +25891,7 @@ paths: schema: type: boolean default: false - - &469 + - &470 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -25902,7 +25902,7 @@ paths: required: false schema: type: boolean - - &470 + - &471 name: included_metadata in: query description: |- @@ -25913,7 +25913,7 @@ paths: required: false schema: type: string - - &471 + - &472 name: owner_email_hash in: query description: |- @@ -25932,7 +25932,7 @@ paths: application/json: schema: type: array - items: &472 + items: &473 type: object properties: number: *134 @@ -25951,14 +25951,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &788 + state: &789 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: &789 + resolution: &790 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -26075,8 +26075,8 @@ paths: pull request. ' - oneOf: &790 - - &792 + oneOf: &791 + - &793 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26134,7 +26134,7 @@ paths: - blob_url - commit_sha - commit_url - - &793 + - &794 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. @@ -26189,7 +26189,7 @@ paths: - page_url - commit_sha - commit_url - - &794 + - &795 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -26209,7 +26209,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &795 + - &796 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26229,7 +26229,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &796 + - &797 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26249,7 +26249,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &797 + - &798 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26263,7 +26263,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &798 + - &799 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26277,7 +26277,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &799 + - &800 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26291,7 +26291,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &800 + - &801 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. @@ -26311,7 +26311,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &801 + - &802 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. @@ -26331,7 +26331,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &802 + - &803 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. @@ -26351,7 +26351,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &803 + - &804 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. @@ -26371,7 +26371,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &804 + - &805 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -26419,7 +26419,7 @@ paths: required: *21 nullable: true examples: - default: &473 + default: &474 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -26628,7 +26628,7 @@ paths: description: Response content: application/json: - schema: &474 + schema: &475 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -26711,7 +26711,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *204 examples: - default: &475 + default: &476 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -26847,7 +26847,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &478 + - &479 name: advanced_security_product in: query description: | @@ -26867,7 +26867,7 @@ paths: description: Success content: application/json: - schema: &479 + schema: &480 type: object properties: total_advanced_security_committers: @@ -26922,7 +26922,7 @@ paths: required: - repositories examples: - default: &480 + default: &481 value: total_advanced_security_committers: 2 total_count: 2 @@ -30075,7 +30075,7 @@ paths: type: array items: *75 examples: - default: &262 + default: &263 value: - login: github id: 1 @@ -30360,6 +30360,192 @@ 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: &225 + 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. + example: 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. + example: 00000000-0000-0000-0000-000000000000 + username: + type: string + description: The GitHub username of the user associated + with the Visual Studio subscription assignment. + example: gh-user + nullable: true + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription + assignment was manually matched to a user. + example: 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: *225 + 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: *225 + 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 @@ -30449,7 +30635,7 @@ paths: application/json: schema: type: array - items: &257 + items: &258 title: Event description: Event type: object @@ -30459,7 +30645,7 @@ paths: type: type: string nullable: true - actor: &225 + actor: &226 title: Actor description: Actor type: object @@ -30499,7 +30685,7 @@ paths: - id - name - url - org: *225 + org: *226 payload: oneOf: - title: CreateEvent @@ -30545,7 +30731,7 @@ paths: properties: action: type: string - discussion: &931 + discussion: &932 title: Discussion description: A Discussion in a repository. type: object @@ -30832,7 +31018,7 @@ paths: - id labels: type: array - items: &230 + items: &231 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -30907,12 +31093,12 @@ paths: properties: action: type: string - issue: &231 + issue: &232 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &690 + properties: &691 id: type: integer format: int64 @@ -31025,7 +31211,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &435 + properties: &436 url: type: string format: uri @@ -31095,7 +31281,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &436 + required: &437 - closed_issues - creator - description @@ -31174,7 +31360,7 @@ paths: timeline_url: type: string format: uri - type: &400 + type: &401 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -31237,9 +31423,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - author_association: &228 + properties: *227 + required: *228 + author_association: &229 title: author_association type: string example: OWNER @@ -31254,7 +31440,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &229 + reactions: &230 title: Reaction Rollup type: object properties: @@ -31290,7 +31476,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &847 + sub_issues_summary: &848 title: Sub-issues Summary type: object properties: @@ -31315,7 +31501,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &232 + properties: &233 id: description: Unique identifier of the issue comment example: 42 @@ -31358,7 +31544,7 @@ paths: issue_url: type: string format: uri - author_association: *228 + author_association: *229 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -31369,15 +31555,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - reactions: *229 + properties: *227 + required: *228 + reactions: *230 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &716 + properties: &717 pinned_at: type: string format: date-time @@ -31389,7 +31575,7 @@ paths: properties: *20 required: *21 nullable: true - required: &717 + required: &718 - pinned_at - pinned_by nullable: true @@ -31398,16 +31584,16 @@ paths: description: Details about why an issue comment was minimized. type: object - properties: &718 + properties: &719 reason: description: The reason the comment was minimized. type: string nullable: true example: low-quality - required: &719 + required: &720 - reason nullable: true - required: &233 + required: &234 - id - node_id - html_url @@ -31417,7 +31603,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &848 + issue_dependencies_summary: &849 title: Issue Dependencies Summary type: object properties: @@ -31436,7 +31622,7 @@ paths: - total_blocking issue_field_values: type: array - items: &700 + items: &701 title: Issue Field Value description: A value assigned to an issue field type: object @@ -31528,7 +31714,7 @@ paths: - node_id - data_type - value - required: &691 + required: &692 - assignee - closed_at - comments @@ -31553,10 +31739,10 @@ paths: assignees: type: array items: *4 - label: *230 + label: *231 labels: type: array - items: *230 + items: *231 required: - action - issue @@ -31565,14 +31751,14 @@ paths: properties: action: type: string - issue: *231 - comment: &686 + issue: *232 + comment: &687 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 required: - action - issue @@ -31745,8 +31931,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true allow_forking: type: boolean @@ -31835,7 +32021,7 @@ paths: type: string number: type: integer - pull_request: &236 + pull_request: &237 title: Pull Request Minimal type: object properties: @@ -31906,10 +32092,10 @@ paths: assignees: type: array items: *4 - label: *230 + label: *231 labels: type: array - items: *230 + items: *231 required: - action - number @@ -31919,7 +32105,7 @@ paths: properties: action: type: string - pull_request: *236 + pull_request: *237 comment: type: object properties: @@ -32170,7 +32356,7 @@ paths: - pull_request updated_at: type: string - pull_request: *236 + pull_request: *237 required: - action - review @@ -32219,7 +32405,7 @@ paths: updated_at: type: string format: date-time - reactions: *229 + reactions: *230 required: - action - comment @@ -32230,7 +32416,7 @@ paths: type: string release: allOf: - - &765 + - &766 title: Release description: A release. type: object @@ -32301,7 +32487,7 @@ paths: author: *4 assets: type: array - items: &766 + items: &767 title: Release Asset description: Data related to a release. type: object @@ -32376,7 +32562,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *229 + reactions: *230 required: - assets_url - upload_url @@ -32549,7 +32735,7 @@ paths: _links: type: object properties: - timeline: &237 + timeline: &238 title: Link With Type description: Hypermedia Link with Type type: object @@ -32561,17 +32747,17 @@ paths: required: - href - type - user: *237 - security_advisories: *237 - current_user: *237 - current_user_public: *237 - current_user_actor: *237 - current_user_organization: *237 + user: *238 + security_advisories: *238 + current_user: *238 + current_user_public: *238 + current_user_actor: *238 + current_user_organization: *238 current_user_organizations: type: array - items: *237 - repository_discussions: *237 - repository_discussions_category: *237 + items: *238 + repository_discussions: *238 + repository_discussions_category: *238 required: - timeline - user @@ -32633,7 +32819,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *238 + - *239 - *17 - *19 responses: @@ -32643,7 +32829,7 @@ paths: application/json: schema: type: array - items: &239 + items: &240 title: Base Gist description: Base Gist type: object @@ -32742,7 +32928,7 @@ paths: - created_at - updated_at examples: - default: &240 + default: &241 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -32863,7 +33049,7 @@ paths: description: Response content: application/json: - schema: &241 + schema: &242 title: Gist Simple description: Gist Simple type: object @@ -32880,7 +33066,7 @@ paths: url: type: string format: uri - user: &856 + user: &857 title: Public User description: Public User type: object @@ -33242,7 +33428,7 @@ paths: truncated: type: boolean examples: - default: &242 + default: &243 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -33346,7 +33532,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-public-gists parameters: - - *238 + - *239 - *17 - *19 responses: @@ -33356,9 +33542,9 @@ paths: application/json: schema: type: array - items: *239 + items: *240 examples: - default: *240 + default: *241 headers: Link: *47 '422': *15 @@ -33380,7 +33566,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-starred-gists parameters: - - *238 + - *239 - *17 - *19 responses: @@ -33390,9 +33576,9 @@ paths: application/json: schema: type: array - items: *239 + items: *240 examples: - default: *240 + default: *241 headers: Link: *47 '401': *25 @@ -33419,7 +33605,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist parameters: - - &243 + - &244 name: gist_id description: The unique identifier of the gist. in: path @@ -33431,10 +33617,10 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: *242 - '403': &246 + default: *243 + '403': &247 description: Forbidden Gist content: application/json: @@ -33481,7 +33667,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#update-a-gist parameters: - - *243 + - *244 requestBody: required: true content: @@ -33541,9 +33727,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - updateGist: *242 + updateGist: *243 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -33701,7 +33887,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#delete-a-gist parameters: - - *243 + - *244 responses: '204': description: Response @@ -33729,7 +33915,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#list-gist-comments parameters: - - *243 + - *244 - *17 - *19 responses: @@ -33739,7 +33925,7 @@ paths: application/json: schema: type: array - items: &244 + items: &245 title: Gist Comment description: A comment made to a gist. type: object @@ -33774,7 +33960,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *228 + author_association: *229 required: - url - id @@ -33838,7 +34024,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#create-a-gist-comment parameters: - - *243 + - *244 requestBody: required: true content: @@ -33863,9 +34049,9 @@ paths: description: Response content: application/json: - schema: *244 + schema: *245 examples: - default: &245 + default: &246 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -33922,8 +34108,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#get-a-gist-comment parameters: - - *243 - - &247 + - *244 + - &248 name: comment_id description: The unique identifier of the comment. in: path @@ -33936,12 +34122,12 @@ paths: description: Response content: application/json: - schema: *244 + schema: *245 examples: - default: *245 + default: *246 '304': *37 '404': *6 - '403': *246 + '403': *247 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -33962,8 +34148,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#update-a-gist-comment parameters: - - *243 - - *247 + - *244 + - *248 requestBody: required: true content: @@ -33988,9 +34174,9 @@ paths: description: Response content: application/json: - schema: *244 + schema: *245 examples: - default: *245 + default: *246 '404': *6 x-github: githubCloudOnly: false @@ -34007,8 +34193,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#delete-a-gist-comment parameters: - - *243 - - *247 + - *244 + - *248 responses: '204': description: Response @@ -34031,7 +34217,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-commits parameters: - - *243 + - *244 - *17 - *19 responses: @@ -34132,7 +34318,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-forks parameters: - - *243 + - *244 - *17 - *19 responses: @@ -34142,7 +34328,7 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: default: value: @@ -34207,13 +34393,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#fork-a-gist parameters: - - *243 + - *244 responses: '201': description: Response content: application/json: - schema: *239 + schema: *240 examples: default: value: @@ -34284,7 +34470,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *243 + - *244 responses: '204': description: Response if gist is starred @@ -34314,7 +34500,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#star-a-gist parameters: - - *243 + - *244 responses: '204': description: Response @@ -34336,7 +34522,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#unstar-a-gist parameters: - - *243 + - *244 responses: '204': description: Response @@ -34364,7 +34550,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist-revision parameters: - - *243 + - *244 - name: sha in: path required: true @@ -34375,9 +34561,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: *242 + default: *243 '422': *15 '404': *6 '403': *29 @@ -34757,7 +34943,7 @@ paths: - closed - all default: open - - &403 + - &404 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -34776,7 +34962,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - name: collab in: query required: false @@ -34806,9 +34992,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: &404 + default: &405 value: - id: 1 node_id: MDU6SXNzdWUx @@ -35092,8 +35278,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 examples: default: value: @@ -35378,7 +35564,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &248 + X-CommonMarker-Version: &249 example: 0.17.4 schema: type: string @@ -35433,7 +35619,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *248 + X-CommonMarker-Version: *249 content: text/html: schema: @@ -35462,7 +35648,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: - - &251 + - &252 name: account_id description: account_id parameter in: path @@ -35474,7 +35660,7 @@ paths: description: Response content: application/json: - schema: &250 + schema: &251 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -35504,7 +35690,7 @@ paths: nullable: true id: type: integer - plan: &249 + plan: &250 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -35593,7 +35779,7 @@ paths: nullable: true updated_at: type: string - plan: *249 + plan: *250 required: - url - id @@ -35601,7 +35787,7 @@ paths: - login - marketplace_purchase examples: - default: &252 + default: &253 value: url: https://api.github.com/orgs/github type: Organization @@ -35686,9 +35872,9 @@ paths: application/json: schema: type: array - items: *249 + items: *250 examples: - default: &253 + default: &254 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -35728,14 +35914,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &254 + - &255 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &255 + - &256 name: sort description: The property to sort the results by. in: query @@ -35765,9 +35951,9 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: - default: &256 + default: &257 value: - url: https://api.github.com/orgs/github type: Organization @@ -35841,15 +36027,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: - - *251 + - *252 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: - default: *252 + default: *253 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -35881,9 +36067,9 @@ paths: application/json: schema: type: array - items: *249 + items: *250 examples: - default: *253 + default: *254 headers: Link: *47 '401': *25 @@ -35906,8 +36092,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *254 - *255 + - *256 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -35927,9 +36113,9 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: - default: *256 + default: *257 headers: Link: *47 '401': *25 @@ -36193,14 +36379,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: - - &493 + - &494 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &494 + - &495 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -36217,7 +36403,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -36262,7 +36448,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &499 + '301': &500 description: Moved permanently content: application/json: @@ -36284,7 +36470,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &739 + - &740 name: all description: If `true`, show notifications marked as read. in: query @@ -36292,7 +36478,7 @@ paths: schema: type: boolean default: false - - &740 + - &741 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -36301,8 +36487,8 @@ paths: schema: type: boolean default: false - - *238 - - &741 + - *239 + - &742 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: @@ -36327,18 +36513,18 @@ paths: application/json: schema: type: array - items: &258 + items: &259 title: Thread description: Thread type: object properties: id: type: string - repository: &292 + repository: &293 title: Minimal Repository description: Minimal Repository type: object - properties: &368 + properties: &369 id: type: integer format: int64 @@ -36624,7 +36810,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &449 + security_and_analysis: &450 nullable: true type: object properties: @@ -36752,7 +36938,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &369 + required: &370 - archive_url - assignees_url - blobs_url @@ -36840,7 +37026,7 @@ paths: - url - subscription_url examples: - default: &742 + default: &743 value: - id: '1' repository: @@ -37006,7 +37192,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#get-a-thread parameters: - - &259 + - &260 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 @@ -37020,7 +37206,7 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: default: value: @@ -37123,7 +37309,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-read parameters: - - *259 + - *260 responses: '205': description: Reset Content @@ -37146,7 +37332,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-done parameters: - - *259 + - *260 responses: '204': description: No content @@ -37169,13 +37355,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: - - *259 + - *260 responses: '200': description: Response content: application/json: - schema: &260 + schema: &261 title: Thread Subscription description: Thread Subscription type: object @@ -37212,7 +37398,7 @@ paths: - url - subscribed examples: - default: &261 + default: &262 value: subscribed: true ignored: false @@ -37243,7 +37429,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#set-a-thread-subscription parameters: - - *259 + - *260 requestBody: required: false content: @@ -37264,9 +37450,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *261 examples: - default: *261 + default: *262 '304': *37 '403': *29 '401': *25 @@ -37289,7 +37475,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#delete-a-thread-subscription parameters: - - *259 + - *260 responses: '204': description: Response @@ -37386,7 +37572,7 @@ paths: type: array items: *75 examples: - default: *262 + default: *263 headers: Link: example: ; rel="next" @@ -37437,7 +37623,7 @@ paths: type: integer custom_roles: type: array - items: &346 + items: &347 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -37485,7 +37671,7 @@ paths: - created_at - updated_at examples: - default: &347 + default: &348 value: id: 8030 name: Security Engineer @@ -37538,7 +37724,7 @@ paths: description: Response content: application/json: - schema: &263 + schema: &264 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -37576,7 +37762,7 @@ paths: required: true content: application/json: - schema: *263 + schema: *264 examples: selected_actions: *44 responses: @@ -37611,7 +37797,7 @@ paths: description: Response content: application/json: - schema: &264 + schema: &265 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -37649,7 +37835,7 @@ paths: required: true content: application/json: - schema: *264 + schema: *265 examples: selected_actions: *46 responses: @@ -37692,7 +37878,7 @@ paths: type: array items: *163 examples: - default: &748 + default: &749 value: - property_name: environment value: production @@ -37742,7 +37928,7 @@ paths: required: - properties examples: - default: &749 + default: &750 value: properties: - property_name: environment @@ -37789,7 +37975,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &266 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -38122,7 +38308,7 @@ paths: - updated_at - archived_at examples: - default-response: &266 + default-response: &267 value: login: github id: 1 @@ -38447,17 +38633,17 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *266 + default: *267 '422': description: Validation failed content: application/json: schema: oneOf: - - *267 - *268 + - *269 '409': *121 x-github: githubCloudOnly: false @@ -38512,9 +38698,9 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: - default: *270 + default: *271 headers: Link: *47 x-github: @@ -38555,7 +38741,7 @@ paths: type: integer repository_cache_usages: type: array - items: &506 + items: &507 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -38630,7 +38816,7 @@ paths: type: array items: *48 examples: - default: *271 + default: *272 headers: Link: *47 x-github: @@ -38796,7 +38982,7 @@ paths: application/json: schema: *49 examples: - default: *272 + default: *273 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38888,7 +39074,7 @@ paths: application/json: schema: *52 examples: - default: *273 + default: *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39007,9 +39193,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *275 examples: - default: *275 + default: *276 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39045,7 +39231,7 @@ paths: type: array items: *56 examples: - default: *276 + default: *277 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39288,7 +39474,7 @@ paths: required: true content: application/json: - schema: *277 + schema: *278 examples: default: *60 responses: @@ -39381,7 +39567,7 @@ paths: required: - include_claim_keys examples: - default: &278 + default: &279 value: include_claim_keys: - repo @@ -39426,13 +39612,13 @@ paths: format. type: boolean examples: - default: *278 + default: *279 responses: '201': description: Empty response content: application/json: - schema: &303 + schema: &304 title: Empty Object description: An object without any properties. type: object @@ -39471,7 +39657,7 @@ paths: schema: type: object properties: - enabled_repositories: &280 + enabled_repositories: &281 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -39485,7 +39671,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *62 - selected_actions_url: *279 + selected_actions_url: *280 sha_pinning_required: *63 required: - enabled_repositories @@ -39527,7 +39713,7 @@ paths: schema: type: object properties: - enabled_repositories: *280 + enabled_repositories: *281 allowed_actions: *62 sha_pinning_required: *63 required: @@ -39563,7 +39749,7 @@ paths: description: Response content: application/json: - schema: *281 + schema: *282 examples: response: summary: Example response @@ -39594,7 +39780,7 @@ paths: required: true content: application/json: - schema: *282 + schema: *283 examples: application/json: value: @@ -39632,7 +39818,7 @@ paths: application/json: schema: *64 examples: - default: *283 + default: *284 '404': *6 x-github: enabledForGitHubApps: true @@ -39689,7 +39875,7 @@ paths: description: Response content: application/json: - schema: *284 + schema: *285 examples: default: *65 '403': *29 @@ -39714,7 +39900,7 @@ paths: required: true content: application/json: - schema: *285 + schema: *286 examples: default: *65 responses: @@ -39766,7 +39952,7 @@ paths: type: array items: *80 examples: - default: &287 + default: &288 value: total_count: 1 repositories: @@ -39951,7 +40137,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *89 - - &286 + - &287 name: repository_id description: The unique identifier of the repository. in: path @@ -39980,7 +40166,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *89 - - *286 + - *287 responses: '204': description: Response @@ -40176,7 +40362,7 @@ paths: type: array items: *80 examples: - default: *287 + default: *288 '403': *29 '404': *6 x-github: @@ -40245,7 +40431,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: - *89 - - *286 + - *287 responses: '204': description: No content @@ -40272,7 +40458,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: - *89 - - *286 + - *287 responses: '204': description: No content @@ -40306,7 +40492,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: default: *71 x-github: @@ -40340,7 +40526,7 @@ paths: required: false content: application/json: - schema: *289 + schema: *290 examples: default: *71 x-github: @@ -40387,7 +40573,7 @@ paths: type: number runner_groups: type: array - items: &290 + items: &291 type: object properties: id: @@ -40575,9 +40761,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: - default: &291 + default: &292 value: id: 2 name: octo-runner-group @@ -40619,7 +40805,7 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: default: value: @@ -40710,9 +40896,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: - default: *291 + default: *292 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -40776,7 +40962,7 @@ paths: type: array items: *48 examples: - default: *271 + default: *272 headers: Link: *47 x-github: @@ -40817,9 +41003,9 @@ paths: type: number repositories: type: array - items: *292 + items: *293 examples: - default: &344 + default: &345 value: total_count: 1 repositories: @@ -41118,7 +41304,7 @@ paths: parameters: - *89 - *74 - - *286 + - *287 responses: '204': description: Response @@ -41142,7 +41328,7 @@ paths: parameters: - *89 - *74 - - *286 + - *287 responses: '204': description: Response @@ -41360,9 +41546,9 @@ paths: application/json: schema: type: array - items: *293 + items: *294 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41427,7 +41613,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *295 + '201': *296 '404': *6 '422': *7 '409': *121 @@ -41466,7 +41652,7 @@ paths: application/json: schema: *81 examples: - default: *296 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41502,7 +41688,7 @@ paths: application/json: schema: *81 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41533,7 +41719,7 @@ paths: application/json: schema: *78 examples: - default: *298 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41708,7 +41894,7 @@ paths: - *89 - *77 responses: - '200': *299 + '200': *300 '404': *6 x-github: githubCloudOnly: false @@ -41737,7 +41923,7 @@ paths: parameters: - *89 - *77 - - *300 + - *301 responses: '200': *83 '404': *6 @@ -41782,7 +41968,7 @@ paths: type: integer secrets: type: array - items: &301 + items: &302 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -41814,7 +42000,7 @@ paths: - updated_at - visibility examples: - default: &307 + default: &308 value: total_count: 3 secrets: @@ -41861,7 +42047,7 @@ paths: description: Response content: application/json: - schema: &308 + schema: &309 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -41890,7 +42076,7 @@ paths: - key_id - key examples: - default: &309 + default: &310 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -41916,7 +42102,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-organization-secret parameters: - *89 - - &302 + - &303 name: secret_name description: The name of the secret. in: path @@ -41928,9 +42114,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *302 examples: - default: &310 + default: &311 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -41959,7 +42145,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -42016,7 +42202,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -42043,7 +42229,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -42070,7 +42256,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -42088,9 +42274,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: &306 + default: &307 value: total_count: 1 repositories: @@ -42183,7 +42369,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -42236,7 +42422,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -42270,7 +42456,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -42303,7 +42489,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-organization-variables parameters: - *89 - - &311 + - &312 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)." @@ -42327,7 +42513,7 @@ paths: type: integer variables: type: array - items: &304 + items: &305 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -42370,7 +42556,7 @@ paths: - updated_at - visibility examples: - default: &312 + default: &313 value: total_count: 3 variables: @@ -42460,7 +42646,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -42486,7 +42672,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-organization-variable parameters: - *89 - - &305 + - &306 name: name description: The name of the variable. in: path @@ -42498,9 +42684,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *305 examples: - default: &313 + default: &314 value: name: USERNAME value: octocat @@ -42529,7 +42715,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -42592,7 +42778,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-organization-variable parameters: - *89 - - *305 + - *306 responses: '204': description: Response @@ -42619,7 +42805,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 - *19 - *17 responses: @@ -42637,9 +42823,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 '409': description: Response when the visibility of the variable is not set to `selected` @@ -42666,7 +42852,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -42716,7 +42902,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -42751,7 +42937,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -42803,9 +42989,9 @@ paths: type: integer secrets: type: array - items: *301 + items: *302 examples: - default: *307 + default: *308 headers: Link: *47 x-github: @@ -42836,9 +43022,9 @@ paths: description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42861,15 +43047,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *301 + schema: *302 examples: - default: *310 + default: *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42892,7 +43078,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -42949,7 +43135,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -42976,7 +43162,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -43003,7 +43189,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -43021,9 +43207,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43047,7 +43233,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -43100,7 +43286,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -43134,7 +43320,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -43168,7 +43354,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-organization-variables parameters: - *89 - - *311 + - *312 - *19 responses: '200': @@ -43185,9 +43371,9 @@ paths: type: integer variables: type: array - items: *304 + items: *305 examples: - default: *312 + default: *313 headers: Link: *47 x-github: @@ -43258,7 +43444,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -43284,15 +43470,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-an-organization-variable parameters: - *89 - - *305 + - *306 responses: '200': description: Response content: application/json: - schema: *304 + schema: *305 examples: - default: *313 + default: *314 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43314,7 +43500,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -43377,7 +43563,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-an-organization-variable parameters: - *89 - - *305 + - *306 responses: '204': description: Response @@ -43404,7 +43590,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 - *19 - *17 responses: @@ -43422,9 +43608,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 '409': description: Response when the visibility of the variable is not set to `selected` @@ -43451,7 +43637,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -43501,7 +43687,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -43536,7 +43722,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -43594,7 +43780,7 @@ paths: required: true content: application/json: - schema: *314 + schema: *315 examples: default: *87 parameters: @@ -43778,7 +43964,7 @@ paths: type: integer deployment_records: type: array - items: &315 + items: &316 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -43824,7 +44010,7 @@ paths: required: - total_count examples: - default: &316 + default: &317 value: total_count: 1 deployment_records: @@ -44004,11 +44190,11 @@ paths: type: integer deployment_records: type: array - items: *315 + items: *316 required: - total_count examples: - default: *316 + default: *317 '403': description: Forbidden content: @@ -44247,9 +44433,9 @@ paths: type: integer deployment_records: type: array - items: *315 + items: *316 examples: - default: *316 + default: *317 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44378,12 +44564,12 @@ paths: required: - subject_digests examples: - default: &889 + default: &890 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &890 + withPredicateType: &891 value: subject_digests: - sha256:abc123 @@ -44441,7 +44627,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &891 + default: &892 value: attestations_subject_digests: - sha256:abc: @@ -44791,7 +44977,7 @@ paths: initiator: type: string examples: - default: &539 + default: &540 value: attestations: - bundle: @@ -44917,7 +45103,7 @@ paths: required: false schema: type: string - - *317 + - *318 - *131 - *132 - *133 @@ -44929,9 +45115,9 @@ paths: application/json: schema: type: array - items: *318 + items: *319 examples: - default: *319 + default: *320 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45054,7 +45240,7 @@ paths: subcategory: bypass-requests parameters: - *89 - - &322 + - &323 name: repository_name description: The name of the repository to filter on. in: query @@ -45073,9 +45259,9 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: - default: *321 + default: *322 '404': *6 '500': *40 "/orgs/{org}/bypass-requests/secret-scanning": @@ -45099,7 +45285,7 @@ paths: subcategory: delegated-bypass parameters: - *89 - - *322 + - *323 - *105 - *106 - *107 @@ -45113,9 +45299,9 @@ paths: application/json: schema: type: array - items: *323 + items: *324 examples: - default: *324 + default: *325 '404': *6 '500': *40 "/orgs/{org}/campaigns": @@ -45142,7 +45328,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &326 + schema: &327 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -45168,7 +45354,7 @@ paths: application/json: schema: type: array - items: &327 + items: &328 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -45199,7 +45385,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *325 + items: *326 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -45217,7 +45403,7 @@ paths: type: string format: date-time nullable: true - state: *326 + state: *327 contact_link: description: The contact link of the campaign. type: string @@ -45437,9 +45623,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: &328 + default: &329 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -45522,9 +45708,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *328 + default: *329 '404': *6 '422': description: Unprocessable Entity @@ -45601,7 +45787,7 @@ paths: type: string format: uri nullable: true - state: *326 + state: *327 examples: default: value: @@ -45611,9 +45797,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *328 + default: *329 '400': description: Bad Request content: @@ -45680,8 +45866,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *89 - - *329 - *330 + - *331 - *110 - *111 - *19 @@ -45692,7 +45878,7 @@ paths: be returned. in: query required: false - schema: *331 + schema: *332 - name: sort description: The property by which to sort the results. in: query @@ -45708,7 +45894,7 @@ paths: be returned. in: query required: false - schema: &565 + schema: &566 type: string description: Severity of a code scanning alert. enum: @@ -45734,9 +45920,9 @@ paths: application/json: schema: type: array - items: *332 + items: *333 examples: - default: *333 + default: *334 headers: Link: *47 '404': *6 @@ -46111,7 +46297,7 @@ paths: application/json: schema: *116 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46139,9 +46325,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *336 examples: - default: *336 + default: *337 '304': *37 '403': *29 '404': *6 @@ -46230,7 +46416,7 @@ paths: application/json: schema: *116 examples: - default: *334 + default: *335 '304': *37 '403': *29 '404': *6 @@ -46675,7 +46861,7 @@ paths: default: value: default_for_new_repos: all - configuration: *334 + configuration: *335 '403': *29 '404': *6 x-github: @@ -46728,13 +46914,13 @@ paths: application/json: schema: type: array - items: *337 + items: *338 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *338 + repository: *339 '403': *29 '404': *6 x-github: @@ -46774,7 +46960,7 @@ paths: type: integer codespaces: type: array - items: &405 + items: &406 type: object title: Codespace description: A codespace. @@ -46799,12 +46985,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *292 + repository: *293 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &597 + properties: &598 name: type: string description: The name of the machine. @@ -46846,7 +47032,7 @@ paths: - ready - in_progress nullable: true - required: &598 + required: &599 - name - display_name - operating_system @@ -47051,7 +47237,7 @@ paths: - pulls_url - recent_folders examples: - default: &406 + default: &407 value: total_count: 3 codespaces: @@ -47675,7 +47861,7 @@ paths: type: integer secrets: type: array - items: &339 + items: &340 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -47714,7 +47900,7 @@ paths: - updated_at - visibility examples: - default: &599 + default: &600 value: total_count: 2 secrets: @@ -47752,7 +47938,7 @@ paths: description: Response content: application/json: - schema: &600 + schema: &601 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -47781,7 +47967,7 @@ paths: - key_id - key examples: - default: &601 + default: &602 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -47805,15 +47991,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: &603 + default: &604 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -47841,7 +48027,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -47896,7 +48082,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -47923,7 +48109,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -47949,7 +48135,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -47967,9 +48153,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 '404': *6 x-github: githubCloudOnly: false @@ -47992,7 +48178,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -48043,7 +48229,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -48077,7 +48263,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -48147,7 +48333,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &340 + items: &341 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -48528,9 +48714,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: &341 + default: &342 summary: Example response for an organization copilot space value: id: 84 @@ -48635,9 +48821,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *341 + default: *342 '403': *29 '404': *6 x-github: @@ -48763,9 +48949,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *341 + default: *342 '403': *29 '404': *6 '422': *15 @@ -48848,7 +49034,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &342 + items: &343 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -49071,7 +49257,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: user: value: @@ -49201,7 +49387,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: user: value: @@ -49352,7 +49538,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &343 + items: &344 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -49495,7 +49681,7 @@ paths: description: Resource created content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -49511,7 +49697,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -49566,7 +49752,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -49635,7 +49821,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -50363,12 +50549,12 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 required: - total_count - repositories examples: - default: *344 + default: *345 '500': *40 '401': *25 '403': *29 @@ -50454,7 +50640,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: - *89 - - *286 + - *287 responses: '204': description: No Content @@ -50488,7 +50674,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: - *89 - - *286 + - *287 responses: '204': description: No Content @@ -50636,7 +50822,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': *345 + '413': *346 '422': *7 x-github: githubCloudOnly: @@ -51076,7 +51262,7 @@ paths: type: integer custom_roles: type: array - items: *346 + items: *347 examples: default: value: @@ -51168,7 +51354,7 @@ paths: required: true content: application/json: - schema: &348 + schema: &349 type: object properties: name: @@ -51209,9 +51395,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51242,9 +51428,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '404': *6 x-github: githubCloudOnly: true @@ -51272,7 +51458,7 @@ paths: required: true content: application/json: - schema: &349 + schema: &350 type: object properties: name: @@ -51310,9 +51496,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51370,7 +51556,7 @@ paths: required: true content: application/json: - schema: *348 + schema: *349 examples: default: value: @@ -51384,9 +51570,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51423,9 +51609,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '404': *6 x-github: githubCloudOnly: true @@ -51459,7 +51645,7 @@ paths: required: true content: application/json: - schema: *349 + schema: *350 examples: default: value: @@ -51474,9 +51660,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51536,12 +51722,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *89 - - *350 - *351 - *352 - *353 - *354 - *355 + - *356 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -51571,7 +51757,7 @@ paths: enum: - patch - deployment - - *356 + - *357 - name: runtime_risk in: query description: |- @@ -51580,8 +51766,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *357 - *358 + - *359 - *112 - *110 - *111 @@ -51593,9 +51779,9 @@ paths: application/json: schema: type: array - items: *359 + items: *360 examples: - default: *360 + default: *361 '304': *37 '400': *14 '403': *29 @@ -51644,9 +51830,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: *362 + default: *363 '403': *29 '404': *6 x-github: @@ -51809,7 +51995,7 @@ paths: type: integer secrets: type: array - items: &363 + items: &364 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -51886,7 +52072,7 @@ paths: description: Response content: application/json: - schema: &634 + schema: &635 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -51903,7 +52089,7 @@ paths: - key_id - key examples: - default: &635 + default: &636 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -51927,13 +52113,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: default: value: @@ -51962,7 +52148,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -52019,7 +52205,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -52044,7 +52230,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -52069,7 +52255,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -52087,9 +52273,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52111,7 +52297,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -52162,7 +52348,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -52194,7 +52380,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -52231,7 +52417,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - &644 + - &645 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -52239,7 +52425,7 @@ paths: required: false schema: type: string - - &645 + - &646 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -52247,7 +52433,7 @@ paths: required: false schema: type: string - - &646 + - &647 name: time_period description: |- The time period to filter by. @@ -52263,7 +52449,7 @@ paths: - week - month default: month - - &647 + - &648 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -52278,7 +52464,7 @@ paths: - denied - all default: all - - *322 + - *323 - *17 - *19 responses: @@ -52288,7 +52474,7 @@ paths: application/json: schema: type: array - items: &648 + items: &649 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -52394,7 +52580,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: &365 + items: &366 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -52444,7 +52630,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &649 + default: &650 value: - id: 21 number: 42 @@ -52532,11 +52718,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - *322 + - *323 - *105 - *106 - *107 - - *364 + - *365 - *17 - *19 responses: @@ -52546,7 +52732,7 @@ paths: application/json: schema: type: array - items: &650 + items: &651 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -52652,7 +52838,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *365 + items: *366 url: type: string format: uri @@ -52663,7 +52849,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &651 + default: &652 value: - id: 21 number: 42 @@ -52751,11 +52937,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - *322 + - *323 - *105 - *106 - *107 - - *364 + - *365 - *17 - *19 responses: @@ -52765,9 +52951,9 @@ paths: application/json: schema: type: array - items: *366 + items: *367 examples: - default: *367 + default: *368 '404': *6 '403': *29 '500': *40 @@ -52793,7 +52979,7 @@ paths: application/json: schema: type: array - items: &416 + items: &417 title: Package description: A software package type: object @@ -52843,8 +53029,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *368 - required: *369 + properties: *369 + required: *370 nullable: true created_at: type: string @@ -52863,7 +53049,7 @@ paths: - created_at - updated_at examples: - default: &417 + default: &418 value: - id: 197 name: hello_docker @@ -52951,7 +53137,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: 200-response: value: @@ -53050,7 +53236,7 @@ paths: description: Response content: application/json: - schema: &490 + schema: &491 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -53131,7 +53317,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &491 + default: &492 value: group_id: '123' group_name: Octocat admins @@ -53186,7 +53372,7 @@ paths: description: Response content: application/json: - schema: &487 + schema: &488 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -53223,7 +53409,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &488 + default: &489 value: groups: - group_id: '123' @@ -53268,7 +53454,7 @@ paths: application/json: schema: type: array - items: &394 + items: &395 title: Organization Invitation description: Organization Invitation type: object @@ -53315,7 +53501,7 @@ paths: - invitation_teams_url - node_id examples: - default: &395 + default: &396 value: - id: 1 login: monalisa @@ -53382,7 +53568,7 @@ paths: application/json: schema: type: array - items: &450 + items: &451 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -53396,7 +53582,7 @@ paths: - name - description examples: - default: &451 + default: &452 value: - name: add_assignee description: Assign or remove a user @@ -53437,7 +53623,7 @@ paths: application/json: schema: type: array - items: &370 + items: &371 title: Org Hook description: Org Hook type: object @@ -53606,9 +53792,9 @@ paths: description: Response content: application/json: - schema: *370 + schema: *371 examples: - default: &371 + default: &372 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -53653,7 +53839,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-an-organization-webhook parameters: - *89 - - &372 + - &373 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. @@ -53666,9 +53852,9 @@ paths: description: Response content: application/json: - schema: *370 + schema: *371 examples: - default: *371 + default: *372 '404': *6 x-github: githubCloudOnly: false @@ -53690,7 +53876,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-an-organization-webhook parameters: - *89 - - *372 + - *373 requestBody: required: false content: @@ -53735,7 +53921,7 @@ paths: description: Response content: application/json: - schema: *370 + schema: *371 examples: default: value: @@ -53775,7 +53961,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *89 - - *372 + - *373 responses: '204': description: Response @@ -53801,7 +53987,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *89 - - *372 + - *373 responses: '200': description: Response @@ -53830,7 +54016,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *89 - - *372 + - *373 requestBody: required: false content: @@ -53879,10 +54065,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *89 - - *372 - - *17 - *373 + - *17 - *374 + - *375 responses: '200': description: Response @@ -53890,9 +54076,9 @@ paths: application/json: schema: type: array - items: *375 + items: *376 examples: - default: *376 + default: *377 '400': *14 '422': *15 x-github: @@ -53916,16 +54102,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *89 - - *372 + - *373 - *16 responses: '200': description: Response content: application/json: - schema: *377 + schema: *378 examples: - default: *378 + default: *379 '400': *14 '422': *15 x-github: @@ -53949,7 +54135,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *89 - - *372 + - *373 - *16 responses: '202': *39 @@ -53976,7 +54162,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *89 - - *372 + - *373 responses: '204': description: Response @@ -53999,7 +54185,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *89 - - &383 + - &384 name: actor_type in: path description: The type of the actor @@ -54012,14 +54198,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &384 + - &385 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &379 + - &380 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`.' @@ -54027,7 +54213,7 @@ paths: required: true schema: type: string - - &380 + - &381 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) @@ -54121,12 +54307,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-subject-stats parameters: - *89 - - *379 - *380 + - *381 - *19 - *17 - *112 - - &389 + - &390 name: sort description: The property to sort the results by. in: query @@ -54204,14 +54390,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats parameters: - *89 - - *379 - *380 + - *381 responses: '200': description: Response content: application/json: - schema: &381 + schema: &382 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -54227,7 +54413,7 @@ paths: type: integer format: int64 examples: - default: &382 + default: &383 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -54248,23 +54434,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *89 - - &385 + - &386 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *379 - *380 + - *381 responses: '200': description: Response content: application/json: - schema: *381 + schema: *382 examples: - default: *382 + default: *383 x-github: enabledForGitHubApps: true category: orgs @@ -54283,18 +54469,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *89 - - *379 - *380 - - *383 + - *381 - *384 + - *385 responses: '200': description: Response content: application/json: - schema: *381 + schema: *382 examples: - default: *382 + default: *383 x-github: enabledForGitHubApps: true category: orgs @@ -54312,9 +54498,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats parameters: - *89 - - *379 - *380 - - &386 + - *381 + - &387 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -54327,7 +54513,7 @@ paths: description: Response content: application/json: - schema: &387 + schema: &388 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -54343,7 +54529,7 @@ paths: type: integer format: int64 examples: - default: &388 + default: &389 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -54380,18 +54566,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-user parameters: - *89 - - *385 - - *379 - - *380 - *386 + - *380 + - *381 + - *387 responses: '200': description: Response content: application/json: - schema: *387 + schema: *388 examples: - default: *388 + default: *389 x-github: enabledForGitHubApps: true category: orgs @@ -54409,19 +54595,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *89 - - *383 - *384 - - *379 + - *385 - *380 - - *386 + - *381 + - *387 responses: '200': description: Response content: application/json: - schema: *387 + schema: *388 examples: - default: *388 + default: *389 x-github: enabledForGitHubApps: true category: orgs @@ -54439,13 +54625,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-user-stats parameters: - *89 - - *385 - - *379 + - *386 - *380 + - *381 - *19 - *17 - *112 - - *389 + - *390 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -54526,7 +54712,7 @@ paths: application/json: schema: *22 examples: - default: *390 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54646,12 +54832,12 @@ paths: application/json: schema: anyOf: - - &392 + - &393 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &391 + limit: &392 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -54676,7 +54862,7 @@ paths: properties: {} additionalProperties: false examples: - default: &393 + default: &394 value: limit: collaborators_only origin: organization @@ -54705,13 +54891,13 @@ paths: required: true content: application/json: - schema: &680 + schema: &681 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *391 + limit: *392 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -54735,9 +54921,9 @@ paths: description: Response content: application/json: - schema: *392 + schema: *393 examples: - default: *393 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -54815,9 +55001,9 @@ paths: application/json: schema: type: array - items: *394 + items: *395 examples: - default: *395 + default: *396 headers: Link: *47 '404': *6 @@ -54895,7 +55081,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *395 examples: default: value: @@ -54952,7 +55138,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#cancel-an-organization-invitation parameters: - *89 - - &396 + - &397 name: invitation_id description: The unique identifier of the invitation. in: path @@ -54986,7 +55172,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#list-organization-invitation-teams parameters: - *89 - - *396 + - *397 - *17 - *19 responses: @@ -54996,9 +55182,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: &415 + default: &416 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -55041,7 +55227,7 @@ paths: application/json: schema: type: array - items: &397 + items: &398 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -55294,9 +55480,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *398 examples: - default: &398 + default: &399 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -55352,7 +55538,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *89 - - &399 + - &400 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -55460,9 +55646,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *398 examples: - default: *398 + default: *399 '404': *6 '422': *7 x-github: @@ -55487,7 +55673,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *89 - - *399 + - *400 responses: '204': *130 '404': *6 @@ -55517,9 +55703,9 @@ paths: application/json: schema: type: array - items: *400 + items: *401 examples: - default: &684 + default: &685 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -55602,9 +55788,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *401 examples: - default: &401 + default: &402 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -55637,7 +55823,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *89 - - &402 + - &403 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -55690,9 +55876,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *401 examples: - default: *401 + default: *402 '404': *6 '422': *7 x-github: @@ -55717,7 +55903,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *89 - - *402 + - *403 responses: '204': description: Response @@ -55780,7 +55966,7 @@ paths: - closed - all default: open - - *403 + - *404 - name: type description: Can be the name of an issue type. in: query @@ -55799,7 +55985,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - *17 - *19 responses: @@ -55809,9 +55995,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *404 + default: *405 headers: Link: *47 '404': *6 @@ -55970,9 +56156,9 @@ paths: type: integer codespaces: type: array - items: *405 + items: *406 examples: - default: *406 + default: *407 '304': *37 '500': *40 '401': *25 @@ -55999,7 +56185,7 @@ paths: parameters: - *89 - *151 - - &407 + - &408 name: codespace_name in: path required: true @@ -56034,15 +56220,15 @@ paths: parameters: - *89 - *151 - - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: &596 + default: &597 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -56298,7 +56484,7 @@ paths: description: Response content: application/json: - schema: &408 + schema: &409 title: Org Membership description: Org Membership type: object @@ -56365,7 +56551,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &409 + response-if-user-has-an-active-admin-membership-with-organization: &410 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -56466,9 +56652,9 @@ paths: description: Response content: application/json: - schema: *408 + schema: *409 examples: - response-if-user-already-had-membership-with-organization: *409 + response-if-user-already-had-membership-with-organization: *410 '422': *15 '403': *29 x-github: @@ -56539,7 +56725,7 @@ paths: application/json: schema: type: array - items: &410 + items: &411 title: Migration description: A migration. type: object @@ -56868,7 +57054,7 @@ paths: description: Response content: application/json: - schema: *410 + schema: *411 examples: default: value: @@ -57047,7 +57233,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#get-an-organization-migration-status parameters: - *89 - - &411 + - &412 name: migration_id description: The unique identifier of the migration. in: path @@ -57074,7 +57260,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *410 + schema: *411 examples: default: value: @@ -57244,7 +57430,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *89 - - *411 + - *412 responses: '302': description: Response @@ -57266,7 +57452,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *89 - - *411 + - *412 responses: '204': description: Response @@ -57290,8 +57476,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#unlock-an-organization-repository parameters: - *89 - - *411 - - &872 + - *412 + - &873 name: repo_name description: repo_name parameter in: path @@ -57319,7 +57505,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *89 - - *411 + - *412 - *17 - *19 responses: @@ -57329,9 +57515,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: &422 + default: &423 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -57542,7 +57728,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &412 + items: &413 title: Organization Role description: Organization roles type: object @@ -57749,7 +57935,7 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: default: value: @@ -57979,7 +58165,7 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: default: value: @@ -58076,7 +58262,7 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: default: value: @@ -58234,8 +58420,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *413 - required: *414 + properties: *414 + required: *415 nullable: true type: description: The ownership type of the team @@ -58267,7 +58453,7 @@ paths: - type - parent examples: - default: *415 + default: *416 headers: Link: *47 '404': @@ -58325,13 +58511,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &477 + items: &478 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *413 - required: *414 + properties: *414 + required: *415 name: nullable: true type: string @@ -58619,7 +58805,7 @@ paths: - nuget - container - *89 - - &873 + - &874 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -58655,12 +58841,12 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: - default: *417 + default: *418 '403': *29 '401': *25 - '400': &875 + '400': &876 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -58682,7 +58868,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-an-organization parameters: - - &418 + - &419 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 @@ -58700,7 +58886,7 @@ paths: - docker - nuget - container - - &419 + - &420 name: package_name description: The name of the package. in: path @@ -58713,7 +58899,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -58765,8 +58951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *418 - *419 + - *420 - *89 responses: '204': @@ -58799,8 +58985,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *418 - *419 + - *420 - *89 - name: token description: package token @@ -58833,8 +59019,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: - - *418 - *419 + - *420 - *89 - *19 - *17 @@ -58855,7 +59041,7 @@ paths: application/json: schema: type: array - items: &420 + items: &421 title: Package Version description: A version of a software package type: object @@ -58980,10 +59166,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: - - *418 - *419 + - *420 - *89 - - &421 + - &422 name: package_version_id description: Unique identifier of the package version. in: path @@ -58995,7 +59181,7 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: default: value: @@ -59031,10 +59217,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *418 - *419 + - *420 - *89 - - *421 + - *422 responses: '204': description: Response @@ -59066,10 +59252,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *418 - *419 + - *420 - *89 - - *421 + - *422 responses: '204': description: Response @@ -59099,7 +59285,7 @@ paths: - *89 - *17 - *19 - - &423 + - &424 name: sort description: The property by which to sort the results. in: query @@ -59110,7 +59296,7 @@ paths: - created_at default: created_at - *112 - - &424 + - &425 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -59121,7 +59307,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &425 + - &426 name: repository description: The name of the repository to use to filter the results. in: query @@ -59129,7 +59315,7 @@ paths: schema: type: string example: Hello-World - - &426 + - &427 name: permission description: The permission to use to filter the results. in: query @@ -59137,7 +59323,7 @@ paths: schema: type: string example: issues_read - - &427 + - &428 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) @@ -59147,7 +59333,7 @@ paths: schema: type: string format: date-time - - &428 + - &429 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) @@ -59157,7 +59343,7 @@ paths: schema: type: string format: date-time - - &429 + - &430 name: token_id description: The ID of the token in: query @@ -59468,9 +59654,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *422 + default: *423 headers: Link: *47 x-github: @@ -59496,14 +59682,14 @@ paths: - *89 - *17 - *19 - - *423 - - *112 - *424 + - *112 - *425 - *426 - *427 - *428 - *429 + - *430 responses: '500': *40 '422': *15 @@ -59783,9 +59969,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *422 + default: *423 headers: Link: *47 x-github: @@ -59827,7 +60013,7 @@ paths: type: integer configurations: type: array - items: &430 + items: &431 title: Organization private registry description: Private registry configuration for an organization type: object @@ -60338,7 +60524,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &431 + org-private-registry-with-selected-visibility: &432 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -60428,15 +60614,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *89 - - *302 + - *303 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *430 + schema: *431 examples: - default: *431 + default: *432 '404': *6 x-github: githubCloudOnly: false @@ -60459,7 +60645,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -60647,7 +60833,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -60687,7 +60873,7 @@ paths: application/json: schema: type: array - items: &432 + items: &433 title: Projects v2 Project description: A projects v2 project type: object @@ -60757,7 +60943,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &967 + properties: &968 id: type: number description: The unique identifier of the status update. @@ -60805,7 +60991,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &968 + required: &969 - id - node_id - created_at @@ -60830,7 +61016,7 @@ paths: - deleted_at - deleted_by examples: - default: &433 + default: &434 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -60933,7 +61119,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-organization parameters: - - &434 + - &435 name: project_number description: The project's number. in: path @@ -60946,9 +61132,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *433 examples: - default: *433 + default: *434 headers: Link: *47 '304': *37 @@ -60971,7 +61157,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *89 - - *434 + - *435 requestBody: required: true description: Details of the draft item to create in the project. @@ -61005,7 +61191,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &441 title: Projects v2 Item description: An item belonging to a project type: object @@ -61018,8 +61204,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *231 - - &613 + - *232 + - &614 title: Pull Request Simple description: Pull Request Simple type: object @@ -61125,8 +61311,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *435 - required: *436 + properties: *436 + required: *437 nullable: true active_lock_reason: type: string @@ -61169,7 +61355,7 @@ paths: items: *4 requested_teams: type: array - items: *325 + items: *326 head: type: object properties: @@ -61219,7 +61405,7 @@ paths: _links: type: object properties: - comments: &437 + comments: &438 title: Link description: Hypermedia Link type: object @@ -61228,13 +61414,13 @@ paths: type: string required: - href - commits: *437 - statuses: *437 - html: *437 - issue: *437 - review_comments: *437 - review_comment: *437 - self: *437 + commits: *438 + statuses: *438 + html: *438 + issue: *438 + review_comments: *438 + review_comment: *438 + self: *438 required: - comments - commits @@ -61244,8 +61430,8 @@ paths: - review_comments - review_comment - self - author_association: *228 - auto_merge: &751 + author_association: *229 + auto_merge: &752 title: Auto merge description: The status of auto merging a pull request. type: object @@ -61347,7 +61533,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &439 + content_type: &440 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -61387,7 +61573,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &441 + draft_issue: &442 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -61461,7 +61647,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-organization parameters: - - *434 + - *435 - *89 - *17 - *110 @@ -61473,7 +61659,7 @@ paths: application/json: schema: type: array - items: &438 + items: &439 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -61623,7 +61809,7 @@ paths: - updated_at - project_url examples: - default: &895 + default: &896 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61753,7 +61939,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: - - *434 + - *435 - *89 requestBody: required: true @@ -61800,7 +61986,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &896 + items: &897 type: object properties: name: @@ -61837,7 +62023,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &897 + iteration_configuration: &898 type: object description: The configuration for iteration fields. properties: @@ -61887,7 +62073,7 @@ paths: value: name: Due date data_type: date - single_select_field: &898 + single_select_field: &899 summary: Create a single select field value: name: Priority @@ -61914,7 +62100,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &899 + iteration_field: &900 summary: Create an iteration field value: name: Sprint @@ -61938,9 +62124,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *438 + schema: *439 examples: - text_field: &900 + text_field: &901 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -61949,7 +62135,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: &901 + number_field: &902 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -61958,7 +62144,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: &902 + date_field: &903 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -61967,7 +62153,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: &903 + single_select_field: &904 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62001,7 +62187,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &904 + iteration_field: &905 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -62046,8 +62232,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - - *434 - - &905 + - *435 + - &906 name: field_id description: The unique identifier of the field. in: path @@ -62060,9 +62246,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *439 examples: - default: &906 + default: &907 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62118,7 +62304,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: - - *434 + - *435 - *89 - 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) @@ -62151,7 +62337,7 @@ paths: application/json: schema: type: array - items: &442 + items: &443 title: Projects v2 Item description: An item belonging to a project type: object @@ -62167,7 +62353,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *439 + content_type: *440 content: type: object additionalProperties: true @@ -62210,7 +62396,7 @@ paths: - updated_at - archived_at examples: - default: &443 + default: &444 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -62908,7 +63094,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-organization-owned-project parameters: - *89 - - *434 + - *435 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -62978,22 +63164,22 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *441 + value: *442 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *441 + value: *442 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *441 + value: *442 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *441 + value: *442 '304': *37 '403': *29 '401': *25 @@ -63013,9 +63199,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: - - *434 + - *435 - *89 - - &444 + - &445 name: item_id description: The unique identifier of the project item. in: path @@ -63041,9 +63227,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: *443 + default: *444 headers: Link: *47 '304': *37 @@ -63064,9 +63250,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-organization parameters: - - *434 + - *435 - *89 - - *444 + - *445 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -63136,13 +63322,13 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - text_field: *443 - number_field: *443 - date_field: *443 - single_select_field: *443 - iteration_field: *443 + text_field: *444 + number_field: *444 + date_field: *444 + single_select_field: *444 + iteration_field: *444 '401': *25 '403': *29 '404': *6 @@ -63162,9 +63348,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-organization parameters: - - *434 + - *435 - *89 - - *444 + - *445 responses: '204': description: Response @@ -63188,7 +63374,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *89 - - *434 + - *435 requestBody: required: true content: @@ -63259,7 +63445,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &886 + schema: &887 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -63357,7 +63543,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &445 + value: &446 value: id: 1 number: 1 @@ -63403,10 +63589,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *445 + value: *446 roadmap_view: summary: Response for creating a roadmap view - value: *445 + value: *446 '304': *37 '403': *29 '401': *25 @@ -63434,9 +63620,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: - - *434 + - *435 - *89 - - &907 + - &908 name: view_number description: The number that identifies the project view. in: path @@ -63468,9 +63654,9 @@ paths: application/json: schema: type: array - items: *442 + items: *443 examples: - default: *443 + default: *444 headers: Link: *47 '304': *37 @@ -63634,7 +63820,7 @@ paths: required: true content: application/json: - schema: *446 + schema: *447 examples: default: value: @@ -63997,9 +64183,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *422 + default: *423 headers: Link: *47 x-github: @@ -64202,7 +64388,7 @@ paths: description: Response content: application/json: - schema: &498 + schema: &499 title: Full Repository description: Full Repository type: object @@ -64490,8 +64676,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *447 - required: *448 + properties: *448 + required: *449 nullable: true temp_clone_token: type: string @@ -64578,8 +64764,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true organization: title: Simple User @@ -64606,7 +64792,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &618 + properties: &619 url: type: string format: uri @@ -64622,12 +64808,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &619 + required: &620 - url - key - name - html_url - security_and_analysis: *449 + security_and_analysis: *450 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -64711,7 +64897,7 @@ paths: - network_count - subscribers_count examples: - default: &500 + default: &501 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -65237,9 +65423,9 @@ paths: application/json: schema: type: array - items: *450 + items: *451 examples: - default: *451 + default: *452 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -65264,7 +65450,7 @@ paths: - *89 - *17 - *19 - - &774 + - &775 name: targets description: | A comma-separated list of rule targets to filter by. @@ -65355,11 +65541,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *176 - conditions: *452 + conditions: *453 rules: type: array description: An array of rules within the ruleset. - items: &454 + items: &455 title: Repository Rule type: object description: A repository rule. @@ -65424,7 +65610,7 @@ paths: application/json: schema: *198 examples: - default: &453 + default: &454 value: id: 21 name: super cool ruleset @@ -65480,7 +65666,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &776 + - &777 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 @@ -65490,16 +65676,16 @@ paths: schema: type: string x-multi-segment: true - - *322 + - *323 - *107 - - &777 + - &778 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 - - &778 + - &779 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -65512,7 +65698,7 @@ paths: - bypass - all default: all - - &779 + - &780 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. @@ -65535,7 +65721,7 @@ paths: description: Response content: application/json: - schema: &780 + schema: &781 title: Rule Suites description: Response type: array @@ -65590,7 +65776,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &781 + default: &782 value: - id: 21 actor_id: 12 @@ -65634,7 +65820,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &782 + - &783 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -65650,7 +65836,7 @@ paths: description: Response content: application/json: - schema: &783 + schema: &784 title: Rule Suite description: Response type: object @@ -65749,7 +65935,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &784 + default: &785 value: id: 21 actor_id: 12 @@ -65824,7 +66010,7 @@ paths: application/json: schema: *198 examples: - default: *453 + default: *454 '404': *6 '500': *40 put: @@ -65873,11 +66059,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *176 - conditions: *452 + conditions: *453 rules: description: An array of rules within the ruleset. type: array - items: *454 + items: *455 examples: default: value: @@ -65914,7 +66100,7 @@ paths: application/json: schema: *198 examples: - default: *453 + default: *454 '404': *6 '422': *15 '500': *40 @@ -65974,7 +66160,7 @@ paths: type: array items: *202 examples: - default: *455 + default: *456 '404': *6 '500': *40 x-github: @@ -66011,7 +66197,7 @@ paths: description: Response content: application/json: - schema: *456 + schema: *457 examples: default: value: @@ -66074,7 +66260,6 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *89 - - *457 - *458 - *459 - *460 @@ -66082,10 +66267,11 @@ paths: - *462 - *463 - *464 + - *465 - *112 - *19 - *17 - - &786 + - &787 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 @@ -66095,7 +66281,7 @@ paths: required: false schema: type: string - - &787 + - &788 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 @@ -66105,13 +66291,13 @@ paths: required: false schema: type: string - - *465 - *466 - *467 - *468 - *469 - *470 - *471 + - *472 responses: '200': description: Response @@ -66119,9 +66305,9 @@ paths: application/json: schema: type: array - items: *472 + items: *473 examples: - default: *473 + default: *474 headers: Link: *47 '404': *6 @@ -66156,9 +66342,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: *475 + default: *476 '403': *29 '404': *6 patch: @@ -66311,7 +66497,7 @@ paths: application/json: schema: type: array - items: &808 + items: &809 description: A repository security advisory. type: object properties: @@ -66531,7 +66717,7 @@ paths: login: type: string description: The username of the user credited. - type: *476 + type: *477 credits_detailed: type: array nullable: true @@ -66541,7 +66727,7 @@ paths: type: object properties: user: *4 - type: *476 + type: *477 state: type: string description: The state of the user's acceptance of the @@ -66565,7 +66751,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *325 + items: *326 private_fork: readOnly: true nullable: true @@ -66602,7 +66788,7 @@ paths: - private_fork additionalProperties: false examples: - default: &809 + default: &810 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -66989,7 +67175,7 @@ paths: application/json: schema: type: array - items: *477 + items: *478 examples: default: value: @@ -67088,7 +67274,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *89 - - *478 + - *479 - *17 - *19 responses: @@ -67096,9 +67282,9 @@ paths: description: Success content: application/json: - schema: *479 + schema: *480 examples: - default: *480 + default: *481 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -67242,9 +67428,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67313,7 +67499,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *89 - - *286 + - *287 responses: '204': description: Response @@ -67336,7 +67522,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *89 - - *286 + - *287 responses: '204': description: Response @@ -67379,7 +67565,7 @@ paths: type: array items: *156 examples: - default: *481 + default: *482 headers: Link: *47 x-github: @@ -67608,15 +67794,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: - *89 - - *482 + - *483 responses: '200': description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: *484 + default: *485 headers: Link: *47 x-github: @@ -67654,7 +67840,7 @@ paths: description: Response content: application/json: - schema: &495 + schema: &496 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -67700,7 +67886,7 @@ paths: type: string nullable: true examples: - default: &496 + default: &497 value: groups: - group_id: '123' @@ -67755,9 +67941,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 headers: Link: *47 '403': *29 @@ -67851,7 +68037,7 @@ paths: description: Response content: application/json: - schema: &485 + schema: &486 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -67914,8 +68100,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *413 - required: *414 + properties: *414 + required: *415 nullable: true members_count: type: integer @@ -68178,7 +68364,7 @@ paths: - repos_count - organization examples: - default: &486 + default: &487 value: id: 1 node_id: MDQ6VGVhbTE= @@ -68255,9 +68441,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '404': *6 x-github: githubCloudOnly: false @@ -68341,16 +68527,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '201': description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '404': *6 '422': *15 '403': *29 @@ -68380,7 +68566,7 @@ paths: responses: '204': description: Response - '422': &489 + '422': &490 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -68409,10 +68595,10 @@ paths: description: Response content: application/json: - schema: *487 + schema: *488 examples: - default: *488 - '422': *489 + default: *489 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -68455,10 +68641,10 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: - default: *491 - '422': *489 + default: *492 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -68482,7 +68668,7 @@ paths: responses: '204': description: Response - '422': *489 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -68514,12 +68700,12 @@ paths: application/json: schema: type: array - items: *394 + items: *395 examples: - default: *395 + default: *396 headers: Link: *47 - '422': *489 + '422': *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68563,7 +68749,7 @@ paths: application/json: schema: type: array - items: &850 + items: &851 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 @@ -68682,7 +68868,7 @@ paths: - type - url examples: - default: &851 + default: &852 value: - login: octocat id: 1 @@ -68741,7 +68927,7 @@ paths: description: Response content: application/json: - schema: &492 + schema: &493 title: Team Membership description: Team Membership type: object @@ -68768,7 +68954,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &852 + response-if-user-is-a-team-maintainer: &853 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -68831,9 +69017,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *493 examples: - response-if-users-membership-with-team-is-now-pending: &853 + response-if-users-membership-with-team-is-now-pending: &854 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -68907,9 +69093,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *422 + default: *423 headers: Link: *47 x-github: @@ -68940,14 +69126,14 @@ paths: parameters: - *89 - *224 - - *493 - *494 + - *495 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &854 + schema: &855 title: Team Repository description: A team's access to a repository. type: object @@ -68970,8 +69156,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true forks: type: integer @@ -69518,8 +69704,8 @@ paths: parameters: - *89 - *224 - - *493 - *494 + - *495 requestBody: required: false content: @@ -69566,8 +69752,8 @@ paths: parameters: - *89 - *224 - - *493 - *494 + - *495 responses: '204': description: Response @@ -69600,10 +69786,10 @@ paths: description: Response content: application/json: - schema: *495 + schema: *496 examples: - default: *496 - '422': *489 + default: *497 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -69669,7 +69855,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *496 examples: default: value: @@ -69681,7 +69867,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *489 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -69713,9 +69899,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - response-if-child-teams-exist: &855 + response-if-child-teams-exist: &856 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -69868,7 +70054,7 @@ paths: resources: type: object properties: - core: &497 + core: &498 title: Rate Limit type: object properties: @@ -69885,21 +70071,21 @@ paths: - remaining - reset - used - graphql: *497 - search: *497 - code_search: *497 - source_import: *497 - integration_manifest: *497 - actions_runner_registration: *497 - scim: *497 - dependency_snapshots: *497 - dependency_sbom: *497 - code_scanning_autofix: *497 - copilot_usage_records: *497 + graphql: *498 + search: *498 + code_search: *498 + source_import: *498 + integration_manifest: *498 + actions_runner_registration: *498 + scim: *498 + dependency_snapshots: *498 + dependency_sbom: *498 + code_scanning_autofix: *498 + copilot_usage_records: *498 required: - core - search - rate: *497 + rate: *498 required: - rate - resources @@ -69999,14 +70185,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *498 + schema: *499 examples: default-response: summary: Default response @@ -70515,7 +70701,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *499 + '301': *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70533,8 +70719,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#update-a-repository parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -70854,10 +71040,10 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *500 - '307': &501 + default: *501 + '307': &502 description: Temporary Redirect content: application/json: @@ -70886,8 +71072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -70909,7 +71095,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': *501 + '307': *502 '404': *6 '409': *121 x-github: @@ -70933,11 +71119,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *493 - *494 + - *495 - *17 - *19 - - &517 + - &518 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -70960,7 +71146,7 @@ paths: type: integer artifacts: type: array - items: &502 + items: &503 title: Artifact description: An artifact type: object @@ -71038,7 +71224,7 @@ paths: - expires_at - updated_at examples: - default: &518 + default: &519 value: total_count: 2 artifacts: @@ -71099,9 +71285,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#get-an-artifact parameters: - - *493 - *494 - - &503 + - *495 + - &504 name: artifact_id description: The unique identifier of the artifact. in: path @@ -71113,7 +71299,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: default: value: @@ -71151,9 +71337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#delete-an-artifact parameters: - - *493 - *494 - - *503 + - *495 + - *504 responses: '204': description: Response @@ -71177,9 +71363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#download-an-artifact parameters: - - *493 - *494 - - *503 + - *495 + - *504 - name: archive_format in: path required: true @@ -71189,11 +71375,11 @@ paths: '302': description: Response headers: - Location: &637 + Location: &638 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': &685 + '410': &686 description: Gone content: application/json: @@ -71218,14 +71404,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &504 + schema: &505 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -71258,13 +71444,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *504 + schema: *505 examples: selected_actions: *44 responses: @@ -71293,14 +71479,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &505 + schema: &506 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -71333,13 +71519,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *505 + schema: *506 examples: selected_actions: *46 responses: @@ -71370,14 +71556,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: default: value: @@ -71403,11 +71589,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: - - *493 - *494 + - *495 - *17 - *19 - - &507 + - &508 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 @@ -71441,7 +71627,7 @@ paths: description: Response content: application/json: - schema: &508 + schema: &509 title: Repository actions caches description: Repository actions caches type: object @@ -71483,7 +71669,7 @@ paths: - total_count - actions_caches examples: - default: &509 + default: &510 value: total_count: 1 actions_caches: @@ -71515,23 +71701,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: - - *493 - *494 + - *495 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *507 + - *508 responses: '200': description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: *509 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71551,8 +71737,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: - - *493 - *494 + - *495 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -71581,8 +71767,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: - - *493 - *494 + - *495 - *17 - *111 responses: @@ -71664,8 +71850,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: - - *493 - *494 + - *495 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -71817,9 +72003,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: - - *493 - *494 - - &510 + - *495 + - &511 name: job_id description: The unique identifier of the job. in: path @@ -71831,7 +72017,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &522 title: Job description: Information of a job execution in a workflow run type: object @@ -72138,9 +72324,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: - - *493 - *494 - - *510 + - *495 + - *511 responses: '302': description: Response @@ -72168,9 +72354,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: - - *493 - *494 - - *510 + - *495 + - *511 requestBody: required: false content: @@ -72196,7 +72382,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -72220,8 +72406,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: - - *493 - *494 + - *495 responses: '200': description: Status response @@ -72280,8 +72466,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -72320,7 +72506,7 @@ paths: description: Empty response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -72349,8 +72535,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-organization-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -72368,7 +72554,7 @@ paths: type: integer secrets: type: array - items: &523 + items: &524 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -72388,7 +72574,7 @@ paths: - created_at - updated_at examples: - default: &524 + default: &525 value: total_count: 2 secrets: @@ -72421,9 +72607,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-organization-variables parameters: - - *493 - *494 - - *311 + - *495 + - *312 - *19 responses: '200': @@ -72440,7 +72626,7 @@ paths: type: integer variables: type: array - items: &525 + items: &526 title: Actions Variable type: object properties: @@ -72470,7 +72656,7 @@ paths: - created_at - updated_at examples: - default: &526 + default: &527 value: total_count: 2 variables: @@ -72503,8 +72689,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -72513,11 +72699,11 @@ paths: schema: type: object properties: - enabled: &511 + enabled: &512 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *62 - selected_actions_url: *279 + selected_actions_url: *280 sha_pinning_required: *63 required: - enabled @@ -72548,8 +72734,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: - - *493 - *494 + - *495 responses: '204': description: Response @@ -72560,7 +72746,7 @@ paths: schema: type: object properties: - enabled: *511 + enabled: *512 allowed_actions: *62 sha_pinning_required: *63 required: @@ -72593,14 +72779,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &512 + schema: &513 type: object properties: access_level: @@ -72618,7 +72804,7 @@ paths: required: - access_level examples: - default: &513 + default: &514 value: access_level: organization x-github: @@ -72643,15 +72829,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *512 + schema: *513 examples: - default: *513 + default: *514 responses: '204': description: Response @@ -72675,14 +72861,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *281 + schema: *282 examples: default: value: @@ -72706,8 +72892,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: - - *493 - *494 + - *495 responses: '204': description: Empty response for successful settings update @@ -72717,7 +72903,7 @@ paths: required: true content: application/json: - schema: *282 + schema: *283 examples: default: summary: Set retention days @@ -72741,8 +72927,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -72750,7 +72936,7 @@ paths: application/json: schema: *64 examples: - default: *283 + default: *284 '404': *6 x-github: enabledForGitHubApps: true @@ -72769,8 +72955,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: - - *493 - *494 + - *495 responses: '204': description: Response @@ -72804,14 +72990,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *284 + schema: *285 examples: default: *65 '403': *29 @@ -72833,13 +73019,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *285 + schema: *286 examples: default: *65 responses: @@ -72865,8 +73051,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -72897,8 +73083,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: - - *493 - *494 + - *495 responses: '204': description: Response @@ -72930,14 +73116,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *288 + schema: *289 examples: default: *71 x-github: @@ -72960,8 +73146,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: - - *493 - *494 + - *495 responses: '204': description: Success response @@ -72972,7 +73158,7 @@ paths: required: true content: application/json: - schema: *289 + schema: *290 examples: default: *71 x-github: @@ -73001,8 +73187,8 @@ paths: in: query schema: type: string - - *493 - *494 + - *495 - *17 - *19 responses: @@ -73046,8 +73232,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -73055,9 +73241,9 @@ paths: application/json: schema: type: array - items: *293 + items: *294 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73079,8 +73265,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -73123,7 +73309,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *295 + '201': *296 '404': *6 '422': *7 '409': *121 @@ -73154,8 +73340,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: - - *493 - *494 + - *495 responses: '201': description: Response @@ -73163,7 +73349,7 @@ paths: application/json: schema: *81 examples: - default: *296 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73191,8 +73377,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: - - *493 - *494 + - *495 responses: '201': description: Response @@ -73200,7 +73386,7 @@ paths: application/json: schema: *81 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73222,8 +73408,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: - - *493 - *494 + - *495 - *77 responses: '200': @@ -73232,7 +73418,7 @@ paths: application/json: schema: *78 examples: - default: *298 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73253,8 +73439,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: - - *493 - *494 + - *495 - *77 responses: '204': @@ -73281,8 +73467,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: - - *493 - *494 + - *495 - *77 responses: '200': *83 @@ -73307,8 +73493,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: - - *493 - *494 + - *495 - *77 requestBody: required: true @@ -73357,8 +73543,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: - - *493 - *494 + - *495 - *77 requestBody: required: true @@ -73408,11 +73594,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: - - *493 - *494 + - *495 - *77 responses: - '200': *299 + '200': *300 '404': *6 x-github: githubCloudOnly: false @@ -73439,10 +73625,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: - - *493 - *494 + - *495 - *77 - - *300 + - *301 responses: '200': *83 '404': *6 @@ -73470,9 +73656,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: - - *493 - *494 - - &529 + - *495 + - &530 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. @@ -73480,7 +73666,7 @@ paths: required: false schema: type: string - - &530 + - &531 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -73488,7 +73674,7 @@ paths: required: false schema: type: string - - &531 + - &532 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -73497,7 +73683,7 @@ paths: required: false schema: type: string - - &532 + - &533 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 @@ -73524,7 +73710,7 @@ paths: - pending - *17 - *19 - - &533 + - &534 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)." @@ -73533,7 +73719,7 @@ paths: schema: type: string format: date-time - - &514 + - &515 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -73542,13 +73728,13 @@ paths: schema: type: boolean default: false - - &534 + - &535 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &535 + - &536 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -73571,7 +73757,7 @@ paths: type: integer workflow_runs: type: array - items: &515 + items: &516 title: Workflow Run description: An invocation of a workflow type: object @@ -73666,7 +73852,7 @@ paths: that triggered the run. type: array nullable: true - items: *236 + items: *237 created_at: type: string format: date-time @@ -73719,7 +73905,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &559 + properties: &560 id: type: string description: SHA for the commit @@ -73770,7 +73956,7 @@ paths: - name - email nullable: true - required: &560 + required: &561 - id - tree_id - message @@ -73778,8 +73964,8 @@ paths: - author - committer nullable: true - repository: *292 - head_repository: *292 + repository: *293 + head_repository: *293 head_repository_id: type: integer example: 5 @@ -73817,7 +74003,7 @@ paths: - workflow_url - pull_requests examples: - default: &536 + default: &537 value: total_count: 1 workflow_runs: @@ -74053,24 +74239,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *493 - *494 - - &516 + - *495 + - &517 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *514 + - *515 responses: '200': description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: &519 + default: &520 value: id: 30433642 name: Build @@ -74311,9 +74497,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '204': description: Response @@ -74336,9 +74522,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: - - *493 - *494 - - *516 + - *495 + - *517 responses: '200': description: Response @@ -74457,15 +74643,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: - - *493 - *494 - - *516 + - *495 + - *517 responses: '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -74492,12 +74678,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *493 - *494 - - *516 + - *495 + - *517 - *17 - *19 - - *517 + - *518 - *112 responses: '200': @@ -74514,9 +74700,9 @@ paths: type: integer artifacts: type: array - items: *502 + items: *503 examples: - default: *518 + default: *519 headers: Link: *47 x-github: @@ -74540,25 +74726,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *493 - *494 - - *516 - - &520 + - *495 + - *517 + - &521 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *514 + - *515 responses: '200': description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74581,10 +74767,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: - - *493 - *494 - - *516 - - *520 + - *495 + - *517 + - *521 - *17 - *19 responses: @@ -74602,9 +74788,9 @@ paths: type: integer jobs: type: array - items: *521 + items: *522 examples: - default: &522 + default: &523 value: total_count: 1 jobs: @@ -74717,10 +74903,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *493 - *494 - - *516 - - *520 + - *495 + - *517 + - *521 responses: '302': description: Response @@ -74748,15 +74934,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '202': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -74796,9 +74982,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: - - *493 - *494 - - *516 + - *495 + - *517 - *17 - *110 - *111 @@ -74969,9 +75155,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: - - *493 - *494 - - *516 + - *495 + - *517 requestBody: required: true content: @@ -75038,15 +75224,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '202': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75073,9 +75259,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: - - *493 - *494 - - *516 + - *495 + - *517 - 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 @@ -75105,9 +75291,9 @@ paths: type: integer jobs: type: array - items: *521 + items: *522 examples: - default: *522 + default: *523 headers: Link: *47 x-github: @@ -75132,9 +75318,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '302': description: Response @@ -75161,9 +75347,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '204': description: Response @@ -75190,9 +75376,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: - - *493 - *494 - - *516 + - *495 + - *517 responses: '200': description: Response @@ -75252,7 +75438,7 @@ paths: items: type: object properties: - type: &652 + type: &653 type: string description: The type of reviewer. enum: @@ -75262,7 +75448,7 @@ paths: reviewer: anyOf: - *4 - - *325 + - *326 required: - environment - wait_timer @@ -75337,9 +75523,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: - - *493 - *494 - - *516 + - *495 + - *517 requestBody: required: true content: @@ -75386,12 +75572,12 @@ paths: application/json: schema: type: array - items: &639 + items: &640 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &925 + properties: &926 url: type: string format: uri @@ -75474,9 +75660,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - required: &926 + properties: *227 + required: *228 + required: &927 - id - node_id - sha @@ -75492,7 +75678,7 @@ paths: - created_at - updated_at examples: - default: &640 + default: &641 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -75548,9 +75734,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *493 - *494 - - *516 + - *495 + - *517 requestBody: required: false content: @@ -75571,7 +75757,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75594,9 +75780,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: - - *493 - *494 - - *516 + - *495 + - *517 requestBody: required: false content: @@ -75617,7 +75803,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75650,9 +75836,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '200': description: Response @@ -75789,8 +75975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -75808,9 +75994,9 @@ paths: type: integer secrets: type: array - items: *523 + items: *524 examples: - default: *524 + default: *525 headers: Link: *47 x-github: @@ -75835,16 +76021,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-public-key parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75866,17 +76052,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: &537 + default: &538 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -75902,9 +76088,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 requestBody: required: true content: @@ -75935,7 +76121,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75961,9 +76147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '204': description: Response @@ -75988,9 +76174,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-variables parameters: - - *493 - *494 - - *311 + - *495 + - *312 - *19 responses: '200': @@ -76007,9 +76193,9 @@ paths: type: integer variables: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -76032,8 +76218,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-a-repository-variable parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -76060,7 +76246,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -76085,17 +76271,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: &538 + default: &539 value: name: USERNAME value: octocat @@ -76121,9 +76307,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 requestBody: required: true content: @@ -76165,9 +76351,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 responses: '204': description: Response @@ -76192,8 +76378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#list-repository-workflows parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -76211,7 +76397,7 @@ paths: type: integer workflows: type: array - items: &527 + items: &528 title: Workflow description: A GitHub Actions workflow type: object @@ -76318,9 +76504,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-a-workflow parameters: - - *493 - *494 - - &528 + - *495 + - &529 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -76335,7 +76521,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: default: value: @@ -76368,9 +76554,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#disable-a-workflow parameters: - - *493 - *494 - - *528 + - *495 + - *529 responses: '204': description: Response @@ -76395,9 +76581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *493 - *494 - - *528 + - *495 + - *529 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -76484,9 +76670,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#enable-a-workflow parameters: - - *493 - *494 - - *528 + - *495 + - *529 responses: '204': description: Response @@ -76513,19 +76699,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: - - *493 - *494 - - *528 + - *495 - *529 - *530 - *531 - *532 + - *533 - *17 - *19 - - *533 - - *514 - *534 + - *515 - *535 + - *536 responses: '200': description: Response @@ -76541,9 +76727,9 @@ paths: type: integer workflow_runs: type: array - items: *515 + items: *516 examples: - default: *536 + default: *537 headers: Link: *47 x-github: @@ -76576,9 +76762,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-workflow-usage parameters: - - *493 - *494 - - *528 + - *495 + - *529 responses: '200': description: Response @@ -76639,8 +76825,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-activities parameters: - - *493 - *494 + - *495 - *112 - *17 - *110 @@ -76809,8 +76995,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-organization-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -76828,9 +77014,9 @@ paths: type: integer secrets: type: array - items: *523 + items: *524 examples: - default: *524 + default: *525 headers: Link: *47 x-github: @@ -76854,9 +77040,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-organization-variables parameters: - - *493 - *494 - - *311 + - *495 + - *312 - *19 responses: '200': @@ -76873,9 +77059,9 @@ paths: type: integer variables: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -76900,8 +77086,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -76919,9 +77105,9 @@ paths: type: integer secrets: type: array - items: *523 + items: *524 examples: - default: *524 + default: *525 headers: Link: *47 x-github: @@ -76946,16 +77132,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-public-key parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76977,17 +77163,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: *537 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77009,9 +77195,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 requestBody: required: true content: @@ -77042,7 +77228,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -77068,9 +77254,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '204': description: Response @@ -77095,9 +77281,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-variables parameters: - - *493 - *494 - - *311 + - *495 + - *312 - *19 responses: '200': @@ -77114,9 +77300,9 @@ paths: type: integer variables: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -77139,8 +77325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#create-a-repository-variable parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -77167,7 +77353,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -77192,17 +77378,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *538 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77223,9 +77409,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 requestBody: required: true content: @@ -77267,9 +77453,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 responses: '204': description: Response @@ -77290,8 +77476,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#list-assignees parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -77328,8 +77514,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: - - *493 - *494 + - *495 - name: assignee in: path required: true @@ -77365,8 +77551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#create-an-attestation parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -77476,8 +77662,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#list-attestations parameters: - - *493 - *494 + - *495 - *17 - *110 - *111 @@ -77534,7 +77720,7 @@ paths: initiator: type: string examples: - default: *539 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77554,8 +77740,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -77563,7 +77749,7 @@ paths: application/json: schema: type: array - items: &540 + items: &541 title: Autolink reference description: An autolink reference. type: object @@ -77617,8 +77803,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -77657,9 +77843,9 @@ paths: description: response content: application/json: - schema: *540 + schema: *541 examples: - default: &541 + default: &542 value: id: 1 key_prefix: TICKET- @@ -77690,9 +77876,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: - - *493 - *494 - - &542 + - *495 + - &543 name: autolink_id description: The unique identifier of the autolink. in: path @@ -77704,9 +77890,9 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: *541 + default: *542 '404': *6 x-github: githubCloudOnly: false @@ -77726,9 +77912,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: - - *493 - *494 - - *542 + - *495 + - *543 responses: '204': description: Response @@ -77752,8 +77938,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: - - *493 - *494 + - *495 responses: '200': description: Response if Dependabot is enabled @@ -77801,8 +77987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-dependabot-security-updates parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -77823,8 +78009,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-dependabot-security-updates parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -77844,8 +78030,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#list-branches parameters: - - *493 - *494 + - *495 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -77883,7 +78069,7 @@ paths: - url protected: type: boolean - protection: &544 + protection: &545 title: Branch Protection description: Branch Protection type: object @@ -77925,7 +78111,7 @@ paths: required: - contexts - checks - enforce_admins: &547 + enforce_admins: &548 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -77940,7 +78126,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &549 + required_pull_request_reviews: &550 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -77961,7 +78147,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *325 + items: *326 apps: description: The list of apps with review dismissal access. @@ -77990,7 +78176,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *325 + items: *326 apps: description: The list of apps allowed to bypass pull request requirements. @@ -78016,7 +78202,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &546 + restrictions: &547 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -78079,7 +78265,7 @@ paths: type: string teams: type: array - items: *325 + items: *326 apps: type: array items: @@ -78293,9 +78479,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#get-a-branch parameters: - - *493 - *494 - - &545 + - *495 + - &546 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). @@ -78309,14 +78495,14 @@ paths: description: Response content: application/json: - schema: &555 + schema: &556 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &609 + commit: &610 title: Commit description: Commit type: object @@ -78350,7 +78536,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &543 + properties: &544 name: type: string example: '"Chris Wanstrath"' @@ -78366,7 +78552,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *543 + properties: *544 nullable: true message: type: string @@ -78387,7 +78573,7 @@ paths: required: - sha - url - verification: &670 + verification: &671 title: Verification type: object properties: @@ -78421,12 +78607,12 @@ paths: nullable: true oneOf: - *4 - - *303 + - *304 committer: nullable: true oneOf: - *4 - - *303 + - *304 parents: type: array items: @@ -78457,7 +78643,7 @@ paths: type: integer files: type: array - items: &622 + items: &623 title: Diff Entry description: Diff Entry type: object @@ -78541,7 +78727,7 @@ paths: - self protected: type: boolean - protection: *544 + protection: *545 protection_url: type: string format: uri @@ -78648,7 +78834,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *499 + '301': *500 '404': *6 x-github: githubCloudOnly: false @@ -78670,15 +78856,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *544 + schema: *545 examples: default: value: @@ -78872,9 +79058,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -79129,7 +79315,7 @@ paths: url: type: string format: uri - required_status_checks: &552 + required_status_checks: &553 title: Status Check Policy description: Status Check Policy type: object @@ -79205,7 +79391,7 @@ paths: items: *4 teams: type: array - items: *325 + items: *326 apps: type: array items: *5 @@ -79223,7 +79409,7 @@ paths: items: *4 teams: type: array - items: *325 + items: *326 apps: type: array items: *5 @@ -79281,7 +79467,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *546 + restrictions: *547 required_conversation_resolution: type: object properties: @@ -79393,9 +79579,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -79420,17 +79606,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: &548 + default: &549 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -79452,17 +79638,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79481,9 +79667,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -79508,17 +79694,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: &550 + default: &551 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -79614,9 +79800,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -79714,9 +79900,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: *550 + default: *551 '422': *15 x-github: githubCloudOnly: false @@ -79737,9 +79923,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -79766,17 +79952,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: &551 + default: &552 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -79799,17 +79985,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *551 + default: *552 '404': *6 x-github: githubCloudOnly: false @@ -79829,9 +80015,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -79856,17 +80042,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-status-checks-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *552 + schema: *553 examples: - default: &553 + default: &554 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -79892,9 +80078,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-status-check-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -79946,9 +80132,9 @@ paths: description: Response content: application/json: - schema: *552 + schema: *553 examples: - default: *553 + default: *554 '404': *6 '422': *15 x-github: @@ -79970,9 +80156,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -79996,9 +80182,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response @@ -80032,9 +80218,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-status-check-contexts parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -80101,9 +80287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-status-check-contexts parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -80167,9 +80353,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: content: application/json: @@ -80235,15 +80421,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *546 + schema: *547 examples: default: value: @@ -80334,9 +80520,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -80359,9 +80545,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: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response @@ -80371,7 +80557,7 @@ paths: type: array items: *5 examples: - default: &554 + default: &555 value: - id: 1 slug: octoapp @@ -80428,9 +80614,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80464,7 +80650,7 @@ paths: type: array items: *5 examples: - default: *554 + default: *555 '422': *15 x-github: githubCloudOnly: false @@ -80485,9 +80671,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80521,7 +80707,7 @@ paths: type: array items: *5 examples: - default: *554 + default: *555 '422': *15 x-github: githubCloudOnly: false @@ -80542,9 +80728,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80578,7 +80764,7 @@ paths: type: array items: *5 examples: - default: *554 + default: *555 '422': *15 x-github: githubCloudOnly: false @@ -80600,9 +80786,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: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response @@ -80610,9 +80796,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 '404': *6 x-github: githubCloudOnly: false @@ -80632,9 +80818,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -80670,9 +80856,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -80693,9 +80879,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -80731,9 +80917,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -80754,9 +80940,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: content: application/json: @@ -80791,9 +80977,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -80815,9 +81001,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: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response @@ -80851,9 +81037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80911,9 +81097,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80971,9 +81157,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -81033,9 +81219,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#rename-a-branch parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -81057,7 +81243,7 @@ paths: description: Response content: application/json: - schema: *555 + schema: *556 examples: default: value: @@ -81171,8 +81357,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *493 - *494 + - *495 - *105 - *106 - *107 @@ -81186,9 +81372,9 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: - default: *321 + default: *322 '404': *6 '500': *40 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -81208,8 +81394,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *493 - *494 + - *495 - name: bypass_request_number in: path required: true @@ -81223,7 +81409,7 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: default: value: @@ -81282,8 +81468,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *493 - *494 + - *495 - *105 - *106 - *107 @@ -81297,9 +81483,9 @@ paths: application/json: schema: type: array - items: *323 + items: *324 examples: - default: *324 + default: *325 '404': *6 '403': *29 '500': *40 @@ -81323,8 +81509,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *493 - *494 + - *495 - name: bypass_request_number in: path required: true @@ -81336,7 +81522,7 @@ paths: description: A single bypass request. content: application/json: - schema: *323 + schema: *324 examples: default: value: @@ -81394,8 +81580,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *493 - *494 + - *495 - name: bypass_request_number in: path required: true @@ -81466,8 +81652,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *493 - *494 + - *495 - name: bypass_response_id in: path required: true @@ -81500,8 +81686,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#create-a-check-run parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -81780,7 +81966,7 @@ paths: description: Response content: application/json: - schema: &556 + schema: &557 title: CheckRun description: A check performed on the code of a given code change type: object @@ -81891,16 +82077,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *236 - deployment: &918 + items: *237 + deployment: &919 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -81967,8 +82153,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 required: - id - node_id @@ -82180,9 +82366,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#get-a-check-run parameters: - - *493 - *494 - - &557 + - *495 + - &558 name: check_run_id description: The unique identifier of the check run. in: path @@ -82194,9 +82380,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *557 examples: - default: &558 + default: &559 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -82296,9 +82482,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#update-a-check-run parameters: - - *493 - *494 - - *557 + - *495 + - *558 requestBody: required: true content: @@ -82538,9 +82724,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *557 examples: - default: *558 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82560,9 +82746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-run-annotations parameters: - - *493 - *494 - - *557 + - *495 + - *558 - *17 - *19 responses: @@ -82657,15 +82843,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#rerequest-a-check-run parameters: - - *493 - *494 - - *557 + - *495 + - *558 responses: '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -82703,8 +82889,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#create-a-check-suite parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -82726,7 +82912,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &561 + schema: &562 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -82790,7 +82976,7 @@ paths: nullable: true pull_requests: type: array - items: *236 + items: *237 nullable: true app: title: GitHub app @@ -82801,9 +82987,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - repository: *292 + properties: *227 + required: *228 + repository: *293 created_at: type: string format: date-time @@ -82812,12 +82998,12 @@ paths: type: string format: date-time nullable: true - head_commit: &951 + head_commit: &952 title: Simple Commit description: A commit. type: object - properties: *559 - required: *560 + properties: *560 + required: *561 latest_check_runs_count: type: integer check_runs_url: @@ -82845,7 +83031,7 @@ paths: - check_runs_url - pull_requests examples: - default: &562 + default: &563 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -83136,9 +83322,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83157,8 +83343,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -83219,7 +83405,7 @@ paths: required: - app_id - setting - repository: *292 + repository: *293 examples: default: value: @@ -83467,9 +83653,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#get-a-check-suite parameters: - - *493 - *494 - - &563 + - *495 + - &564 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -83481,9 +83667,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83506,17 +83692,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: - - *493 - *494 - - *563 - - &615 + - *495 + - *564 + - &616 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &616 + - &617 name: status description: Returns check runs with the specified `status`. in: query @@ -83555,9 +83741,9 @@ paths: type: integer check_runs: type: array - items: *556 + items: *557 examples: - default: &617 + default: &618 value: total_count: 1 check_runs: @@ -83659,15 +83845,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#rerequest-a-check-suite parameters: - - *493 - *494 - - *563 + - *495 + - *564 responses: '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -83694,21 +83880,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: - - *493 - *494 - - *329 + - *495 - *330 + - *331 - *19 - *17 - - &579 + - &580 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: *564 - - &580 + schema: *565 + - &581 name: pr description: The number of the pull request for the results you want to list. in: query @@ -83733,13 +83919,13 @@ paths: be returned. in: query required: false - schema: *331 + schema: *332 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *565 + schema: *566 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -83763,7 +83949,7 @@ paths: updated_at: *142 url: *139 html_url: *140 - instances_url: *566 + instances_url: *567 state: *115 fixed_at: *144 dismissed_by: @@ -83774,11 +83960,11 @@ paths: required: *21 nullable: true dismissed_at: *143 - dismissed_reason: *567 - dismissed_comment: *568 - rule: *569 - tool: *570 - most_recent_instance: *571 + dismissed_reason: *568 + dismissed_comment: *569 + rule: *570 + tool: *571 + most_recent_instance: *572 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -83904,7 +84090,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &572 + '403': &573 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -83931,9 +84117,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: - - *493 - *494 - - &573 + - *495 + - &574 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -83947,7 +84133,7 @@ paths: description: Response content: application/json: - schema: &574 + schema: &575 type: object properties: number: *134 @@ -83955,7 +84141,7 @@ paths: updated_at: *142 url: *139 html_url: *140 - instances_url: *566 + instances_url: *567 state: *115 fixed_at: *144 dismissed_by: @@ -83966,8 +84152,8 @@ paths: required: *21 nullable: true dismissed_at: *143 - dismissed_reason: *567 - dismissed_comment: *568 + dismissed_reason: *568 + dismissed_comment: *569 rule: type: object properties: @@ -84021,8 +84207,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *570 - most_recent_instance: *571 + tool: *571 + most_recent_instance: *572 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -84121,7 +84307,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -84141,9 +84327,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: - - *493 - *494 - - *573 + - *495 + - *574 requestBody: required: true content: @@ -84158,8 +84344,8 @@ paths: enum: - open - dismissed - dismissed_reason: *567 - dismissed_comment: *568 + dismissed_reason: *568 + dismissed_comment: *569 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -84187,7 +84373,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: default: value: @@ -84263,7 +84449,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &578 + '403': &579 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -84290,15 +84476,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: - - *493 - *494 - - *573 + - *495 + - *574 responses: '200': description: Response content: application/json: - schema: &575 + schema: &576 type: object properties: status: @@ -84324,13 +84510,13 @@ paths: - description - started_at examples: - default: &576 + default: &577 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &577 + '400': &578 description: Bad Request content: application/json: @@ -84341,7 +84527,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': *572 + '403': *573 '404': *6 '500': *40 x-github: @@ -84366,29 +84552,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: - - *493 - *494 - - *573 + - *495 + - *574 responses: '200': description: OK content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 '202': description: Accepted content: application/json: - schema: *575 + schema: *576 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *577 + '400': *578 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -84420,9 +84606,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: - - *493 - *494 - - *573 + - *495 + - *574 requestBody: required: false content: @@ -84467,8 +84653,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *577 - '403': *578 + '400': *578 + '403': *579 '404': *6 '422': description: Unprocessable Entity @@ -84492,13 +84678,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: - - *493 - *494 - - *573 + - *495 + - *574 - *19 - *17 - - *579 - *580 + - *581 responses: '200': description: Response @@ -84509,10 +84695,10 @@ paths: items: type: object properties: - ref: *564 - analysis_key: *581 - environment: *582 - category: *583 + ref: *565 + analysis_key: *582 + environment: *583 + category: *584 state: type: string description: State of a code scanning alert instance. @@ -84527,7 +84713,7 @@ paths: properties: text: type: string - location: *584 + location: *585 html_url: type: string classifications: @@ -84535,7 +84721,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: *585 + items: *586 examples: default: value: @@ -84572,7 +84758,7 @@ paths: end_column: 50 classifications: - source - '403': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -84606,25 +84792,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: - - *493 - *494 - - *329 + - *495 - *330 + - *331 - *19 - *17 - - *580 + - *581 - 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: *564 + schema: *565 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &586 + schema: &587 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -84645,23 +84831,23 @@ paths: application/json: schema: type: array - items: &587 + items: &588 type: object properties: - ref: *564 - commit_sha: &595 + ref: *565 + commit_sha: &596 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: *581 + analysis_key: *582 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *583 + category: *584 error: type: string example: error reading field xyz @@ -84685,8 +84871,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *586 - tool: *570 + sarif_id: *587 + tool: *571 deletable: type: boolean warning: @@ -84747,7 +84933,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -84783,8 +84969,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: - - *493 - *494 + - *495 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -84797,7 +84983,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: response: summary: application/json response @@ -84851,7 +85037,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *572 + '403': *573 '404': *6 '422': description: Response if analysis could not be processed @@ -84938,8 +85124,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: - - *493 - *494 + - *495 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -84992,7 +85178,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': *578 + '403': *579 '404': *6 '503': *203 x-github: @@ -85014,8 +85200,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -85023,7 +85209,7 @@ paths: application/json: schema: type: array - items: &588 + items: &589 title: CodeQL Database description: A CodeQL database. type: object @@ -85134,7 +85320,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': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -85163,8 +85349,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: - - *493 - *494 + - *495 - name: language in: path description: The language of the CodeQL database. @@ -85176,7 +85362,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: default: value: @@ -85208,9 +85394,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': &626 + '302': &627 description: Found - '403': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -85232,8 +85418,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *493 - *494 + - *495 - name: language in: path description: The language of the CodeQL database. @@ -85243,7 +85429,7 @@ paths: responses: '204': description: Response - '403': *578 + '403': *579 '404': *6 '503': *203 x-github: @@ -85271,8 +85457,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -85281,7 +85467,7 @@ paths: type: object additionalProperties: false properties: - language: &589 + language: &590 type: string description: The language targeted by the CodeQL query enum: @@ -85361,7 +85547,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &593 + schema: &594 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -85371,7 +85557,7 @@ paths: description: The ID of the variant analysis. controller_repo: *122 actor: *4 - query_language: *589 + query_language: *590 query_pack_url: type: string description: The download url for the query pack. @@ -85418,7 +85604,7 @@ paths: items: type: object properties: - repository: &590 + repository: &591 title: Repository Identifier description: Repository Identifier type: object @@ -85454,7 +85640,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &594 + analysis_status: &595 type: string description: The new status of the CodeQL variant analysis repository task. @@ -85486,7 +85672,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &591 + access_mismatch_repos: &592 type: object properties: repository_count: @@ -85500,7 +85686,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: *590 + items: *591 required: - repository_count - repositories @@ -85522,8 +85708,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *591 - over_limit_repos: *591 + no_codeql_db_repos: *592 + over_limit_repos: *592 required: - access_mismatch_repos - not_found_repos @@ -85539,7 +85725,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &592 + value: &593 summary: Default response value: id: 1 @@ -85685,10 +85871,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *592 + value: *593 repository_lists: summary: Response for a successful variant analysis submission - value: *592 + value: *593 '404': *6 '422': description: Unable to process variant analysis submission @@ -85716,8 +85902,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: - - *493 - *494 + - *495 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -85729,9 +85915,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *594 examples: - default: *592 + default: *593 '404': *6 '503': *203 x-github: @@ -85754,7 +85940,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: - - *493 + - *494 - name: repo in: path description: The name of the controller repository. @@ -85789,7 +85975,7 @@ paths: type: object properties: repository: *122 - analysis_status: *594 + analysis_status: *595 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -85914,8 +86100,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -86000,7 +86186,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -86021,8 +86207,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -86089,7 +86275,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -86114,7 +86300,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *578 + '403': *579 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -86185,8 +86371,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -86194,7 +86380,7 @@ paths: schema: type: object properties: - commit_sha: *595 + commit_sha: *596 ref: type: string description: |- @@ -86252,7 +86438,7 @@ paths: schema: type: object properties: - id: *586 + id: *587 url: type: string description: The REST API URL for checking the status of the upload. @@ -86266,7 +86452,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': *578 + '403': *579 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -86289,8 +86475,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: - - *493 - *494 + - *495 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -86336,7 +86522,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': *572 + '403': *573 '404': description: Not Found if the sarif id does not match any upload '503': *203 @@ -86361,8 +86547,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -86443,8 +86629,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-codeowners-errors parameters: - - *493 - *494 + - *495 - 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 @@ -86564,8 +86750,8 @@ paths: parameters: - *17 - *19 - - *493 - *494 + - *495 responses: '200': description: Response @@ -86581,7 +86767,7 @@ paths: type: integer codespaces: type: array - items: *405 + items: *406 examples: default: value: @@ -86879,8 +87065,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -86943,17 +87129,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '400': *14 '401': *25 '403': *29 @@ -86982,8 +87168,8 @@ paths: parameters: - *17 - *19 - - *493 - *494 + - *495 responses: '200': description: Response @@ -87047,8 +87233,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: - - *493 - *494 + - *495 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -87083,14 +87269,14 @@ paths: type: integer machines: type: array - items: &861 + items: &862 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *597 - required: *598 + properties: *598 + required: *599 examples: - default: &862 + default: &863 value: total_count: 2 machines: @@ -87130,8 +87316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *493 - *494 + - *495 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -87215,8 +87401,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: - - *493 - *494 + - *495 - 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 @@ -87282,8 +87468,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -87301,7 +87487,7 @@ paths: type: integer secrets: type: array - items: &602 + items: &603 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -87321,7 +87507,7 @@ paths: - created_at - updated_at examples: - default: *599 + default: *600 headers: Link: *47 x-github: @@ -87344,16 +87530,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: *601 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -87373,17 +87559,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '200': description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87403,9 +87589,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: - - *493 - *494 - - *302 + - *495 + - *303 requestBody: required: true content: @@ -87433,7 +87619,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -87457,9 +87643,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '204': description: Response @@ -87487,8 +87673,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *493 - *494 + - *495 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -87530,7 +87716,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &604 + properties: &605 login: type: string example: octocat @@ -87623,7 +87809,7 @@ paths: user_view_type: type: string example: public - required: &605 + required: &606 - avatar_url - events_url - followers_url @@ -87697,8 +87883,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: - - *493 - *494 + - *495 - *151 responses: '204': @@ -87745,8 +87931,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *493 - *494 + - *495 - *151 requestBody: required: false @@ -87773,7 +87959,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &683 + schema: &684 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -87784,7 +87970,7 @@ paths: example: 42 type: integer format: int64 - repository: *292 + repository: *293 invitee: title: Simple User description: A GitHub user. @@ -87962,7 +88148,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *267 + schema: *268 '403': *29 x-github: triggersNotification: true @@ -88002,8 +88188,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *493 - *494 + - *495 - *151 responses: '204': @@ -88035,8 +88221,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *493 - *494 + - *495 - *151 responses: '200': @@ -88057,8 +88243,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *604 - required: *605 + properties: *605 + required: *606 nullable: true required: - permission @@ -88113,8 +88299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -88124,7 +88310,7 @@ paths: application/json: schema: type: array - items: &606 + items: &607 title: Commit Comment description: Commit Comment type: object @@ -88165,8 +88351,8 @@ paths: updated_at: type: string format: date-time - author_association: *228 - reactions: *229 + author_association: *229 + reactions: *230 required: - url - html_url @@ -88182,7 +88368,7 @@ paths: - created_at - updated_at examples: - default: &611 + default: &612 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -88241,17 +88427,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#get-a-commit-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '200': description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: &612 + default: &613 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -88308,9 +88494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#update-a-commit-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -88332,7 +88518,7 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: default: value: @@ -88383,9 +88569,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#delete-a-commit-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '204': description: Response @@ -88406,9 +88592,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 - 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. @@ -88434,7 +88620,7 @@ paths: application/json: schema: type: array - items: &607 + items: &608 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -88477,7 +88663,7 @@ paths: - content - created_at examples: - default: &688 + default: &689 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -88522,9 +88708,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -88556,9 +88742,9 @@ paths: description: Reaction exists content: application/json: - schema: *607 + schema: *608 examples: - default: &608 + default: &609 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -88587,9 +88773,9 @@ paths: description: Reaction created content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -88611,10 +88797,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *493 - *494 - - *247 - - &689 + - *495 + - *248 + - &690 name: reaction_id description: The unique identifier of the reaction. in: path @@ -88669,8 +88855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-commits parameters: - - *493 - *494 + - *495 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -88726,9 +88912,9 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: - default: &758 + default: &759 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -88822,9 +89008,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-branches-for-head-commit parameters: - - *493 - *494 - - &610 + - *495 + - &611 name: commit_sha description: The SHA of the commit. in: path @@ -88896,9 +89082,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments parameters: - - *493 - *494 - - *610 + - *495 + - *611 - *17 - *19 responses: @@ -88908,9 +89094,9 @@ paths: application/json: schema: type: array - items: *606 + items: *607 examples: - default: *611 + default: *612 headers: Link: *47 x-github: @@ -88938,9 +89124,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#create-a-commit-comment parameters: - - *493 - *494 - - *610 + - *495 + - *611 requestBody: required: true content: @@ -88975,9 +89161,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: *612 + default: *613 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -89005,9 +89191,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: - - *493 - *494 - - *610 + - *495 + - *611 - *17 - *19 responses: @@ -89017,9 +89203,9 @@ paths: application/json: schema: type: array - items: *613 + items: *614 examples: - default: &750 + default: &751 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -89556,11 +89742,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#get-a-commit parameters: - - *493 - *494 + - *495 - *19 - *17 - - &614 + - &615 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)" @@ -89575,9 +89761,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: - default: &735 + default: &736 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -89665,7 +89851,7 @@ paths: schema: type: string examples: - default: &623 + default: &624 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -89678,7 +89864,7 @@ paths: schema: type: string examples: - default: &624 + default: &625 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -89731,11 +89917,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: - - *493 - *494 - - *614 + - *495 - *615 - *616 + - *617 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -89769,9 +89955,9 @@ paths: type: integer check_runs: type: array - items: *556 + items: *557 examples: - default: *617 + default: *618 headers: Link: *47 x-github: @@ -89796,9 +89982,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: - - *493 - *494 - - *614 + - *495 + - *615 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -89806,7 +89992,7 @@ paths: schema: type: integer example: 1 - - *615 + - *616 - *17 - *19 responses: @@ -89824,7 +90010,7 @@ paths: type: integer check_suites: type: array - items: *561 + items: *562 examples: default: value: @@ -90024,9 +90210,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: - - *493 - *494 - - *614 + - *495 + - *615 - *17 - *19 responses: @@ -90093,7 +90279,7 @@ paths: type: string total_count: type: integer - repository: *292 + repository: *293 commit_url: type: string format: uri @@ -90224,9 +90410,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *493 - *494 - - *614 + - *495 + - *615 - *17 - *19 responses: @@ -90236,7 +90422,7 @@ paths: application/json: schema: type: array - items: &813 + items: &814 title: Status description: The status of a commit. type: object @@ -90317,7 +90503,7 @@ paths: site_admin: false headers: Link: *47 - '301': *499 + '301': *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90345,8 +90531,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/community#get-community-profile-metrics parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -90375,20 +90561,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *618 - required: *619 + properties: *619 + required: *620 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &620 + properties: &621 url: type: string format: uri html_url: type: string format: uri - required: &621 + required: &622 - url - html_url nullable: true @@ -90396,32 +90582,32 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true contributing: title: Community Health File type: object - properties: *620 - required: *621 + properties: *621 + required: *622 nullable: true readme: title: Community Health File type: object - properties: *620 - required: *621 + properties: *621 + required: *622 nullable: true issue_template: title: Community Health File type: object - properties: *620 - required: *621 + properties: *621 + required: *622 nullable: true pull_request_template: title: Community Health File type: object - properties: *620 - required: *621 + properties: *621 + required: *622 nullable: true required: - code_of_conduct @@ -90548,8 +90734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#compare-two-commits parameters: - - *493 - *494 + - *495 - *19 - *17 - name: basehead @@ -90592,8 +90778,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *609 - merge_base_commit: *609 + base_commit: *610 + merge_base_commit: *610 status: type: string enum: @@ -90613,10 +90799,10 @@ paths: example: 6 commits: type: array - items: *609 + items: *610 files: type: array - items: *622 + items: *623 required: - url - html_url @@ -90862,12 +91048,12 @@ paths: schema: type: string examples: - default: *623 + default: *624 application/vnd.github.patch: schema: type: string examples: - default: *624 + default: *625 '404': *6 '500': *40 '503': *203 @@ -90912,8 +91098,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-repository-content parameters: - - *493 - *494 + - *495 - name: path description: path parameter in: path @@ -91073,7 +91259,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &625 + response-if-content-is-a-file-github-object: &626 summary: Response if content is a file value: type: file @@ -91205,7 +91391,7 @@ paths: - size - type - url - - &763 + - &764 title: Content File description: Content File type: object @@ -91406,7 +91592,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *625 + response-if-content-is-a-file: *626 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -91475,7 +91661,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *626 + '302': *627 '304': *37 x-github: githubCloudOnly: false @@ -91498,8 +91684,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#create-or-update-file-contents parameters: - - *493 - *494 + - *495 - name: path description: path parameter in: path @@ -91592,7 +91778,7 @@ paths: description: Response content: application/json: - schema: &627 + schema: &628 title: File Commit description: File Commit type: object @@ -91744,7 +91930,7 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: example-for-creating-a-file: value: @@ -91798,7 +91984,7 @@ paths: schema: oneOf: - *3 - - &665 + - &666 description: Repository rule violation was detected type: object properties: @@ -91819,7 +92005,7 @@ paths: items: type: object properties: - placeholder_id: &805 + placeholder_id: &806 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -91851,8 +92037,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#delete-a-file parameters: - - *493 - *494 + - *495 - name: path description: path parameter in: path @@ -91913,7 +92099,7 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: default: value: @@ -91968,8 +92154,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-contributors parameters: - - *493 - *494 + - *495 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -92098,8 +92284,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -92231,24 +92417,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *493 - *494 - - *350 + - *495 - *351 - *352 - *353 - *354 + - *355 - 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 - - *355 - - *628 - *356 + - *629 - *357 - *358 + - *359 - *112 - *110 - *111 @@ -92260,7 +92446,7 @@ paths: application/json: schema: type: array - items: &632 + items: &633 type: object description: A Dependabot alert. properties: @@ -92307,7 +92493,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *629 + security_advisory: *630 security_vulnerability: *138 url: *139 html_url: *140 @@ -92338,8 +92524,8 @@ paths: nullable: true maxLength: 280 fixed_at: *144 - auto_dismissed_at: *630 - dismissal_request: *631 + auto_dismissed_at: *631 + dismissal_request: *632 assignees: type: array description: The users assigned to this alert. @@ -92594,9 +92780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *493 - *494 - - &633 + - *495 + - &634 name: alert_number in: path description: |- @@ -92611,7 +92797,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *633 examples: default: value: @@ -92743,9 +92929,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *493 - *494 - - *633 + - *495 + - *634 requestBody: required: true content: @@ -92818,7 +93004,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *633 examples: default: value: @@ -92948,8 +93134,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-repository-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -92967,7 +93153,7 @@ paths: type: integer secrets: type: array - items: &636 + items: &637 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -93020,16 +93206,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93049,15 +93235,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '200': description: Response content: application/json: - schema: *636 + schema: *637 examples: default: value: @@ -93083,9 +93269,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 requestBody: required: true content: @@ -93113,7 +93299,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -93137,9 +93323,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '204': description: Response @@ -93161,8 +93347,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: - - *493 - *494 + - *495 - 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 @@ -93325,8 +93511,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -93564,8 +93750,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: - - *493 - *494 + - *495 - name: sbom_uuid in: path required: true @@ -93576,7 +93762,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *637 + Location: *638 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -93597,8 +93783,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: - - *493 - *494 + - *495 responses: '201': description: Response @@ -93636,8 +93822,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -93712,7 +93898,7 @@ paths: - version - url additionalProperties: false - metadata: &638 + metadata: &639 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -93745,7 +93931,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *638 + metadata: *639 resolved: type: object description: A collection of resolved package dependencies. @@ -93758,7 +93944,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *638 + metadata: *639 relationship: type: string description: A notation of whether a dependency is requested @@ -93887,8 +94073,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#list-deployments parameters: - - *493 - *494 + - *495 - name: sha description: The SHA recorded at creation time. in: query @@ -93928,9 +94114,9 @@ paths: application/json: schema: type: array - items: *639 + items: *640 examples: - default: *640 + default: *641 headers: Link: *47 x-github: @@ -93996,8 +94182,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#create-a-deployment parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -94078,7 +94264,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *640 examples: simple-example: summary: Simple example @@ -94151,9 +94337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#get-a-deployment parameters: - - *493 - *494 - - &641 + - *495 + - &642 name: deployment_id description: deployment_id parameter in: path @@ -94165,7 +94351,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *640 examples: default: value: @@ -94230,9 +94416,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#delete-a-deployment parameters: - - *493 - *494 - - *641 + - *495 + - *642 responses: '204': description: Response @@ -94254,9 +94440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#list-deployment-statuses parameters: - - *493 - *494 - - *641 + - *495 + - *642 - *17 - *19 responses: @@ -94266,7 +94452,7 @@ paths: application/json: schema: type: array - items: &642 + items: &643 title: Deployment Status description: The status of a deployment. type: object @@ -94357,8 +94543,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 required: - id - node_id @@ -94427,9 +94613,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#create-a-deployment-status parameters: - - *493 - *494 - - *641 + - *495 + - *642 requestBody: required: true content: @@ -94504,9 +94690,9 @@ paths: description: Response content: application/json: - schema: *642 + schema: *643 examples: - default: &643 + default: &644 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -94562,9 +94748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#get-a-deployment-status parameters: - - *493 - *494 - - *641 + - *495 + - *642 - name: status_id in: path required: true @@ -94575,9 +94761,9 @@ paths: description: Response content: application/json: - schema: *642 + schema: *643 examples: - default: *643 + default: *644 '404': *6 x-github: githubCloudOnly: false @@ -94604,12 +94790,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 - - *644 + - *495 - *645 - *646 - *647 + - *648 - *17 - *19 responses: @@ -94619,9 +94805,9 @@ paths: application/json: schema: type: array - items: *648 + items: *649 examples: - default: *649 + default: *650 '404': *6 '403': *29 '500': *40 @@ -94645,8 +94831,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94658,7 +94844,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *648 + schema: *649 examples: default: value: @@ -94714,8 +94900,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94774,12 +94960,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *493 - *494 - - *644 + - *495 - *645 - *646 - *647 + - *648 - *17 - *19 responses: @@ -94789,9 +94975,9 @@ paths: application/json: schema: type: array - items: *650 + items: *651 examples: - default: *651 + default: *652 '404': *6 '403': *29 '500': *40 @@ -94815,8 +95001,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94828,7 +95014,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -94879,8 +95065,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94918,7 +95104,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -94969,8 +95155,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -95041,8 +95227,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -95075,12 +95261,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - *105 - *106 - *107 - - *364 + - *365 - *17 - *19 responses: @@ -95090,9 +95276,9 @@ paths: application/json: schema: type: array - items: *366 + items: *367 examples: - default: *367 + default: *368 '404': *6 '403': *29 '500': *40 @@ -95117,8 +95303,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -95130,7 +95316,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *366 + schema: *367 examples: default: value: @@ -95188,8 +95374,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -95258,8 +95444,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -95316,8 +95502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#list-environments parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -95334,7 +95520,7 @@ paths: type: integer environments: type: array - items: &653 + items: &654 title: Environment description: Details of a deployment environment type: object @@ -95386,7 +95572,7 @@ paths: type: type: string example: wait_timer - wait_timer: &655 + wait_timer: &656 type: integer example: 30 description: The amount of time to delay a job after @@ -95423,11 +95609,11 @@ paths: items: type: object properties: - type: *652 + type: *653 reviewer: anyOf: - *4 - - *325 + - *326 required: - id - node_id @@ -95447,7 +95633,7 @@ paths: - id - node_id - type - deployment_branch_policy: &656 + deployment_branch_policy: &657 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -95563,9 +95749,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#get-an-environment parameters: - - *493 - *494 - - &654 + - *495 + - &655 name: environment_name in: path required: true @@ -95578,9 +95764,9 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: - default: &657 + default: &658 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -95664,9 +95850,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#create-or-update-an-environment parameters: - - *493 - *494 - - *654 + - *495 + - *655 requestBody: required: false content: @@ -95675,7 +95861,7 @@ paths: type: object nullable: true properties: - wait_timer: *655 + wait_timer: *656 prevent_self_review: type: boolean example: false @@ -95692,13 +95878,13 @@ paths: items: type: object properties: - type: *652 + type: *653 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *656 + deployment_branch_policy: *657 additionalProperties: false examples: default: @@ -95718,9 +95904,9 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: - default: *657 + default: *658 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -95744,9 +95930,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#delete-an-environment parameters: - - *493 - *494 - - *654 + - *495 + - *655 responses: '204': description: Default response @@ -95771,9 +95957,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *493 - *494 - - *654 + - *495 + - *655 - *17 - *19 responses: @@ -95791,7 +95977,7 @@ paths: example: 2 branch_policies: type: array - items: &658 + items: &659 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -95848,9 +96034,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *493 - *494 - - *654 + - *495 + - *655 requestBody: required: true content: @@ -95896,9 +96082,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - example-wildcard: &659 + example-wildcard: &660 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -95940,10 +96126,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *493 - *494 - - *654 - - &660 + - *495 + - *655 + - &661 name: branch_policy_id in: path required: true @@ -95955,9 +96141,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95976,10 +96162,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *493 - *494 - - *654 - - *660 + - *495 + - *655 + - *661 requestBody: required: true content: @@ -96007,9 +96193,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96028,10 +96214,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *493 - *494 - - *654 - - *660 + - *495 + - *655 + - *661 responses: '204': description: Response @@ -96056,9 +96242,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: - - *654 + - *655 + - *495 - *494 - - *493 responses: '200': description: List of deployment protection rules @@ -96074,7 +96260,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &661 + items: &662 title: Deployment protection rule description: Deployment protection rule type: object @@ -96093,7 +96279,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &662 + app: &663 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -96192,9 +96378,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: - - *654 + - *655 + - *495 - *494 - - *493 requestBody: content: application/json: @@ -96215,9 +96401,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *661 + schema: *662 examples: - default: &663 + default: &664 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -96252,9 +96438,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: - - *654 + - *655 + - *495 - *494 - - *493 - *19 - *17 responses: @@ -96273,7 +96459,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *662 + items: *663 examples: default: value: @@ -96308,10 +96494,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: - - *493 - *494 - - *654 - - &664 + - *495 + - *655 + - &665 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -96323,9 +96509,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *663 + default: *664 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96346,10 +96532,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: - - *654 + - *655 + - *495 - *494 - - *493 - - *664 + - *665 responses: '204': description: Response @@ -96375,9 +96561,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-environment-secrets parameters: - - *493 - *494 - - *654 + - *495 + - *655 - *17 - *19 responses: @@ -96395,9 +96581,9 @@ paths: type: integer secrets: type: array - items: *523 + items: *524 examples: - default: *524 + default: *525 headers: Link: *47 x-github: @@ -96422,17 +96608,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-public-key parameters: - - *493 - *494 - - *654 + - *495 + - *655 responses: '200': description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96454,18 +96640,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-secret parameters: - - *493 - *494 - - *654 - - *302 + - *495 + - *655 + - *303 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: *537 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96487,10 +96673,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *493 - *494 - - *654 - - *302 + - *495 + - *655 + - *303 requestBody: required: true content: @@ -96521,7 +96707,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -96547,10 +96733,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-environment-secret parameters: - - *493 - *494 - - *654 - - *302 + - *495 + - *655 + - *303 responses: '204': description: Default response @@ -96575,10 +96761,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-environment-variables parameters: - - *493 - *494 - - *654 - - *311 + - *495 + - *655 + - *312 - *19 responses: '200': @@ -96595,9 +96781,9 @@ paths: type: integer variables: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -96620,9 +96806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-an-environment-variable parameters: - - *493 - *494 - - *654 + - *495 + - *655 requestBody: required: true content: @@ -96649,7 +96835,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -96674,18 +96860,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-environment-variable parameters: - - *493 - *494 - - *654 - - *305 + - *495 + - *655 + - *306 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *538 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96706,10 +96892,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-environment-variable parameters: - - *493 - *494 - - *305 - - *654 + - *495 + - *306 + - *655 requestBody: required: true content: @@ -96751,10 +96937,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-environment-variable parameters: - - *493 - *494 - - *305 - - *654 + - *495 + - *306 + - *655 responses: '204': description: Response @@ -96776,8 +96962,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-repository-events parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -96787,7 +96973,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: 200-response: value: @@ -96845,8 +97031,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#list-forks parameters: - - *493 - *494 + - *495 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -96868,7 +97054,7 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: default: value: @@ -97005,8 +97191,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#create-a-fork parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -97038,9 +97224,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *500 + default: *501 '400': *14 '422': *15 '403': *29 @@ -97061,8 +97247,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#create-a-blob parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -97121,8 +97307,8 @@ paths: application/json: schema: oneOf: - - *267 - - *665 + - *268 + - *666 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97147,8 +97333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#get-a-blob parameters: - - *493 - *494 + - *495 - name: file_sha in: path required: true @@ -97247,8 +97433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#create-a-commit parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -97357,7 +97543,7 @@ paths: description: Response content: application/json: - schema: &666 + schema: &667 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -97571,15 +97757,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#get-a-commit-object parameters: - - *493 - *494 - - *610 + - *495 + - *611 responses: '200': description: Response content: application/json: - schema: *666 + schema: *667 examples: default: value: @@ -97635,9 +97821,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#list-matching-references parameters: - - *493 - *494 - - &667 + - *495 + - &668 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. @@ -97654,7 +97840,7 @@ paths: application/json: schema: type: array - items: &668 + items: &669 title: Git Reference description: Git references within a repository type: object @@ -97729,17 +97915,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference parameters: - - *493 - *494 - - *667 + - *495 + - *668 responses: '200': description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: &669 + default: &670 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -97768,8 +97954,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#create-a-reference parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -97798,9 +97984,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: *669 + default: *670 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -97826,9 +98012,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#update-a-reference parameters: - - *493 - *494 - - *667 + - *495 + - *668 requestBody: required: true content: @@ -97857,9 +98043,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: *669 + default: *670 '422': *15 '409': *121 x-github: @@ -97877,9 +98063,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#delete-a-reference parameters: - - *493 - *494 - - *667 + - *495 + - *668 responses: '204': description: Response @@ -97934,8 +98120,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#create-a-tag-object parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -98002,7 +98188,7 @@ paths: description: Response content: application/json: - schema: &671 + schema: &672 title: Git Tag description: Metadata for a Git tag type: object @@ -98053,7 +98239,7 @@ paths: - sha - type - url - verification: *670 + verification: *671 required: - sha - url @@ -98063,7 +98249,7 @@ paths: - tag - message examples: - default: &672 + default: &673 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -98136,8 +98322,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#get-a-tag parameters: - - *493 - *494 + - *495 - name: tag_sha in: path required: true @@ -98148,9 +98334,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '404': *6 '409': *121 x-github: @@ -98174,8 +98360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#create-a-tree parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -98248,7 +98434,7 @@ paths: description: Response content: application/json: - schema: &673 + schema: &674 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -98344,8 +98530,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#get-a-tree parameters: - - *493 - *494 + - *495 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -98368,7 +98554,7 @@ paths: description: Response content: application/json: - schema: *673 + schema: *674 examples: default-response: summary: Default response @@ -98426,8 +98612,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -98470,8 +98656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-repository-webhooks parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -98481,7 +98667,7 @@ paths: application/json: schema: type: array - items: &674 + items: &675 title: Webhook description: Webhooks for repositories. type: object @@ -98535,7 +98721,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &959 + last_response: &960 title: Hook Response type: object properties: @@ -98609,8 +98795,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#create-a-repository-webhook parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -98662,9 +98848,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: &675 + default: &676 value: type: Repository id: 12345678 @@ -98712,17 +98898,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-repository-webhook parameters: - - *493 - *494 - - *372 + - *495 + - *373 responses: '200': description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '404': *6 x-github: githubCloudOnly: false @@ -98742,9 +98928,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-repository-webhook parameters: - - *493 - *494 - - *372 + - *495 + - *373 requestBody: required: true content: @@ -98789,9 +98975,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '422': *15 '404': *6 x-github: @@ -98812,9 +98998,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *493 - *494 - - *372 + - *495 + - *373 responses: '204': description: Response @@ -98838,9 +99024,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: - - *493 - *494 - - *372 + - *495 + - *373 responses: '200': description: Response @@ -98867,9 +99053,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: - - *493 - *494 - - *372 + - *495 + - *373 requestBody: required: false content: @@ -98913,12 +99099,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *493 - *494 - - *372 - - *17 + - *495 - *373 + - *17 - *374 + - *375 responses: '200': description: Response @@ -98926,9 +99112,9 @@ paths: application/json: schema: type: array - items: *375 + items: *376 examples: - default: *376 + default: *377 '400': *14 '422': *15 x-github: @@ -98947,18 +99133,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: - - *493 - *494 - - *372 + - *495 + - *373 - *16 responses: '200': description: Response content: application/json: - schema: *377 + schema: *378 examples: - default: *378 + default: *379 '400': *14 '422': *15 x-github: @@ -98977,9 +99163,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: - - *493 - *494 - - *372 + - *495 + - *373 - *16 responses: '202': *39 @@ -99002,9 +99188,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *493 - *494 - - *372 + - *495 + - *373 responses: '204': description: Response @@ -99029,9 +99215,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *493 - *494 - - *372 + - *495 + - *373 responses: '204': description: Response @@ -99054,8 +99240,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: - - *493 - *494 + - *495 responses: '200': description: Response if immutable releases are enabled @@ -99101,8 +99287,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-immutable-releases parameters: - - *493 - *494 + - *495 responses: '204': *130 '409': *121 @@ -99122,8 +99308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-immutable-releases parameters: - - *493 - *494 + - *495 responses: '204': *130 '409': *121 @@ -99180,14 +99366,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-an-import-status parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &676 + schema: &677 title: Import description: A repository import from an external source. type: object @@ -99286,7 +99472,7 @@ paths: - html_url - authors_url examples: - default: &679 + default: &680 value: vcs: subversion use_lfs: true @@ -99302,7 +99488,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': &677 + '503': &678 description: Unavailable due to service under maintenance. content: application/json: @@ -99331,8 +99517,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#start-an-import parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -99380,7 +99566,7 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: default: value: @@ -99405,7 +99591,7 @@ paths: type: string '422': *15 '404': *6 - '503': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99433,8 +99619,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-an-import parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -99483,7 +99669,7 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: example-1: summary: Example 1 @@ -99531,7 +99717,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': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99554,12 +99740,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#cancel-an-import parameters: - - *493 - *494 + - *495 responses: '204': description: Response - '503': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99585,9 +99771,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-commit-authors parameters: - - *493 - *494 - - &884 + - *495 + - &885 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -99601,7 +99787,7 @@ paths: application/json: schema: type: array - items: &678 + items: &679 title: Porter Author description: Porter Author type: object @@ -99655,7 +99841,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': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99680,8 +99866,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#map-a-commit-author parameters: - - *493 - *494 + - *495 - name: author_id in: path required: true @@ -99711,7 +99897,7 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: default: value: @@ -99724,7 +99910,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99748,8 +99934,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-large-files parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -99790,7 +99976,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99818,8 +100004,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -99846,11 +100032,11 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: *679 + default: *680 '422': *15 - '503': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99873,8 +100059,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -99882,8 +100068,8 @@ paths: application/json: schema: *22 examples: - default: *390 - '301': *499 + default: *391 + '301': *500 '404': *6 x-github: githubCloudOnly: false @@ -99903,8 +100089,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -99912,12 +100098,12 @@ paths: application/json: schema: anyOf: - - *392 + - *393 - type: object properties: {} additionalProperties: false examples: - default: &681 + default: &682 value: limit: collaborators_only origin: repository @@ -99942,13 +100128,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *680 + schema: *681 examples: default: summary: Example request body @@ -99960,9 +100146,9 @@ paths: description: Response content: application/json: - schema: *392 + schema: *393 examples: - default: *681 + default: *682 '409': description: Response x-github: @@ -99984,8 +100170,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -100012,8 +100198,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -100067,13 +100253,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: &682 + schema: &683 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. @@ -100123,13 +100309,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *682 + schema: *683 examples: default: summary: Example request body @@ -100162,8 +100348,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -100216,8 +100402,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -100293,8 +100479,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#list-repository-invitations parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -100304,9 +100490,9 @@ paths: application/json: schema: type: array - items: *683 + items: *684 examples: - default: &877 + default: &878 value: - id: 1 repository: @@ -100437,9 +100623,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *493 - *494 - - *396 + - *495 + - *397 requestBody: required: false content: @@ -100468,7 +100654,7 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: default: value: @@ -100599,9 +100785,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *493 - *494 - - *396 + - *495 + - *397 responses: '204': description: Response @@ -100624,8 +100810,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -100633,9 +100819,9 @@ paths: application/json: schema: type: array - items: *400 + items: *401 examples: - default: *684 + default: *685 '404': *6 x-github: githubCloudOnly: false @@ -100664,8 +100850,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-repository-issues parameters: - - *493 - *494 + - *495 - 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 @@ -100727,7 +100913,7 @@ paths: required: false schema: type: string - - *403 + - *404 - name: sort description: What to sort results by. in: query @@ -100740,7 +100926,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - *17 - *19 responses: @@ -100750,9 +100936,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: &699 + default: &700 value: - id: 1 node_id: MDU6SXNzdWUx @@ -100901,7 +101087,7 @@ paths: state_reason: completed headers: Link: *47 - '301': *499 + '301': *500 '422': *15 '404': *6 x-github: @@ -100930,8 +101116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#create-an-issue parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -101038,9 +101224,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: &696 + default: &697 value: id: 1 node_id: MDU6SXNzdWUx @@ -101197,7 +101383,7 @@ paths: '422': *15 '503': *203 '404': *6 - '410': *685 + '410': *686 x-github: triggersNotification: true githubCloudOnly: false @@ -101225,9 +101411,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *493 - *494 - - *255 + - *495 + - *256 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -101237,7 +101423,7 @@ paths: enum: - asc - desc - - *238 + - *239 - *17 - *19 responses: @@ -101247,9 +101433,9 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: - default: &698 + default: &699 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -101308,17 +101494,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '200': description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: &687 + default: &688 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -101374,9 +101560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#update-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -101398,9 +101584,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: *687 + default: *688 '422': *15 x-github: githubCloudOnly: false @@ -101418,9 +101604,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#delete-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '204': description: Response @@ -101448,15 +101634,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#pin-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '200': description: Response content: application/json: - schema: *686 + schema: *687 examples: default: value: @@ -101512,7 +101698,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *685 + '410': *686 '422': *15 x-github: githubCloudOnly: false @@ -101529,16 +101715,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#unpin-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *685 + '410': *686 '503': *203 x-github: githubCloudOnly: false @@ -101556,9 +101742,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 - 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. @@ -101584,9 +101770,9 @@ paths: application/json: schema: type: array - items: *607 + items: *608 examples: - default: *688 + default: *689 headers: Link: *47 '404': *6 @@ -101607,9 +101793,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -101641,16 +101827,16 @@ paths: description: Reaction exists content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '201': description: Reaction created content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -101672,10 +101858,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *493 - *494 - - *247 - - *689 + - *495 + - *248 + - *690 responses: '204': description: Response @@ -101695,8 +101881,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events-for-a-repository parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -101706,7 +101892,7 @@ paths: application/json: schema: type: array - items: &695 + items: &696 title: Issue Event description: Issue Event type: object @@ -101749,8 +101935,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *690 - required: *691 + properties: *691 + required: *692 nullable: true label: title: Issue Event Label @@ -101794,7 +101980,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *325 + requested_team: *326 dismissed_review: title: Issue Event Dismissed Review type: object @@ -101859,7 +102045,7 @@ paths: required: - from - to - issue_type: &692 + issue_type: &693 title: Issue Type description: The type of issue. type: object @@ -101887,14 +102073,14 @@ paths: required: - id - name - prev_issue_type: *692 + prev_issue_type: *693 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: &693 + properties: &694 number: type: integer description: The number of the referenced issue. @@ -101932,7 +102118,7 @@ paths: - id - node_id - name - required: &694 + required: &695 - number - title - state @@ -101944,25 +102130,25 @@ paths: event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 blocking: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *693 - required: *694 - author_association: *228 + properties: *694 + required: *695 + author_association: *229 lock_reason: type: string nullable: true @@ -101975,8 +102161,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 required: - id - node_id @@ -102161,8 +102347,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#get-an-issue-event parameters: - - *493 - *494 + - *495 - name: event_id in: path required: true @@ -102173,7 +102359,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: default: value: @@ -102366,7 +102552,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *685 + '410': *686 '403': *29 x-github: githubCloudOnly: false @@ -102400,9 +102586,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue parameters: - - *493 - *494 - - &697 + - *495 + - &698 name: issue_number description: The number that identifies the issue. in: path @@ -102414,11 +102600,11 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: default: summary: Issue - value: *696 + value: *697 pinned_comment: summary: Issue with pinned comment value: @@ -102617,9 +102803,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 '304': *37 x-github: githubCloudOnly: false @@ -102644,9 +102830,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#update-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: false content: @@ -102787,17 +102973,17 @@ paths: application/json: schema: allOf: - - *231 + - *232 - type: object properties: {} examples: - default: *696 + default: *697 '422': *15 '503': *203 '403': *29 - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102815,9 +103001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: false content: @@ -102843,9 +103029,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102861,9 +103047,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: content: application/json: @@ -102888,9 +103074,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102912,9 +103098,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: - - *493 - *494 - - *697 + - *495 + - *698 - name: assignee in: path required: true @@ -102954,10 +103140,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments parameters: - - *493 - *494 - - *697 - - *238 + - *495 + - *698 + - *239 - *17 - *19 responses: @@ -102967,13 +103153,13 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: - default: *698 + default: *699 headers: Link: *47 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103002,9 +103188,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#create-an-issue-comment parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -103026,16 +103212,16 @@ paths: description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: *687 + default: *688 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *685 + '410': *686 '422': *15 '404': *6 x-github: @@ -103063,9 +103249,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: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -103075,14 +103261,14 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *699 + default: *700 headers: Link: *47 - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103110,9 +103296,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: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -103134,17 +103320,17 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *499 + '301': *500 '403': *29 - '410': *685 + '410': *686 '422': *15 '404': *6 x-github: @@ -103175,9 +103361,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: - - *493 - *494 - - *697 + - *495 + - *698 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -103189,15 +103375,15 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 - '301': *499 + default: *697 + '301': *500 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *685 + '410': *686 x-github: triggersNotification: true githubCloudOnly: false @@ -103223,9 +103409,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: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -103235,14 +103421,14 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *699 + default: *700 headers: Link: *47 - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103259,9 +103445,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events parameters: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -103275,7 +103461,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &703 + - &704 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -103306,8 +103492,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 label: type: object properties: @@ -103329,7 +103515,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &704 + - &705 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -103360,8 +103546,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 label: type: object properties: @@ -103449,8 +103635,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 assignee: *4 assigner: *4 required: @@ -103465,7 +103651,7 @@ paths: - performed_via_github_app - assignee - assigner - - &705 + - &706 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -103496,8 +103682,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 milestone: type: object properties: @@ -103516,7 +103702,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &706 + - &707 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -103547,8 +103733,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 milestone: type: object properties: @@ -103567,7 +103753,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &707 + - &708 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -103598,8 +103784,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 rename: type: object properties: @@ -103621,7 +103807,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &708 + - &709 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -103652,10 +103838,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 review_requester: *4 - requested_team: *325 + requested_team: *326 requested_reviewer: *4 required: - review_requester @@ -103668,7 +103854,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &709 + - &710 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -103699,10 +103885,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 review_requester: *4 - requested_team: *325 + requested_team: *326 requested_reviewer: *4 required: - review_requester @@ -103715,7 +103901,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &710 + - &711 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -103746,8 +103932,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 dismissed_review: type: object properties: @@ -103775,7 +103961,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &711 + - &712 title: Locked Issue Event description: Locked Issue Event type: object @@ -103806,8 +103992,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 lock_reason: type: string example: '"off-topic"' @@ -103823,7 +104009,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &712 + - &713 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -103854,8 +104040,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 project_card: type: object properties: @@ -103889,7 +104075,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &713 + - &714 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -103920,8 +104106,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 project_card: type: object properties: @@ -103955,7 +104141,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &714 + - &715 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -103986,8 +104172,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 project_card: type: object properties: @@ -104021,7 +104207,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &715 + - &716 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -104077,7 +104263,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &720 + - &721 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -104108,9 +104294,9 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - issue_type: *692 + properties: *227 + required: *228 + issue_type: *693 required: - issue_type - id @@ -104122,7 +104308,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &721 + - &722 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -104153,9 +104339,9 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - prev_issue_type: *692 + properties: *227 + required: *228 + prev_issue_type: *693 required: - prev_issue_type - id @@ -104167,7 +104353,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &722 + - &723 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -104198,10 +104384,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - issue_type: *692 - prev_issue_type: *692 + properties: *227 + required: *228 + issue_type: *693 + prev_issue_type: *693 required: - issue_type - prev_issue_type @@ -104214,7 +104400,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &723 + - &724 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -104245,8 +104431,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104254,8 +104440,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - sub_issue - id @@ -104267,7 +104453,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &724 + - &725 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -104298,8 +104484,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104307,8 +104493,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - sub_issue - id @@ -104320,7 +104506,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &725 + - &726 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -104351,8 +104537,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 parent_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104360,8 +104546,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - parent_issue - id @@ -104373,7 +104559,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &726 + - &727 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -104404,8 +104590,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 parent_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104413,8 +104599,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - parent_issue - id @@ -104426,7 +104612,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &727 + - &728 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -104457,8 +104643,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104466,8 +104652,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - blocked_by - id @@ -104479,7 +104665,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &728 + - &729 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -104510,8 +104696,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104519,8 +104705,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - blocked_by - id @@ -104532,7 +104718,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &729 + - &730 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -104563,8 +104749,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocking: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104572,8 +104758,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - blocking - id @@ -104585,7 +104771,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &730 + - &731 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -104616,8 +104802,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocking: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104625,8 +104811,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - blocking - id @@ -104673,7 +104859,7 @@ paths: color: red headers: Link: *47 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104690,9 +104876,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: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -104702,9 +104888,9 @@ paths: application/json: schema: type: array - items: *700 + items: *701 examples: - default: &701 + default: &702 value: - issue_field_id: 1 issue_field_name: DRI @@ -104744,9 +104930,9 @@ paths: color: green headers: Link: *47 - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104775,9 +104961,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: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -104847,9 +105033,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *700 + items: *701 examples: - default: *701 + default: *702 '400': *14 '403': *29 '404': *6 @@ -104885,9 +105071,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: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -104952,9 +105138,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *700 + items: *701 examples: - default: *701 + default: *702 '400': *14 '403': *29 '404': *6 @@ -104985,10 +105171,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: - - *493 - *494 - - *697 - - *399 + - *495 + - *698 + - *400 responses: '204': description: Issue field value deleted successfully @@ -105013,9 +105199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -105025,9 +105211,9 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: &702 + default: &703 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -105045,9 +105231,9 @@ paths: default: false headers: Link: *47 - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105063,9 +105249,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#add-labels-to-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: false content: @@ -105108,12 +105294,12 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *702 - '301': *499 + default: *703 + '301': *500 '404': *6 - '410': *685 + '410': *686 '422': *15 x-github: githubCloudOnly: false @@ -105130,9 +105316,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#set-labels-for-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: false content: @@ -105192,12 +105378,12 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *702 - '301': *499 + default: *703 + '301': *500 '404': *6 - '410': *685 + '410': *686 '422': *15 x-github: githubCloudOnly: false @@ -105214,15 +105400,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 responses: '204': description: Response - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105241,9 +105427,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 - name: name in: path required: true @@ -105256,7 +105442,7 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: default: value: @@ -105267,9 +105453,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105289,9 +105475,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#lock-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: false content: @@ -105319,7 +105505,7 @@ paths: '204': description: Response '403': *29 - '410': *685 + '410': *686 '404': *6 '422': *15 x-github: @@ -105337,9 +105523,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#unlock-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 responses: '204': description: Response @@ -105369,20 +105555,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#get-parent-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 responses: '200': description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 - '301': *499 + default: *697 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105399,9 +105585,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 - 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. @@ -105427,13 +105613,13 @@ paths: application/json: schema: type: array - items: *607 + items: *608 examples: - default: *688 + default: *689 headers: Link: *47 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105451,9 +105637,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -105485,16 +105671,16 @@ paths: description: Response content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '201': description: Response content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -105516,10 +105702,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *493 - *494 - - *697 - - *689 + - *495 + - *698 + - *690 responses: '204': description: Response @@ -105548,9 +105734,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#remove-sub-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -105572,9 +105758,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -105607,9 +105793,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#list-sub-issues parameters: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -105619,13 +105805,13 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *699 + default: *700 headers: Link: *47 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105653,9 +105839,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#add-sub-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -105682,16 +105868,16 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *685 + '410': *686 '422': *15 '404': *6 x-github: @@ -105711,9 +105897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -105744,9 +105930,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 '403': *29 '404': *6 '422': *7 @@ -105768,9 +105954,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -105785,7 +105971,6 @@ paths: description: Timeline Event type: object anyOf: - - *703 - *704 - *705 - *706 @@ -105798,6 +105983,7 @@ paths: - *713 - *714 - *715 + - *716 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -105840,7 +106026,7 @@ paths: issue_url: type: string format: uri - author_association: *228 + author_association: *229 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -105850,23 +106036,23 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - reactions: *229 + properties: *227 + required: *228 + reactions: *230 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *716 - required: *717 + properties: *717 + required: *718 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *718 - required: *719 + properties: *719 + required: *720 nullable: true required: - event @@ -105898,7 +106084,7 @@ paths: properties: type: type: string - issue: *231 + issue: *232 required: - event - created_at @@ -106098,7 +106284,7 @@ paths: type: string body_text: type: string - author_association: *228 + author_association: *229 required: - event - id @@ -106121,7 +106307,7 @@ paths: type: string comments: type: array - items: &752 + items: &753 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -106216,7 +106402,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *228 + author_association: *229 _links: type: object properties: @@ -106300,7 +106486,7 @@ paths: enum: - line - file - reactions: *229 + reactions: *230 body_html: type: string example: '"

comment body

"' @@ -106336,7 +106522,7 @@ paths: type: string comments: type: array - items: *606 + items: *607 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -106367,8 +106553,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 assignee: *4 required: - id @@ -106411,8 +106597,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 assignee: *4 required: - id @@ -106455,8 +106641,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 state_reason: type: string nullable: true @@ -106470,7 +106656,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *720 - *721 - *722 - *723 @@ -106481,6 +106666,7 @@ paths: - *728 - *729 - *730 + - *731 examples: default: value: @@ -106637,7 +106823,7 @@ paths: Link: *47 '404': *6 '400': *14 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106654,8 +106840,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -106665,7 +106851,7 @@ paths: application/json: schema: type: array - items: &731 + items: &732 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -106731,8 +106917,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -106768,9 +106954,9 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: - default: &732 + default: &733 value: id: 1 key: ssh-rsa AAA... @@ -106804,9 +106990,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *493 - *494 - - &733 + - *495 + - &734 name: key_id description: The unique identifier of the key. in: path @@ -106818,9 +107004,9 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: - default: *732 + default: *733 '404': *6 x-github: githubCloudOnly: false @@ -106838,9 +107024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *493 - *494 - - *733 + - *495 + - *734 responses: '204': description: Response @@ -106860,8 +107046,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-a-repository parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -106871,9 +107057,9 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *702 + default: *703 headers: Link: *47 '404': *6 @@ -106894,8 +107080,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#create-a-label parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -106931,9 +107117,9 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: - default: &734 + default: &735 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -106965,8 +107151,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#get-a-label parameters: - - *493 - *494 + - *495 - name: name in: path required: true @@ -106977,9 +107163,9 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: - default: *734 + default: *735 '404': *6 x-github: githubCloudOnly: false @@ -106996,8 +107182,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#update-a-label parameters: - - *493 - *494 + - *495 - name: name in: path required: true @@ -107036,7 +107222,7 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: default: value: @@ -107062,8 +107248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#delete-a-label parameters: - - *493 - *494 + - *495 - name: name in: path required: true @@ -107089,8 +107275,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-languages parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -107126,8 +107312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *493 - *494 + - *495 responses: '202': *39 '403': @@ -107155,8 +107341,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -107182,9 +107368,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *493 - *494 - - *579 + - *495 + - *580 responses: '200': description: Response @@ -107246,8 +107432,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true required: - _links @@ -107329,8 +107515,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -107395,8 +107581,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#merge-a-branch parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -107430,9 +107616,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *609 + schema: *610 examples: - default: *735 + default: *736 '204': description: Response when already merged '404': @@ -107457,8 +107643,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#list-milestones parameters: - - *493 - *494 + - *495 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -107499,12 +107685,12 @@ paths: application/json: schema: type: array - items: &736 + items: &737 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *435 - required: *436 + properties: *436 + required: *437 examples: default: value: @@ -107560,8 +107746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#create-a-milestone parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -107601,9 +107787,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *737 examples: - default: &737 + default: &738 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -107662,9 +107848,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#get-a-milestone parameters: - - *493 - *494 - - &738 + - *495 + - &739 name: milestone_number description: The number that identifies the milestone. in: path @@ -107676,9 +107862,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *737 examples: - default: *737 + default: *738 '404': *6 x-github: githubCloudOnly: false @@ -107695,9 +107881,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#update-a-milestone parameters: - - *493 - *494 - - *738 + - *495 + - *739 requestBody: required: false content: @@ -107735,9 +107921,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *737 examples: - default: *737 + default: *738 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107753,9 +107939,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#delete-a-milestone parameters: - - *493 - *494 - - *738 + - *495 + - *739 responses: '204': description: Response @@ -107776,9 +107962,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: - - *493 - *494 - - *738 + - *495 + - *739 - *17 - *19 responses: @@ -107788,9 +107974,9 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *702 + default: *703 headers: Link: *47 x-github: @@ -107809,12 +107995,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: - - *493 - *494 - - *739 + - *495 - *740 - - *238 - *741 + - *239 + - *742 - *17 - *19 responses: @@ -107824,9 +108010,9 @@ paths: application/json: schema: type: array - items: *258 + items: *259 examples: - default: *742 + default: *743 headers: Link: *47 x-github: @@ -107850,8 +108036,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -107909,14 +108095,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-apiname-pages-site parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &743 + schema: &744 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -108041,7 +108227,7 @@ paths: - custom_404 - public examples: - default: &744 + default: &745 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -108082,8 +108268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-apiname-pages-site parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -108137,9 +108323,9 @@ paths: description: Response content: application/json: - schema: *743 + schema: *744 examples: - default: *744 + default: *745 '422': *15 '409': *121 x-github: @@ -108162,8 +108348,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -108270,8 +108456,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -108297,8 +108483,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#list-apiname-pages-builds parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -108308,7 +108494,7 @@ paths: application/json: schema: type: array - items: &745 + items: &746 title: Page Build description: Page Build type: object @@ -108402,8 +108588,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#request-a-apiname-pages-build parameters: - - *493 - *494 + - *495 responses: '201': description: Response @@ -108448,16 +108634,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-latest-pages-build parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *745 + schema: *746 examples: - default: &746 + default: &747 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -108505,8 +108691,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-apiname-pages-build parameters: - - *493 - *494 + - *495 - name: build_id in: path required: true @@ -108517,9 +108703,9 @@ paths: description: Response content: application/json: - schema: *745 + schema: *746 examples: - default: *746 + default: *747 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108539,8 +108725,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-github-pages-deployment parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -108645,9 +108831,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: - - *493 - *494 - - &747 + - *495 + - &748 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -108705,9 +108891,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *493 - *494 - - *747 + - *495 + - *748 responses: '204': *130 '404': *6 @@ -108734,8 +108920,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -108966,7 +109152,7 @@ paths: description: Empty response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -108993,8 +109179,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: - - *493 - *494 + - *495 responses: '200': description: Private vulnerability reporting status @@ -109031,8 +109217,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: - - *493 - *494 + - *495 responses: '204': *130 '422': *14 @@ -109053,8 +109239,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: - - *493 - *494 + - *495 responses: '204': *130 '422': *14 @@ -109076,8 +109262,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -109087,7 +109273,7 @@ paths: type: array items: *163 examples: - default: *748 + default: *749 '403': *29 '404': *6 x-github: @@ -109109,8 +109295,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -109126,7 +109312,7 @@ paths: required: - properties examples: - default: *749 + default: *750 responses: '204': description: No Content when custom property values are successfully created @@ -109164,8 +109350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests parameters: - - *493 - *494 + - *495 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -109225,9 +109411,9 @@ paths: application/json: schema: type: array - items: *613 + items: *614 examples: - default: *750 + default: *751 headers: Link: *47 '304': *37 @@ -109259,8 +109445,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#create-a-pull-request parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -109325,7 +109511,7 @@ paths: description: Response content: application/json: - schema: &754 + schema: &755 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -109436,8 +109622,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *435 - required: *436 + properties: *436 + required: *437 nullable: true active_lock_reason: type: string @@ -109480,7 +109666,7 @@ paths: items: *4 requested_teams: type: array - items: *477 + items: *478 head: type: object properties: @@ -109518,14 +109704,14 @@ paths: _links: type: object properties: - comments: *437 - commits: *437 - statuses: *437 - html: *437 - issue: *437 - review_comments: *437 - review_comment: *437 - self: *437 + comments: *438 + commits: *438 + statuses: *438 + html: *438 + issue: *438 + review_comments: *438 + review_comment: *438 + self: *438 required: - comments - commits @@ -109535,8 +109721,8 @@ paths: - review_comments - review_comment - self - author_association: *228 - auto_merge: *751 + author_association: *229 + auto_merge: *752 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -109628,7 +109814,7 @@ paths: - merged_by - review_comments examples: - default: &755 + default: &756 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -110155,8 +110341,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *493 - *494 + - *495 - name: sort in: query required: false @@ -110175,7 +110361,7 @@ paths: enum: - asc - desc - - *238 + - *239 - *17 - *19 responses: @@ -110185,9 +110371,9 @@ paths: application/json: schema: type: array - items: *752 + items: *753 examples: - default: &757 + default: &758 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -110264,17 +110450,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: - - *493 - *494 - - *247 + - *495 + - *248 responses: '200': description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: &753 + default: &754 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -110349,9 +110535,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: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -110373,9 +110559,9 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: *753 + default: *754 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110391,9 +110577,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: - - *493 - *494 - - *247 + - *495 + - *248 responses: '204': description: Response @@ -110414,9 +110600,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: - - *493 - *494 - - *247 + - *495 + - *248 - 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. @@ -110442,9 +110628,9 @@ paths: application/json: schema: type: array - items: *607 + items: *608 examples: - default: *688 + default: *689 headers: Link: *47 '404': *6 @@ -110465,9 +110651,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: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -110499,16 +110685,16 @@ paths: description: Reaction exists content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '201': description: Reaction created content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -110530,10 +110716,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *493 - *494 - - *247 - - *689 + - *495 + - *248 + - *690 responses: '204': description: Response @@ -110576,9 +110762,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#get-a-pull-request parameters: - - *493 - *494 - - &756 + - *495 + - &757 name: pull_number description: The number that identifies the pull request. in: path @@ -110591,9 +110777,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *754 + schema: *755 examples: - default: *755 + default: *756 '304': *37 '404': *6 '406': @@ -110628,9 +110814,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request parameters: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: false content: @@ -110672,9 +110858,9 @@ paths: description: Response content: application/json: - schema: *754 + schema: *755 examples: - default: *755 + default: *756 '422': *15 '403': *29 x-github: @@ -110696,9 +110882,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: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: true content: @@ -110758,17 +110944,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '401': *25 '403': *29 '404': *6 @@ -110798,10 +110984,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: - - *493 - *494 - - *756 - - *255 + - *495 + - *757 + - *256 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -110811,7 +110997,7 @@ paths: enum: - asc - desc - - *238 + - *239 - *17 - *19 responses: @@ -110821,9 +111007,9 @@ paths: application/json: schema: type: array - items: *752 + items: *753 examples: - default: *757 + default: *758 headers: Link: *47 x-github: @@ -110856,9 +111042,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: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: true content: @@ -110963,7 +111149,7 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: example-for-a-multi-line-comment: value: @@ -111051,10 +111237,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: - - *493 - *494 - - *756 - - *247 + - *495 + - *757 + - *248 requestBody: required: true content: @@ -111076,7 +111262,7 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: default: value: @@ -111162,9 +111348,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *493 - *494 - - *756 + - *495 + - *757 - *17 - *19 responses: @@ -111174,9 +111360,9 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: - default: *758 + default: *759 headers: Link: *47 x-github: @@ -111206,9 +111392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests-files parameters: - - *493 - *494 - - *756 + - *495 + - *757 - *17 - *19 responses: @@ -111218,7 +111404,7 @@ paths: application/json: schema: type: array - items: *622 + items: *623 examples: default: value: @@ -111256,9 +111442,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: - - *493 - *494 - - *756 + - *495 + - *757 responses: '204': description: Response if pull request has been merged @@ -111281,9 +111467,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#merge-a-pull-request parameters: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: false content: @@ -111394,9 +111580,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: - - *493 - *494 - - *756 + - *495 + - *757 responses: '200': description: Response @@ -111412,7 +111598,7 @@ paths: items: *4 teams: type: array - items: *325 + items: *326 required: - users - teams @@ -111471,9 +111657,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: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: false content: @@ -111510,7 +111696,7 @@ paths: description: Response content: application/json: - schema: *613 + schema: *614 examples: default: value: @@ -112046,9 +112232,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: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: true content: @@ -112082,7 +112268,7 @@ paths: description: Response content: application/json: - schema: *613 + schema: *614 examples: default: value: @@ -112587,9 +112773,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *493 - *494 - - *756 + - *495 + - *757 - *17 - *19 responses: @@ -112599,7 +112785,7 @@ paths: application/json: schema: type: array - items: &759 + items: &760 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -112668,7 +112854,7 @@ paths: type: string body_text: type: string - author_association: *228 + author_association: *229 required: - id - node_id @@ -112750,9 +112936,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: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: false content: @@ -112838,9 +113024,9 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: - default: &761 + default: &762 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -112903,10 +113089,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: - - *493 - *494 - - *756 - - &760 + - *495 + - *757 + - &761 name: review_id description: The unique identifier of the review. in: path @@ -112918,9 +113104,9 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: - default: &762 + default: &763 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -112979,10 +113165,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: - - *493 - *494 - - *756 - - *760 + - *495 + - *757 + - *761 requestBody: required: true content: @@ -113005,7 +113191,7 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: default: value: @@ -113067,18 +113253,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: - - *493 - *494 - - *756 - - *760 + - *495 + - *757 + - *761 responses: '200': description: Response content: application/json: - schema: *759 + schema: *760 examples: - default: *761 + default: *762 '422': *7 '404': *6 x-github: @@ -113105,10 +113291,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: - - *493 - *494 - - *756 - - *760 + - *495 + - *757 + - *761 - *17 - *19 responses: @@ -113187,13 +113373,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *228 + author_association: *229 _links: type: object properties: - self: *437 - html: *437 - pull_request: *437 + self: *438 + html: *438 + pull_request: *438 required: - self - html @@ -113202,7 +113388,7 @@ paths: type: string body_html: type: string - reactions: *229 + reactions: *230 side: description: The side of the first line of the range for a multi-line comment. @@ -113343,10 +113529,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: - - *493 - *494 - - *756 - - *760 + - *495 + - *757 + - *761 requestBody: required: true content: @@ -113374,7 +113560,7 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: default: value: @@ -113437,10 +113623,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: - - *493 - *494 - - *756 - - *760 + - *495 + - *757 + - *761 requestBody: required: true content: @@ -113475,9 +113661,9 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: - default: *762 + default: *763 '404': *6 '422': *7 '403': *29 @@ -113499,9 +113685,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: false content: @@ -113564,8 +113750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme parameters: - - *493 - *494 + - *495 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -113578,9 +113764,9 @@ paths: description: Response content: application/json: - schema: *763 + schema: *764 examples: - default: &764 + default: &765 value: type: file encoding: base64 @@ -113622,8 +113808,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: - - *493 - *494 + - *495 - name: dir description: The alternate path to look for a README file in: path @@ -113643,9 +113829,9 @@ paths: description: Response content: application/json: - schema: *763 + schema: *764 examples: - default: *764 + default: *765 '404': *6 '422': *15 x-github: @@ -113667,8 +113853,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#list-releases parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -113678,7 +113864,7 @@ paths: application/json: schema: type: array - items: *765 + items: *766 examples: default: value: @@ -113772,8 +113958,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#create-a-release parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -113849,9 +114035,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *766 examples: - default: &769 + default: &770 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -113956,9 +114142,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#get-a-release-asset parameters: - - *493 - *494 - - &767 + - *495 + - &768 name: asset_id description: The unique identifier of the asset. in: path @@ -113970,9 +114156,9 @@ paths: description: Response content: application/json: - schema: *766 + schema: *767 examples: - default: &768 + default: &769 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 @@ -114007,7 +114193,7 @@ paths: type: User site_admin: false '404': *6 - '302': *626 + '302': *627 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114023,9 +114209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#update-a-release-asset parameters: - - *493 - *494 - - *767 + - *495 + - *768 requestBody: required: false content: @@ -114053,9 +114239,9 @@ paths: description: Response content: application/json: - schema: *766 + schema: *767 examples: - default: *768 + default: *769 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114071,9 +114257,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#delete-a-release-asset parameters: - - *493 - *494 - - *767 + - *495 + - *768 responses: '204': description: Response @@ -114098,8 +114284,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -114184,16 +114370,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-the-latest-release parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *765 + schema: *766 examples: - default: *769 + default: *770 '404': *6 x-github: githubCloudOnly: false @@ -114211,8 +114397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release-by-tag-name parameters: - - *493 - *494 + - *495 - name: tag description: tag parameter in: path @@ -114225,9 +114411,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *766 examples: - default: *769 + default: *770 '404': *6 x-github: githubCloudOnly: false @@ -114249,9 +114435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release parameters: - - *493 - *494 - - &770 + - *495 + - &771 name: release_id description: The unique identifier of the release. in: path @@ -114265,9 +114451,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: *765 + schema: *766 examples: - default: *769 + default: *770 '401': description: Unauthorized x-github: @@ -114285,9 +114471,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#update-a-release parameters: - - *493 - *494 - - *770 + - *495 + - *771 requestBody: required: false content: @@ -114351,9 +114537,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *766 examples: - default: *769 + default: *770 '404': description: Not Found if the discussion category name is invalid content: @@ -114374,9 +114560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#delete-a-release parameters: - - *493 - *494 - - *770 + - *495 + - *771 responses: '204': description: Response @@ -114397,9 +114583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#list-release-assets parameters: - - *493 - *494 - - *770 + - *495 + - *771 - *17 - *19 responses: @@ -114409,7 +114595,7 @@ paths: application/json: schema: type: array - items: *766 + items: *767 examples: default: value: @@ -114491,9 +114677,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: - - *493 - *494 - - *770 + - *495 + - *771 - name: name in: query required: true @@ -114519,7 +114705,7 @@ paths: description: Response for successful upload content: application/json: - schema: *766 + schema: *767 examples: response-for-successful-upload: value: @@ -114574,9 +114760,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *493 - *494 - - *770 + - *495 + - *771 - 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. @@ -114600,9 +114786,9 @@ paths: application/json: schema: type: array - items: *607 + items: *608 examples: - default: *688 + default: *689 headers: Link: *47 '404': *6 @@ -114623,9 +114809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *493 - *494 - - *770 + - *495 + - *771 requestBody: required: true content: @@ -114655,16 +114841,16 @@ paths: description: Reaction exists content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '201': description: Reaction created content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -114686,10 +114872,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-release-reaction parameters: - - *493 - *494 - - *770 - - *689 + - *495 + - *771 + - *690 responses: '204': description: Response @@ -114713,9 +114899,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-rules-for-a-branch parameters: - - *493 - *494 - - *545 + - *495 + - *546 - *17 - *19 responses: @@ -114732,7 +114918,7 @@ paths: oneOf: - allOf: - *177 - - &771 + - &772 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -114753,70 +114939,70 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *178 - - *771 + - *772 - allOf: - *179 - - *771 + - *772 - allOf: - *180 - - *771 + - *772 - allOf: + - *773 - *772 - - *771 - allOf: - *181 - - *771 + - *772 - allOf: - *182 - - *771 + - *772 - allOf: - *183 - - *771 + - *772 - allOf: - *184 - - *771 + - *772 - allOf: - *185 - - *771 + - *772 - allOf: - *186 - - *771 + - *772 - allOf: - *187 - - *771 + - *772 - allOf: - *188 - - *771 + - *772 - allOf: - *189 - - *771 + - *772 - allOf: - *190 - - *771 + - *772 - allOf: - *191 - - *771 + - *772 - allOf: - *192 - - *771 + - *772 - allOf: - *193 - - *771 + - *772 - allOf: - - *773 - - *771 + - *774 + - *772 - allOf: - *194 - - *771 + - *772 - allOf: - *195 - - *771 + - *772 - allOf: - *196 - - *771 + - *772 - allOf: - *197 - - *771 + - *772 examples: default: value: @@ -114855,8 +115041,8 @@ paths: category: repos subcategory: rules parameters: - - *493 - *494 + - *495 - *17 - *19 - name: includes_parents @@ -114867,7 +115053,7 @@ paths: schema: type: boolean default: true - - *774 + - *775 responses: '200': description: Response @@ -114922,8 +115108,8 @@ paths: category: repos subcategory: rules parameters: - - *493 - *494 + - *495 requestBody: description: Request body required: true @@ -114952,7 +115138,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *775 + items: *776 required: - name - enforcement @@ -114985,7 +115171,7 @@ paths: application/json: schema: *198 examples: - default: &785 + default: &786 value: id: 42 name: super cool ruleset @@ -115033,13 +115219,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *493 - *494 - - *776 - - *107 + - *495 - *777 + - *107 - *778 - *779 + - *780 - *17 - *19 responses: @@ -115047,9 +115233,9 @@ paths: description: Response content: application/json: - schema: *780 + schema: *781 examples: - default: *781 + default: *782 '404': *6 '500': *40 x-github: @@ -115070,17 +115256,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *493 - *494 - - *782 + - *495 + - *783 responses: '200': description: Response content: application/json: - schema: *783 + schema: *784 examples: - default: *784 + default: *785 '404': *6 '500': *40 x-github: @@ -115108,8 +115294,8 @@ paths: category: repos subcategory: rules parameters: - - *493 - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -115131,7 +115317,7 @@ paths: application/json: schema: *198 examples: - default: *785 + default: *786 '404': *6 '500': *40 put: @@ -115149,8 +115335,8 @@ paths: category: repos subcategory: rules parameters: - - *493 - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -115184,7 +115370,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *775 + items: *776 examples: default: value: @@ -115214,7 +115400,7 @@ paths: application/json: schema: *198 examples: - default: *785 + default: *786 '404': *6 '422': *15 '500': *40 @@ -115233,8 +115419,8 @@ paths: category: repos subcategory: rules parameters: - - *493 - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -115257,8 +115443,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-history parameters: - - *493 - *494 + - *495 - *17 - *19 - name: ruleset_id @@ -115276,7 +115462,7 @@ paths: type: array items: *202 examples: - default: *455 + default: *456 '404': *6 '500': *40 x-github: @@ -115295,8 +115481,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-version parameters: - - *493 - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -115314,7 +115500,7 @@ paths: description: Response content: application/json: - schema: *456 + schema: *457 examples: default: value: @@ -115369,9 +115555,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: - - *493 - *494 - - *457 + - *495 - *458 - *459 - *460 @@ -115379,18 +115564,19 @@ paths: - *462 - *463 - *464 + - *465 - *112 - *19 - *17 - - *786 - *787 - - *465 + - *788 - *466 - *467 - *468 - *469 - *470 - *471 + - *472 responses: '200': description: Response @@ -115417,8 +115603,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *788 - resolution: *789 + state: *789 + resolution: *790 resolved_at: type: string format: date-time @@ -115524,7 +115710,7 @@ paths: pull request. ' - oneOf: *790 + oneOf: *791 nullable: true has_more_locations: type: boolean @@ -115688,16 +115874,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: - - *493 - *494 - - *573 - - *468 + - *495 + - *574 + - *469 responses: '200': description: Response content: application/json: - schema: &791 + schema: &792 type: object properties: number: *134 @@ -115715,8 +115901,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *788 - resolution: *789 + state: *789 + resolution: *790 resolved_at: type: string format: date-time @@ -115822,7 +116008,7 @@ paths: pull request. ' - oneOf: *790 + oneOf: *791 nullable: true has_more_locations: type: boolean @@ -115850,7 +116036,7 @@ paths: properties: *20 required: *21 nullable: true - metadata: &980 + metadata: &981 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -115923,9 +116109,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: - - *493 - *494 - - *573 + - *495 + - *574 requestBody: required: true content: @@ -115933,8 +116119,8 @@ paths: schema: type: object properties: - state: *788 - resolution: *789 + state: *789 + resolution: *790 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -115978,7 +116164,7 @@ paths: description: Response content: application/json: - schema: *791 + schema: *792 examples: default: value: @@ -116080,9 +116266,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: - - *493 - *494 - - *573 + - *495 + - *574 - *19 - *17 responses: @@ -116093,7 +116279,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &982 + items: &983 type: object properties: type: @@ -116119,7 +116305,6 @@ paths: example: commit details: oneOf: - - *792 - *793 - *794 - *795 @@ -116132,6 +116317,7 @@ paths: - *802 - *803 - *804 + - *805 examples: default: value: @@ -116217,8 +116403,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -116226,14 +116412,14 @@ paths: schema: type: object properties: - reason: &806 + reason: &807 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *805 + placeholder_id: *806 required: - reason - placeholder_id @@ -116250,7 +116436,7 @@ paths: schema: type: object properties: - reason: *806 + reason: *807 expire_at: type: string format: date-time @@ -116296,8 +116482,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: - - *493 - *494 + - *495 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -116312,7 +116498,7 @@ paths: properties: incremental_scans: type: array - items: &807 + items: &808 description: Information on a single scan performed by secret scanning on the repository type: object @@ -116343,15 +116529,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *807 + items: *808 backfill_scans: type: array - items: *807 + items: *808 custom_pattern_backfill_scans: type: array items: allOf: - - *807 + - *808 - type: object properties: pattern_name: @@ -116364,7 +116550,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *807 + items: *808 examples: default: value: @@ -116429,8 +116615,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *493 - *494 + - *495 - *112 - name: sort description: The property to sort the results by. @@ -116474,9 +116660,9 @@ paths: application/json: schema: type: array - items: *808 + items: *809 examples: - default: *809 + default: *810 '400': *14 '404': *6 x-github: @@ -116499,8 +116685,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -116573,7 +116759,7 @@ paths: login: type: string description: The username of the user credited. - type: *476 + type: *477 required: - login - type @@ -116660,9 +116846,9 @@ paths: description: Response content: application/json: - schema: *808 + schema: *809 examples: - default: &811 + default: &812 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -116895,8 +117081,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -117000,7 +117186,7 @@ paths: description: Response content: application/json: - schema: *808 + schema: *809 examples: default: value: @@ -117147,17 +117333,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: - - *493 - *494 - - *810 + - *495 + - *811 responses: '200': description: Response content: application/json: - schema: *808 + schema: *809 examples: - default: *811 + default: *812 '403': *29 '404': *6 x-github: @@ -117181,9 +117367,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: - - *493 - *494 - - *810 + - *495 + - *811 requestBody: required: true content: @@ -117256,7 +117442,7 @@ paths: login: type: string description: The username of the user credited. - type: *476 + type: *477 required: - login - type @@ -117342,17 +117528,17 @@ paths: description: Response content: application/json: - schema: *808 + schema: *809 examples: - default: *811 - add_credit: *811 + default: *812 + add_credit: *812 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *267 + schema: *268 examples: invalid_state_transition: value: @@ -117383,9 +117569,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: - - *493 - *494 - - *810 + - *495 + - *811 responses: '202': *39 '400': *14 @@ -117412,17 +117598,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: - - *493 - *494 - - *810 + - *495 + - *811 responses: '202': description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *500 + default: *501 '400': *14 '422': *15 '403': *29 @@ -117448,8 +117634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-stargazers parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -117548,8 +117734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *493 - *494 + - *495 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -117558,7 +117744,7 @@ paths: application/json: schema: type: array - items: &812 + items: &813 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -117591,8 +117777,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -117668,8 +117854,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -117765,8 +117951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *493 - *494 + - *495 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -117920,8 +118106,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: - - *493 - *494 + - *495 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -117931,7 +118117,7 @@ paths: application/json: schema: type: array - items: *812 + items: *813 examples: default: value: @@ -117964,8 +118150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#create-a-commit-status parameters: - - *493 - *494 + - *495 - name: sha in: path required: true @@ -118019,7 +118205,7 @@ paths: description: Response content: application/json: - schema: *813 + schema: *814 examples: default: value: @@ -118073,8 +118259,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#list-watchers parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -118106,14 +118292,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#get-a-repository-subscription parameters: - - *493 - *494 + - *495 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &814 + schema: &815 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -118181,8 +118367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#set-a-repository-subscription parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -118208,7 +118394,7 @@ paths: description: Response content: application/json: - schema: *814 + schema: *815 examples: default: value: @@ -118235,8 +118421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#delete-a-repository-subscription parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -118256,8 +118442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-tags parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -118336,8 +118522,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *493 - *494 + - *495 - name: ref in: path required: true @@ -118373,8 +118559,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-teams parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -118384,9 +118570,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 headers: Link: *47 '404': *6 @@ -118406,8 +118592,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-all-repository-topics parameters: - - *493 - *494 + - *495 - *19 - *17 responses: @@ -118415,7 +118601,7 @@ paths: description: Response content: application/json: - schema: &815 + schema: &816 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -118427,7 +118613,7 @@ paths: required: - names examples: - default: &816 + default: &817 value: names: - octocat @@ -118450,8 +118636,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#replace-all-repository-topics parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -118482,9 +118668,9 @@ paths: description: Response content: application/json: - schema: *815 + schema: *816 examples: - default: *816 + default: *817 '404': *6 '422': *7 x-github: @@ -118505,9 +118691,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-repository-clones parameters: - - *493 - *494 - - &817 + - *495 + - &818 name: per description: The time frame to display results for. in: query @@ -118536,7 +118722,7 @@ paths: example: 128 clones: type: array - items: &818 + items: &819 title: Traffic type: object properties: @@ -118623,8 +118809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-paths parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -118714,8 +118900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-sources parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -118775,9 +118961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-page-views parameters: - - *493 - *494 - - *817 + - *495 + - *818 responses: '200': description: Response @@ -118796,7 +118982,7 @@ paths: example: 3782 views: type: array - items: *818 + items: *819 required: - uniques - count @@ -118873,8 +119059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#transfer-a-repository parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -118910,7 +119096,7 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: default: value: @@ -119148,8 +119334,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: - - *493 - *494 + - *495 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -119172,8 +119358,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-vulnerability-alerts parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -119195,8 +119381,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-vulnerability-alerts parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -119222,8 +119408,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *493 - *494 + - *495 - name: ref in: path required: true @@ -119315,9 +119501,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *500 + default: *501 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -119358,7 +119544,7 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: default: value: @@ -119468,7 +119654,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &826 + - &827 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -119477,7 +119663,7 @@ paths: schema: type: string example: members - - &831 + - &832 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -119488,7 +119674,7 @@ paths: default: 1 format: int32 example: 1 - - &832 + - &833 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -119530,7 +119716,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &821 + items: &822 allOf: - type: object required: @@ -119605,7 +119791,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: &833 + meta: &834 type: object description: The metadata associated with the creation/updates to the user. @@ -119665,30 +119851,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &822 + '400': &823 description: Bad request content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 - '401': *820 - '403': &823 + schema: *820 + '401': *821 + '403': &824 description: Permission denied - '429': &824 + '429': &825 description: Too many requests content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 - '500': &825 + schema: *820 + '500': &826 description: Internal server error content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 + schema: *820 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119712,7 +119898,7 @@ paths: required: true content: application/json: - schema: &829 + schema: &830 type: object required: - schemas @@ -119772,9 +119958,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *821 + schema: *822 examples: - group: &827 + group: &828 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -119793,13 +119979,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': *822 - '401': *820 - '403': *823 - '409': &830 + '400': *823 + '401': *821 + '403': *824 + '409': &831 description: Duplicate record detected - '429': *824 - '500': *825 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119816,7 +120002,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: - - &828 + - &829 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -119824,22 +120010,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *826 + - *827 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *821 + schema: *822 examples: - default: *827 - '400': *822 - '401': *820 - '403': *823 + default: *828 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '429': *824 - '500': *825 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119858,13 +120044,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: - - *828 + - *829 - *41 requestBody: required: true content: application/json: - schema: *829 + schema: *830 examples: group: summary: Group @@ -119890,17 +120076,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *821 + schema: *822 examples: - group: *827 - groupWithMembers: *827 - '400': *822 - '401': *820 - '403': *823 + group: *828 + groupWithMembers: *828 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '409': *830 - '429': *824 - '500': *825 + '409': *831 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119924,13 +120110,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: - - *828 + - *829 - *41 requestBody: required: true content: application/json: - schema: &840 + schema: &841 type: object required: - Operations @@ -119990,17 +120176,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *821 + schema: *822 examples: - updateGroup: *827 - addMembers: *827 - '400': *822 - '401': *820 - '403': *823 + updateGroup: *828 + addMembers: *828 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '409': *830 - '429': *824 - '500': *825 + '409': *831 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120016,17 +120202,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: - - *828 + - *829 - *41 responses: '204': description: Group was deleted, no content - '400': *822 - '401': *820 - '403': *823 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '429': *824 - '500': *825 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120060,8 +120246,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *831 - *832 + - *833 - *41 responses: '200': @@ -120094,7 +120280,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &835 + items: &836 allOf: - type: object required: @@ -120173,7 +120359,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &834 + roles: &835 type: array description: The roles assigned to the user. items: @@ -120229,7 +120415,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *833 + meta: *834 startIndex: type: integer description: A starting index for the returned page @@ -120266,11 +120452,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *822 - '401': *820 - '403': *823 - '429': *824 - '500': *825 + '400': *823 + '401': *821 + '403': *824 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120294,7 +120480,7 @@ paths: required: true content: application/json: - schema: &838 + schema: &839 type: object required: - schemas @@ -120376,9 +120562,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *834 + roles: *835 examples: - user: &839 + user: &840 summary: User value: schemas: @@ -120425,9 +120611,9 @@ paths: description: User has been created content: application/scim+json: - schema: *835 + schema: *836 examples: - user: &836 + user: &837 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -120453,13 +120639,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: *836 - '400': *822 - '401': *820 - '403': *823 - '409': *830 - '429': *824 - '500': *825 + enterpriseOwner: *837 + '400': *823 + '401': *821 + '403': *824 + '409': *831 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120476,7 +120662,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: - - &837 + - &838 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -120489,15 +120675,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *835 + schema: *836 examples: - default: *836 - '400': *822 - '401': *820 - '403': *823 + default: *837 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '429': *824 - '500': *825 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120548,30 +120734,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: - - *837 + - *838 - *41 requestBody: required: true content: application/json: - schema: *838 + schema: *839 examples: - user: *839 + user: *840 responses: '200': description: User was updated content: application/scim+json: - schema: *835 + schema: *836 examples: - user: *836 - '400': *822 - '401': *820 - '403': *823 + user: *837 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '409': *830 - '429': *824 - '500': *825 + '409': *831 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120612,13 +120798,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: - - *837 + - *838 - *41 requestBody: required: true content: application/json: - schema: *840 + schema: *841 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -120658,18 +120844,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *835 - examples: - userMultiValuedProperties: *836 - userSingleValuedProperties: *836 - disableUser: *836 - '400': *822 - '401': *820 - '403': *823 + schema: *836 + examples: + userMultiValuedProperties: *837 + userSingleValuedProperties: *837 + disableUser: *837 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '409': *830 - '429': *824 - '500': *825 + '409': *831 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120689,17 +120875,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: - - *837 + - *838 - *41 responses: '204': description: User was deleted, no content - '400': *822 - '401': *820 - '403': *823 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '429': *824 - '500': *825 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120786,7 +120972,7 @@ paths: example: 1 Resources: type: array - items: &841 + items: &842 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -121017,22 +121203,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &842 + '404': &843 description: Resource not found content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 - '403': &843 + schema: *820 + '403': &844 description: Forbidden content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 - '400': *822 - '429': *824 + schema: *820 + '400': *823 + '429': *825 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -121058,9 +121244,9 @@ paths: description: Response content: application/scim+json: - schema: *841 + schema: *842 examples: - default: &844 + default: &845 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -121083,17 +121269,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *842 - '403': *843 - '500': *825 + '404': *843 + '403': *844 + '500': *826 '409': description: Conflict content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 - '400': *822 + schema: *820 + '400': *823 requestBody: required: true content: @@ -121191,17 +121377,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *837 + - *838 responses: '200': description: Response content: application/scim+json: - schema: *841 + schema: *842 examples: - default: *844 - '404': *842 - '403': *843 + default: *845 + '404': *843 + '403': *844 '304': *37 x-github: githubCloudOnly: true @@ -121225,18 +121411,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *837 + - *838 responses: '200': description: Response content: application/scim+json: - schema: *841 + schema: *842 examples: - default: *844 + default: *845 '304': *37 - '404': *842 - '403': *843 + '404': *843 + '403': *844 requestBody: required: true content: @@ -121349,19 +121535,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *837 + - *838 responses: '200': description: Response content: application/scim+json: - schema: *841 + schema: *842 examples: - default: *844 + default: *845 '304': *37 - '404': *842 - '403': *843 - '400': *822 + '404': *843 + '403': *844 + '400': *823 '429': description: Response content: @@ -121452,12 +121638,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *837 + - *838 responses: '204': description: Response - '404': *842 - '403': *843 + '404': *843 + '403': *844 '304': *37 x-github: githubCloudOnly: true @@ -121575,7 +121761,7 @@ paths: html_url: type: string format: uri - repository: *292 + repository: *293 score: type: number file_size: @@ -121593,7 +121779,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &845 + text_matches: &846 title: Search Result Text Matches type: array items: @@ -121756,7 +121942,7 @@ paths: enum: - author-date - committer-date - - &846 + - &847 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 @@ -121827,7 +122013,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *543 + properties: *544 nullable: true comment_count: type: integer @@ -121847,7 +122033,7 @@ paths: url: type: string format: uri - verification: *670 + verification: *671 required: - author - committer @@ -121866,7 +122052,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *543 + properties: *544 nullable: true parents: type: array @@ -121879,12 +122065,12 @@ paths: type: string sha: type: string - repository: *292 + repository: *293 score: type: number node_id: type: string - text_matches: *845 + text_matches: *846 required: - sha - node_id @@ -122077,7 +122263,7 @@ paths: - interactions - created - updated - - *846 + - *847 - *17 - *19 - name: advanced_search @@ -122191,11 +122377,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: type: string state_reason: @@ -122212,8 +122398,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *435 - required: *436 + properties: *436 + required: *437 nullable: true comments: type: integer @@ -122227,7 +122413,7 @@ paths: type: string format: date-time nullable: true - text_matches: *845 + text_matches: *846 pull_request: type: object properties: @@ -122260,7 +122446,7 @@ paths: type: string score: type: number - author_association: *228 + author_association: *229 draft: type: boolean repository: *80 @@ -122271,7 +122457,7 @@ paths: timeline_url: type: string format: uri - type: *400 + type: *401 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -122281,17 +122467,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - reactions: *229 + reactions: *230 required: - assignee - closed_at @@ -122509,7 +122695,7 @@ paths: enum: - created - updated - - *846 + - *847 - *17 - *19 responses: @@ -122553,7 +122739,7 @@ paths: nullable: true score: type: number - text_matches: *845 + text_matches: *846 required: - id - node_id @@ -122639,7 +122825,7 @@ paths: - forks - help-wanted-issues - updated - - *846 + - *847 - *17 - *19 responses: @@ -122867,8 +123053,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true permissions: type: object @@ -122887,7 +123073,7 @@ paths: - admin - pull - push - text_matches: *845 + text_matches: *846 temp_clone_token: type: string allow_merge_commit: @@ -123188,7 +123374,7 @@ paths: type: string format: uri nullable: true - text_matches: *845 + text_matches: *846 related: type: array nullable: true @@ -123381,7 +123567,7 @@ paths: - followers - repositories - joined - - *846 + - *847 - *17 - *19 responses: @@ -123485,7 +123671,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *845 + text_matches: *846 blog: type: string nullable: true @@ -123564,7 +123750,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &849 + - &850 name: team_id description: The unique identifier of the team. in: path @@ -123576,9 +123762,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '404': *6 x-github: githubCloudOnly: false @@ -123605,7 +123791,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *849 + - *850 requestBody: required: true content: @@ -123668,16 +123854,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '201': description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '404': *6 '422': *15 '403': *29 @@ -123705,7 +123891,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *849 + - *850 responses: '204': description: Response @@ -123734,7 +123920,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *849 + - *850 - *17 - *19 responses: @@ -123744,9 +123930,9 @@ paths: application/json: schema: type: array - items: *394 + items: *395 examples: - default: *395 + default: *396 headers: Link: *47 x-github: @@ -123774,7 +123960,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *849 + - *850 - name: role description: Filters members returned by their role in the team. in: query @@ -123795,9 +123981,9 @@ paths: application/json: schema: type: array - items: *850 + items: *851 examples: - default: *851 + default: *852 headers: Link: *47 '404': *6 @@ -123825,7 +124011,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *849 + - *850 - *151 responses: '204': @@ -123862,7 +124048,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *849 + - *850 - *151 responses: '204': @@ -123902,7 +124088,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *849 + - *850 - *151 responses: '204': @@ -123939,16 +124125,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: - - *849 + - *850 - *151 responses: '200': description: Response content: application/json: - schema: *492 + schema: *493 examples: - response-if-user-is-a-team-maintainer: *852 + response-if-user-is-a-team-maintainer: *853 '404': *6 x-github: githubCloudOnly: false @@ -123981,7 +124167,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: - - *849 + - *850 - *151 requestBody: required: false @@ -124007,9 +124193,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *493 examples: - response-if-users-membership-with-team-is-now-pending: *853 + response-if-users-membership-with-team-is-now-pending: *854 '403': description: Forbidden if team synchronization is set up '422': @@ -124043,7 +124229,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: - - *849 + - *850 - *151 responses: '204': @@ -124071,7 +124257,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *849 + - *850 - *17 - *19 responses: @@ -124081,9 +124267,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *422 + default: *423 headers: Link: *47 '404': *6 @@ -124113,15 +124299,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: - - *849 - - *493 + - *850 - *494 + - *495 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *854 + schema: *855 examples: alternative-response-with-extra-repository-information: value: @@ -124272,9 +124458,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: - - *849 - - *493 + - *850 - *494 + - *495 requestBody: required: false content: @@ -124324,9 +124510,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: - - *849 - - *493 + - *850 - *494 + - *495 responses: '204': description: Response @@ -124355,15 +124541,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: - - *849 + - *850 responses: '200': description: Response content: application/json: - schema: *495 + schema: *496 examples: - default: *496 + default: *497 '403': *29 '404': *6 x-github: @@ -124390,7 +124576,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: - - *849 + - *850 requestBody: required: true content: @@ -124447,7 +124633,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *496 examples: default: value: @@ -124478,7 +124664,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *849 + - *850 - *17 - *19 responses: @@ -124488,9 +124674,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - response-if-child-teams-exist: *855 + response-if-child-teams-exist: *856 headers: Link: *47 '404': *6 @@ -124523,7 +124709,7 @@ paths: application/json: schema: oneOf: - - &857 + - &858 title: Private User description: Private User type: object @@ -124726,7 +124912,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *856 + - *857 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -124879,7 +125065,7 @@ paths: description: Response content: application/json: - schema: *857 + schema: *858 examples: default: value: @@ -125082,9 +125268,9 @@ paths: type: integer codespaces: type: array - items: *405 + items: *406 examples: - default: *406 + default: *407 '304': *37 '500': *40 '401': *25 @@ -125223,17 +125409,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '401': *25 '403': *29 '404': *6 @@ -125277,7 +125463,7 @@ paths: type: integer secrets: type: array - items: &858 + items: &859 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -125317,7 +125503,7 @@ paths: - visibility - selected_repositories_url examples: - default: *599 + default: *600 headers: Link: *47 x-github: @@ -125387,13 +125573,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: - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *858 + schema: *859 examples: default: value: @@ -125423,7 +125609,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: - - *302 + - *303 requestBody: required: true content: @@ -125468,7 +125654,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -125496,7 +125682,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: - - *302 + - *303 responses: '204': description: Response @@ -125521,7 +125707,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: - - *302 + - *303 responses: '200': description: Response @@ -125537,9 +125723,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *344 + default: *345 '401': *25 '403': *29 '404': *6 @@ -125564,7 +125750,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: - - *302 + - *303 requestBody: required: true content: @@ -125618,7 +125804,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: - - *302 + - *303 - name: repository_id in: path required: true @@ -125651,7 +125837,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: - - *302 + - *303 - name: repository_id in: path required: true @@ -125683,15 +125869,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: - - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '304': *37 '500': *40 '401': *25 @@ -125717,7 +125903,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: - - *407 + - *408 requestBody: required: false content: @@ -125747,9 +125933,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '401': *25 '403': *29 '404': *6 @@ -125771,7 +125957,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: - - *407 + - *408 responses: '202': *39 '304': *37 @@ -125800,13 +125986,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: - - *407 + - *408 responses: '202': description: Response content: application/json: - schema: &859 + schema: &860 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -125847,7 +126033,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &860 + default: &861 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -125879,7 +126065,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *407 + - *408 - name: export_id in: path required: true @@ -125892,9 +126078,9 @@ paths: description: Response content: application/json: - schema: *859 + schema: *860 examples: - default: *860 + default: *861 '404': *6 x-github: githubCloudOnly: false @@ -125915,7 +126101,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *407 + - *408 responses: '200': description: Response @@ -125931,9 +126117,9 @@ paths: type: integer machines: type: array - items: *861 + items: *862 examples: - default: *862 + default: *863 '304': *37 '500': *40 '401': *25 @@ -125962,7 +126148,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: - - *407 + - *408 requestBody: required: true content: @@ -126012,13 +126198,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *498 + repository: *499 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *597 - required: *598 + properties: *598 + required: *599 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -126792,15 +126978,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: - - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '304': *37 '500': *40 '400': *14 @@ -126832,15 +127018,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: - - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '500': *40 '401': *25 '403': *29 @@ -126870,9 +127056,9 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: - default: &874 + default: &875 value: - id: 197 name: hello_docker @@ -126973,7 +127159,7 @@ paths: application/json: schema: type: array - items: &863 + items: &864 title: Email description: Email type: object @@ -127038,9 +127224,9 @@ paths: application/json: schema: type: array - items: *863 + items: *864 examples: - default: &876 + default: &877 value: - email: octocat@github.com verified: true @@ -127115,7 +127301,7 @@ paths: application/json: schema: type: array - items: *863 + items: *864 examples: default: value: @@ -127371,7 +127557,7 @@ paths: application/json: schema: type: array - items: &864 + items: &865 title: GPG Key description: A unique encryption key type: object @@ -127502,7 +127688,7 @@ paths: - subkeys - revoked examples: - default: &893 + default: &894 value: - id: 3 name: Octocat's GPG Key @@ -127587,9 +127773,9 @@ paths: description: Response content: application/json: - schema: *864 + schema: *865 examples: - default: &865 + default: &866 value: id: 3 name: Octocat's GPG Key @@ -127646,7 +127832,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: - - &866 + - &867 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -127658,9 +127844,9 @@ paths: description: Response content: application/json: - schema: *864 + schema: *865 examples: - default: *865 + default: *866 '404': *6 '304': *37 '403': *29 @@ -127683,7 +127869,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: - - *866 + - *867 responses: '204': description: Response @@ -127885,7 +128071,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *287 + default: *288 headers: Link: *47 '404': *6 @@ -127911,7 +128097,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *286 + - *287 responses: '204': description: Response @@ -127937,7 +128123,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *286 + - *287 responses: '204': description: Response @@ -127971,12 +128157,12 @@ paths: application/json: schema: anyOf: - - *392 + - *393 - type: object properties: {} additionalProperties: false examples: - default: *393 + default: *394 '204': description: Response when there are no restrictions x-github: @@ -128000,7 +128186,7 @@ paths: required: true content: application/json: - schema: *680 + schema: *681 examples: default: value: @@ -128011,7 +128197,7 @@ paths: description: Response content: application/json: - schema: *392 + schema: *393 examples: default: value: @@ -128092,7 +128278,7 @@ paths: - closed - all default: open - - *403 + - *404 - name: sort description: What to sort results by. in: query @@ -128105,7 +128291,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - *17 - *19 responses: @@ -128115,9 +128301,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *404 + default: *405 headers: Link: *47 '404': *6 @@ -128150,7 +128336,7 @@ paths: application/json: schema: type: array - items: &867 + items: &868 title: Key description: Key type: object @@ -128251,9 +128437,9 @@ paths: description: Response content: application/json: - schema: *867 + schema: *868 examples: - default: &868 + default: &869 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -128286,15 +128472,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: - - *733 + - *734 responses: '200': description: Response content: application/json: - schema: *867 + schema: *868 examples: - default: *868 + default: *869 '404': *6 '304': *37 '403': *29 @@ -128317,7 +128503,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: - - *733 + - *734 responses: '204': description: Response @@ -128350,7 +128536,7 @@ paths: application/json: schema: type: array - items: &869 + items: &870 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -128407,7 +128593,7 @@ paths: - id - type - login - plan: *249 + plan: *250 required: - billing_cycle - next_billing_date @@ -128418,7 +128604,7 @@ paths: - account - plan examples: - default: &870 + default: &871 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -128480,9 +128666,9 @@ paths: application/json: schema: type: array - items: *869 + items: *870 examples: - default: *870 + default: *871 headers: Link: *47 '304': *37 @@ -128522,7 +128708,7 @@ paths: application/json: schema: type: array - items: *408 + items: *409 examples: default: value: @@ -128636,7 +128822,7 @@ paths: description: Response content: application/json: - schema: *408 + schema: *409 examples: default: value: @@ -128723,9 +128909,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *408 + schema: *409 examples: - default: &871 + default: &872 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -128772,9 +128958,9 @@ paths: processed asynchronously. content: application/json: - schema: *408 + schema: *409 examples: - default: *871 + default: *872 '403': *29 '404': *6 '422': *15 @@ -128803,7 +128989,7 @@ paths: application/json: schema: type: array - items: *410 + items: *411 examples: default: value: @@ -129056,7 +129242,7 @@ paths: description: Response content: application/json: - schema: *410 + schema: *411 examples: default: value: @@ -129236,7 +129422,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#get-a-user-migration-status parameters: - - *411 + - *412 - name: exclude in: query required: false @@ -129249,7 +129435,7 @@ paths: description: Response content: application/json: - schema: *410 + schema: *411 examples: default: value: @@ -129443,7 +129629,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#download-a-user-migration-archive parameters: - - *411 + - *412 responses: '302': description: Response @@ -129469,7 +129655,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#delete-a-user-migration-archive parameters: - - *411 + - *412 responses: '204': description: Response @@ -129498,8 +129684,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - - *411 - - *872 + - *412 + - *873 responses: '204': description: Response @@ -129523,7 +129709,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *411 + - *412 - *17 - *19 responses: @@ -129533,9 +129719,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *422 + default: *423 headers: Link: *47 '404': *6 @@ -129572,7 +129758,7 @@ paths: type: array items: *75 examples: - default: *262 + default: *263 headers: Link: *47 '304': *37 @@ -129614,7 +129800,7 @@ paths: - docker - nuget - container - - *873 + - *874 - *19 - *17 responses: @@ -129624,10 +129810,10 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: - default: *874 - '400': *875 + default: *875 + '400': *876 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -129647,16 +129833,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: - - *418 - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: &894 + default: &895 value: id: 40201 name: octo-name @@ -129769,8 +129955,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: - - *418 - *419 + - *420 responses: '204': description: Response @@ -129800,8 +129986,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: - - *418 - *419 + - *420 - name: token description: package token schema: @@ -129833,8 +130019,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: - - *418 - *419 + - *420 - *19 - *17 - name: state @@ -129854,7 +130040,7 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: default: value: @@ -129903,15 +130089,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: - - *418 - *419 - - *421 + - *420 + - *422 responses: '200': description: Response content: application/json: - schema: *420 + schema: *421 examples: default: value: @@ -129947,9 +130133,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: - - *418 - *419 - - *421 + - *420 + - *422 responses: '204': description: Response @@ -129979,9 +130165,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: - - *418 - *419 - - *421 + - *420 + - *422 responses: '204': description: Response @@ -130018,9 +130204,9 @@ paths: application/json: schema: type: array - items: *863 + items: *864 examples: - default: *876 + default: *877 headers: Link: *47 '304': *37 @@ -130133,7 +130319,7 @@ paths: type: array items: *80 examples: - default: &883 + default: &884 summary: Default response value: - id: 1296269 @@ -130437,9 +130623,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *500 + default: *501 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -130477,9 +130663,9 @@ paths: application/json: schema: type: array - items: *683 + items: *684 examples: - default: *877 + default: *878 headers: Link: *47 '304': *37 @@ -130502,7 +130688,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *396 + - *397 responses: '204': description: Response @@ -130525,7 +130711,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *396 + - *397 responses: '204': description: Response @@ -130558,7 +130744,7 @@ paths: application/json: schema: type: array - items: &878 + items: &879 title: Social account description: Social media account type: object @@ -130573,7 +130759,7 @@ paths: - provider - url examples: - default: &879 + default: &880 value: - provider: twitter url: https://twitter.com/github @@ -130635,9 +130821,9 @@ paths: application/json: schema: type: array - items: *878 + items: *879 examples: - default: *879 + default: *880 '422': *15 '304': *37 '404': *6 @@ -130724,7 +130910,7 @@ paths: application/json: schema: type: array - items: &880 + items: &881 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -130744,7 +130930,7 @@ paths: - title - created_at examples: - default: &908 + default: &909 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -130808,9 +130994,9 @@ paths: description: Response content: application/json: - schema: *880 + schema: *881 examples: - default: &881 + default: &882 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -130840,7 +131026,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: - - &882 + - &883 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -130852,9 +131038,9 @@ paths: description: Response content: application/json: - schema: *880 + schema: *881 examples: - default: *881 + default: *882 '404': *6 '304': *37 '403': *29 @@ -130877,7 +131063,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: - - *882 + - *883 responses: '204': description: Response @@ -130906,7 +131092,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: - - &909 + - &910 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 @@ -130931,11 +131117,11 @@ paths: type: array items: *80 examples: - default-response: *883 + default-response: *884 application/vnd.github.v3.star+json: schema: type: array - items: &910 + items: &911 title: Starred Repository description: Starred Repository type: object @@ -131091,8 +131277,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: - - *493 - *494 + - *495 responses: '204': description: Response if this repository is starred by you @@ -131120,8 +131306,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: - - *493 - *494 + - *495 responses: '204': description: Response @@ -131145,8 +131331,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: - - *493 - *494 + - *495 responses: '204': description: Response @@ -131179,9 +131365,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *422 + default: *423 headers: Link: *47 '304': *37 @@ -131218,7 +131404,7 @@ paths: application/json: schema: type: array - items: *485 + items: *486 examples: default: value: @@ -131296,7 +131482,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#get-a-user-using-their-id parameters: - - *251 + - *252 responses: '200': description: Response @@ -131304,10 +131490,10 @@ paths: application/json: schema: oneOf: + - *858 - *857 - - *856 examples: - default-response: &887 + default-response: &888 summary: Default response value: login: octocat @@ -131342,7 +131528,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &888 + response-with-git-hub-plan-information: &889 summary: Response with GitHub plan information value: login: octocat @@ -131399,14 +131585,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: - - &885 + - &886 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *434 + - *435 requestBody: required: true description: Details of the draft item to create in the project. @@ -131440,9 +131626,9 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: - draft_issue: *441 + draft_issue: *442 '304': *37 '403': *29 '401': *25 @@ -131465,7 +131651,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *884 + - *885 - *17 responses: '200': @@ -131500,8 +131686,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: - - *885 - - *434 + - *886 + - *435 requestBody: required: true content: @@ -131572,17 +131758,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *886 + schema: *887 examples: table_view: summary: Response for creating a table view - value: *445 + value: *446 board_view: summary: Response for creating a board view with filter - value: *445 + value: *446 roadmap_view: summary: Response for creating a roadmap view - value: *445 + value: *446 '304': *37 '403': *29 '401': *25 @@ -131624,11 +131810,11 @@ paths: application/json: schema: oneOf: + - *858 - *857 - - *856 examples: - default-response: *887 - response-with-git-hub-plan-information: *888 + default-response: *888 + response-with-git-hub-plan-information: *889 '404': *6 x-github: githubCloudOnly: false @@ -131678,8 +131864,8 @@ paths: required: - subject_digests examples: - default: *889 - withPredicateType: *890 + default: *890 + withPredicateType: *891 responses: '200': description: Response @@ -131732,7 +131918,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *891 + default: *892 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -131937,12 +132123,12 @@ paths: initiator: type: string examples: - default: *539 + default: *540 '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -132004,7 +132190,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *340 + items: *341 examples: default: summary: Example response for listing user copilot spaces @@ -132216,9 +132402,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: &892 + default: &893 summary: Example response for a user copilot space value: id: 42 @@ -132317,9 +132503,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *892 + default: *893 '403': *29 '404': *6 x-github: @@ -132440,9 +132626,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *892 + default: *893 '403': *29 '404': *6 '422': *15 @@ -132519,7 +132705,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *342 + items: *343 examples: default: value: @@ -132662,7 +132848,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: default: value: @@ -132773,7 +132959,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: default: value: @@ -132903,7 +133089,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *343 + items: *344 examples: default: value: @@ -132995,7 +133181,7 @@ paths: description: Resource created content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -133011,7 +133197,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -133064,7 +133250,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -133131,7 +133317,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -133208,9 +133394,9 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: - default: *874 + default: *875 '403': *29 '401': *25 x-github: @@ -133243,7 +133429,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -133316,7 +133502,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -133403,7 +133589,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -133551,7 +133737,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-a-user parameters: - *151 - - *238 + - *239 - *17 - *19 responses: @@ -133561,9 +133747,9 @@ paths: application/json: schema: type: array - items: *239 + items: *240 examples: - default: *240 + default: *241 headers: Link: *47 '422': *15 @@ -133594,9 +133780,9 @@ paths: application/json: schema: type: array - items: *864 + items: *865 examples: - default: *893 + default: *894 headers: Link: *47 x-github: @@ -133700,7 +133886,7 @@ paths: application/json: schema: *22 examples: - default: *390 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -133785,7 +133971,7 @@ paths: type: array items: *75 examples: - default: *262 + default: *263 headers: Link: *47 x-github: @@ -133824,7 +134010,7 @@ paths: - docker - nuget - container - - *873 + - *874 - *151 - *19 - *17 @@ -133835,12 +134021,12 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: - default: *874 + default: *875 '403': *29 '401': *25 - '400': *875 + '400': *876 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -133860,17 +134046,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-a-user parameters: - - *418 - *419 + - *420 - *151 responses: '200': description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *894 + default: *895 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -133891,8 +134077,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-a-user parameters: - - *418 - *419 + - *420 - *151 responses: '204': @@ -133925,8 +134111,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-a-user parameters: - - *418 - *419 + - *420 - *151 - name: token description: package token @@ -133959,8 +134145,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: - - *418 - *419 + - *420 - *151 responses: '200': @@ -133969,7 +134155,7 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: default: value: @@ -134027,16 +134213,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: - - *418 - *419 - - *421 + - *420 + - *422 - *151 responses: '200': description: Response content: application/json: - schema: *420 + schema: *421 examples: default: value: @@ -134071,10 +134257,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-a-user parameters: - - *418 - *419 + - *420 - *151 - - *421 + - *422 responses: '204': description: Response @@ -134106,10 +134292,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-a-user parameters: - - *418 - *419 + - *420 - *151 - - *421 + - *422 responses: '204': description: Response @@ -134150,9 +134336,9 @@ paths: application/json: schema: type: array - items: *432 + items: *433 examples: - default: *433 + default: *434 headers: Link: *47 '304': *37 @@ -134174,16 +134360,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-user parameters: - - *434 + - *435 - *151 responses: '200': description: Response content: application/json: - schema: *432 + schema: *433 examples: - default: *433 + default: *434 headers: Link: *47 '304': *37 @@ -134205,7 +134391,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-user parameters: - - *434 + - *435 - *151 - *17 - *110 @@ -134217,9 +134403,9 @@ paths: application/json: schema: type: array - items: *438 + items: *439 examples: - default: *895 + default: *896 headers: Link: *47 '304': *37 @@ -134241,7 +134427,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-field-to-user-owned-project parameters: - *151 - - *434 + - *435 requestBody: required: true content: @@ -134279,7 +134465,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *896 + items: *897 required: - name - data_type @@ -134295,7 +134481,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *897 + iteration_configuration: *898 required: - name - data_type @@ -134317,20 +134503,20 @@ paths: value: name: Due date data_type: date - single_select_field: *898 - iteration_field: *899 + single_select_field: *899 + iteration_field: *900 responses: '201': description: Response content: application/json: - schema: *438 + schema: *439 examples: - text_field: *900 - number_field: *901 - date_field: *902 - single_select_field: *903 - iteration_field: *904 + text_field: *901 + number_field: *902 + date_field: *903 + single_select_field: *904 + iteration_field: *905 '304': *37 '403': *29 '401': *25 @@ -134351,17 +134537,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - - *434 - - *905 + - *435 + - *906 - *151 responses: '200': description: Response content: application/json: - schema: *438 + schema: *439 examples: - default: *906 + default: *907 headers: Link: *47 '304': *37 @@ -134384,7 +134570,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: - - *434 + - *435 - *151 - *110 - *111 @@ -134417,9 +134603,9 @@ paths: application/json: schema: type: array - items: *442 + items: *443 examples: - default: *443 + default: *444 headers: Link: *47 '304': *37 @@ -134441,7 +134627,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-user-owned-project parameters: - *151 - - *434 + - *435 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -134511,22 +134697,22 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *441 + value: *442 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *441 + value: *442 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *441 + value: *442 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *441 + value: *442 '304': *37 '403': *29 '401': *25 @@ -134546,9 +134732,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: - - *434 + - *435 - *151 - - *444 + - *445 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -134568,9 +134754,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: *443 + default: *444 headers: Link: *47 '304': *37 @@ -134591,9 +134777,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-user parameters: - - *434 + - *435 - *151 - - *444 + - *445 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -134663,13 +134849,13 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - text_field: *443 - number_field: *443 - date_field: *443 - single_select_field: *443 - iteration_field: *443 + text_field: *444 + number_field: *444 + date_field: *444 + single_select_field: *444 + iteration_field: *444 '401': *25 '403': *29 '404': *6 @@ -134689,9 +134875,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-user parameters: - - *434 + - *435 - *151 - - *444 + - *445 responses: '204': description: Response @@ -134713,9 +134899,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: - - *434 + - *435 - *151 - - *907 + - *908 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -134741,9 +134927,9 @@ paths: application/json: schema: type: array - items: *442 + items: *443 examples: - default: *443 + default: *444 headers: Link: *47 '304': *37 @@ -134781,7 +134967,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -134856,7 +135042,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -134962,9 +135148,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *422 + default: *423 headers: Link: *47 x-github: @@ -134994,9 +135180,9 @@ paths: application/json: schema: type: array - items: *878 + items: *879 examples: - default: *879 + default: *880 headers: Link: *47 x-github: @@ -135026,9 +135212,9 @@ paths: application/json: schema: type: array - items: *880 + items: *881 examples: - default: *908 + default: *909 headers: Link: *47 x-github: @@ -135053,7 +135239,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *151 - - *909 + - *910 - *112 - *17 - *19 @@ -135065,11 +135251,11 @@ paths: schema: anyOf: - type: array - items: *910 + items: *911 - type: array items: *80 examples: - default-response: *883 + default-response: *884 headers: Link: *47 x-github: @@ -135098,9 +135284,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *422 + default: *423 headers: Link: *47 x-github: @@ -135228,7 +135414,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &911 + enterprise: &912 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -135286,7 +135472,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &912 + installation: &913 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -135305,7 +135491,7 @@ x-webhooks: required: - id - node_id - organization: &913 + organization: &914 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -135365,13 +135551,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &914 + repository: &915 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &953 + properties: &954 id: description: Unique identifier of the repository example: 42 @@ -135391,8 +135577,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true organization: title: Simple User @@ -136066,7 +136252,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &954 + required: &955 - archive_url - assignees_url - blobs_url @@ -136217,10 +136403,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -136296,11 +136482,11 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - rule: &915 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + rule: &916 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) @@ -136523,11 +136709,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - rule: *915 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + rule: *916 sender: *4 required: - action @@ -136710,11 +136896,11 @@ x-webhooks: - everyone required: - from - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - rule: *915 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + rule: *916 sender: *4 required: - action @@ -136787,7 +136973,7 @@ x-webhooks: required: true content: application/json: - schema: &937 + schema: &938 title: Exemption request cancellation event type: object properties: @@ -136795,11 +136981,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - exemption_request: &916 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + exemption_request: &917 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -137103,7 +137289,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &917 + items: &918 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -137213,7 +137399,7 @@ x-webhooks: required: true content: application/json: - schema: &938 + schema: &939 title: Exemption request completed event type: object properties: @@ -137221,11 +137407,11 @@ x-webhooks: type: string enum: - completed - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - exemption_request: *916 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + exemption_request: *917 sender: *4 required: - action @@ -137297,7 +137483,7 @@ x-webhooks: required: true content: application/json: - schema: &935 + schema: &936 title: Exemption request created event type: object properties: @@ -137305,11 +137491,11 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - exemption_request: *916 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + exemption_request: *917 sender: *4 required: - action @@ -137381,7 +137567,7 @@ x-webhooks: required: true content: application/json: - schema: &939 + schema: &940 title: Exemption response dismissed event type: object properties: @@ -137389,12 +137575,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - exemption_request: *916 - exemption_response: *917 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + exemption_request: *917 + exemption_response: *918 sender: *4 required: - action @@ -137468,7 +137654,7 @@ x-webhooks: required: true content: application/json: - schema: &936 + schema: &937 title: Exemption response submitted event type: object properties: @@ -137476,12 +137662,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - exemption_request: *916 - exemption_response: *917 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + exemption_request: *917 + exemption_response: *918 sender: *4 required: - action @@ -137565,7 +137751,7 @@ x-webhooks: type: string enum: - completed - check_run: &919 + check_run: &920 title: CheckRun description: A check performed on the code of a given code change type: object @@ -137618,8 +137804,8 @@ x-webhooks: type: string pull_requests: type: array - items: *236 - repository: *292 + items: *237 + repository: *293 status: example: completed type: string @@ -137656,7 +137842,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *918 + deployment: *919 details_url: example: https://example.com type: string @@ -137706,7 +137892,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *236 + items: *237 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -137741,10 +137927,10 @@ x-webhooks: - output - app - pull_requests - installation: *912 - enterprise: *911 - organization: *913 - repository: *914 + installation: *913 + enterprise: *912 + organization: *914 + repository: *915 sender: *4 required: - check_run @@ -138135,11 +138321,11 @@ x-webhooks: type: string enum: - created - check_run: *919 - installation: *912 - enterprise: *911 - organization: *913 - repository: *914 + check_run: *920 + installation: *913 + enterprise: *912 + organization: *914 + repository: *915 sender: *4 required: - check_run @@ -138533,11 +138719,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *919 - installation: *912 - enterprise: *911 - organization: *913 - repository: *914 + check_run: *920 + installation: *913 + enterprise: *912 + organization: *914 + repository: *915 requested_action: description: The action requested by the user. type: object @@ -138940,11 +139126,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *919 - installation: *912 - enterprise: *911 - organization: *913 - repository: *914 + check_run: *920 + installation: *913 + enterprise: *912 + organization: *914 + repository: *915 sender: *4 required: - check_run @@ -139914,10 +140100,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -140616,10 +140802,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -141312,10 +141498,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -141481,7 +141667,7 @@ x-webhooks: required: - login - id - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -141626,20 +141812,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &920 + commit_oid: &921 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: *911 - installation: *912 - organization: *913 - ref: &921 + enterprise: *912 + installation: *913 + organization: *914 + ref: &922 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: *914 + repository: *915 sender: *4 required: - action @@ -141804,7 +141990,7 @@ x-webhooks: required: - login - id - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -142034,12 +142220,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *920 - enterprise: *911 - installation: *912 - organization: *913 - ref: *921 - repository: *914 + commit_oid: *921 + enterprise: *912 + installation: *913 + organization: *914 + ref: *922 + repository: *915 sender: *4 required: - action @@ -142134,7 +142320,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -142305,12 +142491,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *920 - enterprise: *911 - installation: *912 - organization: *913 - ref: *921 - repository: *914 + commit_oid: *921 + enterprise: *912 + installation: *913 + organization: *914 + ref: *922 + repository: *915 sender: *4 required: - action @@ -142476,7 +142662,7 @@ x-webhooks: required: - login - id - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -142642,12 +142828,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *920 - enterprise: *911 - installation: *912 - organization: *913 - ref: *921 - repository: *914 + commit_oid: *921 + enterprise: *912 + installation: *913 + organization: *914 + ref: *922 + repository: *915 sender: *4 required: - action @@ -142746,7 +142932,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -142921,16 +143107,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *914 + repository: *915 sender: *4 required: - action @@ -143027,7 +143213,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -143167,12 +143353,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *920 - enterprise: *911 - installation: *912 - organization: *913 - ref: *921 - repository: *914 + commit_oid: *921 + enterprise: *912 + installation: *913 + organization: *914 + ref: *922 + repository: *915 sender: *4 required: - action @@ -143338,7 +143524,7 @@ x-webhooks: required: - login - id - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -143483,10 +143669,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -143741,10 +143927,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -143824,18 +144010,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *913 - pusher_type: &922 + organization: *914 + pusher_type: &923 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &923 + ref: &924 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -143845,7 +144031,7 @@ x-webhooks: enum: - tag - branch - repository: *914 + repository: *915 sender: *4 required: - ref @@ -143928,9 +144114,9 @@ x-webhooks: enum: - created definition: *164 - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 required: - action @@ -144015,9 +144201,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 required: - action @@ -144095,9 +144281,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *164 - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 required: - action @@ -144175,9 +144361,9 @@ x-webhooks: enum: - updated definition: *164 - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 required: - action @@ -144254,10 +144440,10 @@ x-webhooks: type: string enum: - updated - enterprise: *911 - installation: *912 - repository: *914 - organization: *913 + enterprise: *912 + installation: *913 + repository: *915 + organization: *914 sender: *4 new_property_values: type: array @@ -144342,18 +144528,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *911 - installation: *912 - organization: *913 - pusher_type: *922 - ref: *923 + enterprise: *912 + installation: *913 + organization: *914 + pusher_type: *923 + ref: *924 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *914 + repository: *915 sender: *4 required: - ref @@ -144433,11 +144619,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144517,11 +144703,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144602,11 +144788,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144687,11 +144873,11 @@ x-webhooks: type: string enum: - created - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144770,11 +144956,11 @@ x-webhooks: type: string enum: - dismissed - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144853,11 +145039,11 @@ x-webhooks: type: string enum: - fixed - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144937,11 +145123,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -145020,11 +145206,11 @@ x-webhooks: type: string enum: - reopened - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -145101,9 +145287,9 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - key: &924 + enterprise: *912 + installation: *913 + key: &925 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -145139,8 +145325,8 @@ x-webhooks: - verified - created_at - read_only - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -145217,11 +145403,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - key: *924 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + key: *925 + organization: *914 + repository: *915 sender: *4 required: - action @@ -145777,12 +145963,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - workflow: &930 + workflow: &931 title: Workflow type: object nullable: true @@ -146523,15 +146709,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *925 - required: *926 + properties: *926 + required: *927 nullable: true pull_requests: type: array - items: *754 - repository: *914 - organization: *913 - installation: *912 + items: *755 + repository: *915 + organization: *914 + installation: *913 sender: *4 responses: '200': @@ -146602,7 +146788,7 @@ x-webhooks: type: string enum: - approved - approver: &927 + approver: &928 type: object properties: avatar_url: @@ -146645,11 +146831,11 @@ x-webhooks: type: string comment: type: string - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - reviewers: &928 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + reviewers: &929 type: array items: type: object @@ -146728,7 +146914,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &929 + workflow_job_run: &930 type: object properties: conclusion: @@ -147459,18 +147645,18 @@ x-webhooks: type: string enum: - rejected - approver: *927 + approver: *928 comment: type: string - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - reviewers: *928 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + reviewers: *929 sender: *4 since: type: string - workflow_job_run: *929 + workflow_job_run: *930 workflow_job_runs: type: array items: @@ -148174,13 +148360,13 @@ x-webhooks: type: string enum: - requested - enterprise: *911 + enterprise: *912 environment: type: string - installation: *912 - organization: *913 - repository: *914 - requestor: &940 + installation: *913 + organization: *914 + repository: *915 + requestor: &941 title: User type: object nullable: true @@ -150069,12 +150255,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - workflow: *930 + workflow: *931 workflow_run: title: Deployment Workflow Run type: object @@ -150754,7 +150940,7 @@ x-webhooks: type: string enum: - answered - answer: &933 + answer: &934 type: object properties: author_association: @@ -150911,11 +151097,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151042,11 +151228,11 @@ x-webhooks: - from required: - category - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151129,11 +151315,11 @@ x-webhooks: type: string enum: - closed - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151215,7 +151401,7 @@ x-webhooks: type: string enum: - created - comment: &932 + comment: &933 type: object properties: author_association: @@ -151372,11 +151558,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151459,12 +151645,12 @@ x-webhooks: type: string enum: - deleted - comment: *932 - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + comment: *933 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151559,12 +151745,12 @@ x-webhooks: - from required: - body - comment: *932 - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + comment: *933 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151648,11 +151834,11 @@ x-webhooks: type: string enum: - created - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151734,11 +151920,11 @@ x-webhooks: type: string enum: - deleted - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151838,11 +152024,11 @@ x-webhooks: type: string required: - from - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151924,10 +152110,10 @@ x-webhooks: type: string enum: - labeled - discussion: *931 - enterprise: *911 - installation: *912 - label: &934 + discussion: *932 + enterprise: *912 + installation: *913 + label: &935 title: Label type: object properties: @@ -151959,8 +152145,8 @@ x-webhooks: - color - default - description - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152043,11 +152229,11 @@ x-webhooks: type: string enum: - locked - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152129,11 +152315,11 @@ x-webhooks: type: string enum: - pinned - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152215,11 +152401,11 @@ x-webhooks: type: string enum: - reopened - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152304,16 +152490,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *931 - new_repository: *914 + new_discussion: *932 + new_repository: *915 required: - new_discussion - new_repository - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152396,10 +152582,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *931 - old_answer: *933 - organization: *913 - repository: *914 + discussion: *932 + old_answer: *934 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152481,12 +152667,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *931 - enterprise: *911 - installation: *912 - label: *934 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152569,11 +152755,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152655,11 +152841,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152728,7 +152914,7 @@ x-webhooks: required: true content: application/json: - schema: *935 + schema: *936 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152791,7 +152977,7 @@ x-webhooks: required: true content: application/json: - schema: *936 + schema: *937 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152854,7 +153040,7 @@ x-webhooks: required: true content: application/json: - schema: *937 + schema: *938 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152917,7 +153103,7 @@ x-webhooks: required: true content: application/json: - schema: *935 + schema: *936 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152980,7 +153166,7 @@ x-webhooks: required: true content: application/json: - schema: *936 + schema: *937 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153046,7 +153232,7 @@ x-webhooks: required: true content: application/json: - schema: *937 + schema: *938 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153112,7 +153298,7 @@ x-webhooks: required: true content: application/json: - schema: *938 + schema: *939 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153178,7 +153364,7 @@ x-webhooks: required: true content: application/json: - schema: *935 + schema: *936 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153244,7 +153430,7 @@ x-webhooks: required: true content: application/json: - schema: *939 + schema: *940 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153310,7 +153496,7 @@ x-webhooks: required: true content: application/json: - schema: *936 + schema: *937 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153375,7 +153561,7 @@ x-webhooks: required: true content: application/json: - schema: *937 + schema: *938 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153440,7 +153626,7 @@ x-webhooks: required: true content: application/json: - schema: *938 + schema: *939 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153505,7 +153691,7 @@ x-webhooks: required: true content: application/json: - schema: *935 + schema: *936 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153570,7 +153756,7 @@ x-webhooks: required: true content: application/json: - schema: *939 + schema: *940 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153636,7 +153822,7 @@ x-webhooks: required: true content: application/json: - schema: *936 + schema: *937 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153703,7 +153889,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *911 + enterprise: *912 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -154363,9 +154549,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *912 - organization: *913 - repository: *914 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - forkee @@ -154511,9 +154697,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pages: description: The pages that were updated. type: array @@ -154550,7 +154736,7 @@ x-webhooks: - action - sha - html_url - repository: *914 + repository: *915 sender: *4 required: - pages @@ -154626,10 +154812,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories: &941 + organization: *914 + repositories: &942 description: An array of repository objects that the installation can access. type: array @@ -154655,8 +154841,8 @@ x-webhooks: - name - full_name - private - repository: *914 - requester: *940 + repository: *915 + requester: *941 sender: *4 required: - action @@ -154731,11 +154917,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories: *941 - repository: *914 + organization: *914 + repositories: *942 + repository: *915 requester: nullable: true sender: *4 @@ -154811,11 +154997,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories: *941 - repository: *914 + organization: *914 + repositories: *942 + repository: *915 requester: nullable: true sender: *4 @@ -154891,10 +155077,10 @@ x-webhooks: type: string enum: - added - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories_added: &942 + organization: *914 + repositories_added: &943 description: An array of repository objects, which were added to the installation. type: array @@ -154940,15 +155126,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *914 - repository_selection: &943 + repository: *915 + repository_selection: &944 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *940 + requester: *941 sender: *4 required: - action @@ -155027,10 +155213,10 @@ x-webhooks: type: string enum: - removed - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories_added: *942 + organization: *914 + repositories_added: *943 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -155057,9 +155243,9 @@ x-webhooks: - name - full_name - private - repository: *914 - repository_selection: *943 - requester: *940 + repository: *915 + repository_selection: *944 + requester: *941 sender: *4 required: - action @@ -155138,11 +155324,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories: *941 - repository: *914 + organization: *914 + repositories: *942 + repository: *915 requester: nullable: true sender: *4 @@ -155321,10 +155507,10 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 target_type: type: string @@ -155403,11 +155589,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories: *941 - repository: *914 + organization: *914 + repositories: *942 + repository: *915 requester: nullable: true sender: *4 @@ -155531,8 +155717,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 reactions: title: Reactions type: object @@ -155581,15 +155767,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *716 - required: *717 + properties: *717 + required: *718 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *718 - required: *719 + properties: *719 + required: *720 nullable: true user: title: User @@ -155674,8 +155860,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -156464,8 +156650,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156481,7 +156667,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -156814,8 +157000,8 @@ x-webhooks: - state - locked - assignee - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -156895,7 +157081,7 @@ x-webhooks: type: string enum: - deleted - comment: &944 + comment: &945 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -157052,15 +157238,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *716 - required: *717 + properties: *717 + required: *718 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *718 - required: *719 + properties: *719 + required: *720 nullable: true required: - url @@ -157075,8 +157261,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -157861,8 +158047,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157878,7 +158064,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -158213,8 +158399,8 @@ x-webhooks: - state - locked - assignee - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -158294,7 +158480,7 @@ x-webhooks: type: string enum: - edited - changes: &973 + changes: &974 description: The changes to the comment. type: object properties: @@ -158306,9 +158492,9 @@ x-webhooks: type: string required: - from - comment: *944 - enterprise: *911 - installation: *912 + comment: *945 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -159096,8 +159282,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159113,7 +159299,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -159446,8 +159632,8 @@ x-webhooks: - state - locked - assignee - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -159528,9 +159714,9 @@ x-webhooks: type: string enum: - pinned - comment: *944 - enterprise: *911 - installation: *912 + comment: *945 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -160320,8 +160506,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160337,7 +160523,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -160672,8 +160858,8 @@ x-webhooks: - state - locked - assignee - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -160753,9 +160939,9 @@ x-webhooks: type: string enum: - unpinned - comment: *944 - enterprise: *911 - installation: *912 + comment: *945 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -161545,8 +161731,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161562,7 +161748,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -161897,8 +162083,8 @@ x-webhooks: - state - locked - assignee - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -161981,15 +162167,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 + blocking_issue: *232 blocking_issue_repo: *80 - installation: *912 - organization: *913 - repository: *914 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -162072,15 +162258,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 + blocking_issue: *232 blocking_issue_repo: *80 - installation: *912 - organization: *913 - repository: *914 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -162162,15 +162348,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 - installation: *912 - organization: *913 - repository: *914 + blocking_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -162253,15 +162439,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 - installation: *912 - organization: *913 - repository: *914 + blocking_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -162341,10 +162527,10 @@ x-webhooks: type: string enum: - assigned - assignee: *940 - enterprise: *911 - installation: *912 - issue: &945 + assignee: *941 + enterprise: *912 + installation: *913 + issue: &946 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -163133,14 +163319,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163156,7 +163342,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -163257,8 +163443,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -163338,8 +163524,8 @@ x-webhooks: type: string enum: - closed - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -164133,14 +164319,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164156,7 +164342,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -164392,8 +164578,8 @@ x-webhooks: required: - state - closed_at - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -164472,8 +164658,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -165258,14 +165444,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165281,7 +165467,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -165381,8 +165567,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -165461,8 +165647,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -166269,14 +166455,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166292,7 +166478,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -166371,7 +166557,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &946 + milestone: &947 title: Milestone description: A collection of related issues and pull requests. type: object @@ -166509,8 +166695,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -166609,8 +166795,8 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -167399,14 +167585,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167419,7 +167605,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *400 + type: *401 title: description: Title of the issue type: string @@ -167523,9 +167709,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *934 - organization: *913 - repository: *914 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -167605,9 +167791,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *911 - installation: *912 - issue: *945 + enterprise: *912 + installation: *913 + issue: *946 issue_field: type: object description: The issue field whose value was set or updated on the @@ -167761,8 +167947,8 @@ x-webhooks: - id required: - from - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -167842,9 +168028,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *911 - installation: *912 - issue: *945 + enterprise: *912 + installation: *913 + issue: *946 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -167925,8 +168111,8 @@ x-webhooks: nullable: true required: - id - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -168006,8 +168192,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168795,14 +168981,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168815,7 +169001,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *400 + type: *401 title: description: Title of the issue type: string @@ -168919,9 +169105,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *934 - organization: *913 - repository: *914 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -169001,8 +169187,8 @@ x-webhooks: type: string enum: - locked - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -169814,14 +170000,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169834,7 +170020,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *400 + type: *401 title: description: Title of the issue type: string @@ -169915,8 +170101,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -169995,8 +170181,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170802,14 +170988,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170825,7 +171011,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -170903,9 +171089,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *946 - organization: *913 - repository: *914 + milestone: *947 + organization: *914 + repository: *915 sender: *4 required: - action @@ -171768,11 +171954,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171800,8 +171986,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true user: title: User @@ -171873,7 +172059,7 @@ x-webhooks: required: - login - id - type: *400 + type: *401 required: - id - number @@ -172353,8 +172539,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -173138,11 +173324,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173158,7 +173344,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -173171,8 +173357,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true user: title: User @@ -173266,8 +173452,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -173347,9 +173533,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *911 - installation: *912 - issue: &947 + enterprise: *912 + installation: *913 + issue: &948 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -174132,14 +174318,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174155,7 +174341,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -174255,8 +174441,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -174335,8 +174521,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -175146,14 +175332,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175247,9 +175433,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *400 - organization: *913 - repository: *914 + type: *401 + organization: *914 + repository: *915 sender: *4 required: - action @@ -176115,14 +176301,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -176138,7 +176324,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -176717,11 +176903,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *911 - installation: *912 - issue: *947 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *948 + organization: *914 + repository: *915 sender: *4 required: - action @@ -176801,12 +176987,12 @@ x-webhooks: type: string enum: - typed - enterprise: *911 - installation: *912 - issue: *945 - type: *400 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *946 + type: *401 + organization: *914 + repository: *915 sender: *4 required: - action @@ -176887,7 +177073,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &976 + assignee: &977 title: User type: object nullable: true @@ -176957,11 +177143,11 @@ x-webhooks: required: - login - id - enterprise: *911 - installation: *912 - issue: *945 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *946 + organization: *914 + repository: *915 sender: *4 required: - action @@ -177040,12 +177226,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *911 - installation: *912 - issue: *945 - label: *934 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *946 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -177125,8 +177311,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -177936,14 +178122,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -177959,7 +178145,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -178037,8 +178223,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -178118,11 +178304,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *911 - installation: *912 - issue: *947 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *948 + organization: *914 + repository: *915 sender: *4 required: - action @@ -178201,12 +178387,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *911 - installation: *912 - issue: *945 - type: *400 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *946 + type: *401 + organization: *914 + repository: *915 sender: *4 required: - action @@ -178286,11 +178472,11 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - label: *934 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -178368,11 +178554,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - label: *934 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -178482,11 +178668,11 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - label: *934 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -178568,9 +178754,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *911 - installation: *912 - marketplace_purchase: &948 + enterprise: *912 + installation: *913 + marketplace_purchase: &949 title: Marketplace Purchase type: object required: @@ -178653,8 +178839,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *913 - previous_marketplace_purchase: &949 + organization: *914 + previous_marketplace_purchase: &950 title: Marketplace Purchase type: object properties: @@ -178734,7 +178920,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *914 + repository: *915 sender: *4 required: - action @@ -178814,10 +179000,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *911 - installation: *912 - marketplace_purchase: *948 - organization: *913 + enterprise: *912 + installation: *913 + marketplace_purchase: *949 + organization: *914 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -178900,7 +179086,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *914 + repository: *915 sender: *4 required: - action @@ -178982,10 +179168,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *911 - installation: *912 - marketplace_purchase: *948 - organization: *913 + enterprise: *912 + installation: *913 + marketplace_purchase: *949 + organization: *914 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -179067,7 +179253,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *914 + repository: *915 sender: *4 required: - action @@ -179148,8 +179334,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 marketplace_purchase: title: Marketplace Purchase type: object @@ -179231,9 +179417,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *913 - previous_marketplace_purchase: *949 - repository: *914 + organization: *914 + previous_marketplace_purchase: *950 + repository: *915 sender: *4 required: - action @@ -179313,12 +179499,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *911 - installation: *912 - marketplace_purchase: *948 - organization: *913 - previous_marketplace_purchase: *949 - repository: *914 + enterprise: *912 + installation: *913 + marketplace_purchase: *949 + organization: *914 + previous_marketplace_purchase: *950 + repository: *915 sender: *4 required: - action @@ -179420,11 +179606,11 @@ x-webhooks: type: string required: - to - enterprise: *911 - installation: *912 - member: *940 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + member: *941 + organization: *914 + repository: *915 sender: *4 required: - action @@ -179524,11 +179710,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *911 - installation: *912 - member: *940 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + member: *941 + organization: *914 + repository: *915 sender: *4 required: - action @@ -179607,11 +179793,11 @@ x-webhooks: type: string enum: - removed - enterprise: *911 - installation: *912 - member: *940 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + member: *941 + organization: *914 + repository: *915 sender: *4 required: - action @@ -179689,11 +179875,11 @@ x-webhooks: type: string enum: - added - enterprise: *911 - installation: *912 - member: *940 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + member: *941 + organization: *914 + repository: *915 scope: description: The scope of the membership. Currently, can only be `team`. @@ -179769,7 +179955,7 @@ x-webhooks: required: - login - id - team: &950 + team: &951 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -179992,11 +180178,11 @@ x-webhooks: type: string enum: - removed - enterprise: *911 - installation: *912 - member: *940 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + member: *941 + organization: *914 + repository: *915 scope: description: The scope of the membership. Currently, can only be `team`. @@ -180073,7 +180259,7 @@ x-webhooks: required: - login - id - team: *950 + team: *951 required: - action - scope @@ -180155,8 +180341,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *912 - merge_group: &952 + installation: *913 + merge_group: &953 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -180175,15 +180361,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *951 + head_commit: *952 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180269,10 +180455,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *912 - merge_group: *952 - organization: *913 - repository: *914 + installation: *913 + merge_group: *953 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180345,7 +180531,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 + enterprise: *912 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -180454,16 +180640,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *912 - organization: *913 + installation: *913 + organization: *914 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *953 - required: *954 + properties: *954 + required: *955 nullable: true sender: *4 required: @@ -180544,11 +180730,11 @@ x-webhooks: type: string enum: - closed - enterprise: *911 - installation: *912 - milestone: *946 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + milestone: *947 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180627,9 +180813,9 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - milestone: &955 + enterprise: *912 + installation: *913 + milestone: &956 title: Milestone description: A collection of related issues and pull requests. type: object @@ -180766,8 +180952,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180846,11 +181032,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - milestone: *946 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + milestone: *947 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180960,11 +181146,11 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - milestone: *946 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + milestone: *947 + organization: *914 + repository: *915 sender: *4 required: - action @@ -181044,11 +181230,11 @@ x-webhooks: type: string enum: - opened - enterprise: *911 - installation: *912 - milestone: *955 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + milestone: *956 + organization: *914 + repository: *915 sender: *4 required: - action @@ -181127,11 +181313,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *940 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + blocked_user: *941 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -181210,11 +181396,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *940 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + blocked_user: *941 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -181290,7 +181476,7 @@ x-webhooks: enum: - created definition: *159 - enterprise: *911 + enterprise: *912 sender: *4 required: - action @@ -181370,8 +181556,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 sender: *4 required: - action @@ -181444,8 +181630,8 @@ x-webhooks: enum: - updated definition: *159 - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 sender: *4 required: - action @@ -181517,9 +181703,9 @@ x-webhooks: type: string enum: - updated - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 new_property_values: type: array @@ -181607,9 +181793,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - membership: &956 + enterprise: *912 + installation: *913 + membership: &957 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -181716,8 +181902,8 @@ x-webhooks: - role - organization_url - user - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -181795,11 +181981,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *911 - installation: *912 - membership: *956 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + membership: *957 + organization: *914 + repository: *915 sender: *4 required: - action @@ -181878,8 +182064,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -181995,10 +182181,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 - user: *940 + user: *941 required: - action - invitation @@ -182076,11 +182262,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *911 - installation: *912 - membership: *956 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + membership: *957 + organization: *914 + repository: *915 sender: *4 required: - action @@ -182167,11 +182353,11 @@ x-webhooks: properties: from: type: string - enterprise: *911 - installation: *912 - membership: *956 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + membership: *957 + organization: *914 + repository: *915 sender: *4 required: - action @@ -182249,9 +182435,9 @@ x-webhooks: type: string enum: - published - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 package: description: Information about the package. type: object @@ -182750,7 +182936,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &957 + items: &958 title: Ruby Gems metadata type: object properties: @@ -182845,7 +183031,7 @@ x-webhooks: - owner - package_version - registry - repository: *914 + repository: *915 sender: *4 required: - action @@ -182922,9 +183108,9 @@ x-webhooks: type: string enum: - updated - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 package: description: Information about the package. type: object @@ -183277,7 +183463,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *957 + items: *958 source_url: type: string format: uri @@ -183347,7 +183533,7 @@ x-webhooks: - owner - package_version - registry - repository: *914 + repository: *915 sender: *4 required: - action @@ -183523,12 +183709,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *911 + enterprise: *912 id: type: integer - installation: *912 - organization: *913 - repository: *914 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - id @@ -183605,7 +183791,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &958 + personal_access_token_request: &959 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -183751,10 +183937,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *911 - organization: *913 + enterprise: *912 + organization: *914 sender: *4 - installation: *912 + installation: *913 required: - action - personal_access_token_request @@ -183831,11 +184017,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *958 - enterprise: *911 - organization: *913 + personal_access_token_request: *959 + enterprise: *912 + organization: *914 sender: *4 - installation: *912 + installation: *913 required: - action - personal_access_token_request @@ -183911,11 +184097,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *958 - enterprise: *911 - organization: *913 + personal_access_token_request: *959 + enterprise: *912 + organization: *914 sender: *4 - installation: *912 + installation: *913 required: - action - personal_access_token_request @@ -183990,11 +184176,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *958 - organization: *913 - enterprise: *911 + personal_access_token_request: *959 + organization: *914 + enterprise: *912 sender: *4 - installation: *912 + installation: *913 required: - action - personal_access_token_request @@ -184099,7 +184285,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *959 + last_response: *960 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -184131,8 +184317,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 zen: description: Random string of GitHub zen. @@ -184377,10 +184563,10 @@ x-webhooks: - from required: - note - enterprise: *911 - installation: *912 - organization: *913 - project_card: &960 + enterprise: *912 + installation: *913 + organization: *914 + project_card: &961 title: Project Card type: object properties: @@ -184499,7 +184685,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *914 + repository: *915 sender: *4 required: - action @@ -184580,11 +184766,11 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - project_card: *960 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project_card: *961 + repository: *915 sender: *4 required: - action @@ -184664,9 +184850,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 project_card: title: Project Card type: object @@ -184794,8 +184980,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *953 - required: *954 + properties: *954 + required: *955 nullable: true sender: *4 required: @@ -184889,11 +185075,11 @@ x-webhooks: - from required: - note - enterprise: *911 - installation: *912 - organization: *913 - project_card: *960 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project_card: *961 + repository: *915 sender: *4 required: - action @@ -184987,9 +185173,9 @@ x-webhooks: - from required: - column_id - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 project_card: allOf: - title: Project Card @@ -185179,7 +185365,7 @@ x-webhooks: type: string required: - after_id - repository: *914 + repository: *915 sender: *4 required: - action @@ -185259,10 +185445,10 @@ x-webhooks: type: string enum: - closed - enterprise: *911 - installation: *912 - organization: *913 - project: &962 + enterprise: *912 + installation: *913 + organization: *914 + project: &963 title: Project type: object properties: @@ -185386,7 +185572,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *914 + repository: *915 sender: *4 required: - action @@ -185466,10 +185652,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - project_column: &961 + enterprise: *912 + installation: *913 + organization: *914 + project_column: &962 title: Project Column type: object properties: @@ -185508,7 +185694,7 @@ x-webhooks: - name - created_at - updated_at - repository: *914 + repository: *915 sender: *4 required: - action @@ -185587,18 +185773,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - project_column: *961 + enterprise: *912 + installation: *913 + organization: *914 + project_column: *962 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *953 - required: *954 + properties: *954 + required: *955 nullable: true sender: *4 required: @@ -185688,11 +185874,11 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - organization: *913 - project_column: *961 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project_column: *962 + repository: *915 sender: *4 required: - action @@ -185772,11 +185958,11 @@ x-webhooks: type: string enum: - moved - enterprise: *911 - installation: *912 - organization: *913 - project_column: *961 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project_column: *962 + repository: *915 sender: *4 required: - action @@ -185856,11 +186042,11 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - project: *962 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project: *963 + repository: *915 sender: *4 required: - action @@ -185940,18 +186126,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - project: *962 + enterprise: *912 + installation: *913 + organization: *914 + project: *963 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *953 - required: *954 + properties: *954 + required: *955 nullable: true sender: *4 required: @@ -186053,11 +186239,11 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - organization: *913 - project: *962 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project: *963 + repository: *915 sender: *4 required: - action @@ -186136,11 +186322,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *911 - installation: *912 - organization: *913 - project: *962 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project: *963 + repository: *915 sender: *4 required: - action @@ -186221,9 +186407,9 @@ x-webhooks: type: string enum: - closed - installation: *912 - organization: *913 - projects_v2: *432 + installation: *913 + organization: *914 + projects_v2: *433 sender: *4 required: - action @@ -186304,9 +186490,9 @@ x-webhooks: type: string enum: - created - installation: *912 - organization: *913 - projects_v2: *432 + installation: *913 + organization: *914 + projects_v2: *433 sender: *4 required: - action @@ -186387,9 +186573,9 @@ x-webhooks: type: string enum: - deleted - installation: *912 - organization: *913 - projects_v2: *432 + installation: *913 + organization: *914 + projects_v2: *433 sender: *4 required: - action @@ -186506,9 +186692,9 @@ x-webhooks: type: string to: type: string - installation: *912 - organization: *913 - projects_v2: *432 + installation: *913 + organization: *914 + projects_v2: *433 sender: *4 required: - action @@ -186591,7 +186777,7 @@ x-webhooks: type: string enum: - archived - changes: &966 + changes: &967 type: object properties: archived_at: @@ -186605,9 +186791,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *912 - organization: *913 - projects_v2_item: &963 + installation: *913 + organization: *914 + projects_v2_item: &964 title: Projects v2 Item description: An item belonging to a project type: object @@ -186625,7 +186811,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *439 + content_type: *440 creator: *4 created_at: type: string @@ -186742,9 +186928,9 @@ x-webhooks: nullable: true to: type: string - installation: *912 - organization: *913 - projects_v2_item: *963 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -186826,9 +187012,9 @@ x-webhooks: type: string enum: - created - installation: *912 - organization: *913 - projects_v2_item: *963 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -186909,9 +187095,9 @@ x-webhooks: type: string enum: - deleted - installation: *912 - organization: *913 - projects_v2_item: *963 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -187017,7 +187203,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &964 + - &965 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -187039,7 +187225,7 @@ x-webhooks: required: - id - name - - &965 + - &966 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -187073,8 +187259,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *964 - *965 + - *966 required: - field_value - type: object @@ -187090,9 +187276,9 @@ x-webhooks: nullable: true required: - body - installation: *912 - organization: *913 - projects_v2_item: *963 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -187187,9 +187373,9 @@ x-webhooks: to: type: string nullable: true - installation: *912 - organization: *913 - projects_v2_item: *963 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -187272,10 +187458,10 @@ x-webhooks: type: string enum: - restored - changes: *966 - installation: *912 - organization: *913 - projects_v2_item: *963 + changes: *967 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -187357,9 +187543,9 @@ x-webhooks: type: string enum: - reopened - installation: *912 - organization: *913 - projects_v2: *432 + installation: *913 + organization: *914 + projects_v2: *433 sender: *4 required: - action @@ -187440,14 +187626,14 @@ x-webhooks: type: string enum: - created - installation: *912 - organization: *913 - projects_v2_status_update: &969 + installation: *913 + organization: *914 + projects_v2_status_update: &970 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *967 - required: *968 + properties: *968 + required: *969 sender: *4 required: - action @@ -187528,9 +187714,9 @@ x-webhooks: type: string enum: - deleted - installation: *912 - organization: *913 - projects_v2_status_update: *969 + installation: *913 + organization: *914 + projects_v2_status_update: *970 sender: *4 required: - action @@ -187666,9 +187852,9 @@ x-webhooks: type: string format: date nullable: true - installation: *912 - organization: *913 - projects_v2_status_update: *969 + installation: *913 + organization: *914 + projects_v2_status_update: *970 sender: *4 required: - action @@ -187739,10 +187925,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - repository @@ -187819,13 +188005,13 @@ x-webhooks: type: string enum: - assigned - assignee: *940 - enterprise: *911 - installation: *912 - number: &970 + assignee: *941 + enterprise: *912 + installation: *913 + number: &971 description: The pull request number. type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -190130,7 +190316,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -190212,11 +190398,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -192516,7 +192702,7 @@ x-webhooks: - draft reason: type: string - repository: *914 + repository: *915 sender: *4 required: - action @@ -192598,11 +192784,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -194902,7 +195088,7 @@ x-webhooks: - draft reason: type: string - repository: *914 + repository: *915 sender: *4 required: - action @@ -194984,13 +195170,13 @@ x-webhooks: type: string enum: - closed - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: &971 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: &972 allOf: - - *754 + - *755 - type: object properties: allow_auto_merge: @@ -195052,7 +195238,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *914 + repository: *915 sender: *4 required: - action @@ -195133,12 +195319,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: *971 - repository: *914 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: *972 + repository: *915 sender: *4 required: - action @@ -195218,11 +195404,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *911 - milestone: *736 - number: *970 - organization: *913 - pull_request: &972 + enterprise: *912 + milestone: *737 + number: *971 + organization: *914 + pull_request: &973 title: Pull Request type: object properties: @@ -197507,7 +197693,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -197586,11 +197772,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -199894,7 +200080,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *914 + repository: *915 sender: *4 required: - action @@ -200018,12 +200204,12 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: *971 - repository: *914 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: *972 + repository: *915 sender: *4 required: - action @@ -200103,11 +200289,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -202396,7 +202582,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -202476,11 +202662,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *911 - installation: *912 - label: *934 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + label: *935 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -204784,7 +204970,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -204865,10 +205051,10 @@ x-webhooks: type: string enum: - locked - enterprise: *911 - installation: *912 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -207170,7 +207356,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -207250,12 +207436,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *911 - milestone: *736 - number: *970 - organization: *913 - pull_request: *972 - repository: *914 + enterprise: *912 + milestone: *737 + number: *971 + organization: *914 + pull_request: *973 + repository: *915 sender: *4 required: - action @@ -207334,12 +207520,12 @@ x-webhooks: type: string enum: - opened - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: *971 - repository: *914 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: *972 + repository: *915 sender: *4 required: - action @@ -207420,12 +207606,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: *971 - repository: *914 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: *972 + repository: *915 sender: *4 required: - action @@ -207505,12 +207691,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: *971 - repository: *914 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: *972 + repository: *915 sender: *4 required: - action @@ -207876,9 +208062,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: type: object properties: @@ -210070,7 +210256,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *914 + repository: *915 sender: *4 required: - action @@ -210150,7 +210336,7 @@ x-webhooks: type: string enum: - deleted - comment: &974 + comment: &975 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. @@ -210435,9 +210621,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: type: object properties: @@ -212617,7 +212803,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *914 + repository: *915 sender: *4 required: - action @@ -212697,11 +212883,11 @@ x-webhooks: type: string enum: - edited - changes: *973 - comment: *974 - enterprise: *911 - installation: *912 - organization: *913 + changes: *974 + comment: *975 + enterprise: *912 + installation: *913 + organization: *914 pull_request: type: object properties: @@ -214884,7 +215070,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *914 + repository: *915 sender: *4 required: - action @@ -214965,9 +215151,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: title: Simple Pull Request type: object @@ -217162,7 +217348,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *914 + repository: *915 review: description: The review that was affected. type: object @@ -217409,9 +217595,9 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: title: Simple Pull Request type: object @@ -219465,8 +219651,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *914 - review: &975 + repository: *915 + review: &976 description: The review that was affected. type: object properties: @@ -219699,12 +219885,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: description: The pull request number. type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -222009,7 +222195,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 requested_reviewer: title: User type: object @@ -222093,12 +222279,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: description: The pull request number. type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -224410,7 +224596,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 requested_team: title: Team description: Groups of organization members that gives permissions @@ -224602,12 +224788,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: description: The pull request number. type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -226914,7 +227100,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 requested_reviewer: title: User type: object @@ -226999,12 +227185,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: description: The pull request number. type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -229302,7 +229488,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 requested_team: title: Team description: Groups of organization members that gives permissions @@ -229483,9 +229669,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: title: Simple Pull Request type: object @@ -231682,8 +231868,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *914 - review: *975 + repository: *915 + review: *976 sender: *4 required: - action @@ -231763,9 +231949,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: title: Simple Pull Request type: object @@ -233857,7 +234043,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *914 + repository: *915 sender: *4 thread: type: object @@ -234244,9 +234430,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: title: Simple Pull Request type: object @@ -236324,7 +236510,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *914 + repository: *915 sender: *4 thread: type: object @@ -236708,10 +236894,10 @@ x-webhooks: type: string enum: - stacked - enterprise: *911 - installation: *912 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -239015,7 +239201,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -239101,10 +239287,10 @@ x-webhooks: type: string before: type: string - enterprise: *911 - installation: *912 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -241397,7 +241583,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -241479,11 +241665,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *976 - enterprise: *911 - installation: *912 - number: *970 - organization: *913 + assignee: *977 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -243788,7 +243974,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -243867,11 +244053,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *911 - installation: *912 - label: *934 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + label: *935 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -246166,7 +246352,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -246247,10 +246433,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *911 - installation: *912 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -248537,7 +248723,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -248737,7 +248923,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *911 + enterprise: *912 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -248829,8 +249015,8 @@ x-webhooks: - url - author - committer - installation: *912 - organization: *913 + installation: *913 + organization: *914 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -249416,9 +249602,9 @@ x-webhooks: type: string enum: - published - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 registry_package: type: object properties: @@ -249864,7 +250050,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *957 + items: *958 summary: type: string tag_name: @@ -249918,7 +250104,7 @@ x-webhooks: - owner - package_version - registry - repository: *914 + repository: *915 sender: *4 required: - action @@ -249996,9 +250182,9 @@ x-webhooks: type: string enum: - updated - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 registry_package: type: object properties: @@ -250306,7 +250492,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *957 + items: *958 summary: type: string tag_name: @@ -250355,7 +250541,7 @@ x-webhooks: - owner - package_version - registry - repository: *914 + repository: *915 sender: *4 required: - action @@ -250432,10 +250618,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - release: &977 + enterprise: *912 + installation: *913 + organization: *914 + release: &978 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -250753,7 +250939,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *914 + repository: *915 sender: *4 required: - action @@ -250830,11 +251016,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - release: *977 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + release: *978 + repository: *915 sender: *4 required: - action @@ -250951,11 +251137,11 @@ x-webhooks: type: boolean required: - to - enterprise: *911 - installation: *912 - organization: *913 - release: *977 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + release: *978 + repository: *915 sender: *4 required: - action @@ -251033,9 +251219,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -251357,7 +251543,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *914 + repository: *915 sender: *4 required: - action @@ -251433,10 +251619,10 @@ x-webhooks: type: string enum: - published - enterprise: *911 - installation: *912 - organization: *913 - release: &978 + enterprise: *912 + installation: *913 + organization: *914 + release: &979 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -251755,7 +251941,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *914 + repository: *915 sender: *4 required: - action @@ -251831,11 +252017,11 @@ x-webhooks: type: string enum: - released - enterprise: *911 - installation: *912 - organization: *913 - release: *977 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + release: *978 + repository: *915 sender: *4 required: - action @@ -251911,11 +252097,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *911 - installation: *912 - organization: *913 - release: *978 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + release: *979 + repository: *915 sender: *4 required: - action @@ -251991,11 +252177,11 @@ x-webhooks: type: string enum: - published - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - repository_advisory: *808 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + repository_advisory: *809 sender: *4 required: - action @@ -252071,11 +252257,11 @@ x-webhooks: type: string enum: - reported - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - repository_advisory: *808 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + repository_advisory: *809 sender: *4 required: - action @@ -252151,10 +252337,10 @@ x-webhooks: type: string enum: - archived - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252231,10 +252417,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252312,10 +252498,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252399,10 +252585,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252514,10 +252700,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252589,10 +252775,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 status: type: string @@ -252673,10 +252859,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252753,10 +252939,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252850,10 +253036,10 @@ x-webhooks: - name required: - repository - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252933,10 +253119,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 repository_ruleset: *198 sender: *4 required: @@ -253015,10 +253201,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 repository_ruleset: *198 sender: *4 required: @@ -253097,10 +253283,10 @@ x-webhooks: type: string enum: - edited - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 repository_ruleset: *198 changes: type: object @@ -253162,16 +253348,16 @@ x-webhooks: properties: added: type: array - items: *775 + items: *776 deleted: type: array - items: *775 + items: *776 updated: type: array items: type: object properties: - rule: *775 + rule: *776 changes: type: object properties: @@ -253405,10 +253591,10 @@ x-webhooks: - from required: - owner - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -253486,10 +253672,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -253567,7 +253753,7 @@ x-webhooks: type: string enum: - create - alert: &979 + alert: &980 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -253689,10 +253875,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -253898,10 +254084,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -253979,11 +254165,11 @@ x-webhooks: type: string enum: - reopen - alert: *979 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *980 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254182,10 +254368,10 @@ x-webhooks: enum: - fixed - open - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254263,7 +254449,7 @@ x-webhooks: type: string enum: - assigned - alert: &981 + alert: &982 type: object properties: number: *134 @@ -254405,12 +254591,12 @@ x-webhooks: properties: *20 required: *21 nullable: true - metadata: *980 + metadata: *981 assignee: *4 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254488,11 +254674,11 @@ x-webhooks: type: string enum: - created - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254573,11 +254759,11 @@ x-webhooks: type: string enum: - created - alert: *981 - installation: *912 - location: *982 - organization: *913 - repository: *914 + alert: *982 + installation: *913 + location: *983 + organization: *914 + repository: *915 sender: *4 required: - location @@ -254815,11 +255001,11 @@ x-webhooks: type: string enum: - metadata_created - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254896,11 +255082,11 @@ x-webhooks: type: string enum: - metadata_removed - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254977,11 +255163,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -255059,11 +255245,11 @@ x-webhooks: type: string enum: - reopened - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -255141,11 +255327,11 @@ x-webhooks: type: string enum: - resolved - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -255223,12 +255409,12 @@ x-webhooks: type: string enum: - unassigned - alert: *981 + alert: *982 assignee: *4 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -255306,11 +255492,11 @@ x-webhooks: type: string enum: - validated - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -255436,10 +255622,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *914 - enterprise: *911 - installation: *912 - organization: *913 + repository: *915 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 required: - action @@ -255517,11 +255703,11 @@ x-webhooks: type: string enum: - published - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - security_advisory: &983 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + security_advisory: &984 description: The details of the security advisory, including summary, description, and severity. type: object @@ -255704,11 +255890,11 @@ x-webhooks: type: string enum: - updated - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - security_advisory: *983 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + security_advisory: *984 sender: *4 required: - action @@ -255781,10 +255967,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -255968,11 +256154,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *449 - enterprise: *911 - installation: *912 - organization: *913 - repository: *498 + security_and_analysis: *450 + enterprise: *912 + installation: *913 + organization: *914 + repository: *499 sender: *4 required: - changes @@ -256050,12 +256236,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: &984 + sponsorship: &985 type: object properties: created_at: @@ -256356,12 +256542,12 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: *984 + sponsorship: *985 required: - action - sponsorship @@ -256449,12 +256635,12 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: *984 + sponsorship: *985 required: - action - changes @@ -256531,17 +256717,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &985 + effective_date: &986 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: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: *984 + sponsorship: *985 required: - action - sponsorship @@ -256615,7 +256801,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &986 + changes: &987 type: object properties: tier: @@ -256659,13 +256845,13 @@ x-webhooks: - from required: - tier - effective_date: *985 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + effective_date: *986 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: *984 + sponsorship: *985 required: - action - changes @@ -256742,13 +256928,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *986 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + changes: *987 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: *984 + sponsorship: *985 required: - action - changes @@ -256822,10 +257008,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -256908,10 +257094,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -257331,15 +257517,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *911 + enterprise: *912 id: description: The unique identifier of the status. type: integer - installation: *912 + installation: *913 name: type: string - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 sha: description: The Commit SHA. @@ -257448,15 +257634,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 + parent_issue: *232 parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 - installation: *912 - organization: *913 - repository: *914 + sub_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -257539,15 +257725,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 + parent_issue: *232 parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 - installation: *912 - organization: *913 - repository: *914 + sub_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -257630,15 +257816,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 + sub_issue: *232 sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 - installation: *912 - organization: *913 - repository: *914 + parent_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -257721,15 +257907,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 + sub_issue: *232 sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 - installation: *912 - organization: *913 - repository: *914 + parent_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -257805,12 +257991,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - team: &987 + team: &988 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -258033,9 +258219,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 repository: title: Repository description: A git repository @@ -258493,7 +258679,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *987 + team: *988 required: - action - team @@ -258569,9 +258755,9 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 repository: title: Repository description: A git repository @@ -259029,7 +259215,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *987 + team: *988 required: - action - team @@ -259106,9 +259292,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 repository: title: Repository description: A git repository @@ -259566,7 +259752,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *987 + team: *988 required: - action - team @@ -259710,9 +259896,9 @@ x-webhooks: - from required: - permissions - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 repository: title: Repository description: A git repository @@ -260170,7 +260356,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *987 + team: *988 required: - action - changes @@ -260248,9 +260434,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 repository: title: Repository description: A git repository @@ -260708,7 +260894,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *987 + team: *988 required: - action - team @@ -260784,10 +260970,10 @@ x-webhooks: type: string enum: - started - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -260860,16 +261046,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *911 + enterprise: *912 inputs: type: object nullable: true additionalProperties: true - installation: *912 - organization: *913 + installation: *913 + organization: *914 ref: type: string - repository: *914 + repository: *915 sender: *4 workflow: type: string @@ -260951,10 +261137,10 @@ x-webhooks: type: string enum: - completed - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 workflow_job: allOf: @@ -261191,7 +261377,7 @@ x-webhooks: type: string required: - conclusion - deployment: *639 + deployment: *640 required: - action - repository @@ -261270,10 +261456,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 workflow_job: allOf: @@ -261533,7 +261719,7 @@ x-webhooks: required: - status - steps - deployment: *639 + deployment: *640 required: - action - repository @@ -261612,10 +261798,10 @@ x-webhooks: type: string enum: - queued - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 workflow_job: type: object @@ -261750,7 +261936,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *639 + deployment: *640 required: - action - repository @@ -261829,10 +262015,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 workflow_job: type: object @@ -261968,7 +262154,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *639 + deployment: *640 required: - action - repository @@ -262048,12 +262234,12 @@ x-webhooks: type: string enum: - completed - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - workflow: *930 + workflow: *931 workflow_run: title: Workflow Run type: object @@ -263052,12 +263238,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - workflow: *930 + workflow: *931 workflow_run: title: Workflow Run type: object @@ -264041,12 +264227,12 @@ x-webhooks: type: string enum: - requested - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - workflow: *930 + workflow: *931 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json index 54df986af..0b08c32d1 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -82130,6 +82130,542 @@ } } }, + "/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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": 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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": 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", + "nullable": true + }, + { + "type": "integer", + "nullable": true + }, + { + "type": "array", + "nullable": true, + "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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": 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", + "nullable": true + }, + { + "type": "integer", + "nullable": true + }, + { + "type": "array", + "nullable": true, + "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/ghec/dereferenced/ghec.2026-03-10.deref.yaml b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml index 8b3cbe585..c4d038ee5 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml @@ -844,7 +844,7 @@ paths: - subscriptions_url - type - url - type: &476 + type: &477 type: string description: The type of credit the user is receiving. enum: @@ -976,7 +976,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &268 + schema: &269 title: Validation Error Simple description: Validation Error Simple type: object @@ -1009,7 +1009,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: - - &810 + - &811 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -3650,7 +3650,7 @@ paths: GitHub. type: object nullable: true - properties: &226 + properties: &227 id: description: Unique identifier of the GitHub app example: 37 @@ -3783,7 +3783,7 @@ paths: about itself. example: 5 type: integer - required: &227 + required: &228 - id - node_id - owner @@ -4088,7 +4088,7 @@ paths: schema: type: integer default: 30 - - &373 + - &374 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 @@ -4097,7 +4097,7 @@ paths: required: false schema: type: string - - &374 + - &375 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4117,7 +4117,7 @@ paths: application/json: schema: type: array - items: &375 + items: &376 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4197,7 +4197,7 @@ paths: - installation_id - repository_id examples: - default: &376 + default: &377 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4229,7 +4229,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &819 + schema: &820 title: Scim Error description: Scim Error type: object @@ -4256,7 +4256,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &267 + schema: &268 title: Validation Error description: Validation Error type: object @@ -4325,7 +4325,7 @@ paths: description: Response content: application/json: - schema: &377 + schema: &378 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4439,7 +4439,7 @@ paths: - request - response examples: - default: &378 + default: &379 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4640,7 +4640,7 @@ paths: parameters: - *17 - *19 - - &238 + - &239 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) @@ -5450,7 +5450,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &447 + properties: &448 id: description: Unique identifier of the repository example: 42 @@ -5470,7 +5470,7 @@ paths: title: License Simple description: License Simple type: object - properties: &234 + properties: &235 key: type: string example: mit @@ -5492,7 +5492,7 @@ paths: html_url: type: string format: uri - required: &235 + required: &236 - key - name - url @@ -5886,7 +5886,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &448 + required: &449 - archive_url - assignees_url - blobs_url @@ -10201,7 +10201,7 @@ paths: description: Response content: application/json: - schema: &269 + schema: &270 type: object properties: total_active_caches_count: @@ -10216,7 +10216,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &270 + default: &271 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -10409,7 +10409,7 @@ paths: - public_ip_enabled - platform examples: - default: &271 + default: &272 value: total_count: 2 runners: @@ -10704,7 +10704,7 @@ paths: application/json: schema: *49 examples: - default: &272 + default: &273 value: id: 1 platform: linux-x64 @@ -10844,7 +10844,7 @@ paths: application/json: schema: *52 examples: - default: &273 + default: &274 value: version: 1.0.0 size_gb: 75 @@ -11008,7 +11008,7 @@ paths: description: Response content: application/json: - schema: &274 + schema: &275 type: object properties: public_ips: @@ -11033,7 +11033,7 @@ paths: required: - public_ips examples: - default: &275 + default: &276 value: public_ips: current_usage: 17 @@ -11073,7 +11073,7 @@ paths: type: array items: *56 examples: - default: &276 + default: &277 value: id: 4-core cpu_cores: 4 @@ -11388,7 +11388,7 @@ paths: required: true content: application/json: - schema: &277 + schema: &278 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -11499,7 +11499,7 @@ paths: - all - local_only - selected - selected_actions_url: &279 + selected_actions_url: &280 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` @@ -11579,7 +11579,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &281 + schema: &282 type: object properties: days: @@ -11597,7 +11597,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &820 + '401': &821 description: Authorization failure '404': *6 x-github: @@ -11625,7 +11625,7 @@ paths: required: true content: application/json: - schema: &282 + schema: &283 type: object properties: days: @@ -11674,7 +11674,7 @@ paths: required: - approval_policy examples: - default: &283 + default: &284 value: approval_policy: first_time_contributors '404': *6 @@ -11732,7 +11732,7 @@ paths: description: Response content: application/json: - schema: &284 + schema: &285 type: object required: - run_workflows_from_fork_pull_requests @@ -11786,7 +11786,7 @@ paths: required: true content: application/json: - schema: &285 + schema: &286 type: object required: - run_workflows_from_fork_pull_requests @@ -12209,7 +12209,7 @@ paths: description: Success response content: application/json: - schema: &288 + schema: &289 type: object properties: default_workflow_permissions: &69 @@ -12257,7 +12257,7 @@ paths: required: true content: application/json: - schema: &289 + schema: &290 type: object properties: default_workflow_permissions: *69 @@ -13102,7 +13102,7 @@ paths: application/json: schema: type: array - items: &293 + items: &294 title: Runner Application description: Runner Application type: object @@ -13127,7 +13127,7 @@ paths: - download_url - filename examples: - default: &294 + default: &295 value: - os: osx architecture: x64 @@ -13211,7 +13211,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &295 + '201': &296 description: Response content: application/json: @@ -13326,7 +13326,7 @@ paths: - token - expires_at examples: - default: &296 + default: &297 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -13366,7 +13366,7 @@ paths: application/json: schema: *81 examples: - default: &297 + default: &298 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -13398,7 +13398,7 @@ paths: application/json: schema: *78 examples: - default: &298 + default: &299 value: id: 23 name: MBP @@ -13615,7 +13615,7 @@ paths: - *41 - *77 responses: - '200': &299 + '200': &300 description: Response content: application/json: @@ -13671,7 +13671,7 @@ paths: parameters: - *41 - *77 - - &300 + - &301 name: name description: The name of a self-hosted runner's custom label. in: path @@ -13762,7 +13762,7 @@ paths: required: true content: application/json: - schema: &314 + schema: &315 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -14403,7 +14403,7 @@ paths: required: false schema: type: string - - &317 + - &318 name: include description: |- The event types to include: @@ -14459,7 +14459,7 @@ paths: application/json: schema: type: array - items: &318 + items: &319 type: object properties: "@timestamp": @@ -14581,7 +14581,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &319 + default: &320 value: - "@timestamp": 1606929874512 action: team.add_member @@ -15247,7 +15247,7 @@ paths: application/json: schema: type: array - items: &320 + items: &321 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -15408,7 +15408,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &321 + default: &322 value: - id: 21 number: 42 @@ -15513,7 +15513,7 @@ paths: application/json: schema: type: array - items: &323 + items: &324 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -15638,7 +15638,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &324 + default: &325 value: - id: 21 number: 42 @@ -15723,7 +15723,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &329 + - &330 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`, @@ -15733,7 +15733,7 @@ paths: schema: &113 type: string description: The name of the tool used to generate the code scanning analysis. - - &330 + - &331 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 @@ -15756,7 +15756,7 @@ paths: be returned. in: query required: false - schema: &331 + schema: &332 type: string description: State of a code scanning alert. enum: @@ -15789,7 +15789,7 @@ paths: application/json: schema: type: array - items: &332 + items: &333 type: object properties: number: &134 @@ -15818,7 +15818,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &566 + instances_url: &567 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -15853,7 +15853,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &567 + dismissed_reason: &568 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -15862,13 +15862,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &568 + dismissed_comment: &569 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &569 + rule: &570 type: object properties: id: @@ -15921,7 +15921,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &570 + tool: &571 type: object properties: name: *113 @@ -15931,26 +15931,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *114 - most_recent_instance: &571 + most_recent_instance: &572 type: object properties: - ref: &564 + ref: &565 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &581 + analysis_key: &582 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: &582 + environment: &583 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: &583 + category: &584 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -15970,7 +15970,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: &584 + location: &585 type: object description: Describe a region within a file for the alert. properties: @@ -15991,7 +15991,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: &585 + items: &586 type: string description: A classification of the file. For example to identify it as generated. @@ -16304,7 +16304,7 @@ paths: - most_recent_instance - repository examples: - default: &333 + default: &334 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -17187,7 +17187,7 @@ paths: description: Response content: application/json: - schema: &335 + schema: &336 type: array description: A list of default code security configurations items: @@ -17203,7 +17203,7 @@ paths: default configuration: *116 examples: - default: &336 + default: &337 value: - default_for_new_repos: public configuration: @@ -17661,7 +17661,7 @@ paths: default: value: default_for_new_repos: all - configuration: &334 + configuration: &335 value: id: 1325 target_type: organization @@ -17751,7 +17751,7 @@ paths: application/json: schema: type: array - items: &337 + items: &338 type: object description: Repositories associated with a code security configuration and attachment status @@ -17775,7 +17775,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &338 + repository: &339 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -18264,7 +18264,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &325 + - &326 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -18350,7 +18350,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &413 + properties: &414 id: description: Unique identifier of the team type: integer @@ -18422,7 +18422,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &414 + required: &415 - id - node_id - url @@ -19103,7 +19103,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': &345 + '413': &346 description: Payload Too Large content: application/json: @@ -20259,7 +20259,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &350 + - &351 name: classification in: query description: |- @@ -20268,7 +20268,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &351 + - &352 name: state in: query description: |- @@ -20277,7 +20277,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &352 + - &353 name: severity in: query description: |- @@ -20286,7 +20286,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &353 + - &354 name: ecosystem in: query description: |- @@ -20295,14 +20295,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &354 + - &355 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 - - &355 + - &356 name: epss_percentage in: query description: |- @@ -20314,7 +20314,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 - - &628 + - &629 name: has in: query description: |- @@ -20328,7 +20328,7 @@ paths: type: string enum: - patch - - &356 + - &357 name: assignee in: query description: |- @@ -20337,7 +20337,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &357 + - &358 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -20347,7 +20347,7 @@ paths: enum: - development - runtime - - &358 + - &359 name: sort in: query description: |- @@ -20373,7 +20373,7 @@ paths: application/json: schema: type: array - items: &359 + items: &360 type: object description: A Dependabot alert. properties: @@ -20437,7 +20437,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &629 + security_advisory: &630 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -20654,14 +20654,14 @@ paths: nullable: true maxLength: 280 fixed_at: *144 - auto_dismissed_at: &630 + auto_dismissed_at: &631 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &631 + dismissal_request: &632 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -20723,7 +20723,7 @@ paths: - repository additionalProperties: false examples: - default: &360 + default: &361 value: - number: 2 state: dismissed @@ -21108,7 +21108,7 @@ paths: description: Response content: application/json: - schema: &361 + schema: &362 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -21134,7 +21134,7 @@ paths: nullable: true additionalProperties: false examples: - default: &362 + default: &363 value: default_level: public accessible_repositories: @@ -21356,7 +21356,7 @@ paths: - *105 - *106 - *107 - - &364 + - &365 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -21382,7 +21382,7 @@ paths: application/json: schema: type: array - items: &366 + items: &367 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -21503,7 +21503,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &367 + default: &368 value: - id: 21 number: 42 @@ -22582,7 +22582,7 @@ paths: application/json: schema: *22 examples: - default: &390 + default: &391 value: id: 1 account: @@ -22836,7 +22836,7 @@ paths: - name - created_on examples: - default: &481 + default: &482 value: total_count: 2 network_configurations: @@ -23087,7 +23087,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &482 + - &483 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -23099,7 +23099,7 @@ paths: description: Response content: application/json: - schema: &483 + schema: &484 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -23133,7 +23133,7 @@ paths: - subnet_id - region examples: - default: &484 + default: &485 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -23952,7 +23952,7 @@ paths: required: true content: application/json: - schema: &446 + schema: &447 title: Custom Property Set Payload description: Custom property set payload type: object @@ -25183,7 +25183,7 @@ paths: nullable: true anyOf: - *169 - - &452 + - &453 title: Organization ruleset conditions type: object description: |- @@ -25230,7 +25230,7 @@ paths: - *172 rules: type: array - items: &775 + items: &776 title: Repository Rule type: object description: A repository rule. @@ -25239,7 +25239,7 @@ paths: - *178 - *179 - *180 - - &772 + - &773 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -25330,7 +25330,7 @@ paths: - *191 - *192 - *193 - - &773 + - &774 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -25579,7 +25579,7 @@ paths: type: string format: date-time examples: - default: &455 + default: &456 value: - version_id: 3 actor: @@ -25632,7 +25632,7 @@ paths: description: Response content: application/json: - schema: &456 + schema: &457 allOf: - *202 - type: object @@ -25687,7 +25687,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &457 + - &458 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -25698,7 +25698,7 @@ paths: enum: - open - resolved - - &458 + - &459 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -25708,7 +25708,7 @@ paths: required: false schema: type: string - - &459 + - &460 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -25719,7 +25719,7 @@ paths: required: false schema: type: string - - &460 + - &461 name: exclude_providers in: query description: |- @@ -25730,7 +25730,7 @@ paths: required: false schema: type: string - - &461 + - &462 name: providers in: query description: |- @@ -25741,7 +25741,7 @@ paths: required: false schema: type: string - - &462 + - &463 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -25750,7 +25750,7 @@ paths: required: false schema: type: string - - &463 + - &464 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -25769,7 +25769,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &464 + - &465 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. @@ -25785,7 +25785,7 @@ paths: - *17 - *110 - *111 - - &465 + - &466 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -25794,7 +25794,7 @@ paths: required: false schema: type: string - - &466 + - &467 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -25803,7 +25803,7 @@ paths: schema: type: boolean default: false - - &467 + - &468 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -25812,7 +25812,7 @@ paths: schema: type: boolean default: false - - &468 + - &469 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -25821,7 +25821,7 @@ paths: schema: type: boolean default: false - - &469 + - &470 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -25832,7 +25832,7 @@ paths: required: false schema: type: boolean - - &470 + - &471 name: included_metadata in: query description: |- @@ -25843,7 +25843,7 @@ paths: required: false schema: type: string - - &471 + - &472 name: owner_email_hash in: query description: |- @@ -25862,7 +25862,7 @@ paths: application/json: schema: type: array - items: &472 + items: &473 type: object properties: number: *134 @@ -25881,14 +25881,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &788 + state: &789 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: &789 + resolution: &790 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -26005,8 +26005,8 @@ paths: pull request. ' - oneOf: &790 - - &792 + oneOf: &791 + - &793 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26064,7 +26064,7 @@ paths: - blob_url - commit_sha - commit_url - - &793 + - &794 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. @@ -26119,7 +26119,7 @@ paths: - page_url - commit_sha - commit_url - - &794 + - &795 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -26139,7 +26139,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &795 + - &796 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26159,7 +26159,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &796 + - &797 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26179,7 +26179,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &797 + - &798 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26193,7 +26193,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &798 + - &799 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26207,7 +26207,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &799 + - &800 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26221,7 +26221,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &800 + - &801 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. @@ -26241,7 +26241,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &801 + - &802 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. @@ -26261,7 +26261,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &802 + - &803 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. @@ -26281,7 +26281,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &803 + - &804 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. @@ -26301,7 +26301,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &804 + - &805 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -26349,7 +26349,7 @@ paths: required: *21 nullable: true examples: - default: &473 + default: &474 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -26558,7 +26558,7 @@ paths: description: Response content: application/json: - schema: &474 + schema: &475 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -26641,7 +26641,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *204 examples: - default: &475 + default: &476 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -26777,7 +26777,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &478 + - &479 name: advanced_security_product in: query description: | @@ -26797,7 +26797,7 @@ paths: description: Success content: application/json: - schema: &479 + schema: &480 type: object properties: total_advanced_security_committers: @@ -26852,7 +26852,7 @@ paths: required: - repositories examples: - default: &480 + default: &481 value: total_advanced_security_committers: 2 total_count: 2 @@ -30005,7 +30005,7 @@ paths: type: array items: *75 examples: - default: &262 + default: &263 value: - login: github id: 1 @@ -30290,6 +30290,192 @@ 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: &225 + 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. + example: 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. + example: 00000000-0000-0000-0000-000000000000 + username: + type: string + description: The GitHub username of the user associated + with the Visual Studio subscription assignment. + example: gh-user + nullable: true + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription + assignment was manually matched to a user. + example: 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: *225 + 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: *225 + 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 @@ -30379,7 +30565,7 @@ paths: application/json: schema: type: array - items: &257 + items: &258 title: Event description: Event type: object @@ -30389,7 +30575,7 @@ paths: type: type: string nullable: true - actor: &225 + actor: &226 title: Actor description: Actor type: object @@ -30429,7 +30615,7 @@ paths: - id - name - url - org: *225 + org: *226 payload: oneOf: - title: CreateEvent @@ -30475,7 +30661,7 @@ paths: properties: action: type: string - discussion: &931 + discussion: &932 title: Discussion description: A Discussion in a repository. type: object @@ -30762,7 +30948,7 @@ paths: - id labels: type: array - items: &230 + items: &231 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -30837,12 +31023,12 @@ paths: properties: action: type: string - issue: &231 + issue: &232 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &690 + properties: &691 id: type: integer format: int64 @@ -30948,7 +31134,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &435 + properties: &436 url: type: string format: uri @@ -31018,7 +31204,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &436 + required: &437 - closed_issues - creator - description @@ -31097,7 +31283,7 @@ paths: timeline_url: type: string format: uri - type: &400 + type: &401 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -31160,9 +31346,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - author_association: &228 + properties: *227 + required: *228 + author_association: &229 title: author_association type: string example: OWNER @@ -31177,7 +31363,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &229 + reactions: &230 title: Reaction Rollup type: object properties: @@ -31213,7 +31399,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &847 + sub_issues_summary: &848 title: Sub-issues Summary type: object properties: @@ -31238,7 +31424,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &232 + properties: &233 id: description: Unique identifier of the issue comment example: 42 @@ -31281,7 +31467,7 @@ paths: issue_url: type: string format: uri - author_association: *228 + author_association: *229 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -31292,15 +31478,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - reactions: *229 + properties: *227 + required: *228 + reactions: *230 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &716 + properties: &717 pinned_at: type: string format: date-time @@ -31312,7 +31498,7 @@ paths: properties: *20 required: *21 nullable: true - required: &717 + required: &718 - pinned_at - pinned_by nullable: true @@ -31321,16 +31507,16 @@ paths: description: Details about why an issue comment was minimized. type: object - properties: &718 + properties: &719 reason: description: The reason the comment was minimized. type: string nullable: true example: low-quality - required: &719 + required: &720 - reason nullable: true - required: &233 + required: &234 - id - node_id - html_url @@ -31340,7 +31526,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &848 + issue_dependencies_summary: &849 title: Issue Dependencies Summary type: object properties: @@ -31359,7 +31545,7 @@ paths: - total_blocking issue_field_values: type: array - items: &700 + items: &701 title: Issue Field Value description: A value assigned to an issue field type: object @@ -31451,7 +31637,7 @@ paths: - node_id - data_type - value - required: &691 + required: &692 - closed_at - comments - comments_url @@ -31475,10 +31661,10 @@ paths: assignees: type: array items: *4 - label: *230 + label: *231 labels: type: array - items: *230 + items: *231 required: - action - issue @@ -31487,14 +31673,14 @@ paths: properties: action: type: string - issue: *231 - comment: &686 + issue: *232 + comment: &687 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 required: - action - issue @@ -31667,8 +31853,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true allow_forking: type: boolean @@ -31757,7 +31943,7 @@ paths: type: string number: type: integer - pull_request: &236 + pull_request: &237 title: Pull Request Minimal type: object properties: @@ -31828,10 +32014,10 @@ paths: assignees: type: array items: *4 - label: *230 + label: *231 labels: type: array - items: *230 + items: *231 required: - action - number @@ -31841,7 +32027,7 @@ paths: properties: action: type: string - pull_request: *236 + pull_request: *237 comment: type: object properties: @@ -32092,7 +32278,7 @@ paths: - pull_request updated_at: type: string - pull_request: *236 + pull_request: *237 required: - action - review @@ -32141,7 +32327,7 @@ paths: updated_at: type: string format: date-time - reactions: *229 + reactions: *230 required: - action - comment @@ -32152,7 +32338,7 @@ paths: type: string release: allOf: - - &765 + - &766 title: Release description: A release. type: object @@ -32223,7 +32409,7 @@ paths: author: *4 assets: type: array - items: &766 + items: &767 title: Release Asset description: Data related to a release. type: object @@ -32298,7 +32484,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *229 + reactions: *230 required: - assets_url - upload_url @@ -32471,7 +32657,7 @@ paths: _links: type: object properties: - timeline: &237 + timeline: &238 title: Link With Type description: Hypermedia Link with Type type: object @@ -32483,17 +32669,17 @@ paths: required: - href - type - user: *237 - security_advisories: *237 - current_user: *237 - current_user_public: *237 - current_user_actor: *237 - current_user_organization: *237 + user: *238 + security_advisories: *238 + current_user: *238 + current_user_public: *238 + current_user_actor: *238 + current_user_organization: *238 current_user_organizations: type: array - items: *237 - repository_discussions: *237 - repository_discussions_category: *237 + items: *238 + repository_discussions: *238 + repository_discussions_category: *238 required: - timeline - user @@ -32555,7 +32741,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *238 + - *239 - *17 - *19 responses: @@ -32565,7 +32751,7 @@ paths: application/json: schema: type: array - items: &239 + items: &240 title: Base Gist description: Base Gist type: object @@ -32650,7 +32836,7 @@ paths: - created_at - updated_at examples: - default: &240 + default: &241 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -32771,7 +32957,7 @@ paths: description: Response content: application/json: - schema: &241 + schema: &242 title: Gist Simple description: Gist Simple type: object @@ -32939,7 +33125,7 @@ paths: truncated: type: boolean examples: - default: &242 + default: &243 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -33043,7 +33229,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-public-gists parameters: - - *238 + - *239 - *17 - *19 responses: @@ -33053,9 +33239,9 @@ paths: application/json: schema: type: array - items: *239 + items: *240 examples: - default: *240 + default: *241 headers: Link: *47 '422': *15 @@ -33077,7 +33263,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-starred-gists parameters: - - *238 + - *239 - *17 - *19 responses: @@ -33087,9 +33273,9 @@ paths: application/json: schema: type: array - items: *239 + items: *240 examples: - default: *240 + default: *241 headers: Link: *47 '401': *25 @@ -33116,7 +33302,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist parameters: - - &243 + - &244 name: gist_id description: The unique identifier of the gist. in: path @@ -33128,10 +33314,10 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: *242 - '403': &246 + default: *243 + '403': &247 description: Forbidden Gist content: application/json: @@ -33178,7 +33364,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#update-a-gist parameters: - - *243 + - *244 requestBody: required: true content: @@ -33238,9 +33424,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - updateGist: *242 + updateGist: *243 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -33398,7 +33584,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#delete-a-gist parameters: - - *243 + - *244 responses: '204': description: Response @@ -33426,7 +33612,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#list-gist-comments parameters: - - *243 + - *244 - *17 - *19 responses: @@ -33436,7 +33622,7 @@ paths: application/json: schema: type: array - items: &244 + items: &245 title: Gist Comment description: A comment made to a gist. type: object @@ -33471,7 +33657,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *228 + author_association: *229 required: - url - id @@ -33535,7 +33721,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#create-a-gist-comment parameters: - - *243 + - *244 requestBody: required: true content: @@ -33560,9 +33746,9 @@ paths: description: Response content: application/json: - schema: *244 + schema: *245 examples: - default: &245 + default: &246 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -33619,8 +33805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#get-a-gist-comment parameters: - - *243 - - &247 + - *244 + - &248 name: comment_id description: The unique identifier of the comment. in: path @@ -33633,12 +33819,12 @@ paths: description: Response content: application/json: - schema: *244 + schema: *245 examples: - default: *245 + default: *246 '304': *37 '404': *6 - '403': *246 + '403': *247 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -33659,8 +33845,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#update-a-gist-comment parameters: - - *243 - - *247 + - *244 + - *248 requestBody: required: true content: @@ -33685,9 +33871,9 @@ paths: description: Response content: application/json: - schema: *244 + schema: *245 examples: - default: *245 + default: *246 '404': *6 x-github: githubCloudOnly: false @@ -33704,8 +33890,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#delete-a-gist-comment parameters: - - *243 - - *247 + - *244 + - *248 responses: '204': description: Response @@ -33728,7 +33914,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-commits parameters: - - *243 + - *244 - *17 - *19 responses: @@ -33829,7 +34015,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-forks parameters: - - *243 + - *244 - *17 - *19 responses: @@ -33839,7 +34025,7 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: default: value: @@ -33904,13 +34090,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#fork-a-gist parameters: - - *243 + - *244 responses: '201': description: Response content: application/json: - schema: *239 + schema: *240 examples: default: value: @@ -33980,7 +34166,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *243 + - *244 responses: '204': description: Response if gist is starred @@ -34010,7 +34196,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#star-a-gist parameters: - - *243 + - *244 responses: '204': description: Response @@ -34032,7 +34218,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#unstar-a-gist parameters: - - *243 + - *244 responses: '204': description: Response @@ -34060,7 +34246,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist-revision parameters: - - *243 + - *244 - name: sha in: path required: true @@ -34071,9 +34257,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: *242 + default: *243 '422': *15 '404': *6 '403': *29 @@ -34453,7 +34639,7 @@ paths: - closed - all default: open - - &403 + - &404 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -34472,7 +34658,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - name: collab in: query required: false @@ -34502,9 +34688,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: &404 + default: &405 value: - id: 1 node_id: MDU6SXNzdWUx @@ -34788,8 +34974,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 examples: default: value: @@ -35074,7 +35260,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &248 + X-CommonMarker-Version: &249 example: 0.17.4 schema: type: string @@ -35129,7 +35315,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *248 + X-CommonMarker-Version: *249 content: text/html: schema: @@ -35158,7 +35344,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: - - &251 + - &252 name: account_id description: account_id parameter in: path @@ -35170,7 +35356,7 @@ paths: description: Response content: application/json: - schema: &250 + schema: &251 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -35200,7 +35386,7 @@ paths: nullable: true id: type: integer - plan: &249 + plan: &250 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -35289,7 +35475,7 @@ paths: nullable: true updated_at: type: string - plan: *249 + plan: *250 required: - url - id @@ -35297,7 +35483,7 @@ paths: - login - marketplace_purchase examples: - default: &252 + default: &253 value: url: https://api.github.com/orgs/github type: Organization @@ -35382,9 +35568,9 @@ paths: application/json: schema: type: array - items: *249 + items: *250 examples: - default: &253 + default: &254 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -35424,14 +35610,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &254 + - &255 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &255 + - &256 name: sort description: The property to sort the results by. in: query @@ -35461,9 +35647,9 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: - default: &256 + default: &257 value: - url: https://api.github.com/orgs/github type: Organization @@ -35537,15 +35723,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: - - *251 + - *252 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: - default: *252 + default: *253 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -35577,9 +35763,9 @@ paths: application/json: schema: type: array - items: *249 + items: *250 examples: - default: *253 + default: *254 headers: Link: *47 '401': *25 @@ -35602,8 +35788,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *254 - *255 + - *256 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -35623,9 +35809,9 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: - default: *256 + default: *257 headers: Link: *47 '401': *25 @@ -35889,14 +36075,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: - - &493 + - &494 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &494 + - &495 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -35913,7 +36099,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -35958,7 +36144,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &499 + '301': &500 description: Moved permanently content: application/json: @@ -35980,7 +36166,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &739 + - &740 name: all description: If `true`, show notifications marked as read. in: query @@ -35988,7 +36174,7 @@ paths: schema: type: boolean default: false - - &740 + - &741 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -35997,8 +36183,8 @@ paths: schema: type: boolean default: false - - *238 - - &741 + - *239 + - &742 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: @@ -36023,18 +36209,18 @@ paths: application/json: schema: type: array - items: &258 + items: &259 title: Thread description: Thread type: object properties: id: type: string - repository: &292 + repository: &293 title: Minimal Repository description: Minimal Repository type: object - properties: &368 + properties: &369 id: type: integer format: int64 @@ -36318,7 +36504,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &449 + security_and_analysis: &450 nullable: true type: object properties: @@ -36446,7 +36632,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &369 + required: &370 - archive_url - assignees_url - blobs_url @@ -36534,7 +36720,7 @@ paths: - url - subscription_url examples: - default: &742 + default: &743 value: - id: '1' repository: @@ -36700,7 +36886,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#get-a-thread parameters: - - &259 + - &260 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 @@ -36714,7 +36900,7 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: default: value: @@ -36817,7 +37003,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-read parameters: - - *259 + - *260 responses: '205': description: Reset Content @@ -36840,7 +37026,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-done parameters: - - *259 + - *260 responses: '204': description: No content @@ -36863,13 +37049,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: - - *259 + - *260 responses: '200': description: Response content: application/json: - schema: &260 + schema: &261 title: Thread Subscription description: Thread Subscription type: object @@ -36906,7 +37092,7 @@ paths: - url - subscribed examples: - default: &261 + default: &262 value: subscribed: true ignored: false @@ -36937,7 +37123,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#set-a-thread-subscription parameters: - - *259 + - *260 requestBody: required: false content: @@ -36958,9 +37144,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *261 examples: - default: *261 + default: *262 '304': *37 '403': *29 '401': *25 @@ -36983,7 +37169,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#delete-a-thread-subscription parameters: - - *259 + - *260 responses: '204': description: Response @@ -37080,7 +37266,7 @@ paths: type: array items: *75 examples: - default: *262 + default: *263 headers: Link: example: ; rel="next" @@ -37152,7 +37338,7 @@ paths: description: Response content: application/json: - schema: &263 + schema: &264 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -37190,7 +37376,7 @@ paths: required: true content: application/json: - schema: *263 + schema: *264 examples: selected_actions: *44 responses: @@ -37225,7 +37411,7 @@ paths: description: Response content: application/json: - schema: &264 + schema: &265 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -37263,7 +37449,7 @@ paths: required: true content: application/json: - schema: *264 + schema: *265 examples: selected_actions: *46 responses: @@ -37306,7 +37492,7 @@ paths: type: array items: *163 examples: - default: &748 + default: &749 value: - property_name: environment value: production @@ -37356,7 +37542,7 @@ paths: required: - properties examples: - default: &749 + default: &750 value: properties: - property_name: environment @@ -37403,7 +37589,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &266 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -37731,7 +37917,7 @@ paths: - updated_at - archived_at examples: - default-response: &266 + default-response: &267 value: login: github id: 1 @@ -38051,17 +38237,17 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *266 + default: *267 '422': description: Validation failed content: application/json: schema: oneOf: - - *267 - *268 + - *269 '409': *121 x-github: githubCloudOnly: false @@ -38117,9 +38303,9 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: - default: *270 + default: *271 headers: Link: *47 x-github: @@ -38160,7 +38346,7 @@ paths: type: integer repository_cache_usages: type: array - items: &506 + items: &507 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -38235,7 +38421,7 @@ paths: type: array items: *48 examples: - default: *271 + default: *272 headers: Link: *47 x-github: @@ -38401,7 +38587,7 @@ paths: application/json: schema: *49 examples: - default: *272 + default: *273 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38493,7 +38679,7 @@ paths: application/json: schema: *52 examples: - default: *273 + default: *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38612,9 +38798,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *275 examples: - default: *275 + default: *276 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38650,7 +38836,7 @@ paths: type: array items: *56 examples: - default: *276 + default: *277 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38893,7 +39079,7 @@ paths: required: true content: application/json: - schema: *277 + schema: *278 examples: default: *60 responses: @@ -38986,7 +39172,7 @@ paths: required: - include_claim_keys examples: - default: &278 + default: &279 value: include_claim_keys: - repo @@ -39031,13 +39217,13 @@ paths: format. type: boolean examples: - default: *278 + default: *279 responses: '201': description: Empty response content: application/json: - schema: &303 + schema: &304 title: Empty Object description: An object without any properties. type: object @@ -39076,7 +39262,7 @@ paths: schema: type: object properties: - enabled_repositories: &280 + enabled_repositories: &281 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -39090,7 +39276,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *62 - selected_actions_url: *279 + selected_actions_url: *280 sha_pinning_required: *63 required: - enabled_repositories @@ -39132,7 +39318,7 @@ paths: schema: type: object properties: - enabled_repositories: *280 + enabled_repositories: *281 allowed_actions: *62 sha_pinning_required: *63 required: @@ -39168,7 +39354,7 @@ paths: description: Response content: application/json: - schema: *281 + schema: *282 examples: response: summary: Example response @@ -39199,7 +39385,7 @@ paths: required: true content: application/json: - schema: *282 + schema: *283 examples: application/json: value: @@ -39237,7 +39423,7 @@ paths: application/json: schema: *64 examples: - default: *283 + default: *284 '404': *6 x-github: enabledForGitHubApps: true @@ -39294,7 +39480,7 @@ paths: description: Response content: application/json: - schema: *284 + schema: *285 examples: default: *65 '403': *29 @@ -39319,7 +39505,7 @@ paths: required: true content: application/json: - schema: *285 + schema: *286 examples: default: *65 responses: @@ -39371,7 +39557,7 @@ paths: type: array items: *80 examples: - default: &287 + default: &288 value: total_count: 1 repositories: @@ -39556,7 +39742,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *89 - - &286 + - &287 name: repository_id description: The unique identifier of the repository. in: path @@ -39585,7 +39771,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *89 - - *286 + - *287 responses: '204': description: Response @@ -39781,7 +39967,7 @@ paths: type: array items: *80 examples: - default: *287 + default: *288 '403': *29 '404': *6 x-github: @@ -39850,7 +40036,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: - *89 - - *286 + - *287 responses: '204': description: No content @@ -39877,7 +40063,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: - *89 - - *286 + - *287 responses: '204': description: No content @@ -39911,7 +40097,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: default: *71 x-github: @@ -39945,7 +40131,7 @@ paths: required: false content: application/json: - schema: *289 + schema: *290 examples: default: *71 x-github: @@ -39992,7 +40178,7 @@ paths: type: number runner_groups: type: array - items: &290 + items: &291 type: object properties: id: @@ -40180,9 +40366,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: - default: &291 + default: &292 value: id: 2 name: octo-runner-group @@ -40224,7 +40410,7 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: default: value: @@ -40315,9 +40501,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: - default: *291 + default: *292 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -40381,7 +40567,7 @@ paths: type: array items: *48 examples: - default: *271 + default: *272 headers: Link: *47 x-github: @@ -40422,9 +40608,9 @@ paths: type: number repositories: type: array - items: *292 + items: *293 examples: - default: &344 + default: &345 value: total_count: 1 repositories: @@ -40723,7 +40909,7 @@ paths: parameters: - *89 - *74 - - *286 + - *287 responses: '204': description: Response @@ -40747,7 +40933,7 @@ paths: parameters: - *89 - *74 - - *286 + - *287 responses: '204': description: Response @@ -40965,9 +41151,9 @@ paths: application/json: schema: type: array - items: *293 + items: *294 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41032,7 +41218,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *295 + '201': *296 '404': *6 '422': *7 '409': *121 @@ -41071,7 +41257,7 @@ paths: application/json: schema: *81 examples: - default: *296 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41107,7 +41293,7 @@ paths: application/json: schema: *81 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41138,7 +41324,7 @@ paths: application/json: schema: *78 examples: - default: *298 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41313,7 +41499,7 @@ paths: - *89 - *77 responses: - '200': *299 + '200': *300 '404': *6 x-github: githubCloudOnly: false @@ -41342,7 +41528,7 @@ paths: parameters: - *89 - *77 - - *300 + - *301 responses: '200': *83 '404': *6 @@ -41387,7 +41573,7 @@ paths: type: integer secrets: type: array - items: &301 + items: &302 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -41419,7 +41605,7 @@ paths: - updated_at - visibility examples: - default: &307 + default: &308 value: total_count: 3 secrets: @@ -41466,7 +41652,7 @@ paths: description: Response content: application/json: - schema: &308 + schema: &309 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -41495,7 +41681,7 @@ paths: - key_id - key examples: - default: &309 + default: &310 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -41521,7 +41707,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-organization-secret parameters: - *89 - - &302 + - &303 name: secret_name description: The name of the secret. in: path @@ -41533,9 +41719,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *302 examples: - default: &310 + default: &311 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -41564,7 +41750,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -41621,7 +41807,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -41648,7 +41834,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -41675,7 +41861,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -41693,9 +41879,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: &306 + default: &307 value: total_count: 1 repositories: @@ -41788,7 +41974,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -41841,7 +42027,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -41875,7 +42061,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -41908,7 +42094,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-organization-variables parameters: - *89 - - &311 + - &312 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)." @@ -41932,7 +42118,7 @@ paths: type: integer variables: type: array - items: &304 + items: &305 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -41975,7 +42161,7 @@ paths: - updated_at - visibility examples: - default: &312 + default: &313 value: total_count: 3 variables: @@ -42065,7 +42251,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -42091,7 +42277,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-organization-variable parameters: - *89 - - &305 + - &306 name: name description: The name of the variable. in: path @@ -42103,9 +42289,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *305 examples: - default: &313 + default: &314 value: name: USERNAME value: octocat @@ -42134,7 +42320,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -42197,7 +42383,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-organization-variable parameters: - *89 - - *305 + - *306 responses: '204': description: Response @@ -42224,7 +42410,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 - *19 - *17 responses: @@ -42242,9 +42428,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 '409': description: Response when the visibility of the variable is not set to `selected` @@ -42271,7 +42457,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -42321,7 +42507,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -42356,7 +42542,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -42408,9 +42594,9 @@ paths: type: integer secrets: type: array - items: *301 + items: *302 examples: - default: *307 + default: *308 headers: Link: *47 x-github: @@ -42441,9 +42627,9 @@ paths: description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42466,15 +42652,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *301 + schema: *302 examples: - default: *310 + default: *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42497,7 +42683,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -42554,7 +42740,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -42581,7 +42767,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -42608,7 +42794,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -42626,9 +42812,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42652,7 +42838,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -42705,7 +42891,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -42739,7 +42925,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -42773,7 +42959,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-organization-variables parameters: - *89 - - *311 + - *312 - *19 responses: '200': @@ -42790,9 +42976,9 @@ paths: type: integer variables: type: array - items: *304 + items: *305 examples: - default: *312 + default: *313 headers: Link: *47 x-github: @@ -42863,7 +43049,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -42889,15 +43075,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-an-organization-variable parameters: - *89 - - *305 + - *306 responses: '200': description: Response content: application/json: - schema: *304 + schema: *305 examples: - default: *313 + default: *314 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42919,7 +43105,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -42982,7 +43168,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-an-organization-variable parameters: - *89 - - *305 + - *306 responses: '204': description: Response @@ -43009,7 +43195,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 - *19 - *17 responses: @@ -43027,9 +43213,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 '409': description: Response when the visibility of the variable is not set to `selected` @@ -43056,7 +43242,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -43106,7 +43292,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -43141,7 +43327,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -43199,7 +43385,7 @@ paths: required: true content: application/json: - schema: *314 + schema: *315 examples: default: *87 parameters: @@ -43383,7 +43569,7 @@ paths: type: integer deployment_records: type: array - items: &315 + items: &316 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -43429,7 +43615,7 @@ paths: required: - total_count examples: - default: &316 + default: &317 value: total_count: 1 deployment_records: @@ -43609,11 +43795,11 @@ paths: type: integer deployment_records: type: array - items: *315 + items: *316 required: - total_count examples: - default: *316 + default: *317 '403': description: Forbidden content: @@ -43852,9 +44038,9 @@ paths: type: integer deployment_records: type: array - items: *315 + items: *316 examples: - default: *316 + default: *317 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43983,12 +44169,12 @@ paths: required: - subject_digests examples: - default: &889 + default: &890 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &890 + withPredicateType: &891 value: subject_digests: - sha256:abc123 @@ -44032,7 +44218,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &891 + default: &892 value: attestations_subject_digests: - sha256:abc: @@ -44365,7 +44551,7 @@ paths: initiator: type: string examples: - default: &539 + default: &540 value: attestations: - bundle: @@ -44491,7 +44677,7 @@ paths: required: false schema: type: string - - *317 + - *318 - *131 - *132 - *133 @@ -44503,9 +44689,9 @@ paths: application/json: schema: type: array - items: *318 + items: *319 examples: - default: *319 + default: *320 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -44628,7 +44814,7 @@ paths: subcategory: bypass-requests parameters: - *89 - - &322 + - &323 name: repository_name description: The name of the repository to filter on. in: query @@ -44647,9 +44833,9 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: - default: *321 + default: *322 '404': *6 '500': *40 "/orgs/{org}/bypass-requests/secret-scanning": @@ -44673,7 +44859,7 @@ paths: subcategory: delegated-bypass parameters: - *89 - - *322 + - *323 - *105 - *106 - *107 @@ -44687,9 +44873,9 @@ paths: application/json: schema: type: array - items: *323 + items: *324 examples: - default: *324 + default: *325 '404': *6 '500': *40 "/orgs/{org}/campaigns": @@ -44716,7 +44902,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &326 + schema: &327 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -44742,7 +44928,7 @@ paths: application/json: schema: type: array - items: &327 + items: &328 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -44773,7 +44959,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *325 + items: *326 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -44791,7 +44977,7 @@ paths: type: string format: date-time nullable: true - state: *326 + state: *327 contact_link: description: The contact link of the campaign. type: string @@ -45011,9 +45197,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: &328 + default: &329 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -45096,9 +45282,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *328 + default: *329 '404': *6 '422': description: Unprocessable Entity @@ -45175,7 +45361,7 @@ paths: type: string format: uri nullable: true - state: *326 + state: *327 examples: default: value: @@ -45185,9 +45371,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *328 + default: *329 '400': description: Bad Request content: @@ -45254,8 +45440,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *89 - - *329 - *330 + - *331 - *110 - *111 - *19 @@ -45266,7 +45452,7 @@ paths: be returned. in: query required: false - schema: *331 + schema: *332 - name: sort description: The property by which to sort the results. in: query @@ -45282,7 +45468,7 @@ paths: be returned. in: query required: false - schema: &565 + schema: &566 type: string description: Severity of a code scanning alert. enum: @@ -45308,9 +45494,9 @@ paths: application/json: schema: type: array - items: *332 + items: *333 examples: - default: *333 + default: *334 headers: Link: *47 '404': *6 @@ -45685,7 +45871,7 @@ paths: application/json: schema: *116 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45713,9 +45899,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *336 examples: - default: *336 + default: *337 '304': *37 '403': *29 '404': *6 @@ -45804,7 +45990,7 @@ paths: application/json: schema: *116 examples: - default: *334 + default: *335 '304': *37 '403': *29 '404': *6 @@ -46249,7 +46435,7 @@ paths: default: value: default_for_new_repos: all - configuration: *334 + configuration: *335 '403': *29 '404': *6 x-github: @@ -46302,13 +46488,13 @@ paths: application/json: schema: type: array - items: *337 + items: *338 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *338 + repository: *339 '403': *29 '404': *6 x-github: @@ -46348,7 +46534,7 @@ paths: type: integer codespaces: type: array - items: &405 + items: &406 type: object title: Codespace description: A codespace. @@ -46373,12 +46559,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *292 + repository: *293 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &597 + properties: &598 name: type: string description: The name of the machine. @@ -46420,7 +46606,7 @@ paths: - ready - in_progress nullable: true - required: &598 + required: &599 - name - display_name - operating_system @@ -46625,7 +46811,7 @@ paths: - pulls_url - recent_folders examples: - default: &406 + default: &407 value: total_count: 3 codespaces: @@ -47249,7 +47435,7 @@ paths: type: integer secrets: type: array - items: &339 + items: &340 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -47288,7 +47474,7 @@ paths: - updated_at - visibility examples: - default: &599 + default: &600 value: total_count: 2 secrets: @@ -47326,7 +47512,7 @@ paths: description: Response content: application/json: - schema: &600 + schema: &601 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -47355,7 +47541,7 @@ paths: - key_id - key examples: - default: &601 + default: &602 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -47379,15 +47565,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: &603 + default: &604 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -47415,7 +47601,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -47470,7 +47656,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -47497,7 +47683,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -47523,7 +47709,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -47541,9 +47727,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 '404': *6 x-github: githubCloudOnly: false @@ -47566,7 +47752,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -47617,7 +47803,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -47651,7 +47837,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -47721,7 +47907,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &340 + items: &341 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -48102,9 +48288,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: &341 + default: &342 summary: Example response for an organization copilot space value: id: 84 @@ -48209,9 +48395,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *341 + default: *342 '403': *29 '404': *6 x-github: @@ -48337,9 +48523,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *341 + default: *342 '403': *29 '404': *6 '422': *15 @@ -48422,7 +48608,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &342 + items: &343 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -48645,7 +48831,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: user: value: @@ -48775,7 +48961,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: user: value: @@ -48926,7 +49112,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &343 + items: &344 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -49069,7 +49255,7 @@ paths: description: Resource created content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -49085,7 +49271,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -49140,7 +49326,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -49209,7 +49395,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -49937,12 +50123,12 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 required: - total_count - repositories examples: - default: *344 + default: *345 '500': *40 '401': *25 '403': *29 @@ -50028,7 +50214,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: - *89 - - *286 + - *287 responses: '204': description: No Content @@ -50062,7 +50248,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: - *89 - - *286 + - *287 responses: '204': description: No Content @@ -50210,7 +50396,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': *345 + '413': *346 '422': *7 x-github: githubCloudOnly: @@ -50650,7 +50836,7 @@ paths: type: integer custom_roles: type: array - items: &346 + items: &347 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -50788,7 +50974,7 @@ paths: required: true content: application/json: - schema: &348 + schema: &349 type: object properties: name: @@ -50829,9 +51015,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: &347 + default: &348 value: id: 8030 name: Security Engineer @@ -50885,9 +51071,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '404': *6 x-github: githubCloudOnly: true @@ -50915,7 +51101,7 @@ paths: required: true content: application/json: - schema: &349 + schema: &350 type: object properties: name: @@ -50953,9 +51139,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51013,7 +51199,7 @@ paths: required: true content: application/json: - schema: *348 + schema: *349 examples: default: value: @@ -51027,9 +51213,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51066,9 +51252,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '404': *6 x-github: githubCloudOnly: true @@ -51102,7 +51288,7 @@ paths: required: true content: application/json: - schema: *349 + schema: *350 examples: default: value: @@ -51117,9 +51303,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51179,12 +51365,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *89 - - *350 - *351 - *352 - *353 - *354 - *355 + - *356 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -51214,7 +51400,7 @@ paths: enum: - patch - deployment - - *356 + - *357 - name: runtime_risk in: query description: |- @@ -51223,8 +51409,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *357 - *358 + - *359 - *112 - *110 - *111 @@ -51236,9 +51422,9 @@ paths: application/json: schema: type: array - items: *359 + items: *360 examples: - default: *360 + default: *361 '304': *37 '400': *14 '403': *29 @@ -51287,9 +51473,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: *362 + default: *363 '403': *29 '404': *6 x-github: @@ -51452,7 +51638,7 @@ paths: type: integer secrets: type: array - items: &363 + items: &364 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -51529,7 +51715,7 @@ paths: description: Response content: application/json: - schema: &634 + schema: &635 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -51546,7 +51732,7 @@ paths: - key_id - key examples: - default: &635 + default: &636 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -51570,13 +51756,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: default: value: @@ -51605,7 +51791,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -51660,7 +51846,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -51685,7 +51871,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -51710,7 +51896,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -51728,9 +51914,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51752,7 +51938,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -51803,7 +51989,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -51835,7 +52021,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -51872,7 +52058,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - &644 + - &645 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -51880,7 +52066,7 @@ paths: required: false schema: type: string - - &645 + - &646 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -51888,7 +52074,7 @@ paths: required: false schema: type: string - - &646 + - &647 name: time_period description: |- The time period to filter by. @@ -51904,7 +52090,7 @@ paths: - week - month default: month - - &647 + - &648 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -51919,7 +52105,7 @@ paths: - denied - all default: all - - *322 + - *323 - *17 - *19 responses: @@ -51929,7 +52115,7 @@ paths: application/json: schema: type: array - items: &648 + items: &649 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -52035,7 +52221,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: &365 + items: &366 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -52085,7 +52271,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &649 + default: &650 value: - id: 21 number: 42 @@ -52173,11 +52359,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - *322 + - *323 - *105 - *106 - *107 - - *364 + - *365 - *17 - *19 responses: @@ -52187,7 +52373,7 @@ paths: application/json: schema: type: array - items: &650 + items: &651 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -52293,7 +52479,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *365 + items: *366 url: type: string format: uri @@ -52304,7 +52490,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &651 + default: &652 value: - id: 21 number: 42 @@ -52392,11 +52578,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - *322 + - *323 - *105 - *106 - *107 - - *364 + - *365 - *17 - *19 responses: @@ -52406,9 +52592,9 @@ paths: application/json: schema: type: array - items: *366 + items: *367 examples: - default: *367 + default: *368 '404': *6 '403': *29 '500': *40 @@ -52434,7 +52620,7 @@ paths: application/json: schema: type: array - items: &416 + items: &417 title: Package description: A software package type: object @@ -52484,8 +52670,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *368 - required: *369 + properties: *369 + required: *370 nullable: true created_at: type: string @@ -52504,7 +52690,7 @@ paths: - created_at - updated_at examples: - default: &417 + default: &418 value: - id: 197 name: hello_docker @@ -52592,7 +52778,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: 200-response: value: @@ -52691,7 +52877,7 @@ paths: description: Response content: application/json: - schema: &490 + schema: &491 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -52772,7 +52958,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &491 + default: &492 value: group_id: '123' group_name: Octocat admins @@ -52827,7 +53013,7 @@ paths: description: Response content: application/json: - schema: &487 + schema: &488 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -52864,7 +53050,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &488 + default: &489 value: groups: - group_id: '123' @@ -52909,7 +53095,7 @@ paths: application/json: schema: type: array - items: &394 + items: &395 title: Organization Invitation description: Organization Invitation type: object @@ -52956,7 +53142,7 @@ paths: - invitation_teams_url - node_id examples: - default: &395 + default: &396 value: - id: 1 login: monalisa @@ -53023,7 +53209,7 @@ paths: application/json: schema: type: array - items: &450 + items: &451 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -53037,7 +53223,7 @@ paths: - name - description examples: - default: &451 + default: &452 value: - name: add_assignee description: Assign or remove a user @@ -53078,7 +53264,7 @@ paths: application/json: schema: type: array - items: &370 + items: &371 title: Org Hook description: Org Hook type: object @@ -53247,9 +53433,9 @@ paths: description: Response content: application/json: - schema: *370 + schema: *371 examples: - default: &371 + default: &372 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -53294,7 +53480,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-an-organization-webhook parameters: - *89 - - &372 + - &373 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. @@ -53307,9 +53493,9 @@ paths: description: Response content: application/json: - schema: *370 + schema: *371 examples: - default: *371 + default: *372 '404': *6 x-github: githubCloudOnly: false @@ -53331,7 +53517,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-an-organization-webhook parameters: - *89 - - *372 + - *373 requestBody: required: false content: @@ -53376,7 +53562,7 @@ paths: description: Response content: application/json: - schema: *370 + schema: *371 examples: default: value: @@ -53416,7 +53602,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *89 - - *372 + - *373 responses: '204': description: Response @@ -53442,7 +53628,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *89 - - *372 + - *373 responses: '200': description: Response @@ -53471,7 +53657,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *89 - - *372 + - *373 requestBody: required: false content: @@ -53520,10 +53706,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *89 - - *372 - - *17 - *373 + - *17 - *374 + - *375 responses: '200': description: Response @@ -53531,9 +53717,9 @@ paths: application/json: schema: type: array - items: *375 + items: *376 examples: - default: *376 + default: *377 '400': *14 '422': *15 x-github: @@ -53557,16 +53743,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *89 - - *372 + - *373 - *16 responses: '200': description: Response content: application/json: - schema: *377 + schema: *378 examples: - default: *378 + default: *379 '400': *14 '422': *15 x-github: @@ -53590,7 +53776,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *89 - - *372 + - *373 - *16 responses: '202': *39 @@ -53617,7 +53803,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *89 - - *372 + - *373 responses: '204': description: Response @@ -53640,7 +53826,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *89 - - &383 + - &384 name: actor_type in: path description: The type of the actor @@ -53653,14 +53839,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &384 + - &385 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &379 + - &380 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`.' @@ -53668,7 +53854,7 @@ paths: required: true schema: type: string - - &380 + - &381 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) @@ -53762,12 +53948,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-subject-stats parameters: - *89 - - *379 - *380 + - *381 - *19 - *17 - *112 - - &389 + - &390 name: sort description: The property to sort the results by. in: query @@ -53845,14 +54031,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats parameters: - *89 - - *379 - *380 + - *381 responses: '200': description: Response content: application/json: - schema: &381 + schema: &382 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -53868,7 +54054,7 @@ paths: type: integer format: int64 examples: - default: &382 + default: &383 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -53889,23 +54075,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *89 - - &385 + - &386 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *379 - *380 + - *381 responses: '200': description: Response content: application/json: - schema: *381 + schema: *382 examples: - default: *382 + default: *383 x-github: enabledForGitHubApps: true category: orgs @@ -53924,18 +54110,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *89 - - *379 - *380 - - *383 + - *381 - *384 + - *385 responses: '200': description: Response content: application/json: - schema: *381 + schema: *382 examples: - default: *382 + default: *383 x-github: enabledForGitHubApps: true category: orgs @@ -53953,9 +54139,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats parameters: - *89 - - *379 - *380 - - &386 + - *381 + - &387 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -53968,7 +54154,7 @@ paths: description: Response content: application/json: - schema: &387 + schema: &388 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -53984,7 +54170,7 @@ paths: type: integer format: int64 examples: - default: &388 + default: &389 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -54021,18 +54207,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-user parameters: - *89 - - *385 - - *379 - - *380 - *386 + - *380 + - *381 + - *387 responses: '200': description: Response content: application/json: - schema: *387 + schema: *388 examples: - default: *388 + default: *389 x-github: enabledForGitHubApps: true category: orgs @@ -54050,19 +54236,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *89 - - *383 - *384 - - *379 + - *385 - *380 - - *386 + - *381 + - *387 responses: '200': description: Response content: application/json: - schema: *387 + schema: *388 examples: - default: *388 + default: *389 x-github: enabledForGitHubApps: true category: orgs @@ -54080,13 +54266,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-user-stats parameters: - *89 - - *385 - - *379 + - *386 - *380 + - *381 - *19 - *17 - *112 - - *389 + - *390 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -54167,7 +54353,7 @@ paths: application/json: schema: *22 examples: - default: *390 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54287,12 +54473,12 @@ paths: application/json: schema: anyOf: - - &392 + - &393 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &391 + limit: &392 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -54317,7 +54503,7 @@ paths: properties: {} additionalProperties: false examples: - default: &393 + default: &394 value: limit: collaborators_only origin: organization @@ -54346,13 +54532,13 @@ paths: required: true content: application/json: - schema: &680 + schema: &681 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *391 + limit: *392 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -54376,9 +54562,9 @@ paths: description: Response content: application/json: - schema: *392 + schema: *393 examples: - default: *393 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -54456,9 +54642,9 @@ paths: application/json: schema: type: array - items: *394 + items: *395 examples: - default: *395 + default: *396 headers: Link: *47 '404': *6 @@ -54536,7 +54722,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *395 examples: default: value: @@ -54593,7 +54779,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#cancel-an-organization-invitation parameters: - *89 - - &396 + - &397 name: invitation_id description: The unique identifier of the invitation. in: path @@ -54627,7 +54813,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#list-organization-invitation-teams parameters: - *89 - - *396 + - *397 - *17 - *19 responses: @@ -54637,9 +54823,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: &415 + default: &416 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -54682,7 +54868,7 @@ paths: application/json: schema: type: array - items: &397 + items: &398 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -54935,9 +55121,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *398 examples: - default: &398 + default: &399 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -54993,7 +55179,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *89 - - &399 + - &400 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -55101,9 +55287,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *398 examples: - default: *398 + default: *399 '404': *6 '422': *7 x-github: @@ -55128,7 +55314,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *89 - - *399 + - *400 responses: '204': *130 '404': *6 @@ -55158,9 +55344,9 @@ paths: application/json: schema: type: array - items: *400 + items: *401 examples: - default: &684 + default: &685 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -55243,9 +55429,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *401 examples: - default: &401 + default: &402 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -55278,7 +55464,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *89 - - &402 + - &403 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -55331,9 +55517,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *401 examples: - default: *401 + default: *402 '404': *6 '422': *7 x-github: @@ -55358,7 +55544,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *89 - - *402 + - *403 responses: '204': description: Response @@ -55421,7 +55607,7 @@ paths: - closed - all default: open - - *403 + - *404 - name: type description: Can be the name of an issue type. in: query @@ -55440,7 +55626,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - *17 - *19 responses: @@ -55450,9 +55636,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *404 + default: *405 headers: Link: *47 '404': *6 @@ -55612,9 +55798,9 @@ paths: type: integer codespaces: type: array - items: *405 + items: *406 examples: - default: *406 + default: *407 '304': *37 '500': *40 '401': *25 @@ -55641,7 +55827,7 @@ paths: parameters: - *89 - *151 - - &407 + - &408 name: codespace_name in: path required: true @@ -55676,15 +55862,15 @@ paths: parameters: - *89 - *151 - - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: &596 + default: &597 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -55940,7 +56126,7 @@ paths: description: Response content: application/json: - schema: &408 + schema: &409 title: Org Membership description: Org Membership type: object @@ -56007,7 +56193,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &409 + response-if-user-has-an-active-admin-membership-with-organization: &410 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -56108,9 +56294,9 @@ paths: description: Response content: application/json: - schema: *408 + schema: *409 examples: - response-if-user-already-had-membership-with-organization: *409 + response-if-user-already-had-membership-with-organization: *410 '422': *15 '403': *29 '451': *15 @@ -56182,7 +56368,7 @@ paths: application/json: schema: type: array - items: &410 + items: &411 title: Migration description: A migration. type: object @@ -56511,7 +56697,7 @@ paths: description: Response content: application/json: - schema: *410 + schema: *411 examples: default: value: @@ -56690,7 +56876,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#get-an-organization-migration-status parameters: - *89 - - &411 + - &412 name: migration_id description: The unique identifier of the migration. in: path @@ -56717,7 +56903,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *410 + schema: *411 examples: default: value: @@ -56887,7 +57073,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *89 - - *411 + - *412 responses: '302': description: Response @@ -56909,7 +57095,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *89 - - *411 + - *412 responses: '204': description: Response @@ -56933,8 +57119,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#unlock-an-organization-repository parameters: - *89 - - *411 - - &871 + - *412 + - &872 name: repo_name description: repo_name parameter in: path @@ -56962,7 +57148,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *89 - - *411 + - *412 - *17 - *19 responses: @@ -57072,7 +57258,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &412 + items: &413 title: Organization Role description: Organization roles type: object @@ -57279,7 +57465,7 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: default: value: @@ -57509,7 +57695,7 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: default: value: @@ -57606,7 +57792,7 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: default: value: @@ -57764,8 +57950,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *413 - required: *414 + properties: *414 + required: *415 nullable: true type: description: The ownership type of the team @@ -57797,7 +57983,7 @@ paths: - type - parent examples: - default: *415 + default: *416 headers: Link: *47 '404': @@ -57855,13 +58041,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &477 + items: &478 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *413 - required: *414 + properties: *414 + required: *415 name: nullable: true type: string @@ -58149,7 +58335,7 @@ paths: - nuget - container - *89 - - &872 + - &873 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -58185,12 +58371,12 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: - default: *417 + default: *418 '403': *29 '401': *25 - '400': &874 + '400': &875 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -58212,7 +58398,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-an-organization parameters: - - &418 + - &419 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 @@ -58230,7 +58416,7 @@ paths: - docker - nuget - container - - &419 + - &420 name: package_name description: The name of the package. in: path @@ -58243,7 +58429,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -58295,8 +58481,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *418 - *419 + - *420 - *89 responses: '204': @@ -58329,8 +58515,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *418 - *419 + - *420 - *89 - name: token description: package token @@ -58363,8 +58549,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: - - *418 - *419 + - *420 - *89 - *19 - *17 @@ -58385,7 +58571,7 @@ paths: application/json: schema: type: array - items: &420 + items: &421 title: Package Version description: A version of a software package type: object @@ -58510,10 +58696,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: - - *418 - *419 + - *420 - *89 - - &421 + - &422 name: package_version_id description: Unique identifier of the package version. in: path @@ -58525,7 +58711,7 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: default: value: @@ -58561,10 +58747,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *418 - *419 + - *420 - *89 - - *421 + - *422 responses: '204': description: Response @@ -58596,10 +58782,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *418 - *419 + - *420 - *89 - - *421 + - *422 responses: '204': description: Response @@ -58629,7 +58815,7 @@ paths: - *89 - *17 - *19 - - &422 + - &423 name: sort description: The property by which to sort the results. in: query @@ -58640,7 +58826,7 @@ paths: - created_at default: created_at - *112 - - &423 + - &424 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -58651,7 +58837,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &424 + - &425 name: repository description: The name of the repository to use to filter the results. in: query @@ -58659,7 +58845,7 @@ paths: schema: type: string example: Hello-World - - &425 + - &426 name: permission description: The permission to use to filter the results. in: query @@ -58667,7 +58853,7 @@ paths: schema: type: string example: issues_read - - &426 + - &427 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) @@ -58677,7 +58863,7 @@ paths: schema: type: string format: date-time - - &427 + - &428 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) @@ -58687,7 +58873,7 @@ paths: schema: type: string format: date-time - - &428 + - &429 name: token_id description: The ID of the token in: query @@ -58998,9 +59184,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: &429 + default: &430 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -59137,14 +59323,14 @@ paths: - *89 - *17 - *19 - - *422 - - *112 - *423 + - *112 - *424 - *425 - *426 - *427 - *428 + - *429 responses: '500': *40 '422': *15 @@ -59424,9 +59610,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *429 + default: *430 headers: Link: *47 x-github: @@ -59468,7 +59654,7 @@ paths: type: integer configurations: type: array - items: &430 + items: &431 title: Organization private registry description: Private registry configuration for an organization type: object @@ -59979,7 +60165,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &431 + org-private-registry-with-selected-visibility: &432 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -60069,15 +60255,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *89 - - *302 + - *303 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *430 + schema: *431 examples: - default: *431 + default: *432 '404': *6 x-github: githubCloudOnly: false @@ -60100,7 +60286,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -60288,7 +60474,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -60328,7 +60514,7 @@ paths: application/json: schema: type: array - items: &432 + items: &433 title: Projects v2 Project description: A projects v2 project type: object @@ -60398,7 +60584,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &967 + properties: &968 id: type: number description: The unique identifier of the status update. @@ -60446,7 +60632,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &968 + required: &969 - id - node_id - created_at @@ -60471,7 +60657,7 @@ paths: - deleted_at - deleted_by examples: - default: &433 + default: &434 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -60574,7 +60760,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-organization parameters: - - &434 + - &435 name: project_number description: The project's number. in: path @@ -60587,9 +60773,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *433 examples: - default: *433 + default: *434 headers: Link: *47 '304': *37 @@ -60612,7 +60798,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *89 - - *434 + - *435 requestBody: required: true description: Details of the draft item to create in the project. @@ -60646,7 +60832,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &441 title: Projects v2 Item description: An item belonging to a project type: object @@ -60659,8 +60845,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *231 - - &613 + - *232 + - &614 title: Pull Request Simple description: Pull Request Simple type: object @@ -60766,8 +60952,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *435 - required: *436 + properties: *436 + required: *437 nullable: true active_lock_reason: type: string @@ -60799,7 +60985,7 @@ paths: items: *4 requested_teams: type: array - items: *325 + items: *326 head: type: object properties: @@ -60849,7 +61035,7 @@ paths: _links: type: object properties: - comments: &437 + comments: &438 title: Link description: Hypermedia Link type: object @@ -60858,13 +61044,13 @@ paths: type: string required: - href - commits: *437 - statuses: *437 - html: *437 - issue: *437 - review_comments: *437 - review_comment: *437 - self: *437 + commits: *438 + statuses: *438 + html: *438 + issue: *438 + review_comments: *438 + review_comment: *438 + self: *438 required: - comments - commits @@ -60874,8 +61060,8 @@ paths: - review_comments - review_comment - self - author_association: *228 - auto_merge: &751 + author_association: *229 + auto_merge: &752 title: Auto merge description: The status of auto merging a pull request. type: object @@ -60975,7 +61161,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &439 + content_type: &440 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -61015,7 +61201,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &441 + draft_issue: &442 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -61089,7 +61275,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-organization parameters: - - *434 + - *435 - *89 - *17 - *110 @@ -61101,7 +61287,7 @@ paths: application/json: schema: type: array - items: &438 + items: &439 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -61251,7 +61437,7 @@ paths: - updated_at - project_url examples: - default: &895 + default: &896 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61381,7 +61567,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: - - *434 + - *435 - *89 requestBody: required: true @@ -61428,7 +61614,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &896 + items: &897 type: object properties: name: @@ -61465,7 +61651,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &897 + iteration_configuration: &898 type: object description: The configuration for iteration fields. properties: @@ -61515,7 +61701,7 @@ paths: value: name: Due date data_type: date - single_select_field: &898 + single_select_field: &899 summary: Create a single select field value: name: Priority @@ -61542,7 +61728,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &899 + iteration_field: &900 summary: Create an iteration field value: name: Sprint @@ -61566,9 +61752,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *438 + schema: *439 examples: - text_field: &900 + text_field: &901 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -61577,7 +61763,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: &901 + number_field: &902 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -61586,7 +61772,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: &902 + date_field: &903 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -61595,7 +61781,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: &903 + single_select_field: &904 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61629,7 +61815,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &904 + iteration_field: &905 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -61674,8 +61860,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - - *434 - - &905 + - *435 + - &906 name: field_id description: The unique identifier of the field. in: path @@ -61688,9 +61874,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *439 examples: - default: &906 + default: &907 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61746,7 +61932,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: - - *434 + - *435 - *89 - 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) @@ -61779,7 +61965,7 @@ paths: application/json: schema: type: array - items: &442 + items: &443 title: Projects v2 Item description: An item belonging to a project type: object @@ -61795,7 +61981,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *439 + content_type: *440 content: type: object additionalProperties: true @@ -61838,7 +62024,7 @@ paths: - updated_at - archived_at examples: - default: &443 + default: &444 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -62536,7 +62722,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-organization-owned-project parameters: - *89 - - *434 + - *435 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -62606,22 +62792,22 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *441 + value: *442 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *441 + value: *442 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *441 + value: *442 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *441 + value: *442 '304': *37 '403': *29 '401': *25 @@ -62641,9 +62827,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: - - *434 + - *435 - *89 - - &444 + - &445 name: item_id description: The unique identifier of the project item. in: path @@ -62669,9 +62855,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: *443 + default: *444 headers: Link: *47 '304': *37 @@ -62692,9 +62878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-organization parameters: - - *434 + - *435 - *89 - - *444 + - *445 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -62764,13 +62950,13 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - text_field: *443 - number_field: *443 - date_field: *443 - single_select_field: *443 - iteration_field: *443 + text_field: *444 + number_field: *444 + date_field: *444 + single_select_field: *444 + iteration_field: *444 '401': *25 '403': *29 '404': *6 @@ -62790,9 +62976,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-organization parameters: - - *434 + - *435 - *89 - - *444 + - *445 responses: '204': description: Response @@ -62816,7 +63002,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *89 - - *434 + - *435 requestBody: required: true content: @@ -62887,7 +63073,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &886 + schema: &887 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -62985,7 +63171,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &445 + value: &446 value: id: 1 number: 1 @@ -63031,10 +63217,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *445 + value: *446 roadmap_view: summary: Response for creating a roadmap view - value: *445 + value: *446 '304': *37 '403': *29 '401': *25 @@ -63062,9 +63248,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: - - *434 + - *435 - *89 - - &907 + - &908 name: view_number description: The number that identifies the project view. in: path @@ -63096,9 +63282,9 @@ paths: application/json: schema: type: array - items: *442 + items: *443 examples: - default: *443 + default: *444 headers: Link: *47 '304': *37 @@ -63262,7 +63448,7 @@ paths: required: true content: application/json: - schema: *446 + schema: *447 examples: default: value: @@ -63625,9 +63811,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *429 + default: *430 headers: Link: *47 x-github: @@ -63830,7 +64016,7 @@ paths: description: Response content: application/json: - schema: &498 + schema: &499 title: Full Repository description: Full Repository type: object @@ -64115,8 +64301,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *447 - required: *448 + properties: *448 + required: *449 nullable: true temp_clone_token: type: string @@ -64200,8 +64386,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true organization: title: Simple User @@ -64228,7 +64414,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &618 + properties: &619 url: type: string format: uri @@ -64244,12 +64430,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &619 + required: &620 - url - key - name - html_url - security_and_analysis: *449 + security_and_analysis: *450 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -64333,7 +64519,7 @@ paths: - network_count - subscribers_count examples: - default: &500 + default: &501 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -64859,9 +65045,9 @@ paths: application/json: schema: type: array - items: *450 + items: *451 examples: - default: *451 + default: *452 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -64886,7 +65072,7 @@ paths: - *89 - *17 - *19 - - &774 + - &775 name: targets description: | A comma-separated list of rule targets to filter by. @@ -64977,11 +65163,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *176 - conditions: *452 + conditions: *453 rules: type: array description: An array of rules within the ruleset. - items: &454 + items: &455 title: Repository Rule type: object description: A repository rule. @@ -65046,7 +65232,7 @@ paths: application/json: schema: *198 examples: - default: &453 + default: &454 value: id: 21 name: super cool ruleset @@ -65102,7 +65288,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &776 + - &777 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 @@ -65112,16 +65298,16 @@ paths: schema: type: string x-multi-segment: true - - *322 + - *323 - *107 - - &777 + - &778 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 - - &778 + - &779 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -65134,7 +65320,7 @@ paths: - bypass - all default: all - - &779 + - &780 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. @@ -65157,7 +65343,7 @@ paths: description: Response content: application/json: - schema: &780 + schema: &781 title: Rule Suites description: Response type: array @@ -65212,7 +65398,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &781 + default: &782 value: - id: 21 actor_id: 12 @@ -65256,7 +65442,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &782 + - &783 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -65272,7 +65458,7 @@ paths: description: Response content: application/json: - schema: &783 + schema: &784 title: Rule Suite description: Response type: object @@ -65371,7 +65557,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &784 + default: &785 value: id: 21 actor_id: 12 @@ -65446,7 +65632,7 @@ paths: application/json: schema: *198 examples: - default: *453 + default: *454 '404': *6 '500': *40 put: @@ -65495,11 +65681,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *176 - conditions: *452 + conditions: *453 rules: description: An array of rules within the ruleset. type: array - items: *454 + items: *455 examples: default: value: @@ -65536,7 +65722,7 @@ paths: application/json: schema: *198 examples: - default: *453 + default: *454 '404': *6 '422': *15 '500': *40 @@ -65596,7 +65782,7 @@ paths: type: array items: *202 examples: - default: *455 + default: *456 '404': *6 '500': *40 x-github: @@ -65633,7 +65819,7 @@ paths: description: Response content: application/json: - schema: *456 + schema: *457 examples: default: value: @@ -65696,7 +65882,6 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *89 - - *457 - *458 - *459 - *460 @@ -65704,10 +65889,11 @@ paths: - *462 - *463 - *464 + - *465 - *112 - *19 - *17 - - &786 + - &787 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 @@ -65717,7 +65903,7 @@ paths: required: false schema: type: string - - &787 + - &788 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 @@ -65727,13 +65913,13 @@ paths: required: false schema: type: string - - *465 - *466 - *467 - *468 - *469 - *470 - *471 + - *472 responses: '200': description: Response @@ -65741,9 +65927,9 @@ paths: application/json: schema: type: array - items: *472 + items: *473 examples: - default: *473 + default: *474 headers: Link: *47 '404': *6 @@ -65778,9 +65964,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: *475 + default: *476 '403': *29 '404': *6 patch: @@ -65933,7 +66119,7 @@ paths: application/json: schema: type: array - items: &808 + items: &809 description: A repository security advisory. type: object properties: @@ -66135,7 +66321,7 @@ paths: login: type: string description: The username of the user credited. - type: *476 + type: *477 credits_detailed: type: array nullable: true @@ -66145,7 +66331,7 @@ paths: type: object properties: user: *4 - type: *476 + type: *477 state: type: string description: The state of the user's acceptance of the @@ -66169,7 +66355,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *325 + items: *326 private_fork: readOnly: true nullable: true @@ -66205,7 +66391,7 @@ paths: - private_fork additionalProperties: false examples: - default: &809 + default: &810 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -66592,7 +66778,7 @@ paths: application/json: schema: type: array - items: *477 + items: *478 examples: default: value: @@ -66691,7 +66877,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *89 - - *478 + - *479 - *17 - *19 responses: @@ -66699,9 +66885,9 @@ paths: description: Success content: application/json: - schema: *479 + schema: *480 examples: - default: *480 + default: *481 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -66845,9 +67031,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66916,7 +67102,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *89 - - *286 + - *287 responses: '204': description: Response @@ -66939,7 +67125,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *89 - - *286 + - *287 responses: '204': description: Response @@ -66982,7 +67168,7 @@ paths: type: array items: *156 examples: - default: *481 + default: *482 headers: Link: *47 x-github: @@ -67211,15 +67397,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: - *89 - - *482 + - *483 responses: '200': description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: *484 + default: *485 headers: Link: *47 x-github: @@ -67257,7 +67443,7 @@ paths: description: Response content: application/json: - schema: &495 + schema: &496 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -67303,7 +67489,7 @@ paths: type: string nullable: true examples: - default: &496 + default: &497 value: groups: - group_id: '123' @@ -67358,9 +67544,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 headers: Link: *47 '403': *29 @@ -67446,7 +67632,7 @@ paths: description: Response content: application/json: - schema: &485 + schema: &486 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -67509,8 +67695,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *413 - required: *414 + properties: *414 + required: *415 nullable: true members_count: type: integer @@ -67773,7 +67959,7 @@ paths: - repos_count - organization examples: - default: &486 + default: &487 value: id: 1 node_id: MDQ6VGVhbTE= @@ -67850,9 +68036,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '404': *6 x-github: githubCloudOnly: false @@ -67936,16 +68122,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '201': description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '404': *6 '422': *15 '403': *29 @@ -67975,7 +68161,7 @@ paths: responses: '204': description: Response - '422': &489 + '422': &490 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -68004,10 +68190,10 @@ paths: description: Response content: application/json: - schema: *487 + schema: *488 examples: - default: *488 - '422': *489 + default: *489 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -68050,10 +68236,10 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: - default: *491 - '422': *489 + default: *492 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -68077,7 +68263,7 @@ paths: responses: '204': description: Response - '422': *489 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -68109,12 +68295,12 @@ paths: application/json: schema: type: array - items: *394 + items: *395 examples: - default: *395 + default: *396 headers: Link: *47 - '422': *489 + '422': *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68158,7 +68344,7 @@ paths: application/json: schema: type: array - items: &850 + items: &851 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 @@ -68277,7 +68463,7 @@ paths: - type - url examples: - default: &851 + default: &852 value: - login: octocat id: 1 @@ -68336,7 +68522,7 @@ paths: description: Response content: application/json: - schema: &492 + schema: &493 title: Team Membership description: Team Membership type: object @@ -68363,7 +68549,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &852 + response-if-user-is-a-team-maintainer: &853 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -68426,9 +68612,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *493 examples: - response-if-users-membership-with-team-is-now-pending: &853 + response-if-users-membership-with-team-is-now-pending: &854 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -68502,9 +68688,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *429 + default: *430 headers: Link: *47 x-github: @@ -68535,14 +68721,14 @@ paths: parameters: - *89 - *224 - - *493 - *494 + - *495 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &854 + schema: &855 title: Team Repository description: A team's access to a repository. type: object @@ -68565,8 +68751,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true forks: type: integer @@ -69106,8 +69292,8 @@ paths: parameters: - *89 - *224 - - *493 - *494 + - *495 requestBody: required: false content: @@ -69154,8 +69340,8 @@ paths: parameters: - *89 - *224 - - *493 - *494 + - *495 responses: '204': description: Response @@ -69188,10 +69374,10 @@ paths: description: Response content: application/json: - schema: *495 + schema: *496 examples: - default: *496 - '422': *489 + default: *497 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -69257,7 +69443,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *496 examples: default: value: @@ -69269,7 +69455,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *489 + '422': *490 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -69301,9 +69487,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - response-if-child-teams-exist: &855 + response-if-child-teams-exist: &856 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -69456,7 +69642,7 @@ paths: resources: type: object properties: - core: &497 + core: &498 title: Rate Limit type: object properties: @@ -69473,17 +69659,17 @@ paths: - remaining - reset - used - graphql: *497 - search: *497 - code_search: *497 - source_import: *497 - integration_manifest: *497 - actions_runner_registration: *497 - scim: *497 - dependency_snapshots: *497 - dependency_sbom: *497 - code_scanning_autofix: *497 - copilot_usage_records: *497 + graphql: *498 + search: *498 + code_search: *498 + source_import: *498 + integration_manifest: *498 + actions_runner_registration: *498 + scim: *498 + dependency_snapshots: *498 + dependency_sbom: *498 + code_scanning_autofix: *498 + copilot_usage_records: *498 required: - core - search @@ -69580,14 +69766,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *498 + schema: *499 examples: default-response: summary: Default response @@ -70095,7 +70281,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *499 + '301': *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70113,8 +70299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#update-a-repository parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -70434,10 +70620,10 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *500 - '307': &501 + default: *501 + '307': &502 description: Temporary Redirect content: application/json: @@ -70466,8 +70652,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -70489,7 +70675,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': *501 + '307': *502 '404': *6 '409': *121 x-github: @@ -70513,11 +70699,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *493 - *494 + - *495 - *17 - *19 - - &517 + - &518 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -70540,7 +70726,7 @@ paths: type: integer artifacts: type: array - items: &502 + items: &503 title: Artifact description: An artifact type: object @@ -70618,7 +70804,7 @@ paths: - expires_at - updated_at examples: - default: &518 + default: &519 value: total_count: 2 artifacts: @@ -70679,9 +70865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#get-an-artifact parameters: - - *493 - *494 - - &503 + - *495 + - &504 name: artifact_id description: The unique identifier of the artifact. in: path @@ -70693,7 +70879,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: default: value: @@ -70731,9 +70917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#delete-an-artifact parameters: - - *493 - *494 - - *503 + - *495 + - *504 responses: '204': description: Response @@ -70757,9 +70943,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#download-an-artifact parameters: - - *493 - *494 - - *503 + - *495 + - *504 - name: archive_format in: path required: true @@ -70769,11 +70955,11 @@ paths: '302': description: Response headers: - Location: &637 + Location: &638 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': &685 + '410': &686 description: Gone content: application/json: @@ -70798,14 +70984,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &504 + schema: &505 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -70838,13 +71024,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *504 + schema: *505 examples: selected_actions: *44 responses: @@ -70873,14 +71059,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &505 + schema: &506 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -70913,13 +71099,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *505 + schema: *506 examples: selected_actions: *46 responses: @@ -70950,14 +71136,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: default: value: @@ -70983,11 +71169,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: - - *493 - *494 + - *495 - *17 - *19 - - &507 + - &508 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 @@ -71021,7 +71207,7 @@ paths: description: Response content: application/json: - schema: &508 + schema: &509 title: Repository actions caches description: Repository actions caches type: object @@ -71063,7 +71249,7 @@ paths: - total_count - actions_caches examples: - default: &509 + default: &510 value: total_count: 1 actions_caches: @@ -71095,23 +71281,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: - - *493 - *494 + - *495 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *507 + - *508 responses: '200': description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: *509 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71131,8 +71317,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: - - *493 - *494 + - *495 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -71161,8 +71347,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: - - *493 - *494 + - *495 - *17 - *111 responses: @@ -71244,8 +71430,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: - - *493 - *494 + - *495 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -71397,9 +71583,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: - - *493 - *494 - - &510 + - *495 + - &511 name: job_id description: The unique identifier of the job. in: path @@ -71411,7 +71597,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &522 title: Job description: Information of a job execution in a workflow run type: object @@ -71718,9 +71904,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: - - *493 - *494 - - *510 + - *495 + - *511 responses: '302': description: Response @@ -71748,9 +71934,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: - - *493 - *494 - - *510 + - *495 + - *511 requestBody: required: false content: @@ -71776,7 +71962,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -71800,8 +71986,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: - - *493 - *494 + - *495 responses: '200': description: Status response @@ -71860,8 +72046,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -71900,7 +72086,7 @@ paths: description: Empty response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -71929,8 +72115,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-organization-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -71948,7 +72134,7 @@ paths: type: integer secrets: type: array - items: &523 + items: &524 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -71968,7 +72154,7 @@ paths: - created_at - updated_at examples: - default: &524 + default: &525 value: total_count: 2 secrets: @@ -72001,9 +72187,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-organization-variables parameters: - - *493 - *494 - - *311 + - *495 + - *312 - *19 responses: '200': @@ -72020,7 +72206,7 @@ paths: type: integer variables: type: array - items: &525 + items: &526 title: Actions Variable type: object properties: @@ -72050,7 +72236,7 @@ paths: - created_at - updated_at examples: - default: &526 + default: &527 value: total_count: 2 variables: @@ -72083,8 +72269,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -72093,11 +72279,11 @@ paths: schema: type: object properties: - enabled: &511 + enabled: &512 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *62 - selected_actions_url: *279 + selected_actions_url: *280 sha_pinning_required: *63 required: - enabled @@ -72128,8 +72314,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: - - *493 - *494 + - *495 responses: '204': description: Response @@ -72140,7 +72326,7 @@ paths: schema: type: object properties: - enabled: *511 + enabled: *512 allowed_actions: *62 sha_pinning_required: *63 required: @@ -72173,14 +72359,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &512 + schema: &513 type: object properties: access_level: @@ -72198,7 +72384,7 @@ paths: required: - access_level examples: - default: &513 + default: &514 value: access_level: organization x-github: @@ -72223,15 +72409,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *512 + schema: *513 examples: - default: *513 + default: *514 responses: '204': description: Response @@ -72255,14 +72441,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *281 + schema: *282 examples: default: value: @@ -72286,8 +72472,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: - - *493 - *494 + - *495 responses: '204': description: Empty response for successful settings update @@ -72297,7 +72483,7 @@ paths: required: true content: application/json: - schema: *282 + schema: *283 examples: default: summary: Set retention days @@ -72321,8 +72507,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -72330,7 +72516,7 @@ paths: application/json: schema: *64 examples: - default: *283 + default: *284 '404': *6 x-github: enabledForGitHubApps: true @@ -72349,8 +72535,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: - - *493 - *494 + - *495 responses: '204': description: Response @@ -72384,14 +72570,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *284 + schema: *285 examples: default: *65 '403': *29 @@ -72413,13 +72599,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *285 + schema: *286 examples: default: *65 responses: @@ -72445,8 +72631,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -72477,8 +72663,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: - - *493 - *494 + - *495 responses: '204': description: Response @@ -72510,14 +72696,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: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *288 + schema: *289 examples: default: *71 x-github: @@ -72540,8 +72726,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: - - *493 - *494 + - *495 responses: '204': description: Success response @@ -72552,7 +72738,7 @@ paths: required: true content: application/json: - schema: *289 + schema: *290 examples: default: *71 x-github: @@ -72581,8 +72767,8 @@ paths: in: query schema: type: string - - *493 - *494 + - *495 - *17 - *19 responses: @@ -72626,8 +72812,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -72635,9 +72821,9 @@ paths: application/json: schema: type: array - items: *293 + items: *294 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72659,8 +72845,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -72703,7 +72889,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *295 + '201': *296 '404': *6 '422': *7 '409': *121 @@ -72734,8 +72920,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: - - *493 - *494 + - *495 responses: '201': description: Response @@ -72743,7 +72929,7 @@ paths: application/json: schema: *81 examples: - default: *296 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72771,8 +72957,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: - - *493 - *494 + - *495 responses: '201': description: Response @@ -72780,7 +72966,7 @@ paths: application/json: schema: *81 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72802,8 +72988,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: - - *493 - *494 + - *495 - *77 responses: '200': @@ -72812,7 +72998,7 @@ paths: application/json: schema: *78 examples: - default: *298 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72833,8 +73019,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: - - *493 - *494 + - *495 - *77 responses: '204': @@ -72861,8 +73047,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: - - *493 - *494 + - *495 - *77 responses: '200': *83 @@ -72887,8 +73073,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: - - *493 - *494 + - *495 - *77 requestBody: required: true @@ -72937,8 +73123,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: - - *493 - *494 + - *495 - *77 requestBody: required: true @@ -72988,11 +73174,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: - - *493 - *494 + - *495 - *77 responses: - '200': *299 + '200': *300 '404': *6 x-github: githubCloudOnly: false @@ -73019,10 +73205,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: - - *493 - *494 + - *495 - *77 - - *300 + - *301 responses: '200': *83 '404': *6 @@ -73050,9 +73236,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: - - *493 - *494 - - &529 + - *495 + - &530 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. @@ -73060,7 +73246,7 @@ paths: required: false schema: type: string - - &530 + - &531 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -73068,7 +73254,7 @@ paths: required: false schema: type: string - - &531 + - &532 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -73077,7 +73263,7 @@ paths: required: false schema: type: string - - &532 + - &533 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 @@ -73104,7 +73290,7 @@ paths: - pending - *17 - *19 - - &533 + - &534 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)." @@ -73113,7 +73299,7 @@ paths: schema: type: string format: date-time - - &514 + - &515 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -73122,13 +73308,13 @@ paths: schema: type: boolean default: false - - &534 + - &535 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &535 + - &536 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -73151,7 +73337,7 @@ paths: type: integer workflow_runs: type: array - items: &515 + items: &516 title: Workflow Run description: An invocation of a workflow type: object @@ -73246,7 +73432,7 @@ paths: that triggered the run. type: array nullable: true - items: *236 + items: *237 created_at: type: string format: date-time @@ -73299,7 +73485,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &559 + properties: &560 id: type: string description: SHA for the commit @@ -73350,7 +73536,7 @@ paths: - name - email nullable: true - required: &560 + required: &561 - id - tree_id - message @@ -73358,8 +73544,8 @@ paths: - author - committer nullable: true - repository: *292 - head_repository: *292 + repository: *293 + head_repository: *293 head_repository_id: type: integer example: 5 @@ -73397,7 +73583,7 @@ paths: - workflow_url - pull_requests examples: - default: &536 + default: &537 value: total_count: 1 workflow_runs: @@ -73633,24 +73819,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *493 - *494 - - &516 + - *495 + - &517 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *514 + - *515 responses: '200': description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: &519 + default: &520 value: id: 30433642 name: Build @@ -73891,9 +74077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '204': description: Response @@ -73916,9 +74102,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: - - *493 - *494 - - *516 + - *495 + - *517 responses: '200': description: Response @@ -74037,15 +74223,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: - - *493 - *494 - - *516 + - *495 + - *517 responses: '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -74072,12 +74258,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *493 - *494 - - *516 + - *495 + - *517 - *17 - *19 - - *517 + - *518 - *112 responses: '200': @@ -74094,9 +74280,9 @@ paths: type: integer artifacts: type: array - items: *502 + items: *503 examples: - default: *518 + default: *519 headers: Link: *47 x-github: @@ -74120,25 +74306,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *493 - *494 - - *516 - - &520 + - *495 + - *517 + - &521 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *514 + - *515 responses: '200': description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74161,10 +74347,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: - - *493 - *494 - - *516 - - *520 + - *495 + - *517 + - *521 - *17 - *19 responses: @@ -74182,9 +74368,9 @@ paths: type: integer jobs: type: array - items: *521 + items: *522 examples: - default: &522 + default: &523 value: total_count: 1 jobs: @@ -74297,10 +74483,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *493 - *494 - - *516 - - *520 + - *495 + - *517 + - *521 responses: '302': description: Response @@ -74328,15 +74514,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '202': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -74376,9 +74562,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: - - *493 - *494 - - *516 + - *495 + - *517 - *17 - *110 - *111 @@ -74549,9 +74735,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: - - *493 - *494 - - *516 + - *495 + - *517 requestBody: required: true content: @@ -74618,15 +74804,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '202': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -74653,9 +74839,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: - - *493 - *494 - - *516 + - *495 + - *517 - 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 @@ -74685,9 +74871,9 @@ paths: type: integer jobs: type: array - items: *521 + items: *522 examples: - default: *522 + default: *523 headers: Link: *47 x-github: @@ -74712,9 +74898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '302': description: Response @@ -74741,9 +74927,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '204': description: Response @@ -74770,9 +74956,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: - - *493 - *494 - - *516 + - *495 + - *517 responses: '200': description: Response @@ -74832,7 +75018,7 @@ paths: items: type: object properties: - type: &652 + type: &653 type: string description: The type of reviewer. enum: @@ -74842,7 +75028,7 @@ paths: reviewer: anyOf: - *4 - - *325 + - *326 required: - environment - wait_timer @@ -74917,9 +75103,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: - - *493 - *494 - - *516 + - *495 + - *517 requestBody: required: true content: @@ -74966,12 +75152,12 @@ paths: application/json: schema: type: array - items: &639 + items: &640 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &925 + properties: &926 url: type: string format: uri @@ -75054,9 +75240,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - required: &926 + properties: *227 + required: *228 + required: &927 - id - node_id - sha @@ -75072,7 +75258,7 @@ paths: - created_at - updated_at examples: - default: &640 + default: &641 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -75128,9 +75314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *493 - *494 - - *516 + - *495 + - *517 requestBody: required: false content: @@ -75151,7 +75337,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75174,9 +75360,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: - - *493 - *494 - - *516 + - *495 + - *517 requestBody: required: false content: @@ -75197,7 +75383,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75230,9 +75416,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *493 - *494 - - *516 + - *495 + - *517 responses: '200': description: Response @@ -75369,8 +75555,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -75388,9 +75574,9 @@ paths: type: integer secrets: type: array - items: *523 + items: *524 examples: - default: *524 + default: *525 headers: Link: *47 x-github: @@ -75415,16 +75601,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-public-key parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75446,17 +75632,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: &537 + default: &538 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -75482,9 +75668,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 requestBody: required: true content: @@ -75515,7 +75701,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75541,9 +75727,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '204': description: Response @@ -75568,9 +75754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-variables parameters: - - *493 - *494 - - *311 + - *495 + - *312 - *19 responses: '200': @@ -75587,9 +75773,9 @@ paths: type: integer variables: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -75612,8 +75798,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-a-repository-variable parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -75640,7 +75826,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75665,17 +75851,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: &538 + default: &539 value: name: USERNAME value: octocat @@ -75701,9 +75887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 requestBody: required: true content: @@ -75745,9 +75931,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 responses: '204': description: Response @@ -75772,8 +75958,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#list-repository-workflows parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -75791,7 +75977,7 @@ paths: type: integer workflows: type: array - items: &527 + items: &528 title: Workflow description: A GitHub Actions workflow type: object @@ -75898,9 +76084,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-a-workflow parameters: - - *493 - *494 - - &528 + - *495 + - &529 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -75915,7 +76101,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: default: value: @@ -75948,9 +76134,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#disable-a-workflow parameters: - - *493 - *494 - - *528 + - *495 + - *529 responses: '204': description: Response @@ -75975,9 +76161,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *493 - *494 - - *528 + - *495 + - *529 responses: '200': description: Response including the workflow run ID and URLs. @@ -76057,9 +76243,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#enable-a-workflow parameters: - - *493 - *494 - - *528 + - *495 + - *529 responses: '204': description: Response @@ -76086,19 +76272,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: - - *493 - *494 - - *528 + - *495 - *529 - *530 - *531 - *532 + - *533 - *17 - *19 - - *533 - - *514 - *534 + - *515 - *535 + - *536 responses: '200': description: Response @@ -76114,9 +76300,9 @@ paths: type: integer workflow_runs: type: array - items: *515 + items: *516 examples: - default: *536 + default: *537 headers: Link: *47 x-github: @@ -76149,9 +76335,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-workflow-usage parameters: - - *493 - *494 - - *528 + - *495 + - *529 responses: '200': description: Response @@ -76212,8 +76398,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-activities parameters: - - *493 - *494 + - *495 - *112 - *17 - *110 @@ -76382,8 +76568,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-organization-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -76401,9 +76587,9 @@ paths: type: integer secrets: type: array - items: *523 + items: *524 examples: - default: *524 + default: *525 headers: Link: *47 x-github: @@ -76427,9 +76613,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-organization-variables parameters: - - *493 - *494 - - *311 + - *495 + - *312 - *19 responses: '200': @@ -76446,9 +76632,9 @@ paths: type: integer variables: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -76473,8 +76659,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -76492,9 +76678,9 @@ paths: type: integer secrets: type: array - items: *523 + items: *524 examples: - default: *524 + default: *525 headers: Link: *47 x-github: @@ -76519,16 +76705,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-public-key parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76550,17 +76736,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: *537 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76582,9 +76768,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 requestBody: required: true content: @@ -76615,7 +76801,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -76641,9 +76827,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '204': description: Response @@ -76668,9 +76854,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-variables parameters: - - *493 - *494 - - *311 + - *495 + - *312 - *19 responses: '200': @@ -76687,9 +76873,9 @@ paths: type: integer variables: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -76712,8 +76898,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#create-a-repository-variable parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -76740,7 +76926,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -76765,17 +76951,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *538 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76796,9 +76982,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 requestBody: required: true content: @@ -76840,9 +77026,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-a-repository-variable parameters: - - *493 - *494 - - *305 + - *495 + - *306 responses: '204': description: Response @@ -76863,8 +77049,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#list-assignees parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -76901,8 +77087,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: - - *493 - *494 + - *495 - name: assignee in: path required: true @@ -76938,8 +77124,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#create-an-attestation parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -77049,8 +77235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#list-attestations parameters: - - *493 - *494 + - *495 - *17 - *110 - *111 @@ -77091,7 +77277,7 @@ paths: initiator: type: string examples: - default: *539 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77111,8 +77297,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -77120,7 +77306,7 @@ paths: application/json: schema: type: array - items: &540 + items: &541 title: Autolink reference description: An autolink reference. type: object @@ -77174,8 +77360,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -77214,9 +77400,9 @@ paths: description: response content: application/json: - schema: *540 + schema: *541 examples: - default: &541 + default: &542 value: id: 1 key_prefix: TICKET- @@ -77247,9 +77433,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: - - *493 - *494 - - &542 + - *495 + - &543 name: autolink_id description: The unique identifier of the autolink. in: path @@ -77261,9 +77447,9 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: *541 + default: *542 '404': *6 x-github: githubCloudOnly: false @@ -77283,9 +77469,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: - - *493 - *494 - - *542 + - *495 + - *543 responses: '204': description: Response @@ -77309,8 +77495,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: - - *493 - *494 + - *495 responses: '200': description: Response if Dependabot is enabled @@ -77358,8 +77544,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-dependabot-security-updates parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -77380,8 +77566,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-dependabot-security-updates parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -77401,8 +77587,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#list-branches parameters: - - *493 - *494 + - *495 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -77440,7 +77626,7 @@ paths: - url protected: type: boolean - protection: &544 + protection: &545 title: Branch Protection description: Branch Protection type: object @@ -77482,7 +77668,7 @@ paths: required: - contexts - checks - enforce_admins: &547 + enforce_admins: &548 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -77497,7 +77683,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &549 + required_pull_request_reviews: &550 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -77518,7 +77704,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *325 + items: *326 apps: description: The list of apps with review dismissal access. @@ -77547,7 +77733,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *325 + items: *326 apps: description: The list of apps allowed to bypass pull request requirements. @@ -77573,7 +77759,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &546 + restrictions: &547 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -77636,7 +77822,7 @@ paths: type: string teams: type: array - items: *325 + items: *326 apps: type: array items: @@ -77850,9 +78036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#get-a-branch parameters: - - *493 - *494 - - &545 + - *495 + - &546 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). @@ -77866,14 +78052,14 @@ paths: description: Response content: application/json: - schema: &555 + schema: &556 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &609 + commit: &610 title: Commit description: Commit type: object @@ -77907,7 +78093,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &543 + properties: &544 name: type: string example: '"Chris Wanstrath"' @@ -77923,7 +78109,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *543 + properties: *544 nullable: true message: type: string @@ -77944,7 +78130,7 @@ paths: required: - sha - url - verification: &670 + verification: &671 title: Verification type: object properties: @@ -77978,12 +78164,12 @@ paths: nullable: true oneOf: - *4 - - *303 + - *304 committer: nullable: true oneOf: - *4 - - *303 + - *304 parents: type: array items: @@ -78014,7 +78200,7 @@ paths: type: integer files: type: array - items: &622 + items: &623 title: Diff Entry description: Diff Entry type: object @@ -78098,7 +78284,7 @@ paths: - self protected: type: boolean - protection: *544 + protection: *545 protection_url: type: string format: uri @@ -78205,7 +78391,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *499 + '301': *500 '404': *6 x-github: githubCloudOnly: false @@ -78227,15 +78413,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *544 + schema: *545 examples: default: value: @@ -78429,9 +78615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -78686,7 +78872,7 @@ paths: url: type: string format: uri - required_status_checks: &552 + required_status_checks: &553 title: Status Check Policy description: Status Check Policy type: object @@ -78762,7 +78948,7 @@ paths: items: *4 teams: type: array - items: *325 + items: *326 apps: type: array items: *5 @@ -78780,7 +78966,7 @@ paths: items: *4 teams: type: array - items: *325 + items: *326 apps: type: array items: *5 @@ -78838,7 +79024,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *546 + restrictions: *547 required_conversation_resolution: type: object properties: @@ -78950,9 +79136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -78977,17 +79163,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: &548 + default: &549 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -79009,17 +79195,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79038,9 +79224,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -79065,17 +79251,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: &550 + default: &551 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -79171,9 +79357,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -79271,9 +79457,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: *550 + default: *551 '422': *15 x-github: githubCloudOnly: false @@ -79294,9 +79480,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -79323,17 +79509,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: &551 + default: &552 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -79356,17 +79542,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *551 + default: *552 '404': *6 x-github: githubCloudOnly: false @@ -79386,9 +79572,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -79413,17 +79599,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-status-checks-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *552 + schema: *553 examples: - default: &553 + default: &554 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -79449,9 +79635,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-status-check-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -79503,9 +79689,9 @@ paths: description: Response content: application/json: - schema: *552 + schema: *553 examples: - default: *553 + default: *554 '404': *6 '422': *15 x-github: @@ -79527,9 +79713,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-protection parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -79553,9 +79739,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response @@ -79589,9 +79775,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-status-check-contexts parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -79658,9 +79844,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-status-check-contexts parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -79724,9 +79910,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: content: application/json: @@ -79792,15 +79978,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response content: application/json: - schema: *546 + schema: *547 examples: default: value: @@ -79891,9 +80077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 responses: '204': description: Response @@ -79916,9 +80102,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: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response @@ -79928,7 +80114,7 @@ paths: type: array items: *5 examples: - default: &554 + default: &555 value: - id: 1 slug: octoapp @@ -79985,9 +80171,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80021,7 +80207,7 @@ paths: type: array items: *5 examples: - default: *554 + default: *555 '422': *15 x-github: githubCloudOnly: false @@ -80042,9 +80228,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80078,7 +80264,7 @@ paths: type: array items: *5 examples: - default: *554 + default: *555 '422': *15 x-github: githubCloudOnly: false @@ -80099,9 +80285,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80135,7 +80321,7 @@ paths: type: array items: *5 examples: - default: *554 + default: *555 '422': *15 x-github: githubCloudOnly: false @@ -80157,9 +80343,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: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response @@ -80167,9 +80353,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 '404': *6 x-github: githubCloudOnly: false @@ -80189,9 +80375,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -80227,9 +80413,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -80250,9 +80436,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: false content: @@ -80288,9 +80474,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -80311,9 +80497,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: content: application/json: @@ -80348,9 +80534,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -80372,9 +80558,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: - - *493 - *494 - - *545 + - *495 + - *546 responses: '200': description: Response @@ -80408,9 +80594,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80468,9 +80654,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80528,9 +80714,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80590,9 +80776,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#rename-a-branch parameters: - - *493 - *494 - - *545 + - *495 + - *546 requestBody: required: true content: @@ -80614,7 +80800,7 @@ paths: description: Response content: application/json: - schema: *555 + schema: *556 examples: default: value: @@ -80728,8 +80914,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *493 - *494 + - *495 - *105 - *106 - *107 @@ -80743,9 +80929,9 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: - default: *321 + default: *322 '404': *6 '500': *40 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -80765,8 +80951,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *493 - *494 + - *495 - name: bypass_request_number in: path required: true @@ -80780,7 +80966,7 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: default: value: @@ -80839,8 +81025,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *493 - *494 + - *495 - *105 - *106 - *107 @@ -80854,9 +81040,9 @@ paths: application/json: schema: type: array - items: *323 + items: *324 examples: - default: *324 + default: *325 '404': *6 '403': *29 '500': *40 @@ -80880,8 +81066,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *493 - *494 + - *495 - name: bypass_request_number in: path required: true @@ -80893,7 +81079,7 @@ paths: description: A single bypass request. content: application/json: - schema: *323 + schema: *324 examples: default: value: @@ -80951,8 +81137,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *493 - *494 + - *495 - name: bypass_request_number in: path required: true @@ -81023,8 +81209,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *493 - *494 + - *495 - name: bypass_response_id in: path required: true @@ -81057,8 +81243,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#create-a-check-run parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -81337,7 +81523,7 @@ paths: description: Response content: application/json: - schema: &556 + schema: &557 title: CheckRun description: A check performed on the code of a given code change type: object @@ -81448,16 +81634,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *236 - deployment: &918 + items: *237 + deployment: &919 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -81524,8 +81710,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 required: - id - node_id @@ -81737,9 +81923,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#get-a-check-run parameters: - - *493 - *494 - - &557 + - *495 + - &558 name: check_run_id description: The unique identifier of the check run. in: path @@ -81751,9 +81937,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *557 examples: - default: &558 + default: &559 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -81853,9 +82039,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#update-a-check-run parameters: - - *493 - *494 - - *557 + - *495 + - *558 requestBody: required: true content: @@ -82095,9 +82281,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *557 examples: - default: *558 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82117,9 +82303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-run-annotations parameters: - - *493 - *494 - - *557 + - *495 + - *558 - *17 - *19 responses: @@ -82214,15 +82400,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#rerequest-a-check-run parameters: - - *493 - *494 - - *557 + - *495 + - *558 responses: '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -82260,8 +82446,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#create-a-check-suite parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -82283,7 +82469,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &561 + schema: &562 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -82347,7 +82533,7 @@ paths: nullable: true pull_requests: type: array - items: *236 + items: *237 nullable: true app: title: GitHub app @@ -82358,9 +82544,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - repository: *292 + properties: *227 + required: *228 + repository: *293 created_at: type: string format: date-time @@ -82369,12 +82555,12 @@ paths: type: string format: date-time nullable: true - head_commit: &951 + head_commit: &952 title: Simple Commit description: A commit. type: object - properties: *559 - required: *560 + properties: *560 + required: *561 latest_check_runs_count: type: integer check_runs_url: @@ -82402,7 +82588,7 @@ paths: - check_runs_url - pull_requests examples: - default: &562 + default: &563 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -82693,9 +82879,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82714,8 +82900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -82776,7 +82962,7 @@ paths: required: - app_id - setting - repository: *292 + repository: *293 examples: default: value: @@ -83024,9 +83210,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#get-a-check-suite parameters: - - *493 - *494 - - &563 + - *495 + - &564 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -83038,9 +83224,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83063,17 +83249,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: - - *493 - *494 - - *563 - - &615 + - *495 + - *564 + - &616 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &616 + - &617 name: status description: Returns check runs with the specified `status`. in: query @@ -83112,9 +83298,9 @@ paths: type: integer check_runs: type: array - items: *556 + items: *557 examples: - default: &617 + default: &618 value: total_count: 1 check_runs: @@ -83216,15 +83402,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#rerequest-a-check-suite parameters: - - *493 - *494 - - *563 + - *495 + - *564 responses: '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -83251,21 +83437,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: - - *493 - *494 - - *329 + - *495 - *330 + - *331 - *19 - *17 - - &579 + - &580 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: *564 - - &580 + schema: *565 + - &581 name: pr description: The number of the pull request for the results you want to list. in: query @@ -83290,13 +83476,13 @@ paths: be returned. in: query required: false - schema: *331 + schema: *332 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *565 + schema: *566 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -83320,7 +83506,7 @@ paths: updated_at: *142 url: *139 html_url: *140 - instances_url: *566 + instances_url: *567 state: *115 fixed_at: *144 dismissed_by: @@ -83331,11 +83517,11 @@ paths: required: *21 nullable: true dismissed_at: *143 - dismissed_reason: *567 - dismissed_comment: *568 - rule: *569 - tool: *570 - most_recent_instance: *571 + dismissed_reason: *568 + dismissed_comment: *569 + rule: *570 + tool: *571 + most_recent_instance: *572 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -83461,7 +83647,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &572 + '403': &573 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -83488,9 +83674,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: - - *493 - *494 - - &573 + - *495 + - &574 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -83504,7 +83690,7 @@ paths: description: Response content: application/json: - schema: &574 + schema: &575 type: object properties: number: *134 @@ -83512,7 +83698,7 @@ paths: updated_at: *142 url: *139 html_url: *140 - instances_url: *566 + instances_url: *567 state: *115 fixed_at: *144 dismissed_by: @@ -83523,8 +83709,8 @@ paths: required: *21 nullable: true dismissed_at: *143 - dismissed_reason: *567 - dismissed_comment: *568 + dismissed_reason: *568 + dismissed_comment: *569 rule: type: object properties: @@ -83578,8 +83764,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *570 - most_recent_instance: *571 + tool: *571 + most_recent_instance: *572 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -83678,7 +83864,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -83698,9 +83884,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: - - *493 - *494 - - *573 + - *495 + - *574 requestBody: required: true content: @@ -83715,8 +83901,8 @@ paths: enum: - open - dismissed - dismissed_reason: *567 - dismissed_comment: *568 + dismissed_reason: *568 + dismissed_comment: *569 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -83744,7 +83930,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: default: value: @@ -83820,7 +84006,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &578 + '403': &579 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -83847,15 +84033,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: - - *493 - *494 - - *573 + - *495 + - *574 responses: '200': description: Response content: application/json: - schema: &575 + schema: &576 type: object properties: status: @@ -83881,13 +84067,13 @@ paths: - description - started_at examples: - default: &576 + default: &577 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &577 + '400': &578 description: Bad Request content: application/json: @@ -83898,7 +84084,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': *572 + '403': *573 '404': *6 '500': *40 x-github: @@ -83923,29 +84109,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: - - *493 - *494 - - *573 + - *495 + - *574 responses: '200': description: OK content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 '202': description: Accepted content: application/json: - schema: *575 + schema: *576 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *577 + '400': *578 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -83977,9 +84163,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: - - *493 - *494 - - *573 + - *495 + - *574 requestBody: required: false content: @@ -84024,8 +84210,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *577 - '403': *578 + '400': *578 + '403': *579 '404': *6 '422': description: Unprocessable Entity @@ -84049,13 +84235,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: - - *493 - *494 - - *573 + - *495 + - *574 - *19 - *17 - - *579 - *580 + - *581 responses: '200': description: Response @@ -84066,10 +84252,10 @@ paths: items: type: object properties: - ref: *564 - analysis_key: *581 - environment: *582 - category: *583 + ref: *565 + analysis_key: *582 + environment: *583 + category: *584 state: type: string description: State of a code scanning alert instance. @@ -84084,7 +84270,7 @@ paths: properties: text: type: string - location: *584 + location: *585 html_url: type: string classifications: @@ -84092,7 +84278,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: *585 + items: *586 examples: default: value: @@ -84129,7 +84315,7 @@ paths: end_column: 50 classifications: - source - '403': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -84163,25 +84349,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: - - *493 - *494 - - *329 + - *495 - *330 + - *331 - *19 - *17 - - *580 + - *581 - 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: *564 + schema: *565 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &586 + schema: &587 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -84202,23 +84388,23 @@ paths: application/json: schema: type: array - items: &587 + items: &588 type: object properties: - ref: *564 - commit_sha: &595 + ref: *565 + commit_sha: &596 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: *581 + analysis_key: *582 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *583 + category: *584 error: type: string example: error reading field xyz @@ -84242,8 +84428,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *586 - tool: *570 + sarif_id: *587 + tool: *571 deletable: type: boolean warning: @@ -84304,7 +84490,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -84340,8 +84526,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: - - *493 - *494 + - *495 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -84354,7 +84540,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: response: summary: application/json response @@ -84408,7 +84594,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *572 + '403': *573 '404': *6 '422': description: Response if analysis could not be processed @@ -84495,8 +84681,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: - - *493 - *494 + - *495 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -84549,7 +84735,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': *578 + '403': *579 '404': *6 '503': *203 x-github: @@ -84571,8 +84757,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -84580,7 +84766,7 @@ paths: application/json: schema: type: array - items: &588 + items: &589 title: CodeQL Database description: A CodeQL database. type: object @@ -84691,7 +84877,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': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -84720,8 +84906,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: - - *493 - *494 + - *495 - name: language in: path description: The language of the CodeQL database. @@ -84733,7 +84919,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: default: value: @@ -84765,9 +84951,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': &626 + '302': &627 description: Found - '403': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -84789,8 +84975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *493 - *494 + - *495 - name: language in: path description: The language of the CodeQL database. @@ -84800,7 +84986,7 @@ paths: responses: '204': description: Response - '403': *578 + '403': *579 '404': *6 '503': *203 x-github: @@ -84828,8 +85014,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -84838,7 +85024,7 @@ paths: type: object additionalProperties: false properties: - language: &589 + language: &590 type: string description: The language targeted by the CodeQL query enum: @@ -84918,7 +85104,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &593 + schema: &594 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -84928,7 +85114,7 @@ paths: description: The ID of the variant analysis. controller_repo: *122 actor: *4 - query_language: *589 + query_language: *590 query_pack_url: type: string description: The download url for the query pack. @@ -84975,7 +85161,7 @@ paths: items: type: object properties: - repository: &590 + repository: &591 title: Repository Identifier description: Repository Identifier type: object @@ -85011,7 +85197,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &594 + analysis_status: &595 type: string description: The new status of the CodeQL variant analysis repository task. @@ -85043,7 +85229,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &591 + access_mismatch_repos: &592 type: object properties: repository_count: @@ -85057,7 +85243,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: *590 + items: *591 required: - repository_count - repositories @@ -85079,8 +85265,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *591 - over_limit_repos: *591 + no_codeql_db_repos: *592 + over_limit_repos: *592 required: - access_mismatch_repos - not_found_repos @@ -85096,7 +85282,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &592 + value: &593 summary: Default response value: id: 1 @@ -85242,10 +85428,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *592 + value: *593 repository_lists: summary: Response for a successful variant analysis submission - value: *592 + value: *593 '404': *6 '422': description: Unable to process variant analysis submission @@ -85273,8 +85459,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: - - *493 - *494 + - *495 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -85286,9 +85472,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *594 examples: - default: *592 + default: *593 '404': *6 '503': *203 x-github: @@ -85311,7 +85497,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: - - *493 + - *494 - name: repo in: path description: The name of the controller repository. @@ -85346,7 +85532,7 @@ paths: type: object properties: repository: *122 - analysis_status: *594 + analysis_status: *595 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -85471,8 +85657,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -85555,7 +85741,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *572 + '403': *573 '404': *6 '503': *203 x-github: @@ -85576,8 +85762,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -85644,7 +85830,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -85669,7 +85855,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *578 + '403': *579 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -85740,8 +85926,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -85749,7 +85935,7 @@ paths: schema: type: object properties: - commit_sha: *595 + commit_sha: *596 ref: type: string description: |- @@ -85807,7 +85993,7 @@ paths: schema: type: object properties: - id: *586 + id: *587 url: type: string description: The REST API URL for checking the status of the upload. @@ -85821,7 +86007,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': *578 + '403': *579 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -85844,8 +86030,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: - - *493 - *494 + - *495 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -85891,7 +86077,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': *572 + '403': *573 '404': description: Not Found if the sarif id does not match any upload '503': *203 @@ -85916,8 +86102,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -85998,8 +86184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-codeowners-errors parameters: - - *493 - *494 + - *495 - 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 @@ -86119,8 +86305,8 @@ paths: parameters: - *17 - *19 - - *493 - *494 + - *495 responses: '200': description: Response @@ -86136,7 +86322,7 @@ paths: type: integer codespaces: type: array - items: *405 + items: *406 examples: default: value: @@ -86434,8 +86620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -86498,17 +86684,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '400': *14 '401': *25 '403': *29 @@ -86537,8 +86723,8 @@ paths: parameters: - *17 - *19 - - *493 - *494 + - *495 responses: '200': description: Response @@ -86602,8 +86788,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: - - *493 - *494 + - *495 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -86638,14 +86824,14 @@ paths: type: integer machines: type: array - items: &860 + items: &861 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *597 - required: *598 + properties: *598 + required: *599 examples: - default: &861 + default: &862 value: total_count: 2 machines: @@ -86685,8 +86871,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *493 - *494 + - *495 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -86770,8 +86956,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: - - *493 - *494 + - *495 - 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 @@ -86837,8 +87023,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -86856,7 +87042,7 @@ paths: type: integer secrets: type: array - items: &602 + items: &603 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -86876,7 +87062,7 @@ paths: - created_at - updated_at examples: - default: *599 + default: *600 headers: Link: *47 x-github: @@ -86899,16 +87085,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: *601 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86928,17 +87114,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '200': description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86958,9 +87144,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: - - *493 - *494 - - *302 + - *495 + - *303 requestBody: required: true content: @@ -86988,7 +87174,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -87012,9 +87198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '204': description: Response @@ -87042,8 +87228,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *493 - *494 + - *495 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -87085,7 +87271,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &604 + properties: &605 login: type: string example: octocat @@ -87178,7 +87364,7 @@ paths: user_view_type: type: string example: public - required: &605 + required: &606 - avatar_url - events_url - followers_url @@ -87252,8 +87438,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: - - *493 - *494 + - *495 - *151 responses: '204': @@ -87300,8 +87486,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *493 - *494 + - *495 - *151 requestBody: required: false @@ -87328,7 +87514,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &683 + schema: &684 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -87339,7 +87525,7 @@ paths: example: 42 type: integer format: int64 - repository: *292 + repository: *293 invitee: title: Simple User description: A GitHub user. @@ -87517,7 +87703,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *267 + schema: *268 '403': *29 x-github: triggersNotification: true @@ -87557,8 +87743,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *493 - *494 + - *495 - *151 responses: '204': @@ -87590,8 +87776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *493 - *494 + - *495 - *151 responses: '200': @@ -87612,8 +87798,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *604 - required: *605 + properties: *605 + required: *606 nullable: true required: - permission @@ -87668,8 +87854,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -87679,7 +87865,7 @@ paths: application/json: schema: type: array - items: &606 + items: &607 title: Commit Comment description: Commit Comment type: object @@ -87720,8 +87906,8 @@ paths: updated_at: type: string format: date-time - author_association: *228 - reactions: *229 + author_association: *229 + reactions: *230 required: - url - html_url @@ -87737,7 +87923,7 @@ paths: - created_at - updated_at examples: - default: &611 + default: &612 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -87796,17 +87982,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#get-a-commit-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '200': description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: &612 + default: &613 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -87863,9 +88049,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#update-a-commit-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -87887,7 +88073,7 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: default: value: @@ -87938,9 +88124,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#delete-a-commit-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '204': description: Response @@ -87961,9 +88147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 - 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. @@ -87989,7 +88175,7 @@ paths: application/json: schema: type: array - items: &607 + items: &608 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -88032,7 +88218,7 @@ paths: - content - created_at examples: - default: &688 + default: &689 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -88077,9 +88263,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -88111,9 +88297,9 @@ paths: description: Reaction exists content: application/json: - schema: *607 + schema: *608 examples: - default: &608 + default: &609 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -88142,9 +88328,9 @@ paths: description: Reaction created content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -88166,10 +88352,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *493 - *494 - - *247 - - &689 + - *495 + - *248 + - &690 name: reaction_id description: The unique identifier of the reaction. in: path @@ -88224,8 +88410,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-commits parameters: - - *493 - *494 + - *495 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -88281,9 +88467,9 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: - default: &758 + default: &759 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -88377,9 +88563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-branches-for-head-commit parameters: - - *493 - *494 - - &610 + - *495 + - &611 name: commit_sha description: The SHA of the commit. in: path @@ -88451,9 +88637,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments parameters: - - *493 - *494 - - *610 + - *495 + - *611 - *17 - *19 responses: @@ -88463,9 +88649,9 @@ paths: application/json: schema: type: array - items: *606 + items: *607 examples: - default: *611 + default: *612 headers: Link: *47 x-github: @@ -88493,9 +88679,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#create-a-commit-comment parameters: - - *493 - *494 - - *610 + - *495 + - *611 requestBody: required: true content: @@ -88530,9 +88716,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: *612 + default: *613 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -88560,9 +88746,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: - - *493 - *494 - - *610 + - *495 + - *611 - *17 - *19 responses: @@ -88572,9 +88758,9 @@ paths: application/json: schema: type: array - items: *613 + items: *614 examples: - default: &750 + default: &751 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -89111,11 +89297,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#get-a-commit parameters: - - *493 - *494 + - *495 - *19 - *17 - - &614 + - &615 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)" @@ -89130,9 +89316,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: - default: &735 + default: &736 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -89220,7 +89406,7 @@ paths: schema: type: string examples: - default: &623 + default: &624 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -89233,7 +89419,7 @@ paths: schema: type: string examples: - default: &624 + default: &625 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -89286,11 +89472,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: - - *493 - *494 - - *614 + - *495 - *615 - *616 + - *617 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -89324,9 +89510,9 @@ paths: type: integer check_runs: type: array - items: *556 + items: *557 examples: - default: *617 + default: *618 headers: Link: *47 x-github: @@ -89351,9 +89537,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: - - *493 - *494 - - *614 + - *495 + - *615 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -89361,7 +89547,7 @@ paths: schema: type: integer example: 1 - - *615 + - *616 - *17 - *19 responses: @@ -89379,7 +89565,7 @@ paths: type: integer check_suites: type: array - items: *561 + items: *562 examples: default: value: @@ -89579,9 +89765,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: - - *493 - *494 - - *614 + - *495 + - *615 - *17 - *19 responses: @@ -89648,7 +89834,7 @@ paths: type: string total_count: type: integer - repository: *292 + repository: *293 commit_url: type: string format: uri @@ -89779,9 +89965,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *493 - *494 - - *614 + - *495 + - *615 - *17 - *19 responses: @@ -89791,7 +89977,7 @@ paths: application/json: schema: type: array - items: &813 + items: &814 title: Status description: The status of a commit. type: object @@ -89872,7 +90058,7 @@ paths: site_admin: false headers: Link: *47 - '301': *499 + '301': *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89900,8 +90086,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/community#get-community-profile-metrics parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -89930,20 +90116,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *618 - required: *619 + properties: *619 + required: *620 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &620 + properties: &621 url: type: string format: uri html_url: type: string format: uri - required: &621 + required: &622 - url - html_url nullable: true @@ -89951,32 +90137,32 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true contributing: title: Community Health File type: object - properties: *620 - required: *621 + properties: *621 + required: *622 nullable: true readme: title: Community Health File type: object - properties: *620 - required: *621 + properties: *621 + required: *622 nullable: true issue_template: title: Community Health File type: object - properties: *620 - required: *621 + properties: *621 + required: *622 nullable: true pull_request_template: title: Community Health File type: object - properties: *620 - required: *621 + properties: *621 + required: *622 nullable: true required: - code_of_conduct @@ -90103,8 +90289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#compare-two-commits parameters: - - *493 - *494 + - *495 - *19 - *17 - name: basehead @@ -90147,8 +90333,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *609 - merge_base_commit: *609 + base_commit: *610 + merge_base_commit: *610 status: type: string enum: @@ -90168,10 +90354,10 @@ paths: example: 6 commits: type: array - items: *609 + items: *610 files: type: array - items: *622 + items: *623 required: - url - html_url @@ -90417,12 +90603,12 @@ paths: schema: type: string examples: - default: *623 + default: *624 application/vnd.github.patch: schema: type: string examples: - default: *624 + default: *625 '404': *6 '500': *40 '503': *203 @@ -90467,8 +90653,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-repository-content parameters: - - *493 - *494 + - *495 - name: path description: path parameter in: path @@ -90628,7 +90814,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &625 + response-if-content-is-a-file-github-object: &626 summary: Response if content is a file value: type: file @@ -90760,7 +90946,7 @@ paths: - size - type - url - - &763 + - &764 title: Content File description: Content File type: object @@ -90961,7 +91147,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *625 + response-if-content-is-a-file: *626 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -91030,7 +91216,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *626 + '302': *627 '304': *37 x-github: githubCloudOnly: false @@ -91053,8 +91239,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#create-or-update-file-contents parameters: - - *493 - *494 + - *495 - name: path description: path parameter in: path @@ -91147,7 +91333,7 @@ paths: description: Response content: application/json: - schema: &627 + schema: &628 title: File Commit description: File Commit type: object @@ -91299,7 +91485,7 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: example-for-creating-a-file: value: @@ -91353,7 +91539,7 @@ paths: schema: oneOf: - *3 - - &665 + - &666 description: Repository rule violation was detected type: object properties: @@ -91374,7 +91560,7 @@ paths: items: type: object properties: - placeholder_id: &805 + placeholder_id: &806 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -91406,8 +91592,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#delete-a-file parameters: - - *493 - *494 + - *495 - name: path description: path parameter in: path @@ -91468,7 +91654,7 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: default: value: @@ -91523,8 +91709,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-contributors parameters: - - *493 - *494 + - *495 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -91653,8 +91839,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -91786,24 +91972,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *493 - *494 - - *350 + - *495 - *351 - *352 - *353 - *354 + - *355 - 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 - - *355 - - *628 - *356 + - *629 - *357 - *358 + - *359 - *112 - *110 - *111 @@ -91815,7 +92001,7 @@ paths: application/json: schema: type: array - items: &632 + items: &633 type: object description: A Dependabot alert. properties: @@ -91862,7 +92048,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *629 + security_advisory: *630 security_vulnerability: *138 url: *139 html_url: *140 @@ -91893,8 +92079,8 @@ paths: nullable: true maxLength: 280 fixed_at: *144 - auto_dismissed_at: *630 - dismissal_request: *631 + auto_dismissed_at: *631 + dismissal_request: *632 assignees: type: array description: The users assigned to this alert. @@ -92149,9 +92335,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *493 - *494 - - &633 + - *495 + - &634 name: alert_number in: path description: |- @@ -92166,7 +92352,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *633 examples: default: value: @@ -92298,9 +92484,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *493 - *494 - - *633 + - *495 + - *634 requestBody: required: true content: @@ -92373,7 +92559,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *633 examples: default: value: @@ -92503,8 +92689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-repository-secrets parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -92522,7 +92708,7 @@ paths: type: integer secrets: type: array - items: &636 + items: &637 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -92575,16 +92761,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92604,15 +92790,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '200': description: Response content: application/json: - schema: *636 + schema: *637 examples: default: value: @@ -92638,9 +92824,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 requestBody: required: true content: @@ -92668,7 +92854,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -92692,9 +92878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *493 - *494 - - *302 + - *495 + - *303 responses: '204': description: Response @@ -92716,8 +92902,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: - - *493 - *494 + - *495 - 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 @@ -92880,8 +93066,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -93119,8 +93305,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: - - *493 - *494 + - *495 - name: sbom_uuid in: path required: true @@ -93131,7 +93317,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *637 + Location: *638 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -93152,8 +93338,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: - - *493 - *494 + - *495 responses: '201': description: Response @@ -93191,8 +93377,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -93267,7 +93453,7 @@ paths: - version - url additionalProperties: false - metadata: &638 + metadata: &639 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -93300,7 +93486,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *638 + metadata: *639 resolved: type: object description: A collection of resolved package dependencies. @@ -93313,7 +93499,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *638 + metadata: *639 relationship: type: string description: A notation of whether a dependency is requested @@ -93442,8 +93628,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#list-deployments parameters: - - *493 - *494 + - *495 - name: sha description: The SHA recorded at creation time. in: query @@ -93483,9 +93669,9 @@ paths: application/json: schema: type: array - items: *639 + items: *640 examples: - default: *640 + default: *641 headers: Link: *47 x-github: @@ -93551,8 +93737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#create-a-deployment parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -93633,7 +93819,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *640 examples: simple-example: summary: Simple example @@ -93706,9 +93892,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#get-a-deployment parameters: - - *493 - *494 - - &641 + - *495 + - &642 name: deployment_id description: deployment_id parameter in: path @@ -93720,7 +93906,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *640 examples: default: value: @@ -93785,9 +93971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#delete-a-deployment parameters: - - *493 - *494 - - *641 + - *495 + - *642 responses: '204': description: Response @@ -93809,9 +93995,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#list-deployment-statuses parameters: - - *493 - *494 - - *641 + - *495 + - *642 - *17 - *19 responses: @@ -93821,7 +94007,7 @@ paths: application/json: schema: type: array - items: &642 + items: &643 title: Deployment Status description: The status of a deployment. type: object @@ -93912,8 +94098,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 required: - id - node_id @@ -93982,9 +94168,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#create-a-deployment-status parameters: - - *493 - *494 - - *641 + - *495 + - *642 requestBody: required: true content: @@ -94059,9 +94245,9 @@ paths: description: Response content: application/json: - schema: *642 + schema: *643 examples: - default: &643 + default: &644 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -94117,9 +94303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#get-a-deployment-status parameters: - - *493 - *494 - - *641 + - *495 + - *642 - name: status_id in: path required: true @@ -94130,9 +94316,9 @@ paths: description: Response content: application/json: - schema: *642 + schema: *643 examples: - default: *643 + default: *644 '404': *6 x-github: githubCloudOnly: false @@ -94159,12 +94345,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 - - *644 + - *495 - *645 - *646 - *647 + - *648 - *17 - *19 responses: @@ -94174,9 +94360,9 @@ paths: application/json: schema: type: array - items: *648 + items: *649 examples: - default: *649 + default: *650 '404': *6 '403': *29 '500': *40 @@ -94200,8 +94386,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94213,7 +94399,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *648 + schema: *649 examples: default: value: @@ -94269,8 +94455,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94329,12 +94515,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *493 - *494 - - *644 + - *495 - *645 - *646 - *647 + - *648 - *17 - *19 responses: @@ -94344,9 +94530,9 @@ paths: application/json: schema: type: array - items: *650 + items: *651 examples: - default: *651 + default: *652 '404': *6 '403': *29 '500': *40 @@ -94370,8 +94556,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94383,7 +94569,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -94434,8 +94620,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94473,7 +94659,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -94524,8 +94710,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94596,8 +94782,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94630,12 +94816,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - *105 - *106 - *107 - - *364 + - *365 - *17 - *19 responses: @@ -94645,9 +94831,9 @@ paths: application/json: schema: type: array - items: *366 + items: *367 examples: - default: *367 + default: *368 '404': *6 '403': *29 '500': *40 @@ -94672,8 +94858,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94685,7 +94871,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *366 + schema: *367 examples: default: value: @@ -94743,8 +94929,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *493 - *494 + - *495 - name: alert_number in: path required: true @@ -94813,8 +94999,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -94871,8 +95057,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#list-environments parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -94889,7 +95075,7 @@ paths: type: integer environments: type: array - items: &653 + items: &654 title: Environment description: Details of a deployment environment type: object @@ -94941,7 +95127,7 @@ paths: type: type: string example: wait_timer - wait_timer: &655 + wait_timer: &656 type: integer example: 30 description: The amount of time to delay a job after @@ -94978,11 +95164,11 @@ paths: items: type: object properties: - type: *652 + type: *653 reviewer: anyOf: - *4 - - *325 + - *326 required: - id - node_id @@ -95002,7 +95188,7 @@ paths: - id - node_id - type - deployment_branch_policy: &656 + deployment_branch_policy: &657 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -95118,9 +95304,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#get-an-environment parameters: - - *493 - *494 - - &654 + - *495 + - &655 name: environment_name in: path required: true @@ -95133,9 +95319,9 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: - default: &657 + default: &658 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -95219,9 +95405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#create-or-update-an-environment parameters: - - *493 - *494 - - *654 + - *495 + - *655 requestBody: required: false content: @@ -95230,7 +95416,7 @@ paths: type: object nullable: true properties: - wait_timer: *655 + wait_timer: *656 prevent_self_review: type: boolean example: false @@ -95247,13 +95433,13 @@ paths: items: type: object properties: - type: *652 + type: *653 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *656 + deployment_branch_policy: *657 additionalProperties: false examples: default: @@ -95273,9 +95459,9 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: - default: *657 + default: *658 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -95299,9 +95485,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#delete-an-environment parameters: - - *493 - *494 - - *654 + - *495 + - *655 responses: '204': description: Default response @@ -95326,9 +95512,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *493 - *494 - - *654 + - *495 + - *655 - *17 - *19 responses: @@ -95346,7 +95532,7 @@ paths: example: 2 branch_policies: type: array - items: &658 + items: &659 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -95403,9 +95589,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *493 - *494 - - *654 + - *495 + - *655 requestBody: required: true content: @@ -95451,9 +95637,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - example-wildcard: &659 + example-wildcard: &660 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -95495,10 +95681,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *493 - *494 - - *654 - - &660 + - *495 + - *655 + - &661 name: branch_policy_id in: path required: true @@ -95510,9 +95696,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95531,10 +95717,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *493 - *494 - - *654 - - *660 + - *495 + - *655 + - *661 requestBody: required: true content: @@ -95562,9 +95748,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95583,10 +95769,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *493 - *494 - - *654 - - *660 + - *495 + - *655 + - *661 responses: '204': description: Response @@ -95611,9 +95797,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: - - *654 + - *655 + - *495 - *494 - - *493 responses: '200': description: List of deployment protection rules @@ -95629,7 +95815,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &661 + items: &662 title: Deployment protection rule description: Deployment protection rule type: object @@ -95648,7 +95834,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &662 + app: &663 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -95747,9 +95933,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: - - *654 + - *655 + - *495 - *494 - - *493 requestBody: content: application/json: @@ -95770,9 +95956,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *661 + schema: *662 examples: - default: &663 + default: &664 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -95807,9 +95993,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: - - *654 + - *655 + - *495 - *494 - - *493 - *19 - *17 responses: @@ -95828,7 +96014,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *662 + items: *663 examples: default: value: @@ -95863,10 +96049,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: - - *493 - *494 - - *654 - - &664 + - *495 + - *655 + - &665 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -95878,9 +96064,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *663 + default: *664 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95901,10 +96087,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: - - *654 + - *655 + - *495 - *494 - - *493 - - *664 + - *665 responses: '204': description: Response @@ -95930,9 +96116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-environment-secrets parameters: - - *493 - *494 - - *654 + - *495 + - *655 - *17 - *19 responses: @@ -95950,9 +96136,9 @@ paths: type: integer secrets: type: array - items: *523 + items: *524 examples: - default: *524 + default: *525 headers: Link: *47 x-github: @@ -95977,17 +96163,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-public-key parameters: - - *493 - *494 - - *654 + - *495 + - *655 responses: '200': description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96009,18 +96195,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-secret parameters: - - *493 - *494 - - *654 - - *302 + - *495 + - *655 + - *303 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: *537 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96042,10 +96228,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *493 - *494 - - *654 - - *302 + - *495 + - *655 + - *303 requestBody: required: true content: @@ -96076,7 +96262,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -96102,10 +96288,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-environment-secret parameters: - - *493 - *494 - - *654 - - *302 + - *495 + - *655 + - *303 responses: '204': description: Default response @@ -96130,10 +96316,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-environment-variables parameters: - - *493 - *494 - - *654 - - *311 + - *495 + - *655 + - *312 - *19 responses: '200': @@ -96150,9 +96336,9 @@ paths: type: integer variables: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -96175,9 +96361,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-an-environment-variable parameters: - - *493 - *494 - - *654 + - *495 + - *655 requestBody: required: true content: @@ -96204,7 +96390,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -96229,18 +96415,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-environment-variable parameters: - - *493 - *494 - - *654 - - *305 + - *495 + - *655 + - *306 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *538 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96261,10 +96447,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-environment-variable parameters: - - *493 - *494 - - *305 - - *654 + - *495 + - *306 + - *655 requestBody: required: true content: @@ -96306,10 +96492,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-environment-variable parameters: - - *493 - *494 - - *305 - - *654 + - *495 + - *306 + - *655 responses: '204': description: Response @@ -96331,8 +96517,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-repository-events parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -96342,7 +96528,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: 200-response: value: @@ -96400,8 +96586,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#list-forks parameters: - - *493 - *494 + - *495 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -96423,7 +96609,7 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: default: value: @@ -96560,8 +96746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#create-a-fork parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -96593,9 +96779,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *500 + default: *501 '400': *14 '422': *15 '403': *29 @@ -96616,8 +96802,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#create-a-blob parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -96676,8 +96862,8 @@ paths: application/json: schema: oneOf: - - *267 - - *665 + - *268 + - *666 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96702,8 +96888,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#get-a-blob parameters: - - *493 - *494 + - *495 - name: file_sha in: path required: true @@ -96802,8 +96988,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#create-a-commit parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -96912,7 +97098,7 @@ paths: description: Response content: application/json: - schema: &666 + schema: &667 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -97126,15 +97312,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#get-a-commit-object parameters: - - *493 - *494 - - *610 + - *495 + - *611 responses: '200': description: Response content: application/json: - schema: *666 + schema: *667 examples: default: value: @@ -97190,9 +97376,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#list-matching-references parameters: - - *493 - *494 - - &667 + - *495 + - &668 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. @@ -97209,7 +97395,7 @@ paths: application/json: schema: type: array - items: &668 + items: &669 title: Git Reference description: Git references within a repository type: object @@ -97284,17 +97470,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference parameters: - - *493 - *494 - - *667 + - *495 + - *668 responses: '200': description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: &669 + default: &670 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -97323,8 +97509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#create-a-reference parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -97353,9 +97539,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: *669 + default: *670 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -97381,9 +97567,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#update-a-reference parameters: - - *493 - *494 - - *667 + - *495 + - *668 requestBody: required: true content: @@ -97412,9 +97598,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: *669 + default: *670 '422': *15 '409': *121 x-github: @@ -97432,9 +97618,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#delete-a-reference parameters: - - *493 - *494 - - *667 + - *495 + - *668 responses: '204': description: Response @@ -97489,8 +97675,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#create-a-tag-object parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -97557,7 +97743,7 @@ paths: description: Response content: application/json: - schema: &671 + schema: &672 title: Git Tag description: Metadata for a Git tag type: object @@ -97608,7 +97794,7 @@ paths: - sha - type - url - verification: *670 + verification: *671 required: - sha - url @@ -97618,7 +97804,7 @@ paths: - tag - message examples: - default: &672 + default: &673 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -97691,8 +97877,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#get-a-tag parameters: - - *493 - *494 + - *495 - name: tag_sha in: path required: true @@ -97703,9 +97889,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '404': *6 '409': *121 x-github: @@ -97729,8 +97915,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#create-a-tree parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -97803,7 +97989,7 @@ paths: description: Response content: application/json: - schema: &673 + schema: &674 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -97899,8 +98085,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#get-a-tree parameters: - - *493 - *494 + - *495 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -97923,7 +98109,7 @@ paths: description: Response content: application/json: - schema: *673 + schema: *674 examples: default-response: summary: Default response @@ -97981,8 +98167,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -98025,8 +98211,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-repository-webhooks parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -98036,7 +98222,7 @@ paths: application/json: schema: type: array - items: &674 + items: &675 title: Webhook description: Webhooks for repositories. type: object @@ -98090,7 +98276,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &959 + last_response: &960 title: Hook Response type: object properties: @@ -98164,8 +98350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#create-a-repository-webhook parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -98217,9 +98403,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: &675 + default: &676 value: type: Repository id: 12345678 @@ -98267,17 +98453,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-repository-webhook parameters: - - *493 - *494 - - *372 + - *495 + - *373 responses: '200': description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '404': *6 x-github: githubCloudOnly: false @@ -98297,9 +98483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-repository-webhook parameters: - - *493 - *494 - - *372 + - *495 + - *373 requestBody: required: true content: @@ -98344,9 +98530,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '422': *15 '404': *6 x-github: @@ -98367,9 +98553,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *493 - *494 - - *372 + - *495 + - *373 responses: '204': description: Response @@ -98393,9 +98579,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: - - *493 - *494 - - *372 + - *495 + - *373 responses: '200': description: Response @@ -98422,9 +98608,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: - - *493 - *494 - - *372 + - *495 + - *373 requestBody: required: false content: @@ -98468,12 +98654,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *493 - *494 - - *372 - - *17 + - *495 - *373 + - *17 - *374 + - *375 responses: '200': description: Response @@ -98481,9 +98667,9 @@ paths: application/json: schema: type: array - items: *375 + items: *376 examples: - default: *376 + default: *377 '400': *14 '422': *15 x-github: @@ -98502,18 +98688,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: - - *493 - *494 - - *372 + - *495 + - *373 - *16 responses: '200': description: Response content: application/json: - schema: *377 + schema: *378 examples: - default: *378 + default: *379 '400': *14 '422': *15 x-github: @@ -98532,9 +98718,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: - - *493 - *494 - - *372 + - *495 + - *373 - *16 responses: '202': *39 @@ -98557,9 +98743,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *493 - *494 - - *372 + - *495 + - *373 responses: '204': description: Response @@ -98584,9 +98770,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *493 - *494 - - *372 + - *495 + - *373 responses: '204': description: Response @@ -98609,8 +98795,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: - - *493 - *494 + - *495 responses: '200': description: Response if immutable releases are enabled @@ -98656,8 +98842,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-immutable-releases parameters: - - *493 - *494 + - *495 responses: '204': *130 '409': *121 @@ -98677,8 +98863,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-immutable-releases parameters: - - *493 - *494 + - *495 responses: '204': *130 '409': *121 @@ -98735,14 +98921,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-an-import-status parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &676 + schema: &677 title: Import description: A repository import from an external source. type: object @@ -98841,7 +99027,7 @@ paths: - html_url - authors_url examples: - default: &679 + default: &680 value: vcs: subversion use_lfs: true @@ -98857,7 +99043,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': &677 + '503': &678 description: Unavailable due to service under maintenance. content: application/json: @@ -98886,8 +99072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#start-an-import parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -98935,7 +99121,7 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: default: value: @@ -98960,7 +99146,7 @@ paths: type: string '422': *15 '404': *6 - '503': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98988,8 +99174,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-an-import parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -99038,7 +99224,7 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: example-1: summary: Example 1 @@ -99086,7 +99272,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': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99109,12 +99295,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#cancel-an-import parameters: - - *493 - *494 + - *495 responses: '204': description: Response - '503': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99140,9 +99326,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-commit-authors parameters: - - *493 - *494 - - &884 + - *495 + - &885 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -99156,7 +99342,7 @@ paths: application/json: schema: type: array - items: &678 + items: &679 title: Porter Author description: Porter Author type: object @@ -99210,7 +99396,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': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99235,8 +99421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#map-a-commit-author parameters: - - *493 - *494 + - *495 - name: author_id in: path required: true @@ -99266,7 +99452,7 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: default: value: @@ -99279,7 +99465,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99303,8 +99489,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-large-files parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -99345,7 +99531,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99373,8 +99559,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -99401,11 +99587,11 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: *679 + default: *680 '422': *15 - '503': *677 + '503': *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99428,8 +99614,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -99437,8 +99623,8 @@ paths: application/json: schema: *22 examples: - default: *390 - '301': *499 + default: *391 + '301': *500 '404': *6 x-github: githubCloudOnly: false @@ -99458,8 +99644,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -99467,12 +99653,12 @@ paths: application/json: schema: anyOf: - - *392 + - *393 - type: object properties: {} additionalProperties: false examples: - default: &681 + default: &682 value: limit: collaborators_only origin: repository @@ -99497,13 +99683,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *680 + schema: *681 examples: default: summary: Example request body @@ -99515,9 +99701,9 @@ paths: description: Response content: application/json: - schema: *392 + schema: *393 examples: - default: *681 + default: *682 '409': description: Response x-github: @@ -99539,8 +99725,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -99567,8 +99753,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -99622,13 +99808,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: &682 + schema: &683 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. @@ -99678,13 +99864,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: - - *493 - *494 + - *495 requestBody: required: true content: application/json: - schema: *682 + schema: *683 examples: default: summary: Example request body @@ -99717,8 +99903,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -99771,8 +99957,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -99848,8 +100034,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#list-repository-invitations parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -99859,9 +100045,9 @@ paths: application/json: schema: type: array - items: *683 + items: *684 examples: - default: &876 + default: &877 value: - id: 1 repository: @@ -99992,9 +100178,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *493 - *494 - - *396 + - *495 + - *397 requestBody: required: false content: @@ -100023,7 +100209,7 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: default: value: @@ -100154,9 +100340,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *493 - *494 - - *396 + - *495 + - *397 responses: '204': description: Response @@ -100179,8 +100365,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -100188,9 +100374,9 @@ paths: application/json: schema: type: array - items: *400 + items: *401 examples: - default: *684 + default: *685 '404': *6 x-github: githubCloudOnly: false @@ -100219,8 +100405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-repository-issues parameters: - - *493 - *494 + - *495 - 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 @@ -100282,7 +100468,7 @@ paths: required: false schema: type: string - - *403 + - *404 - name: sort description: What to sort results by. in: query @@ -100295,7 +100481,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - *17 - *19 responses: @@ -100305,9 +100491,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: &699 + default: &700 value: - id: 1 node_id: MDU6SXNzdWUx @@ -100456,7 +100642,7 @@ paths: state_reason: completed headers: Link: *47 - '301': *499 + '301': *500 '422': *15 '404': *6 x-github: @@ -100485,8 +100671,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#create-an-issue parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -100586,9 +100772,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: &696 + default: &697 value: id: 1 node_id: MDU6SXNzdWUx @@ -100726,7 +100912,7 @@ paths: '422': *15 '503': *203 '404': *6 - '410': *685 + '410': *686 x-github: triggersNotification: true githubCloudOnly: false @@ -100754,9 +100940,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *493 - *494 - - *255 + - *495 + - *256 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -100766,7 +100952,7 @@ paths: enum: - asc - desc - - *238 + - *239 - *17 - *19 responses: @@ -100776,9 +100962,9 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: - default: &698 + default: &699 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -100837,17 +101023,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '200': description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: &687 + default: &688 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -100903,9 +101089,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#update-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -100927,9 +101113,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: *687 + default: *688 '422': *15 x-github: githubCloudOnly: false @@ -100947,9 +101133,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#delete-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '204': description: Response @@ -100977,15 +101163,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#pin-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '200': description: Response content: application/json: - schema: *686 + schema: *687 examples: default: value: @@ -101041,7 +101227,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *685 + '410': *686 '422': *15 x-github: githubCloudOnly: false @@ -101058,16 +101244,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#unpin-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *685 + '410': *686 '503': *203 x-github: githubCloudOnly: false @@ -101085,9 +101271,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 - 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. @@ -101113,9 +101299,9 @@ paths: application/json: schema: type: array - items: *607 + items: *608 examples: - default: *688 + default: *689 headers: Link: *47 '404': *6 @@ -101136,9 +101322,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -101170,16 +101356,16 @@ paths: description: Reaction exists content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '201': description: Reaction created content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -101201,10 +101387,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *493 - *494 - - *247 - - *689 + - *495 + - *248 + - *690 responses: '204': description: Response @@ -101224,8 +101410,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events-for-a-repository parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -101235,7 +101421,7 @@ paths: application/json: schema: type: array - items: &695 + items: &696 title: Issue Event description: Issue Event type: object @@ -101278,8 +101464,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *690 - required: *691 + properties: *691 + required: *692 nullable: true label: title: Issue Event Label @@ -101323,7 +101509,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *325 + requested_team: *326 dismissed_review: title: Issue Event Dismissed Review type: object @@ -101388,7 +101574,7 @@ paths: required: - from - to - issue_type: &692 + issue_type: &693 title: Issue Type description: The type of issue. type: object @@ -101416,14 +101602,14 @@ paths: required: - id - name - prev_issue_type: *692 + prev_issue_type: *693 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: &693 + properties: &694 number: type: integer description: The number of the referenced issue. @@ -101461,7 +101647,7 @@ paths: - id - node_id - name - required: &694 + required: &695 - number - title - state @@ -101473,25 +101659,25 @@ paths: event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 blocking: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *693 - required: *694 - author_association: *228 + properties: *694 + required: *695 + author_association: *229 lock_reason: type: string nullable: true @@ -101504,8 +101690,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 required: - id - node_id @@ -101690,8 +101876,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#get-an-issue-event parameters: - - *493 - *494 + - *495 - name: event_id in: path required: true @@ -101702,7 +101888,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: default: value: @@ -101895,7 +102081,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *685 + '410': *686 '403': *29 x-github: githubCloudOnly: false @@ -101929,9 +102115,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue parameters: - - *493 - *494 - - &697 + - *495 + - &698 name: issue_number description: The number that identifies the issue. in: path @@ -101943,11 +102129,11 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: default: summary: Issue - value: *696 + value: *697 pinned_comment: summary: Issue with pinned comment value: @@ -102127,9 +102313,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 '304': *37 x-github: githubCloudOnly: false @@ -102154,9 +102340,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#update-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: false content: @@ -102292,17 +102478,17 @@ paths: application/json: schema: allOf: - - *231 + - *232 - type: object properties: {} examples: - default: *696 + default: *697 '422': *15 '503': *203 '403': *29 - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102320,9 +102506,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: false content: @@ -102348,9 +102534,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102366,9 +102552,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: content: application/json: @@ -102393,9 +102579,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102417,9 +102603,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: - - *493 - *494 - - *697 + - *495 + - *698 - name: assignee in: path required: true @@ -102459,10 +102645,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments parameters: - - *493 - *494 - - *697 - - *238 + - *495 + - *698 + - *239 - *17 - *19 responses: @@ -102472,13 +102658,13 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: - default: *698 + default: *699 headers: Link: *47 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102507,9 +102693,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#create-an-issue-comment parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -102531,16 +102717,16 @@ paths: description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: *687 + default: *688 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *685 + '410': *686 '422': *15 '404': *6 x-github: @@ -102568,9 +102754,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: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -102580,14 +102766,14 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *699 + default: *700 headers: Link: *47 - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102615,9 +102801,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: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -102639,17 +102825,17 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *499 + '301': *500 '403': *29 - '410': *685 + '410': *686 '422': *15 '404': *6 x-github: @@ -102680,9 +102866,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: - - *493 - *494 - - *697 + - *495 + - *698 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -102694,15 +102880,15 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 - '301': *499 + default: *697 + '301': *500 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *685 + '410': *686 x-github: triggersNotification: true githubCloudOnly: false @@ -102728,9 +102914,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: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -102740,14 +102926,14 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *699 + default: *700 headers: Link: *47 - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102764,9 +102950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events parameters: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -102780,7 +102966,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &703 + - &704 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -102811,8 +102997,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 label: type: object properties: @@ -102834,7 +103020,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &704 + - &705 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -102865,8 +103051,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 label: type: object properties: @@ -102954,8 +103140,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 assignee: *4 assigner: *4 required: @@ -102970,7 +103156,7 @@ paths: - performed_via_github_app - assignee - assigner - - &705 + - &706 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -103001,8 +103187,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 milestone: type: object properties: @@ -103021,7 +103207,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &706 + - &707 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -103052,8 +103238,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 milestone: type: object properties: @@ -103072,7 +103258,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &707 + - &708 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -103103,8 +103289,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 rename: type: object properties: @@ -103126,7 +103312,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &708 + - &709 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -103157,10 +103343,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 review_requester: *4 - requested_team: *325 + requested_team: *326 requested_reviewer: *4 required: - review_requester @@ -103173,7 +103359,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &709 + - &710 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -103204,10 +103390,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 review_requester: *4 - requested_team: *325 + requested_team: *326 requested_reviewer: *4 required: - review_requester @@ -103220,7 +103406,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &710 + - &711 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -103251,8 +103437,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 dismissed_review: type: object properties: @@ -103280,7 +103466,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &711 + - &712 title: Locked Issue Event description: Locked Issue Event type: object @@ -103311,8 +103497,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 lock_reason: type: string example: '"off-topic"' @@ -103328,7 +103514,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &712 + - &713 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -103359,8 +103545,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 project_card: type: object properties: @@ -103394,7 +103580,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &713 + - &714 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -103425,8 +103611,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 project_card: type: object properties: @@ -103460,7 +103646,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &714 + - &715 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -103491,8 +103677,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 project_card: type: object properties: @@ -103526,7 +103712,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &715 + - &716 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -103582,7 +103768,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &720 + - &721 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -103613,9 +103799,9 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - issue_type: *692 + properties: *227 + required: *228 + issue_type: *693 required: - issue_type - id @@ -103627,7 +103813,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &721 + - &722 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -103658,9 +103844,9 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - prev_issue_type: *692 + properties: *227 + required: *228 + prev_issue_type: *693 required: - prev_issue_type - id @@ -103672,7 +103858,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &722 + - &723 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -103703,10 +103889,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - issue_type: *692 - prev_issue_type: *692 + properties: *227 + required: *228 + issue_type: *693 + prev_issue_type: *693 required: - issue_type - prev_issue_type @@ -103719,7 +103905,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &723 + - &724 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -103750,8 +103936,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -103759,8 +103945,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - sub_issue - id @@ -103772,7 +103958,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &724 + - &725 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -103803,8 +103989,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -103812,8 +103998,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - sub_issue - id @@ -103825,7 +104011,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &725 + - &726 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -103856,8 +104042,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 parent_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -103865,8 +104051,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - parent_issue - id @@ -103878,7 +104064,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &726 + - &727 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -103909,8 +104095,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 parent_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -103918,8 +104104,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - parent_issue - id @@ -103931,7 +104117,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &727 + - &728 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -103962,8 +104148,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a @@ -103971,8 +104157,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - blocked_by - id @@ -103984,7 +104170,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &728 + - &729 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -104015,8 +104201,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104024,8 +104210,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - blocked_by - id @@ -104037,7 +104223,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &729 + - &730 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -104068,8 +104254,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocking: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104077,8 +104263,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - blocking - id @@ -104090,7 +104276,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &730 + - &731 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -104121,8 +104307,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocking: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104130,8 +104316,8 @@ paths: events). type: object nullable: true - properties: *693 - required: *694 + properties: *694 + required: *695 required: - blocking - id @@ -104178,7 +104364,7 @@ paths: color: red headers: Link: *47 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104195,9 +104381,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: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -104207,9 +104393,9 @@ paths: application/json: schema: type: array - items: *700 + items: *701 examples: - default: &701 + default: &702 value: - issue_field_id: 1 issue_field_name: DRI @@ -104249,9 +104435,9 @@ paths: color: green headers: Link: *47 - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104280,9 +104466,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: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -104352,9 +104538,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *700 + items: *701 examples: - default: *701 + default: *702 '400': *14 '403': *29 '404': *6 @@ -104390,9 +104576,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: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -104457,9 +104643,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *700 + items: *701 examples: - default: *701 + default: *702 '400': *14 '403': *29 '404': *6 @@ -104490,10 +104676,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: - - *493 - *494 - - *697 - - *399 + - *495 + - *698 + - *400 responses: '204': description: Issue field value deleted successfully @@ -104518,9 +104704,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -104530,9 +104716,9 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: &702 + default: &703 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -104550,9 +104736,9 @@ paths: default: false headers: Link: *47 - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104568,9 +104754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#add-labels-to-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: false content: @@ -104613,12 +104799,12 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *702 - '301': *499 + default: *703 + '301': *500 '404': *6 - '410': *685 + '410': *686 '422': *15 x-github: githubCloudOnly: false @@ -104635,9 +104821,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#set-labels-for-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: false content: @@ -104697,12 +104883,12 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *702 - '301': *499 + default: *703 + '301': *500 '404': *6 - '410': *685 + '410': *686 '422': *15 x-github: githubCloudOnly: false @@ -104719,15 +104905,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 responses: '204': description: Response - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104746,9 +104932,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 - name: name in: path required: true @@ -104761,7 +104947,7 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: default: value: @@ -104772,9 +104958,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *499 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104794,9 +104980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#lock-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: false content: @@ -104824,7 +105010,7 @@ paths: '204': description: Response '403': *29 - '410': *685 + '410': *686 '404': *6 '422': *15 x-github: @@ -104842,9 +105028,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#unlock-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 responses: '204': description: Response @@ -104874,20 +105060,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#get-parent-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 responses: '200': description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 - '301': *499 + default: *697 + '301': *500 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104904,9 +105090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 - 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. @@ -104932,13 +105118,13 @@ paths: application/json: schema: type: array - items: *607 + items: *608 examples: - default: *688 + default: *689 headers: Link: *47 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104956,9 +105142,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -104990,16 +105176,16 @@ paths: description: Response content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '201': description: Response content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -105021,10 +105207,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *493 - *494 - - *697 - - *689 + - *495 + - *698 + - *690 responses: '204': description: Response @@ -105053,9 +105239,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#remove-sub-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -105077,9 +105263,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -105112,9 +105298,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#list-sub-issues parameters: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -105124,13 +105310,13 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *699 + default: *700 headers: Link: *47 '404': *6 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105158,9 +105344,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#add-sub-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -105187,16 +105373,16 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *685 + '410': *686 '422': *15 '404': *6 x-github: @@ -105216,9 +105402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 requestBody: required: true content: @@ -105249,9 +105435,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *696 + default: *697 '403': *29 '404': *6 '422': *7 @@ -105273,9 +105459,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *493 - *494 - - *697 + - *495 + - *698 - *17 - *19 responses: @@ -105290,7 +105476,6 @@ paths: description: Timeline Event type: object anyOf: - - *703 - *704 - *705 - *706 @@ -105303,6 +105488,7 @@ paths: - *713 - *714 - *715 + - *716 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -105345,7 +105531,7 @@ paths: issue_url: type: string format: uri - author_association: *228 + author_association: *229 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -105355,23 +105541,23 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - reactions: *229 + properties: *227 + required: *228 + reactions: *230 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *716 - required: *717 + properties: *717 + required: *718 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *718 - required: *719 + properties: *719 + required: *720 nullable: true required: - event @@ -105403,7 +105589,7 @@ paths: properties: type: type: string - issue: *231 + issue: *232 required: - event - created_at @@ -105603,7 +105789,7 @@ paths: type: string body_text: type: string - author_association: *228 + author_association: *229 required: - event - id @@ -105626,7 +105812,7 @@ paths: type: string comments: type: array - items: &752 + items: &753 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -105721,7 +105907,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *228 + author_association: *229 _links: type: object properties: @@ -105805,7 +105991,7 @@ paths: enum: - line - file - reactions: *229 + reactions: *230 body_html: type: string example: '"

comment body

"' @@ -105841,7 +106027,7 @@ paths: type: string comments: type: array - items: *606 + items: *607 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -105872,8 +106058,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 assignee: *4 required: - id @@ -105916,8 +106102,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 assignee: *4 required: - id @@ -105960,8 +106146,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 state_reason: type: string nullable: true @@ -105975,7 +106161,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *720 - *721 - *722 - *723 @@ -105986,6 +106171,7 @@ paths: - *728 - *729 - *730 + - *731 examples: default: value: @@ -106142,7 +106328,7 @@ paths: Link: *47 '404': *6 '400': *14 - '410': *685 + '410': *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106159,8 +106345,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -106170,7 +106356,7 @@ paths: application/json: schema: type: array - items: &731 + items: &732 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -106236,8 +106422,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -106273,9 +106459,9 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: - default: &732 + default: &733 value: id: 1 key: ssh-rsa AAA... @@ -106309,9 +106495,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *493 - *494 - - &733 + - *495 + - &734 name: key_id description: The unique identifier of the key. in: path @@ -106323,9 +106509,9 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: - default: *732 + default: *733 '404': *6 x-github: githubCloudOnly: false @@ -106343,9 +106529,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *493 - *494 - - *733 + - *495 + - *734 responses: '204': description: Response @@ -106365,8 +106551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-a-repository parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -106376,9 +106562,9 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *702 + default: *703 headers: Link: *47 '404': *6 @@ -106399,8 +106585,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#create-a-label parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -106436,9 +106622,9 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: - default: &734 + default: &735 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -106470,8 +106656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#get-a-label parameters: - - *493 - *494 + - *495 - name: name in: path required: true @@ -106482,9 +106668,9 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: - default: *734 + default: *735 '404': *6 x-github: githubCloudOnly: false @@ -106501,8 +106687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#update-a-label parameters: - - *493 - *494 + - *495 - name: name in: path required: true @@ -106541,7 +106727,7 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: default: value: @@ -106567,8 +106753,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#delete-a-label parameters: - - *493 - *494 + - *495 - name: name in: path required: true @@ -106594,8 +106780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-languages parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -106631,8 +106817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *493 - *494 + - *495 responses: '202': *39 '403': @@ -106660,8 +106846,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -106687,9 +106873,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *493 - *494 - - *579 + - *495 + - *580 responses: '200': description: Response @@ -106751,8 +106937,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true required: - _links @@ -106834,8 +107020,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -106900,8 +107086,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#merge-a-branch parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -106935,9 +107121,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *609 + schema: *610 examples: - default: *735 + default: *736 '204': description: Response when already merged '404': @@ -106962,8 +107148,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#list-milestones parameters: - - *493 - *494 + - *495 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -107004,12 +107190,12 @@ paths: application/json: schema: type: array - items: &736 + items: &737 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *435 - required: *436 + properties: *436 + required: *437 examples: default: value: @@ -107065,8 +107251,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#create-a-milestone parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -107106,9 +107292,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *737 examples: - default: &737 + default: &738 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -107167,9 +107353,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#get-a-milestone parameters: - - *493 - *494 - - &738 + - *495 + - &739 name: milestone_number description: The number that identifies the milestone. in: path @@ -107181,9 +107367,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *737 examples: - default: *737 + default: *738 '404': *6 x-github: githubCloudOnly: false @@ -107200,9 +107386,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#update-a-milestone parameters: - - *493 - *494 - - *738 + - *495 + - *739 requestBody: required: false content: @@ -107240,9 +107426,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *737 examples: - default: *737 + default: *738 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107258,9 +107444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#delete-a-milestone parameters: - - *493 - *494 - - *738 + - *495 + - *739 responses: '204': description: Response @@ -107281,9 +107467,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: - - *493 - *494 - - *738 + - *495 + - *739 - *17 - *19 responses: @@ -107293,9 +107479,9 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *702 + default: *703 headers: Link: *47 x-github: @@ -107314,12 +107500,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: - - *493 - *494 - - *739 + - *495 - *740 - - *238 - *741 + - *239 + - *742 - *17 - *19 responses: @@ -107329,9 +107515,9 @@ paths: application/json: schema: type: array - items: *258 + items: *259 examples: - default: *742 + default: *743 headers: Link: *47 x-github: @@ -107355,8 +107541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -107414,14 +107600,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-apiname-pages-site parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: &743 + schema: &744 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -107546,7 +107732,7 @@ paths: - custom_404 - public examples: - default: &744 + default: &745 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -107587,8 +107773,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-apiname-pages-site parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -107642,9 +107828,9 @@ paths: description: Response content: application/json: - schema: *743 + schema: *744 examples: - default: *744 + default: *745 '422': *15 '409': *121 x-github: @@ -107667,8 +107853,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -107775,8 +107961,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -107802,8 +107988,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#list-apiname-pages-builds parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -107813,7 +107999,7 @@ paths: application/json: schema: type: array - items: &745 + items: &746 title: Page Build description: Page Build type: object @@ -107907,8 +108093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#request-a-apiname-pages-build parameters: - - *493 - *494 + - *495 responses: '201': description: Response @@ -107953,16 +108139,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-latest-pages-build parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *745 + schema: *746 examples: - default: &746 + default: &747 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -108010,8 +108196,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-apiname-pages-build parameters: - - *493 - *494 + - *495 - name: build_id in: path required: true @@ -108022,9 +108208,9 @@ paths: description: Response content: application/json: - schema: *745 + schema: *746 examples: - default: *746 + default: *747 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108044,8 +108230,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-github-pages-deployment parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -108150,9 +108336,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: - - *493 - *494 - - &747 + - *495 + - &748 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -108210,9 +108396,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *493 - *494 - - *747 + - *495 + - *748 responses: '204': *130 '404': *6 @@ -108239,8 +108425,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -108471,7 +108657,7 @@ paths: description: Empty response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -108498,8 +108684,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: - - *493 - *494 + - *495 responses: '200': description: Private vulnerability reporting status @@ -108536,8 +108722,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: - - *493 - *494 + - *495 responses: '204': *130 '422': *14 @@ -108558,8 +108744,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: - - *493 - *494 + - *495 responses: '204': *130 '422': *14 @@ -108581,8 +108767,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -108592,7 +108778,7 @@ paths: type: array items: *163 examples: - default: *748 + default: *749 '403': *29 '404': *6 x-github: @@ -108614,8 +108800,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -108631,7 +108817,7 @@ paths: required: - properties examples: - default: *749 + default: *750 responses: '204': description: No Content when custom property values are successfully created @@ -108669,8 +108855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests parameters: - - *493 - *494 + - *495 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -108730,9 +108916,9 @@ paths: application/json: schema: type: array - items: *613 + items: *614 examples: - default: *750 + default: *751 headers: Link: *47 '304': *37 @@ -108764,8 +108950,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#create-a-pull-request parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -108830,7 +109016,7 @@ paths: description: Response content: application/json: - schema: &754 + schema: &755 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -108941,8 +109127,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *435 - required: *436 + properties: *436 + required: *437 nullable: true active_lock_reason: type: string @@ -108974,7 +109160,7 @@ paths: items: *4 requested_teams: type: array - items: *477 + items: *478 head: type: object properties: @@ -109012,14 +109198,14 @@ paths: _links: type: object properties: - comments: *437 - commits: *437 - statuses: *437 - html: *437 - issue: *437 - review_comments: *437 - review_comment: *437 - self: *437 + comments: *438 + commits: *438 + statuses: *438 + html: *438 + issue: *438 + review_comments: *438 + review_comment: *438 + self: *438 required: - comments - commits @@ -109029,8 +109215,8 @@ paths: - review_comments - review_comment - self - author_association: *228 - auto_merge: *751 + author_association: *229 + auto_merge: *752 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -109120,7 +109306,7 @@ paths: - merged_by - review_comments examples: - default: &755 + default: &756 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -109627,8 +109813,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *493 - *494 + - *495 - name: sort in: query required: false @@ -109647,7 +109833,7 @@ paths: enum: - asc - desc - - *238 + - *239 - *17 - *19 responses: @@ -109657,9 +109843,9 @@ paths: application/json: schema: type: array - items: *752 + items: *753 examples: - default: &757 + default: &758 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -109736,17 +109922,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: - - *493 - *494 - - *247 + - *495 + - *248 responses: '200': description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: &753 + default: &754 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -109821,9 +110007,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: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -109845,9 +110031,9 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: *753 + default: *754 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109863,9 +110049,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: - - *493 - *494 - - *247 + - *495 + - *248 responses: '204': description: Response @@ -109886,9 +110072,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: - - *493 - *494 - - *247 + - *495 + - *248 - 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. @@ -109914,9 +110100,9 @@ paths: application/json: schema: type: array - items: *607 + items: *608 examples: - default: *688 + default: *689 headers: Link: *47 '404': *6 @@ -109937,9 +110123,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: - - *493 - *494 - - *247 + - *495 + - *248 requestBody: required: true content: @@ -109971,16 +110157,16 @@ paths: description: Reaction exists content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '201': description: Reaction created content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -110002,10 +110188,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *493 - *494 - - *247 - - *689 + - *495 + - *248 + - *690 responses: '204': description: Response @@ -110048,9 +110234,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#get-a-pull-request parameters: - - *493 - *494 - - &756 + - *495 + - &757 name: pull_number description: The number that identifies the pull request. in: path @@ -110063,9 +110249,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *754 + schema: *755 examples: - default: *755 + default: *756 '304': *37 '404': *6 '406': @@ -110100,9 +110286,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request parameters: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: false content: @@ -110144,9 +110330,9 @@ paths: description: Response content: application/json: - schema: *754 + schema: *755 examples: - default: *755 + default: *756 '422': *15 '403': *29 x-github: @@ -110168,9 +110354,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: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: true content: @@ -110230,17 +110416,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '401': *25 '403': *29 '404': *6 @@ -110270,10 +110456,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: - - *493 - *494 - - *756 - - *255 + - *495 + - *757 + - *256 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -110283,7 +110469,7 @@ paths: enum: - asc - desc - - *238 + - *239 - *17 - *19 responses: @@ -110293,9 +110479,9 @@ paths: application/json: schema: type: array - items: *752 + items: *753 examples: - default: *757 + default: *758 headers: Link: *47 x-github: @@ -110328,9 +110514,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: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: true content: @@ -110435,7 +110621,7 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: example-for-a-multi-line-comment: value: @@ -110523,10 +110709,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: - - *493 - *494 - - *756 - - *247 + - *495 + - *757 + - *248 requestBody: required: true content: @@ -110548,7 +110734,7 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: default: value: @@ -110634,9 +110820,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *493 - *494 - - *756 + - *495 + - *757 - *17 - *19 responses: @@ -110646,9 +110832,9 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: - default: *758 + default: *759 headers: Link: *47 x-github: @@ -110678,9 +110864,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests-files parameters: - - *493 - *494 - - *756 + - *495 + - *757 - *17 - *19 responses: @@ -110690,7 +110876,7 @@ paths: application/json: schema: type: array - items: *622 + items: *623 examples: default: value: @@ -110728,9 +110914,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: - - *493 - *494 - - *756 + - *495 + - *757 responses: '204': description: Response if pull request has been merged @@ -110753,9 +110939,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#merge-a-pull-request parameters: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: false content: @@ -110866,9 +111052,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: - - *493 - *494 - - *756 + - *495 + - *757 responses: '200': description: Response @@ -110884,7 +111070,7 @@ paths: items: *4 teams: type: array - items: *325 + items: *326 required: - users - teams @@ -110943,9 +111129,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: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: false content: @@ -110982,7 +111168,7 @@ paths: description: Response content: application/json: - schema: *613 + schema: *614 examples: default: value: @@ -111518,9 +111704,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: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: true content: @@ -111554,7 +111740,7 @@ paths: description: Response content: application/json: - schema: *613 + schema: *614 examples: default: value: @@ -112039,9 +112225,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *493 - *494 - - *756 + - *495 + - *757 - *17 - *19 responses: @@ -112051,7 +112237,7 @@ paths: application/json: schema: type: array - items: &759 + items: &760 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -112120,7 +112306,7 @@ paths: type: string body_text: type: string - author_association: *228 + author_association: *229 required: - id - node_id @@ -112202,9 +112388,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: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: false content: @@ -112290,9 +112476,9 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: - default: &761 + default: &762 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -112355,10 +112541,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: - - *493 - *494 - - *756 - - &760 + - *495 + - *757 + - &761 name: review_id description: The unique identifier of the review. in: path @@ -112370,9 +112556,9 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: - default: &762 + default: &763 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -112431,10 +112617,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: - - *493 - *494 - - *756 - - *760 + - *495 + - *757 + - *761 requestBody: required: true content: @@ -112457,7 +112643,7 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: default: value: @@ -112519,18 +112705,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: - - *493 - *494 - - *756 - - *760 + - *495 + - *757 + - *761 responses: '200': description: Response content: application/json: - schema: *759 + schema: *760 examples: - default: *761 + default: *762 '422': *7 '404': *6 x-github: @@ -112557,10 +112743,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: - - *493 - *494 - - *756 - - *760 + - *495 + - *757 + - *761 - *17 - *19 responses: @@ -112639,13 +112825,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *228 + author_association: *229 _links: type: object properties: - self: *437 - html: *437 - pull_request: *437 + self: *438 + html: *438 + pull_request: *438 required: - self - html @@ -112654,7 +112840,7 @@ paths: type: string body_html: type: string - reactions: *229 + reactions: *230 side: description: The side of the first line of the range for a multi-line comment. @@ -112795,10 +112981,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: - - *493 - *494 - - *756 - - *760 + - *495 + - *757 + - *761 requestBody: required: true content: @@ -112826,7 +113012,7 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: default: value: @@ -112889,10 +113075,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: - - *493 - *494 - - *756 - - *760 + - *495 + - *757 + - *761 requestBody: required: true content: @@ -112927,9 +113113,9 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: - default: *762 + default: *763 '404': *6 '422': *7 '403': *29 @@ -112951,9 +113137,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *493 - *494 - - *756 + - *495 + - *757 requestBody: required: false content: @@ -113016,8 +113202,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme parameters: - - *493 - *494 + - *495 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -113030,9 +113216,9 @@ paths: description: Response content: application/json: - schema: *763 + schema: *764 examples: - default: &764 + default: &765 value: type: file encoding: base64 @@ -113074,8 +113260,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: - - *493 - *494 + - *495 - name: dir description: The alternate path to look for a README file in: path @@ -113095,9 +113281,9 @@ paths: description: Response content: application/json: - schema: *763 + schema: *764 examples: - default: *764 + default: *765 '404': *6 '422': *15 x-github: @@ -113119,8 +113305,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#list-releases parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -113130,7 +113316,7 @@ paths: application/json: schema: type: array - items: *765 + items: *766 examples: default: value: @@ -113224,8 +113410,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#create-a-release parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -113301,9 +113487,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *766 examples: - default: &769 + default: &770 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -113408,9 +113594,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#get-a-release-asset parameters: - - *493 - *494 - - &767 + - *495 + - &768 name: asset_id description: The unique identifier of the asset. in: path @@ -113422,9 +113608,9 @@ paths: description: Response content: application/json: - schema: *766 + schema: *767 examples: - default: &768 + default: &769 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 @@ -113459,7 +113645,7 @@ paths: type: User site_admin: false '404': *6 - '302': *626 + '302': *627 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113475,9 +113661,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#update-a-release-asset parameters: - - *493 - *494 - - *767 + - *495 + - *768 requestBody: required: false content: @@ -113505,9 +113691,9 @@ paths: description: Response content: application/json: - schema: *766 + schema: *767 examples: - default: *768 + default: *769 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113523,9 +113709,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#delete-a-release-asset parameters: - - *493 - *494 - - *767 + - *495 + - *768 responses: '204': description: Response @@ -113550,8 +113736,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -113636,16 +113822,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-the-latest-release parameters: - - *493 - *494 + - *495 responses: '200': description: Response content: application/json: - schema: *765 + schema: *766 examples: - default: *769 + default: *770 '404': *6 x-github: githubCloudOnly: false @@ -113663,8 +113849,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release-by-tag-name parameters: - - *493 - *494 + - *495 - name: tag description: tag parameter in: path @@ -113677,9 +113863,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *766 examples: - default: *769 + default: *770 '404': *6 x-github: githubCloudOnly: false @@ -113701,9 +113887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release parameters: - - *493 - *494 - - &770 + - *495 + - &771 name: release_id description: The unique identifier of the release. in: path @@ -113717,9 +113903,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: *765 + schema: *766 examples: - default: *769 + default: *770 '401': description: Unauthorized x-github: @@ -113737,9 +113923,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#update-a-release parameters: - - *493 - *494 - - *770 + - *495 + - *771 requestBody: required: false content: @@ -113803,9 +113989,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *766 examples: - default: *769 + default: *770 '404': description: Not Found if the discussion category name is invalid content: @@ -113826,9 +114012,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#delete-a-release parameters: - - *493 - *494 - - *770 + - *495 + - *771 responses: '204': description: Response @@ -113849,9 +114035,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#list-release-assets parameters: - - *493 - *494 - - *770 + - *495 + - *771 - *17 - *19 responses: @@ -113861,7 +114047,7 @@ paths: application/json: schema: type: array - items: *766 + items: *767 examples: default: value: @@ -113943,9 +114129,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: - - *493 - *494 - - *770 + - *495 + - *771 - name: name in: query required: true @@ -113971,7 +114157,7 @@ paths: description: Response for successful upload content: application/json: - schema: *766 + schema: *767 examples: response-for-successful-upload: value: @@ -114026,9 +114212,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *493 - *494 - - *770 + - *495 + - *771 - 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. @@ -114052,9 +114238,9 @@ paths: application/json: schema: type: array - items: *607 + items: *608 examples: - default: *688 + default: *689 headers: Link: *47 '404': *6 @@ -114075,9 +114261,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *493 - *494 - - *770 + - *495 + - *771 requestBody: required: true content: @@ -114107,16 +114293,16 @@ paths: description: Reaction exists content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '201': description: Reaction created content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '422': *15 x-github: githubCloudOnly: false @@ -114138,10 +114324,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-release-reaction parameters: - - *493 - *494 - - *770 - - *689 + - *495 + - *771 + - *690 responses: '204': description: Response @@ -114165,9 +114351,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-rules-for-a-branch parameters: - - *493 - *494 - - *545 + - *495 + - *546 - *17 - *19 responses: @@ -114184,7 +114370,7 @@ paths: oneOf: - allOf: - *177 - - &771 + - &772 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -114205,70 +114391,70 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *178 - - *771 + - *772 - allOf: - *179 - - *771 + - *772 - allOf: - *180 - - *771 + - *772 - allOf: + - *773 - *772 - - *771 - allOf: - *181 - - *771 + - *772 - allOf: - *182 - - *771 + - *772 - allOf: - *183 - - *771 + - *772 - allOf: - *184 - - *771 + - *772 - allOf: - *185 - - *771 + - *772 - allOf: - *186 - - *771 + - *772 - allOf: - *187 - - *771 + - *772 - allOf: - *188 - - *771 + - *772 - allOf: - *189 - - *771 + - *772 - allOf: - *190 - - *771 + - *772 - allOf: - *191 - - *771 + - *772 - allOf: - *192 - - *771 + - *772 - allOf: - *193 - - *771 + - *772 - allOf: - - *773 - - *771 + - *774 + - *772 - allOf: - *194 - - *771 + - *772 - allOf: - *195 - - *771 + - *772 - allOf: - *196 - - *771 + - *772 - allOf: - *197 - - *771 + - *772 examples: default: value: @@ -114307,8 +114493,8 @@ paths: category: repos subcategory: rules parameters: - - *493 - *494 + - *495 - *17 - *19 - name: includes_parents @@ -114319,7 +114505,7 @@ paths: schema: type: boolean default: true - - *774 + - *775 responses: '200': description: Response @@ -114374,8 +114560,8 @@ paths: category: repos subcategory: rules parameters: - - *493 - *494 + - *495 requestBody: description: Request body required: true @@ -114404,7 +114590,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *775 + items: *776 required: - name - enforcement @@ -114437,7 +114623,7 @@ paths: application/json: schema: *198 examples: - default: &785 + default: &786 value: id: 42 name: super cool ruleset @@ -114485,13 +114671,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *493 - *494 - - *776 - - *107 + - *495 - *777 + - *107 - *778 - *779 + - *780 - *17 - *19 responses: @@ -114499,9 +114685,9 @@ paths: description: Response content: application/json: - schema: *780 + schema: *781 examples: - default: *781 + default: *782 '404': *6 '500': *40 x-github: @@ -114522,17 +114708,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *493 - *494 - - *782 + - *495 + - *783 responses: '200': description: Response content: application/json: - schema: *783 + schema: *784 examples: - default: *784 + default: *785 '404': *6 '500': *40 x-github: @@ -114560,8 +114746,8 @@ paths: category: repos subcategory: rules parameters: - - *493 - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -114583,7 +114769,7 @@ paths: application/json: schema: *198 examples: - default: *785 + default: *786 '404': *6 '500': *40 put: @@ -114601,8 +114787,8 @@ paths: category: repos subcategory: rules parameters: - - *493 - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -114636,7 +114822,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *775 + items: *776 examples: default: value: @@ -114666,7 +114852,7 @@ paths: application/json: schema: *198 examples: - default: *785 + default: *786 '404': *6 '422': *15 '500': *40 @@ -114685,8 +114871,8 @@ paths: category: repos subcategory: rules parameters: - - *493 - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -114709,8 +114895,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-history parameters: - - *493 - *494 + - *495 - *17 - *19 - name: ruleset_id @@ -114728,7 +114914,7 @@ paths: type: array items: *202 examples: - default: *455 + default: *456 '404': *6 '500': *40 x-github: @@ -114747,8 +114933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-version parameters: - - *493 - *494 + - *495 - name: ruleset_id description: The ID of the ruleset. in: path @@ -114766,7 +114952,7 @@ paths: description: Response content: application/json: - schema: *456 + schema: *457 examples: default: value: @@ -114821,9 +115007,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: - - *493 - *494 - - *457 + - *495 - *458 - *459 - *460 @@ -114831,18 +115016,19 @@ paths: - *462 - *463 - *464 + - *465 - *112 - *19 - *17 - - *786 - *787 - - *465 + - *788 - *466 - *467 - *468 - *469 - *470 - *471 + - *472 responses: '200': description: Response @@ -114869,8 +115055,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *788 - resolution: *789 + state: *789 + resolution: *790 resolved_at: type: string format: date-time @@ -114976,7 +115162,7 @@ paths: pull request. ' - oneOf: *790 + oneOf: *791 nullable: true has_more_locations: type: boolean @@ -115140,16 +115326,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: - - *493 - *494 - - *573 - - *468 + - *495 + - *574 + - *469 responses: '200': description: Response content: application/json: - schema: &791 + schema: &792 type: object properties: number: *134 @@ -115167,8 +115353,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *788 - resolution: *789 + state: *789 + resolution: *790 resolved_at: type: string format: date-time @@ -115274,7 +115460,7 @@ paths: pull request. ' - oneOf: *790 + oneOf: *791 nullable: true has_more_locations: type: boolean @@ -115302,7 +115488,7 @@ paths: properties: *20 required: *21 nullable: true - metadata: &980 + metadata: &981 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -115375,9 +115561,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: - - *493 - *494 - - *573 + - *495 + - *574 requestBody: required: true content: @@ -115385,8 +115571,8 @@ paths: schema: type: object properties: - state: *788 - resolution: *789 + state: *789 + resolution: *790 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -115430,7 +115616,7 @@ paths: description: Response content: application/json: - schema: *791 + schema: *792 examples: default: value: @@ -115532,9 +115718,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: - - *493 - *494 - - *573 + - *495 + - *574 - *19 - *17 responses: @@ -115545,7 +115731,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &982 + items: &983 type: object properties: type: @@ -115571,7 +115757,6 @@ paths: example: commit details: oneOf: - - *792 - *793 - *794 - *795 @@ -115584,6 +115769,7 @@ paths: - *802 - *803 - *804 + - *805 examples: default: value: @@ -115669,8 +115855,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -115678,14 +115864,14 @@ paths: schema: type: object properties: - reason: &806 + reason: &807 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *805 + placeholder_id: *806 required: - reason - placeholder_id @@ -115702,7 +115888,7 @@ paths: schema: type: object properties: - reason: *806 + reason: *807 expire_at: type: string format: date-time @@ -115748,8 +115934,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: - - *493 - *494 + - *495 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -115764,7 +115950,7 @@ paths: properties: incremental_scans: type: array - items: &807 + items: &808 description: Information on a single scan performed by secret scanning on the repository type: object @@ -115795,15 +115981,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *807 + items: *808 backfill_scans: type: array - items: *807 + items: *808 custom_pattern_backfill_scans: type: array items: allOf: - - *807 + - *808 - type: object properties: pattern_name: @@ -115816,7 +116002,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *807 + items: *808 examples: default: value: @@ -115881,8 +116067,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *493 - *494 + - *495 - *112 - name: sort description: The property to sort the results by. @@ -115926,9 +116112,9 @@ paths: application/json: schema: type: array - items: *808 + items: *809 examples: - default: *809 + default: *810 '400': *14 '404': *6 x-github: @@ -115951,8 +116137,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -116025,7 +116211,7 @@ paths: login: type: string description: The username of the user credited. - type: *476 + type: *477 required: - login - type @@ -116112,9 +116298,9 @@ paths: description: Response content: application/json: - schema: *808 + schema: *809 examples: - default: &811 + default: &812 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -116344,8 +116530,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: - - *493 - *494 + - *495 requestBody: required: true content: @@ -116449,7 +116635,7 @@ paths: description: Response content: application/json: - schema: *808 + schema: *809 examples: default: value: @@ -116595,17 +116781,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: - - *493 - *494 - - *810 + - *495 + - *811 responses: '200': description: Response content: application/json: - schema: *808 + schema: *809 examples: - default: *811 + default: *812 '403': *29 '404': *6 x-github: @@ -116629,9 +116815,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: - - *493 - *494 - - *810 + - *495 + - *811 requestBody: required: true content: @@ -116704,7 +116890,7 @@ paths: login: type: string description: The username of the user credited. - type: *476 + type: *477 required: - login - type @@ -116790,17 +116976,17 @@ paths: description: Response content: application/json: - schema: *808 + schema: *809 examples: - default: *811 - add_credit: *811 + default: *812 + add_credit: *812 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *267 + schema: *268 examples: invalid_state_transition: value: @@ -116831,9 +117017,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: - - *493 - *494 - - *810 + - *495 + - *811 responses: '202': *39 '400': *14 @@ -116860,17 +117046,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: - - *493 - *494 - - *810 + - *495 + - *811 responses: '202': description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *500 + default: *501 '400': *14 '422': *15 '403': *29 @@ -116896,8 +117082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-stargazers parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -116996,8 +117182,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *493 - *494 + - *495 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -117006,7 +117192,7 @@ paths: application/json: schema: type: array - items: &812 + items: &813 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -117039,8 +117225,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: - - *493 - *494 + - *495 responses: '200': description: Response @@ -117116,8 +117302,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -117213,8 +117399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *493 - *494 + - *495 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -117368,8 +117554,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: - - *493 - *494 + - *495 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -117379,7 +117565,7 @@ paths: application/json: schema: type: array - items: *812 + items: *813 examples: default: value: @@ -117412,8 +117598,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#create-a-commit-status parameters: - - *493 - *494 + - *495 - name: sha in: path required: true @@ -117467,7 +117653,7 @@ paths: description: Response content: application/json: - schema: *813 + schema: *814 examples: default: value: @@ -117521,8 +117707,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#list-watchers parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -117554,14 +117740,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#get-a-repository-subscription parameters: - - *493 - *494 + - *495 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &814 + schema: &815 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -117629,8 +117815,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#set-a-repository-subscription parameters: - - *493 - *494 + - *495 requestBody: required: false content: @@ -117656,7 +117842,7 @@ paths: description: Response content: application/json: - schema: *814 + schema: *815 examples: default: value: @@ -117683,8 +117869,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#delete-a-repository-subscription parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -117704,8 +117890,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-tags parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -117784,8 +117970,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *493 - *494 + - *495 - name: ref in: path required: true @@ -117821,8 +118007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-teams parameters: - - *493 - *494 + - *495 - *17 - *19 responses: @@ -117832,9 +118018,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *415 + default: *416 headers: Link: *47 '404': *6 @@ -117854,8 +118040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-all-repository-topics parameters: - - *493 - *494 + - *495 - *19 - *17 responses: @@ -117863,7 +118049,7 @@ paths: description: Response content: application/json: - schema: &815 + schema: &816 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -117875,7 +118061,7 @@ paths: required: - names examples: - default: &816 + default: &817 value: names: - octocat @@ -117898,8 +118084,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#replace-all-repository-topics parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -117930,9 +118116,9 @@ paths: description: Response content: application/json: - schema: *815 + schema: *816 examples: - default: *816 + default: *817 '404': *6 '422': *7 x-github: @@ -117953,9 +118139,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-repository-clones parameters: - - *493 - *494 - - &817 + - *495 + - &818 name: per description: The time frame to display results for. in: query @@ -117984,7 +118170,7 @@ paths: example: 128 clones: type: array - items: &818 + items: &819 title: Traffic type: object properties: @@ -118071,8 +118257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-paths parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -118162,8 +118348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-sources parameters: - - *493 - *494 + - *495 responses: '200': description: Response @@ -118223,9 +118409,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-page-views parameters: - - *493 - *494 - - *817 + - *495 + - *818 responses: '200': description: Response @@ -118244,7 +118430,7 @@ paths: example: 3782 views: type: array - items: *818 + items: *819 required: - uniques - count @@ -118321,8 +118507,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#transfer-a-repository parameters: - - *493 - *494 + - *495 requestBody: required: true content: @@ -118358,7 +118544,7 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: default: value: @@ -118595,8 +118781,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: - - *493 - *494 + - *495 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -118619,8 +118805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-vulnerability-alerts parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -118642,8 +118828,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-vulnerability-alerts parameters: - - *493 - *494 + - *495 responses: '204': description: Response @@ -118669,8 +118855,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *493 - *494 + - *495 - name: ref in: path required: true @@ -118762,9 +118948,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *500 + default: *501 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -118805,7 +118991,7 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: default: value: @@ -118915,7 +119101,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &826 + - &827 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -118924,7 +119110,7 @@ paths: schema: type: string example: members - - &831 + - &832 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -118935,7 +119121,7 @@ paths: default: 1 format: int32 example: 1 - - &832 + - &833 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -118977,7 +119163,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &821 + items: &822 allOf: - type: object required: @@ -119052,7 +119238,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: &833 + meta: &834 type: object description: The metadata associated with the creation/updates to the user. @@ -119112,30 +119298,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &822 + '400': &823 description: Bad request content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 - '401': *820 - '403': &823 + schema: *820 + '401': *821 + '403': &824 description: Permission denied - '429': &824 + '429': &825 description: Too many requests content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 - '500': &825 + schema: *820 + '500': &826 description: Internal server error content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 + schema: *820 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119159,7 +119345,7 @@ paths: required: true content: application/json: - schema: &829 + schema: &830 type: object required: - schemas @@ -119219,9 +119405,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *821 + schema: *822 examples: - group: &827 + group: &828 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -119240,13 +119426,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': *822 - '401': *820 - '403': *823 - '409': &830 + '400': *823 + '401': *821 + '403': *824 + '409': &831 description: Duplicate record detected - '429': *824 - '500': *825 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119263,7 +119449,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: - - &828 + - &829 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -119271,22 +119457,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *826 + - *827 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *821 + schema: *822 examples: - default: *827 - '400': *822 - '401': *820 - '403': *823 + default: *828 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '429': *824 - '500': *825 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119305,13 +119491,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: - - *828 + - *829 - *41 requestBody: required: true content: application/json: - schema: *829 + schema: *830 examples: group: summary: Group @@ -119337,17 +119523,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *821 + schema: *822 examples: - group: *827 - groupWithMembers: *827 - '400': *822 - '401': *820 - '403': *823 + group: *828 + groupWithMembers: *828 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '409': *830 - '429': *824 - '500': *825 + '409': *831 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119371,13 +119557,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: - - *828 + - *829 - *41 requestBody: required: true content: application/json: - schema: &840 + schema: &841 type: object required: - Operations @@ -119437,17 +119623,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *821 + schema: *822 examples: - updateGroup: *827 - addMembers: *827 - '400': *822 - '401': *820 - '403': *823 + updateGroup: *828 + addMembers: *828 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '409': *830 - '429': *824 - '500': *825 + '409': *831 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119463,17 +119649,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: - - *828 + - *829 - *41 responses: '204': description: Group was deleted, no content - '400': *822 - '401': *820 - '403': *823 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '429': *824 - '500': *825 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119507,8 +119693,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *831 - *832 + - *833 - *41 responses: '200': @@ -119541,7 +119727,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &835 + items: &836 allOf: - type: object required: @@ -119620,7 +119806,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &834 + roles: &835 type: array description: The roles assigned to the user. items: @@ -119676,7 +119862,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *833 + meta: *834 startIndex: type: integer description: A starting index for the returned page @@ -119713,11 +119899,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *822 - '401': *820 - '403': *823 - '429': *824 - '500': *825 + '400': *823 + '401': *821 + '403': *824 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119741,7 +119927,7 @@ paths: required: true content: application/json: - schema: &838 + schema: &839 type: object required: - schemas @@ -119823,9 +120009,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *834 + roles: *835 examples: - user: &839 + user: &840 summary: User value: schemas: @@ -119872,9 +120058,9 @@ paths: description: User has been created content: application/scim+json: - schema: *835 + schema: *836 examples: - user: &836 + user: &837 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -119900,13 +120086,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: *836 - '400': *822 - '401': *820 - '403': *823 - '409': *830 - '429': *824 - '500': *825 + enterpriseOwner: *837 + '400': *823 + '401': *821 + '403': *824 + '409': *831 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119923,7 +120109,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: - - &837 + - &838 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -119936,15 +120122,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *835 + schema: *836 examples: - default: *836 - '400': *822 - '401': *820 - '403': *823 + default: *837 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '429': *824 - '500': *825 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119995,30 +120181,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: - - *837 + - *838 - *41 requestBody: required: true content: application/json: - schema: *838 + schema: *839 examples: - user: *839 + user: *840 responses: '200': description: User was updated content: application/scim+json: - schema: *835 + schema: *836 examples: - user: *836 - '400': *822 - '401': *820 - '403': *823 + user: *837 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '409': *830 - '429': *824 - '500': *825 + '409': *831 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120059,13 +120245,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: - - *837 + - *838 - *41 requestBody: required: true content: application/json: - schema: *840 + schema: *841 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -120105,18 +120291,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *835 - examples: - userMultiValuedProperties: *836 - userSingleValuedProperties: *836 - disableUser: *836 - '400': *822 - '401': *820 - '403': *823 + schema: *836 + examples: + userMultiValuedProperties: *837 + userSingleValuedProperties: *837 + disableUser: *837 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '409': *830 - '429': *824 - '500': *825 + '409': *831 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120136,17 +120322,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: - - *837 + - *838 - *41 responses: '204': description: User was deleted, no content - '400': *822 - '401': *820 - '403': *823 + '400': *823 + '401': *821 + '403': *824 '404': *6 - '429': *824 - '500': *825 + '429': *825 + '500': *826 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120233,7 +120419,7 @@ paths: example: 1 Resources: type: array - items: &841 + items: &842 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -120464,22 +120650,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &842 + '404': &843 description: Resource not found content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 - '403': &843 + schema: *820 + '403': &844 description: Forbidden content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 - '400': *822 - '429': *824 + schema: *820 + '400': *823 + '429': *825 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -120505,9 +120691,9 @@ paths: description: Response content: application/scim+json: - schema: *841 + schema: *842 examples: - default: &844 + default: &845 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -120530,17 +120716,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *842 - '403': *843 - '500': *825 + '404': *843 + '403': *844 + '500': *826 '409': description: Conflict content: application/json: - schema: *819 + schema: *820 application/scim+json: - schema: *819 - '400': *822 + schema: *820 + '400': *823 requestBody: required: true content: @@ -120638,17 +120824,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *837 + - *838 responses: '200': description: Response content: application/scim+json: - schema: *841 + schema: *842 examples: - default: *844 - '404': *842 - '403': *843 + default: *845 + '404': *843 + '403': *844 '304': *37 x-github: githubCloudOnly: true @@ -120672,18 +120858,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *837 + - *838 responses: '200': description: Response content: application/scim+json: - schema: *841 + schema: *842 examples: - default: *844 + default: *845 '304': *37 - '404': *842 - '403': *843 + '404': *843 + '403': *844 requestBody: required: true content: @@ -120796,19 +120982,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *837 + - *838 responses: '200': description: Response content: application/scim+json: - schema: *841 + schema: *842 examples: - default: *844 + default: *845 '304': *37 - '404': *842 - '403': *843 - '400': *822 + '404': *843 + '403': *844 + '400': *823 '429': description: Response content: @@ -120899,12 +121085,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *837 + - *838 responses: '204': description: Response - '404': *842 - '403': *843 + '404': *843 + '403': *844 '304': *37 x-github: githubCloudOnly: true @@ -121022,7 +121208,7 @@ paths: html_url: type: string format: uri - repository: *292 + repository: *293 score: type: number file_size: @@ -121040,7 +121226,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &845 + text_matches: &846 title: Search Result Text Matches type: array items: @@ -121203,7 +121389,7 @@ paths: enum: - author-date - committer-date - - &846 + - &847 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 @@ -121274,7 +121460,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *543 + properties: *544 nullable: true comment_count: type: integer @@ -121294,7 +121480,7 @@ paths: url: type: string format: uri - verification: *670 + verification: *671 required: - author - committer @@ -121313,7 +121499,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *543 + properties: *544 nullable: true parents: type: array @@ -121326,12 +121512,12 @@ paths: type: string sha: type: string - repository: *292 + repository: *293 score: type: number node_id: type: string - text_matches: *845 + text_matches: *846 required: - sha - node_id @@ -121524,7 +121710,7 @@ paths: - interactions - created - updated - - *846 + - *847 - *17 - *19 - name: advanced_search @@ -121638,11 +121824,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: type: string state_reason: @@ -121652,8 +121838,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *435 - required: *436 + properties: *436 + required: *437 nullable: true comments: type: integer @@ -121667,7 +121853,7 @@ paths: type: string format: date-time nullable: true - text_matches: *845 + text_matches: *846 pull_request: type: object properties: @@ -121700,7 +121886,7 @@ paths: type: string score: type: number - author_association: *228 + author_association: *229 draft: type: boolean repository: *80 @@ -121711,7 +121897,7 @@ paths: timeline_url: type: string format: uri - type: *400 + type: *401 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -121721,17 +121907,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - reactions: *229 + reactions: *230 required: - closed_at - comments @@ -121947,7 +122133,7 @@ paths: enum: - created - updated - - *846 + - *847 - *17 - *19 responses: @@ -121991,7 +122177,7 @@ paths: nullable: true score: type: number - text_matches: *845 + text_matches: *846 required: - id - node_id @@ -122077,7 +122263,7 @@ paths: - forks - help-wanted-issues - updated - - *846 + - *847 - *17 - *19 responses: @@ -122305,8 +122491,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true permissions: type: object @@ -122325,7 +122511,7 @@ paths: - admin - pull - push - text_matches: *845 + text_matches: *846 temp_clone_token: type: string allow_merge_commit: @@ -122626,7 +122812,7 @@ paths: type: string format: uri nullable: true - text_matches: *845 + text_matches: *846 related: type: array nullable: true @@ -122819,7 +123005,7 @@ paths: - followers - repositories - joined - - *846 + - *847 - *17 - *19 responses: @@ -122923,7 +123109,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *845 + text_matches: *846 blog: type: string nullable: true @@ -123002,7 +123188,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &849 + - &850 name: team_id description: The unique identifier of the team. in: path @@ -123014,9 +123200,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '404': *6 x-github: githubCloudOnly: false @@ -123043,7 +123229,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *849 + - *850 requestBody: required: true content: @@ -123106,16 +123292,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '201': description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '404': *6 '422': *15 '403': *29 @@ -123143,7 +123329,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *849 + - *850 responses: '204': description: Response @@ -123172,7 +123358,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *849 + - *850 - *17 - *19 responses: @@ -123182,9 +123368,9 @@ paths: application/json: schema: type: array - items: *394 + items: *395 examples: - default: *395 + default: *396 headers: Link: *47 x-github: @@ -123212,7 +123398,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *849 + - *850 - name: role description: Filters members returned by their role in the team. in: query @@ -123233,9 +123419,9 @@ paths: application/json: schema: type: array - items: *850 + items: *851 examples: - default: *851 + default: *852 headers: Link: *47 '404': *6 @@ -123263,7 +123449,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *849 + - *850 - *151 responses: '204': @@ -123300,7 +123486,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *849 + - *850 - *151 responses: '204': @@ -123340,7 +123526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *849 + - *850 - *151 responses: '204': @@ -123377,16 +123563,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: - - *849 + - *850 - *151 responses: '200': description: Response content: application/json: - schema: *492 + schema: *493 examples: - response-if-user-is-a-team-maintainer: *852 + response-if-user-is-a-team-maintainer: *853 '404': *6 x-github: githubCloudOnly: false @@ -123419,7 +123605,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: - - *849 + - *850 - *151 requestBody: required: false @@ -123445,9 +123631,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *493 examples: - response-if-users-membership-with-team-is-now-pending: *853 + response-if-users-membership-with-team-is-now-pending: *854 '403': description: Forbidden if team synchronization is set up '422': @@ -123481,7 +123667,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: - - *849 + - *850 - *151 responses: '204': @@ -123509,7 +123695,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *849 + - *850 - *17 - *19 responses: @@ -123519,9 +123705,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *429 + default: *430 headers: Link: *47 '404': *6 @@ -123551,15 +123737,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: - - *849 - - *493 + - *850 - *494 + - *495 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *854 + schema: *855 examples: alternative-response-with-extra-repository-information: value: @@ -123709,9 +123895,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: - - *849 - - *493 + - *850 - *494 + - *495 requestBody: required: false content: @@ -123761,9 +123947,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: - - *849 - - *493 + - *850 - *494 + - *495 responses: '204': description: Response @@ -123792,15 +123978,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: - - *849 + - *850 responses: '200': description: Response content: application/json: - schema: *495 + schema: *496 examples: - default: *496 + default: *497 '403': *29 '404': *6 x-github: @@ -123827,7 +124013,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: - - *849 + - *850 requestBody: required: true content: @@ -123884,7 +124070,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *496 examples: default: value: @@ -123915,7 +124101,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *849 + - *850 - *17 - *19 responses: @@ -123925,9 +124111,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - response-if-child-teams-exist: *855 + response-if-child-teams-exist: *856 headers: Link: *47 '404': *6 @@ -123960,7 +124146,7 @@ paths: application/json: schema: oneOf: - - &856 + - &857 title: Private User description: Private User type: object @@ -124163,7 +124349,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &883 + - &884 title: Public User description: Public User type: object @@ -124475,7 +124661,7 @@ paths: description: Response content: application/json: - schema: *856 + schema: *857 examples: default: value: @@ -124678,9 +124864,9 @@ paths: type: integer codespaces: type: array - items: *405 + items: *406 examples: - default: *406 + default: *407 '304': *37 '500': *40 '401': *25 @@ -124819,17 +125005,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '401': *25 '403': *29 '404': *6 @@ -124873,7 +125059,7 @@ paths: type: integer secrets: type: array - items: &857 + items: &858 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -124913,7 +125099,7 @@ paths: - visibility - selected_repositories_url examples: - default: *599 + default: *600 headers: Link: *47 x-github: @@ -124983,13 +125169,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: - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *857 + schema: *858 examples: default: value: @@ -125019,7 +125205,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: - - *302 + - *303 requestBody: required: true content: @@ -125064,7 +125250,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -125092,7 +125278,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: - - *302 + - *303 responses: '204': description: Response @@ -125117,7 +125303,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: - - *302 + - *303 responses: '200': description: Response @@ -125133,9 +125319,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *344 + default: *345 '401': *25 '403': *29 '404': *6 @@ -125160,7 +125346,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: - - *302 + - *303 requestBody: required: true content: @@ -125214,7 +125400,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: - - *302 + - *303 - name: repository_id in: path required: true @@ -125247,7 +125433,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: - - *302 + - *303 - name: repository_id in: path required: true @@ -125279,15 +125465,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: - - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '304': *37 '500': *40 '401': *25 @@ -125313,7 +125499,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: - - *407 + - *408 requestBody: required: false content: @@ -125343,9 +125529,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '401': *25 '403': *29 '404': *6 @@ -125367,7 +125553,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: - - *407 + - *408 responses: '202': *39 '304': *37 @@ -125396,13 +125582,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: - - *407 + - *408 responses: '202': description: Response content: application/json: - schema: &858 + schema: &859 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -125443,7 +125629,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &859 + default: &860 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -125475,7 +125661,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *407 + - *408 - name: export_id in: path required: true @@ -125488,9 +125674,9 @@ paths: description: Response content: application/json: - schema: *858 + schema: *859 examples: - default: *859 + default: *860 '404': *6 x-github: githubCloudOnly: false @@ -125511,7 +125697,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *407 + - *408 responses: '200': description: Response @@ -125527,9 +125713,9 @@ paths: type: integer machines: type: array - items: *860 + items: *861 examples: - default: *861 + default: *862 '304': *37 '500': *40 '401': *25 @@ -125558,7 +125744,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: - - *407 + - *408 requestBody: required: true content: @@ -125608,13 +125794,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *498 + repository: *499 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *597 - required: *598 + properties: *598 + required: *599 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -126388,15 +126574,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: - - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '304': *37 '500': *40 '400': *14 @@ -126428,15 +126614,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: - - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *596 + default: *597 '500': *40 '401': *25 '403': *29 @@ -126466,9 +126652,9 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: - default: &873 + default: &874 value: - id: 197 name: hello_docker @@ -126569,7 +126755,7 @@ paths: application/json: schema: type: array - items: &862 + items: &863 title: Email description: Email type: object @@ -126634,9 +126820,9 @@ paths: application/json: schema: type: array - items: *862 + items: *863 examples: - default: &875 + default: &876 value: - email: octocat@github.com verified: true @@ -126711,7 +126897,7 @@ paths: application/json: schema: type: array - items: *862 + items: *863 examples: default: value: @@ -126967,7 +127153,7 @@ paths: application/json: schema: type: array - items: &863 + items: &864 title: GPG Key description: A unique encryption key type: object @@ -127098,7 +127284,7 @@ paths: - subkeys - revoked examples: - default: &893 + default: &894 value: - id: 3 name: Octocat's GPG Key @@ -127183,9 +127369,9 @@ paths: description: Response content: application/json: - schema: *863 + schema: *864 examples: - default: &864 + default: &865 value: id: 3 name: Octocat's GPG Key @@ -127242,7 +127428,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: - - &865 + - &866 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -127254,9 +127440,9 @@ paths: description: Response content: application/json: - schema: *863 + schema: *864 examples: - default: *864 + default: *865 '404': *6 '304': *37 '403': *29 @@ -127279,7 +127465,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: - - *865 + - *866 responses: '204': description: Response @@ -127481,7 +127667,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *287 + default: *288 headers: Link: *47 '404': *6 @@ -127507,7 +127693,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *286 + - *287 responses: '204': description: Response @@ -127533,7 +127719,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *286 + - *287 responses: '204': description: Response @@ -127567,12 +127753,12 @@ paths: application/json: schema: anyOf: - - *392 + - *393 - type: object properties: {} additionalProperties: false examples: - default: *393 + default: *394 '204': description: Response when there are no restrictions x-github: @@ -127596,7 +127782,7 @@ paths: required: true content: application/json: - schema: *680 + schema: *681 examples: default: value: @@ -127607,7 +127793,7 @@ paths: description: Response content: application/json: - schema: *392 + schema: *393 examples: default: value: @@ -127688,7 +127874,7 @@ paths: - closed - all default: open - - *403 + - *404 - name: sort description: What to sort results by. in: query @@ -127701,7 +127887,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - *17 - *19 responses: @@ -127711,9 +127897,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *404 + default: *405 headers: Link: *47 '404': *6 @@ -127746,7 +127932,7 @@ paths: application/json: schema: type: array - items: &866 + items: &867 title: Key description: Key type: object @@ -127847,9 +128033,9 @@ paths: description: Response content: application/json: - schema: *866 + schema: *867 examples: - default: &867 + default: &868 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -127882,15 +128068,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: - - *733 + - *734 responses: '200': description: Response content: application/json: - schema: *866 + schema: *867 examples: - default: *867 + default: *868 '404': *6 '304': *37 '403': *29 @@ -127913,7 +128099,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: - - *733 + - *734 responses: '204': description: Response @@ -127946,7 +128132,7 @@ paths: application/json: schema: type: array - items: &868 + items: &869 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -128003,7 +128189,7 @@ paths: - id - type - login - plan: *249 + plan: *250 required: - billing_cycle - next_billing_date @@ -128014,7 +128200,7 @@ paths: - account - plan examples: - default: &869 + default: &870 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -128076,9 +128262,9 @@ paths: application/json: schema: type: array - items: *868 + items: *869 examples: - default: *869 + default: *870 headers: Link: *47 '304': *37 @@ -128118,7 +128304,7 @@ paths: application/json: schema: type: array - items: *408 + items: *409 examples: default: value: @@ -128232,7 +128418,7 @@ paths: description: Response content: application/json: - schema: *408 + schema: *409 examples: default: value: @@ -128319,9 +128505,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *408 + schema: *409 examples: - default: &870 + default: &871 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -128368,9 +128554,9 @@ paths: processed asynchronously. content: application/json: - schema: *408 + schema: *409 examples: - default: *870 + default: *871 '403': *29 '404': *6 '422': *15 @@ -128399,7 +128585,7 @@ paths: application/json: schema: type: array - items: *410 + items: *411 examples: default: value: @@ -128652,7 +128838,7 @@ paths: description: Response content: application/json: - schema: *410 + schema: *411 examples: default: value: @@ -128832,7 +129018,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#get-a-user-migration-status parameters: - - *411 + - *412 - name: exclude in: query required: false @@ -128845,7 +129031,7 @@ paths: description: Response content: application/json: - schema: *410 + schema: *411 examples: default: value: @@ -129039,7 +129225,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#download-a-user-migration-archive parameters: - - *411 + - *412 responses: '302': description: Response @@ -129065,7 +129251,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#delete-a-user-migration-archive parameters: - - *411 + - *412 responses: '204': description: Response @@ -129094,8 +129280,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - - *411 - - *871 + - *412 + - *872 responses: '204': description: Response @@ -129119,7 +129305,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *411 + - *412 - *17 - *19 responses: @@ -129166,7 +129352,7 @@ paths: type: array items: *75 examples: - default: *262 + default: *263 headers: Link: *47 '304': *37 @@ -129208,7 +129394,7 @@ paths: - docker - nuget - container - - *872 + - *873 - *19 - *17 responses: @@ -129218,10 +129404,10 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: - default: *873 - '400': *874 + default: *874 + '400': *875 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -129241,16 +129427,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: - - *418 - *419 + - *420 responses: '200': description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: &894 + default: &895 value: id: 40201 name: octo-name @@ -129363,8 +129549,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: - - *418 - *419 + - *420 responses: '204': description: Response @@ -129394,8 +129580,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: - - *418 - *419 + - *420 - name: token description: package token schema: @@ -129427,8 +129613,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: - - *418 - *419 + - *420 - *19 - *17 - name: state @@ -129448,7 +129634,7 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: default: value: @@ -129497,15 +129683,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: - - *418 - *419 - - *421 + - *420 + - *422 responses: '200': description: Response content: application/json: - schema: *420 + schema: *421 examples: default: value: @@ -129541,9 +129727,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: - - *418 - *419 - - *421 + - *420 + - *422 responses: '204': description: Response @@ -129573,9 +129759,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: - - *418 - *419 - - *421 + - *420 + - *422 responses: '204': description: Response @@ -129612,9 +129798,9 @@ paths: application/json: schema: type: array - items: *862 + items: *863 examples: - default: *875 + default: *876 headers: Link: *47 '304': *37 @@ -129727,7 +129913,7 @@ paths: type: array items: *80 examples: - default: &882 + default: &883 summary: Default response value: - id: 1296269 @@ -130031,9 +130217,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *500 + default: *501 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -130072,9 +130258,9 @@ paths: application/json: schema: type: array - items: *683 + items: *684 examples: - default: *876 + default: *877 headers: Link: *47 '304': *37 @@ -130097,7 +130283,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *396 + - *397 responses: '204': description: Response @@ -130121,7 +130307,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *396 + - *397 responses: '204': description: Response @@ -130154,7 +130340,7 @@ paths: application/json: schema: type: array - items: &877 + items: &878 title: Social account description: Social media account type: object @@ -130169,7 +130355,7 @@ paths: - provider - url examples: - default: &878 + default: &879 value: - provider: twitter url: https://twitter.com/github @@ -130231,9 +130417,9 @@ paths: application/json: schema: type: array - items: *877 + items: *878 examples: - default: *878 + default: *879 '422': *15 '304': *37 '404': *6 @@ -130320,7 +130506,7 @@ paths: application/json: schema: type: array - items: &879 + items: &880 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -130340,7 +130526,7 @@ paths: - title - created_at examples: - default: &908 + default: &909 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -130404,9 +130590,9 @@ paths: description: Response content: application/json: - schema: *879 + schema: *880 examples: - default: &880 + default: &881 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -130436,7 +130622,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: - - &881 + - &882 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -130448,9 +130634,9 @@ paths: description: Response content: application/json: - schema: *879 + schema: *880 examples: - default: *880 + default: *881 '404': *6 '304': *37 '403': *29 @@ -130473,7 +130659,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: - - *881 + - *882 responses: '204': description: Response @@ -130502,7 +130688,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: - - &909 + - &910 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 @@ -130527,11 +130713,11 @@ paths: type: array items: *80 examples: - default-response: *882 + default-response: *883 application/vnd.github.v3.star+json: schema: type: array - items: &910 + items: &911 title: Starred Repository description: Starred Repository type: object @@ -130687,8 +130873,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: - - *493 - *494 + - *495 responses: '204': description: Response if this repository is starred by you @@ -130716,8 +130902,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: - - *493 - *494 + - *495 responses: '204': description: Response @@ -130741,8 +130927,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: - - *493 - *494 + - *495 responses: '204': description: Response @@ -130775,9 +130961,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *429 + default: *430 headers: Link: *47 '304': *37 @@ -130814,7 +131000,7 @@ paths: application/json: schema: type: array - items: *485 + items: *486 examples: default: value: @@ -130892,7 +131078,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#get-a-user-using-their-id parameters: - - *251 + - *252 responses: '200': description: Response @@ -130900,10 +131086,10 @@ paths: application/json: schema: oneOf: - - *856 - - *883 + - *857 + - *884 examples: - default-response: &887 + default-response: &888 summary: Default response value: login: octocat @@ -130938,7 +131124,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &888 + response-with-git-hub-plan-information: &889 summary: Response with GitHub plan information value: login: octocat @@ -130995,14 +131181,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: - - &885 + - &886 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *434 + - *435 requestBody: required: true description: Details of the draft item to create in the project. @@ -131036,9 +131222,9 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: - draft_issue: *441 + draft_issue: *442 '304': *37 '403': *29 '401': *25 @@ -131061,7 +131247,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *884 + - *885 - *17 responses: '200': @@ -131096,8 +131282,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: - - *885 - - *434 + - *886 + - *435 requestBody: required: true content: @@ -131168,17 +131354,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *886 + schema: *887 examples: table_view: summary: Response for creating a table view - value: *445 + value: *446 board_view: summary: Response for creating a board view with filter - value: *445 + value: *446 roadmap_view: summary: Response for creating a roadmap view - value: *445 + value: *446 '304': *37 '403': *29 '401': *25 @@ -131220,11 +131406,11 @@ paths: application/json: schema: oneOf: - - *856 - - *883 + - *857 + - *884 examples: - default-response: *887 - response-with-git-hub-plan-information: *888 + default-response: *888 + response-with-git-hub-plan-information: *889 '404': *6 x-github: githubCloudOnly: false @@ -131274,8 +131460,8 @@ paths: required: - subject_digests examples: - default: *889 - withPredicateType: *890 + default: *890 + withPredicateType: *891 responses: '200': description: Response @@ -131314,7 +131500,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *891 + default: *892 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -131503,12 +131689,12 @@ paths: initiator: type: string examples: - default: *539 + default: *540 '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -131570,7 +131756,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *340 + items: *341 examples: default: summary: Example response for listing user copilot spaces @@ -131782,9 +131968,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: &892 + default: &893 summary: Example response for a user copilot space value: id: 42 @@ -131883,9 +132069,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *892 + default: *893 '403': *29 '404': *6 x-github: @@ -132006,9 +132192,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *892 + default: *893 '403': *29 '404': *6 '422': *15 @@ -132085,7 +132271,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *342 + items: *343 examples: default: value: @@ -132228,7 +132414,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: default: value: @@ -132339,7 +132525,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: default: value: @@ -132469,7 +132655,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *343 + items: *344 examples: default: value: @@ -132561,7 +132747,7 @@ paths: description: Resource created content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -132577,7 +132763,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -132630,7 +132816,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -132697,7 +132883,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -132774,9 +132960,9 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: - default: *873 + default: *874 '403': *29 '401': *25 x-github: @@ -132809,7 +132995,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -132882,7 +133068,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -132969,7 +133155,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -133117,7 +133303,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-a-user parameters: - *151 - - *238 + - *239 - *17 - *19 responses: @@ -133127,9 +133313,9 @@ paths: application/json: schema: type: array - items: *239 + items: *240 examples: - default: *240 + default: *241 headers: Link: *47 '422': *15 @@ -133160,9 +133346,9 @@ paths: application/json: schema: type: array - items: *863 + items: *864 examples: - default: *893 + default: *894 headers: Link: *47 x-github: @@ -133266,7 +133452,7 @@ paths: application/json: schema: *22 examples: - default: *390 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -133351,7 +133537,7 @@ paths: type: array items: *75 examples: - default: *262 + default: *263 headers: Link: *47 x-github: @@ -133390,7 +133576,7 @@ paths: - docker - nuget - container - - *872 + - *873 - *151 - *19 - *17 @@ -133401,12 +133587,12 @@ paths: application/json: schema: type: array - items: *416 + items: *417 examples: - default: *873 + default: *874 '403': *29 '401': *25 - '400': *874 + '400': *875 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -133426,17 +133612,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-a-user parameters: - - *418 - *419 + - *420 - *151 responses: '200': description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *894 + default: *895 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -133457,8 +133643,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-a-user parameters: - - *418 - *419 + - *420 - *151 responses: '204': @@ -133491,8 +133677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-a-user parameters: - - *418 - *419 + - *420 - *151 - name: token description: package token @@ -133525,8 +133711,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: - - *418 - *419 + - *420 - *151 responses: '200': @@ -133535,7 +133721,7 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: default: value: @@ -133593,16 +133779,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: - - *418 - *419 - - *421 + - *420 + - *422 - *151 responses: '200': description: Response content: application/json: - schema: *420 + schema: *421 examples: default: value: @@ -133637,10 +133823,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-a-user parameters: - - *418 - *419 + - *420 - *151 - - *421 + - *422 responses: '204': description: Response @@ -133672,10 +133858,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-a-user parameters: - - *418 - *419 + - *420 - *151 - - *421 + - *422 responses: '204': description: Response @@ -133716,9 +133902,9 @@ paths: application/json: schema: type: array - items: *432 + items: *433 examples: - default: *433 + default: *434 headers: Link: *47 '304': *37 @@ -133740,16 +133926,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-user parameters: - - *434 + - *435 - *151 responses: '200': description: Response content: application/json: - schema: *432 + schema: *433 examples: - default: *433 + default: *434 headers: Link: *47 '304': *37 @@ -133771,7 +133957,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-user parameters: - - *434 + - *435 - *151 - *17 - *110 @@ -133783,9 +133969,9 @@ paths: application/json: schema: type: array - items: *438 + items: *439 examples: - default: *895 + default: *896 headers: Link: *47 '304': *37 @@ -133807,7 +133993,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-field-to-user-owned-project parameters: - *151 - - *434 + - *435 requestBody: required: true content: @@ -133845,7 +134031,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *896 + items: *897 required: - name - data_type @@ -133861,7 +134047,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *897 + iteration_configuration: *898 required: - name - data_type @@ -133883,20 +134069,20 @@ paths: value: name: Due date data_type: date - single_select_field: *898 - iteration_field: *899 + single_select_field: *899 + iteration_field: *900 responses: '201': description: Response content: application/json: - schema: *438 + schema: *439 examples: - text_field: *900 - number_field: *901 - date_field: *902 - single_select_field: *903 - iteration_field: *904 + text_field: *901 + number_field: *902 + date_field: *903 + single_select_field: *904 + iteration_field: *905 '304': *37 '403': *29 '401': *25 @@ -133917,17 +134103,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - - *434 - - *905 + - *435 + - *906 - *151 responses: '200': description: Response content: application/json: - schema: *438 + schema: *439 examples: - default: *906 + default: *907 headers: Link: *47 '304': *37 @@ -133950,7 +134136,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: - - *434 + - *435 - *151 - *110 - *111 @@ -133983,9 +134169,9 @@ paths: application/json: schema: type: array - items: *442 + items: *443 examples: - default: *443 + default: *444 headers: Link: *47 '304': *37 @@ -134007,7 +134193,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-user-owned-project parameters: - *151 - - *434 + - *435 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -134077,22 +134263,22 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *441 + value: *442 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *441 + value: *442 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *441 + value: *442 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *441 + value: *442 '304': *37 '403': *29 '401': *25 @@ -134112,9 +134298,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: - - *434 + - *435 - *151 - - *444 + - *445 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -134134,9 +134320,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: *443 + default: *444 headers: Link: *47 '304': *37 @@ -134157,9 +134343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-user parameters: - - *434 + - *435 - *151 - - *444 + - *445 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -134229,13 +134415,13 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - text_field: *443 - number_field: *443 - date_field: *443 - single_select_field: *443 - iteration_field: *443 + text_field: *444 + number_field: *444 + date_field: *444 + single_select_field: *444 + iteration_field: *444 '401': *25 '403': *29 '404': *6 @@ -134255,9 +134441,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-user parameters: - - *434 + - *435 - *151 - - *444 + - *445 responses: '204': description: Response @@ -134279,9 +134465,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: - - *434 + - *435 - *151 - - *907 + - *908 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -134307,9 +134493,9 @@ paths: application/json: schema: type: array - items: *442 + items: *443 examples: - default: *443 + default: *444 headers: Link: *47 '304': *37 @@ -134347,7 +134533,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -134422,7 +134608,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -134528,9 +134714,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *429 + default: *430 headers: Link: *47 x-github: @@ -134560,9 +134746,9 @@ paths: application/json: schema: type: array - items: *877 + items: *878 examples: - default: *878 + default: *879 headers: Link: *47 x-github: @@ -134592,9 +134778,9 @@ paths: application/json: schema: type: array - items: *879 + items: *880 examples: - default: *908 + default: *909 headers: Link: *47 x-github: @@ -134619,7 +134805,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *151 - - *909 + - *910 - *112 - *17 - *19 @@ -134631,11 +134817,11 @@ paths: schema: anyOf: - type: array - items: *910 + items: *911 - type: array items: *80 examples: - default-response: *882 + default-response: *883 headers: Link: *47 x-github: @@ -134664,9 +134850,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *429 + default: *430 headers: Link: *47 x-github: @@ -134794,7 +134980,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &911 + enterprise: &912 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -134852,7 +135038,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &912 + installation: &913 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -134871,7 +135057,7 @@ x-webhooks: required: - id - node_id - organization: &913 + organization: &914 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -134931,13 +135117,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &914 + repository: &915 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &953 + properties: &954 id: description: Unique identifier of the repository example: 42 @@ -134957,8 +135143,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true organization: title: Simple User @@ -135621,7 +135807,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &954 + required: &955 - archive_url - assignees_url - blobs_url @@ -135772,10 +135958,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -135851,11 +136037,11 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - rule: &915 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + rule: &916 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) @@ -136078,11 +136264,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - rule: *915 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + rule: *916 sender: *4 required: - action @@ -136265,11 +136451,11 @@ x-webhooks: - everyone required: - from - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - rule: *915 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + rule: *916 sender: *4 required: - action @@ -136342,7 +136528,7 @@ x-webhooks: required: true content: application/json: - schema: &937 + schema: &938 title: Exemption request cancellation event type: object properties: @@ -136350,11 +136536,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - exemption_request: &916 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + exemption_request: &917 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -136658,7 +136844,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &917 + items: &918 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -136768,7 +136954,7 @@ x-webhooks: required: true content: application/json: - schema: &938 + schema: &939 title: Exemption request completed event type: object properties: @@ -136776,11 +136962,11 @@ x-webhooks: type: string enum: - completed - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - exemption_request: *916 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + exemption_request: *917 sender: *4 required: - action @@ -136852,7 +137038,7 @@ x-webhooks: required: true content: application/json: - schema: &935 + schema: &936 title: Exemption request created event type: object properties: @@ -136860,11 +137046,11 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - exemption_request: *916 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + exemption_request: *917 sender: *4 required: - action @@ -136936,7 +137122,7 @@ x-webhooks: required: true content: application/json: - schema: &939 + schema: &940 title: Exemption response dismissed event type: object properties: @@ -136944,12 +137130,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - exemption_request: *916 - exemption_response: *917 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + exemption_request: *917 + exemption_response: *918 sender: *4 required: - action @@ -137023,7 +137209,7 @@ x-webhooks: required: true content: application/json: - schema: &936 + schema: &937 title: Exemption response submitted event type: object properties: @@ -137031,12 +137217,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - exemption_request: *916 - exemption_response: *917 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + exemption_request: *917 + exemption_response: *918 sender: *4 required: - action @@ -137120,7 +137306,7 @@ x-webhooks: type: string enum: - completed - check_run: &919 + check_run: &920 title: CheckRun description: A check performed on the code of a given code change type: object @@ -137173,8 +137359,8 @@ x-webhooks: type: string pull_requests: type: array - items: *236 - repository: *292 + items: *237 + repository: *293 status: example: completed type: string @@ -137211,7 +137397,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *918 + deployment: *919 details_url: example: https://example.com type: string @@ -137261,7 +137447,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *236 + items: *237 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -137296,10 +137482,10 @@ x-webhooks: - output - app - pull_requests - installation: *912 - enterprise: *911 - organization: *913 - repository: *914 + installation: *913 + enterprise: *912 + organization: *914 + repository: *915 sender: *4 required: - check_run @@ -137690,11 +137876,11 @@ x-webhooks: type: string enum: - created - check_run: *919 - installation: *912 - enterprise: *911 - organization: *913 - repository: *914 + check_run: *920 + installation: *913 + enterprise: *912 + organization: *914 + repository: *915 sender: *4 required: - check_run @@ -138088,11 +138274,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *919 - installation: *912 - enterprise: *911 - organization: *913 - repository: *914 + check_run: *920 + installation: *913 + enterprise: *912 + organization: *914 + repository: *915 requested_action: description: The action requested by the user. type: object @@ -138495,11 +138681,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *919 - installation: *912 - enterprise: *911 - organization: *913 - repository: *914 + check_run: *920 + installation: *913 + enterprise: *912 + organization: *914 + repository: *915 sender: *4 required: - check_run @@ -139469,10 +139655,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -140171,10 +140357,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -140867,10 +141053,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -141036,7 +141222,7 @@ x-webhooks: required: - login - id - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -141181,20 +141367,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &920 + commit_oid: &921 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: *911 - installation: *912 - organization: *913 - ref: &921 + enterprise: *912 + installation: *913 + organization: *914 + ref: &922 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: *914 + repository: *915 sender: *4 required: - action @@ -141359,7 +141545,7 @@ x-webhooks: required: - login - id - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -141589,12 +141775,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *920 - enterprise: *911 - installation: *912 - organization: *913 - ref: *921 - repository: *914 + commit_oid: *921 + enterprise: *912 + installation: *913 + organization: *914 + ref: *922 + repository: *915 sender: *4 required: - action @@ -141689,7 +141875,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -141860,12 +142046,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *920 - enterprise: *911 - installation: *912 - organization: *913 - ref: *921 - repository: *914 + commit_oid: *921 + enterprise: *912 + installation: *913 + organization: *914 + ref: *922 + repository: *915 sender: *4 required: - action @@ -142031,7 +142217,7 @@ x-webhooks: required: - login - id - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -142197,12 +142383,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *920 - enterprise: *911 - installation: *912 - organization: *913 - ref: *921 - repository: *914 + commit_oid: *921 + enterprise: *912 + installation: *913 + organization: *914 + ref: *922 + repository: *915 sender: *4 required: - action @@ -142301,7 +142487,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -142476,16 +142662,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *914 + repository: *915 sender: *4 required: - action @@ -142582,7 +142768,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -142722,12 +142908,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *920 - enterprise: *911 - installation: *912 - organization: *913 - ref: *921 - repository: *914 + commit_oid: *921 + enterprise: *912 + installation: *913 + organization: *914 + ref: *922 + repository: *915 sender: *4 required: - action @@ -142893,7 +143079,7 @@ x-webhooks: required: - login - id - dismissed_comment: *568 + dismissed_comment: *569 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -143038,10 +143224,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -143296,10 +143482,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -143379,18 +143565,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *913 - pusher_type: &922 + organization: *914 + pusher_type: &923 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &923 + ref: &924 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -143400,7 +143586,7 @@ x-webhooks: enum: - tag - branch - repository: *914 + repository: *915 sender: *4 required: - ref @@ -143483,9 +143669,9 @@ x-webhooks: enum: - created definition: *164 - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 required: - action @@ -143570,9 +143756,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 required: - action @@ -143650,9 +143836,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *164 - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 required: - action @@ -143730,9 +143916,9 @@ x-webhooks: enum: - updated definition: *164 - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 required: - action @@ -143809,10 +143995,10 @@ x-webhooks: type: string enum: - updated - enterprise: *911 - installation: *912 - repository: *914 - organization: *913 + enterprise: *912 + installation: *913 + repository: *915 + organization: *914 sender: *4 new_property_values: type: array @@ -143897,18 +144083,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *911 - installation: *912 - organization: *913 - pusher_type: *922 - ref: *923 + enterprise: *912 + installation: *913 + organization: *914 + pusher_type: *923 + ref: *924 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *914 + repository: *915 sender: *4 required: - ref @@ -143988,11 +144174,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144072,11 +144258,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144157,11 +144343,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144242,11 +144428,11 @@ x-webhooks: type: string enum: - created - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144325,11 +144511,11 @@ x-webhooks: type: string enum: - dismissed - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144408,11 +144594,11 @@ x-webhooks: type: string enum: - fixed - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144492,11 +144678,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144575,11 +144761,11 @@ x-webhooks: type: string enum: - reopened - alert: *632 - installation: *912 - organization: *913 - enterprise: *911 - repository: *914 + alert: *633 + installation: *913 + organization: *914 + enterprise: *912 + repository: *915 sender: *4 required: - action @@ -144656,9 +144842,9 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - key: &924 + enterprise: *912 + installation: *913 + key: &925 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -144694,8 +144880,8 @@ x-webhooks: - verified - created_at - read_only - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -144772,11 +144958,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - key: *924 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + key: *925 + organization: *914 + repository: *915 sender: *4 required: - action @@ -145332,12 +145518,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - workflow: &930 + workflow: &931 title: Workflow type: object nullable: true @@ -146078,15 +146264,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *925 - required: *926 + properties: *926 + required: *927 nullable: true pull_requests: type: array - items: *754 - repository: *914 - organization: *913 - installation: *912 + items: *755 + repository: *915 + organization: *914 + installation: *913 sender: *4 responses: '200': @@ -146157,7 +146343,7 @@ x-webhooks: type: string enum: - approved - approver: &927 + approver: &928 type: object properties: avatar_url: @@ -146200,11 +146386,11 @@ x-webhooks: type: string comment: type: string - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - reviewers: &928 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + reviewers: &929 type: array items: type: object @@ -146283,7 +146469,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &929 + workflow_job_run: &930 type: object properties: conclusion: @@ -147014,18 +147200,18 @@ x-webhooks: type: string enum: - rejected - approver: *927 + approver: *928 comment: type: string - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - reviewers: *928 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + reviewers: *929 sender: *4 since: type: string - workflow_job_run: *929 + workflow_job_run: *930 workflow_job_runs: type: array items: @@ -147729,13 +147915,13 @@ x-webhooks: type: string enum: - requested - enterprise: *911 + enterprise: *912 environment: type: string - installation: *912 - organization: *913 - repository: *914 - requestor: &940 + installation: *913 + organization: *914 + repository: *915 + requestor: &941 title: User type: object nullable: true @@ -149624,12 +149810,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - workflow: *930 + workflow: *931 workflow_run: title: Deployment Workflow Run type: object @@ -150309,7 +150495,7 @@ x-webhooks: type: string enum: - answered - answer: &933 + answer: &934 type: object properties: author_association: @@ -150466,11 +150652,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -150597,11 +150783,11 @@ x-webhooks: - from required: - category - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -150684,11 +150870,11 @@ x-webhooks: type: string enum: - closed - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -150770,7 +150956,7 @@ x-webhooks: type: string enum: - created - comment: &932 + comment: &933 type: object properties: author_association: @@ -150927,11 +151113,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151014,12 +151200,12 @@ x-webhooks: type: string enum: - deleted - comment: *932 - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + comment: *933 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151114,12 +151300,12 @@ x-webhooks: - from required: - body - comment: *932 - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + comment: *933 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151203,11 +151389,11 @@ x-webhooks: type: string enum: - created - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151289,11 +151475,11 @@ x-webhooks: type: string enum: - deleted - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151393,11 +151579,11 @@ x-webhooks: type: string required: - from - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151479,10 +151665,10 @@ x-webhooks: type: string enum: - labeled - discussion: *931 - enterprise: *911 - installation: *912 - label: &934 + discussion: *932 + enterprise: *912 + installation: *913 + label: &935 title: Label type: object properties: @@ -151514,8 +151700,8 @@ x-webhooks: - color - default - description - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151598,11 +151784,11 @@ x-webhooks: type: string enum: - locked - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151684,11 +151870,11 @@ x-webhooks: type: string enum: - pinned - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151770,11 +151956,11 @@ x-webhooks: type: string enum: - reopened - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151859,16 +152045,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *931 - new_repository: *914 + new_discussion: *932 + new_repository: *915 required: - new_discussion - new_repository - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -151951,10 +152137,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *931 - old_answer: *933 - organization: *913 - repository: *914 + discussion: *932 + old_answer: *934 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152036,12 +152222,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *931 - enterprise: *911 - installation: *912 - label: *934 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152124,11 +152310,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152210,11 +152396,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *931 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + discussion: *932 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -152283,7 +152469,7 @@ x-webhooks: required: true content: application/json: - schema: *935 + schema: *936 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152346,7 +152532,7 @@ x-webhooks: required: true content: application/json: - schema: *936 + schema: *937 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152409,7 +152595,7 @@ x-webhooks: required: true content: application/json: - schema: *937 + schema: *938 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152472,7 +152658,7 @@ x-webhooks: required: true content: application/json: - schema: *935 + schema: *936 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152535,7 +152721,7 @@ x-webhooks: required: true content: application/json: - schema: *936 + schema: *937 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152601,7 +152787,7 @@ x-webhooks: required: true content: application/json: - schema: *937 + schema: *938 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152667,7 +152853,7 @@ x-webhooks: required: true content: application/json: - schema: *938 + schema: *939 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152733,7 +152919,7 @@ x-webhooks: required: true content: application/json: - schema: *935 + schema: *936 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152799,7 +152985,7 @@ x-webhooks: required: true content: application/json: - schema: *939 + schema: *940 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152865,7 +153051,7 @@ x-webhooks: required: true content: application/json: - schema: *936 + schema: *937 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152930,7 +153116,7 @@ x-webhooks: required: true content: application/json: - schema: *937 + schema: *938 responses: '200': description: Return a 200 status to indicate that the data was received @@ -152995,7 +153181,7 @@ x-webhooks: required: true content: application/json: - schema: *938 + schema: *939 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153060,7 +153246,7 @@ x-webhooks: required: true content: application/json: - schema: *935 + schema: *936 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153125,7 +153311,7 @@ x-webhooks: required: true content: application/json: - schema: *939 + schema: *940 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153191,7 +153377,7 @@ x-webhooks: required: true content: application/json: - schema: *936 + schema: *937 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153258,7 +153444,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *911 + enterprise: *912 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -153918,9 +154104,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *912 - organization: *913 - repository: *914 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - forkee @@ -154066,9 +154252,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pages: description: The pages that were updated. type: array @@ -154105,7 +154291,7 @@ x-webhooks: - action - sha - html_url - repository: *914 + repository: *915 sender: *4 required: - pages @@ -154181,10 +154367,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories: &941 + organization: *914 + repositories: &942 description: An array of repository objects that the installation can access. type: array @@ -154210,8 +154396,8 @@ x-webhooks: - name - full_name - private - repository: *914 - requester: *940 + repository: *915 + requester: *941 sender: *4 required: - action @@ -154286,11 +154472,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories: *941 - repository: *914 + organization: *914 + repositories: *942 + repository: *915 requester: nullable: true sender: *4 @@ -154366,11 +154552,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories: *941 - repository: *914 + organization: *914 + repositories: *942 + repository: *915 requester: nullable: true sender: *4 @@ -154446,10 +154632,10 @@ x-webhooks: type: string enum: - added - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories_added: &942 + organization: *914 + repositories_added: &943 description: An array of repository objects, which were added to the installation. type: array @@ -154495,15 +154681,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *914 - repository_selection: &943 + repository: *915 + repository_selection: &944 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *940 + requester: *941 sender: *4 required: - action @@ -154582,10 +154768,10 @@ x-webhooks: type: string enum: - removed - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories_added: *942 + organization: *914 + repositories_added: *943 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -154612,9 +154798,9 @@ x-webhooks: - name - full_name - private - repository: *914 - repository_selection: *943 - requester: *940 + repository: *915 + repository_selection: *944 + requester: *941 sender: *4 required: - action @@ -154693,11 +154879,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories: *941 - repository: *914 + organization: *914 + repositories: *942 + repository: *915 requester: nullable: true sender: *4 @@ -154876,10 +155062,10 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 target_type: type: string @@ -154958,11 +155144,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *911 + enterprise: *912 installation: *22 - organization: *913 - repositories: *941 - repository: *914 + organization: *914 + repositories: *942 + repository: *915 requester: nullable: true sender: *4 @@ -155086,8 +155272,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 reactions: title: Reactions type: object @@ -155136,15 +155322,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *716 - required: *717 + properties: *717 + required: *718 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *718 - required: *719 + properties: *719 + required: *720 nullable: true user: title: User @@ -155229,8 +155415,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -156019,8 +156205,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156036,7 +156222,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -156369,8 +156555,8 @@ x-webhooks: - state - locked - assignee - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -156450,7 +156636,7 @@ x-webhooks: type: string enum: - deleted - comment: &944 + comment: &945 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -156607,15 +156793,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *716 - required: *717 + properties: *717 + required: *718 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *718 - required: *719 + properties: *719 + required: *720 nullable: true required: - url @@ -156630,8 +156816,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -157416,8 +157602,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157433,7 +157619,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -157768,8 +157954,8 @@ x-webhooks: - state - locked - assignee - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -157849,7 +158035,7 @@ x-webhooks: type: string enum: - edited - changes: &973 + changes: &974 description: The changes to the comment. type: object properties: @@ -157861,9 +158047,9 @@ x-webhooks: type: string required: - from - comment: *944 - enterprise: *911 - installation: *912 + comment: *945 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -158651,8 +158837,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158668,7 +158854,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -159001,8 +159187,8 @@ x-webhooks: - state - locked - assignee - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -159083,9 +159269,9 @@ x-webhooks: type: string enum: - pinned - comment: *944 - enterprise: *911 - installation: *912 + comment: *945 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -159875,8 +160061,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159892,7 +160078,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -160227,8 +160413,8 @@ x-webhooks: - state - locked - assignee - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -160308,9 +160494,9 @@ x-webhooks: type: string enum: - unpinned - comment: *944 - enterprise: *911 - installation: *912 + comment: *945 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -161100,8 +161286,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161117,7 +161303,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -161452,8 +161638,8 @@ x-webhooks: - state - locked - assignee - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -161536,15 +161722,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 + blocking_issue: *232 blocking_issue_repo: *80 - installation: *912 - organization: *913 - repository: *914 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -161627,15 +161813,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 + blocking_issue: *232 blocking_issue_repo: *80 - installation: *912 - organization: *913 - repository: *914 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -161717,15 +161903,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 - installation: *912 - organization: *913 - repository: *914 + blocking_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -161808,15 +161994,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 - installation: *912 - organization: *913 - repository: *914 + blocking_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -161896,10 +162082,10 @@ x-webhooks: type: string enum: - assigned - assignee: *940 - enterprise: *911 - installation: *912 - issue: &945 + assignee: *941 + enterprise: *912 + installation: *913 + issue: &946 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -162688,14 +162874,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162711,7 +162897,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -162812,8 +162998,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -162893,8 +163079,8 @@ x-webhooks: type: string enum: - closed - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -163688,14 +163874,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163711,7 +163897,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -163947,8 +164133,8 @@ x-webhooks: required: - state - closed_at - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -164027,8 +164213,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -164813,14 +164999,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164836,7 +165022,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -164936,8 +165122,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -165016,8 +165202,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -165824,14 +166010,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165847,7 +166033,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -165926,7 +166112,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &946 + milestone: &947 title: Milestone description: A collection of related issues and pull requests. type: object @@ -166064,8 +166250,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -166164,8 +166350,8 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -166954,14 +167140,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166974,7 +167160,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *400 + type: *401 title: description: Title of the issue type: string @@ -167078,9 +167264,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *934 - organization: *913 - repository: *914 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -167160,9 +167346,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *911 - installation: *912 - issue: *945 + enterprise: *912 + installation: *913 + issue: *946 issue_field: type: object description: The issue field whose value was set or updated on the @@ -167316,8 +167502,8 @@ x-webhooks: - id required: - from - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -167397,9 +167583,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *911 - installation: *912 - issue: *945 + enterprise: *912 + installation: *913 + issue: *946 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -167480,8 +167666,8 @@ x-webhooks: nullable: true required: - id - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -167561,8 +167747,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168350,14 +168536,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168370,7 +168556,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *400 + type: *401 title: description: Title of the issue type: string @@ -168474,9 +168660,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *934 - organization: *913 - repository: *914 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -168556,8 +168742,8 @@ x-webhooks: type: string enum: - locked - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -169369,14 +169555,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169389,7 +169575,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *400 + type: *401 title: description: Title of the issue type: string @@ -169470,8 +169656,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -169550,8 +169736,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170357,14 +170543,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170380,7 +170566,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -170458,9 +170644,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *946 - organization: *913 - repository: *914 + milestone: *947 + organization: *914 + repository: *915 sender: *4 required: - action @@ -171323,11 +171509,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171355,8 +171541,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true user: title: User @@ -171428,7 +171614,7 @@ x-webhooks: required: - login - id - type: *400 + type: *401 required: - id - number @@ -171908,8 +172094,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -172693,11 +172879,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -172713,7 +172899,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -172726,8 +172912,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true user: title: User @@ -172821,8 +173007,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -172902,9 +173088,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *911 - installation: *912 - issue: &947 + enterprise: *912 + installation: *913 + issue: &948 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -173687,14 +173873,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173710,7 +173896,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -173810,8 +173996,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -173890,8 +174076,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -174701,14 +174887,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174802,9 +174988,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *400 - organization: *913 - repository: *914 + type: *401 + organization: *914 + repository: *915 sender: *4 required: - action @@ -175670,14 +175856,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175693,7 +175879,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -176272,11 +176458,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *911 - installation: *912 - issue: *947 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *948 + organization: *914 + repository: *915 sender: *4 required: - action @@ -176356,12 +176542,12 @@ x-webhooks: type: string enum: - typed - enterprise: *911 - installation: *912 - issue: *945 - type: *400 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *946 + type: *401 + organization: *914 + repository: *915 sender: *4 required: - action @@ -176442,7 +176628,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &976 + assignee: &977 title: User type: object nullable: true @@ -176512,11 +176698,11 @@ x-webhooks: required: - login - id - enterprise: *911 - installation: *912 - issue: *945 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *946 + organization: *914 + repository: *915 sender: *4 required: - action @@ -176595,12 +176781,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *911 - installation: *912 - issue: *945 - label: *934 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *946 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -176680,8 +176866,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -177491,14 +177677,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *847 - issue_dependencies_summary: *848 + sub_issues_summary: *848 + issue_dependencies_summary: *849 issue_field_values: type: array - items: *700 + items: *701 state: description: State of the issue; either 'open' or 'closed' type: string @@ -177514,7 +177700,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *400 + type: *401 updated_at: type: string format: date-time @@ -177592,8 +177778,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -177673,11 +177859,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *911 - installation: *912 - issue: *947 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *948 + organization: *914 + repository: *915 sender: *4 required: - action @@ -177756,12 +177942,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *911 - installation: *912 - issue: *945 - type: *400 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + issue: *946 + type: *401 + organization: *914 + repository: *915 sender: *4 required: - action @@ -177841,11 +178027,11 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - label: *934 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -177923,11 +178109,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - label: *934 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -178037,11 +178223,11 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - label: *934 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + label: *935 + organization: *914 + repository: *915 sender: *4 required: - action @@ -178123,9 +178309,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *911 - installation: *912 - marketplace_purchase: &948 + enterprise: *912 + installation: *913 + marketplace_purchase: &949 title: Marketplace Purchase type: object required: @@ -178208,8 +178394,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *913 - previous_marketplace_purchase: &949 + organization: *914 + previous_marketplace_purchase: &950 title: Marketplace Purchase type: object properties: @@ -178289,7 +178475,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *914 + repository: *915 sender: *4 required: - action @@ -178369,10 +178555,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *911 - installation: *912 - marketplace_purchase: *948 - organization: *913 + enterprise: *912 + installation: *913 + marketplace_purchase: *949 + organization: *914 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -178455,7 +178641,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *914 + repository: *915 sender: *4 required: - action @@ -178537,10 +178723,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *911 - installation: *912 - marketplace_purchase: *948 - organization: *913 + enterprise: *912 + installation: *913 + marketplace_purchase: *949 + organization: *914 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -178622,7 +178808,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *914 + repository: *915 sender: *4 required: - action @@ -178703,8 +178889,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 marketplace_purchase: title: Marketplace Purchase type: object @@ -178786,9 +178972,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *913 - previous_marketplace_purchase: *949 - repository: *914 + organization: *914 + previous_marketplace_purchase: *950 + repository: *915 sender: *4 required: - action @@ -178868,12 +179054,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *911 - installation: *912 - marketplace_purchase: *948 - organization: *913 - previous_marketplace_purchase: *949 - repository: *914 + enterprise: *912 + installation: *913 + marketplace_purchase: *949 + organization: *914 + previous_marketplace_purchase: *950 + repository: *915 sender: *4 required: - action @@ -178975,11 +179161,11 @@ x-webhooks: type: string required: - to - enterprise: *911 - installation: *912 - member: *940 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + member: *941 + organization: *914 + repository: *915 sender: *4 required: - action @@ -179079,11 +179265,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *911 - installation: *912 - member: *940 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + member: *941 + organization: *914 + repository: *915 sender: *4 required: - action @@ -179162,11 +179348,11 @@ x-webhooks: type: string enum: - removed - enterprise: *911 - installation: *912 - member: *940 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + member: *941 + organization: *914 + repository: *915 sender: *4 required: - action @@ -179244,11 +179430,11 @@ x-webhooks: type: string enum: - added - enterprise: *911 - installation: *912 - member: *940 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + member: *941 + organization: *914 + repository: *915 scope: description: The scope of the membership. Currently, can only be `team`. @@ -179324,7 +179510,7 @@ x-webhooks: required: - login - id - team: &950 + team: &951 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -179547,11 +179733,11 @@ x-webhooks: type: string enum: - removed - enterprise: *911 - installation: *912 - member: *940 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + member: *941 + organization: *914 + repository: *915 scope: description: The scope of the membership. Currently, can only be `team`. @@ -179628,7 +179814,7 @@ x-webhooks: required: - login - id - team: *950 + team: *951 required: - action - scope @@ -179710,8 +179896,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *912 - merge_group: &952 + installation: *913 + merge_group: &953 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -179730,15 +179916,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *951 + head_commit: *952 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -179824,10 +180010,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *912 - merge_group: *952 - organization: *913 - repository: *914 + installation: *913 + merge_group: *953 + organization: *914 + repository: *915 sender: *4 required: - action @@ -179900,7 +180086,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 + enterprise: *912 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -180009,16 +180195,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *912 - organization: *913 + installation: *913 + organization: *914 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *953 - required: *954 + properties: *954 + required: *955 nullable: true sender: *4 required: @@ -180099,11 +180285,11 @@ x-webhooks: type: string enum: - closed - enterprise: *911 - installation: *912 - milestone: *946 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + milestone: *947 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180182,9 +180368,9 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - milestone: &955 + enterprise: *912 + installation: *913 + milestone: &956 title: Milestone description: A collection of related issues and pull requests. type: object @@ -180321,8 +180507,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180401,11 +180587,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - milestone: *946 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + milestone: *947 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180515,11 +180701,11 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - milestone: *946 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + milestone: *947 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180599,11 +180785,11 @@ x-webhooks: type: string enum: - opened - enterprise: *911 - installation: *912 - milestone: *955 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + milestone: *956 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180682,11 +180868,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *940 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + blocked_user: *941 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180765,11 +180951,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *940 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + blocked_user: *941 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -180845,7 +181031,7 @@ x-webhooks: enum: - created definition: *159 - enterprise: *911 + enterprise: *912 sender: *4 required: - action @@ -180925,8 +181111,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 sender: *4 required: - action @@ -180999,8 +181185,8 @@ x-webhooks: enum: - updated definition: *159 - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 sender: *4 required: - action @@ -181072,9 +181258,9 @@ x-webhooks: type: string enum: - updated - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 new_property_values: type: array @@ -181162,9 +181348,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - membership: &956 + enterprise: *912 + installation: *913 + membership: &957 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -181271,8 +181457,8 @@ x-webhooks: - role - organization_url - user - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 required: - action @@ -181350,11 +181536,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *911 - installation: *912 - membership: *956 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + membership: *957 + organization: *914 + repository: *915 sender: *4 required: - action @@ -181433,8 +181619,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -181550,10 +181736,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 - user: *940 + user: *941 required: - action - invitation @@ -181631,11 +181817,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *911 - installation: *912 - membership: *956 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + membership: *957 + organization: *914 + repository: *915 sender: *4 required: - action @@ -181722,11 +181908,11 @@ x-webhooks: properties: from: type: string - enterprise: *911 - installation: *912 - membership: *956 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + membership: *957 + organization: *914 + repository: *915 sender: *4 required: - action @@ -181804,9 +181990,9 @@ x-webhooks: type: string enum: - published - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 package: description: Information about the package. type: object @@ -182305,7 +182491,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &957 + items: &958 title: Ruby Gems metadata type: object properties: @@ -182400,7 +182586,7 @@ x-webhooks: - owner - package_version - registry - repository: *914 + repository: *915 sender: *4 required: - action @@ -182477,9 +182663,9 @@ x-webhooks: type: string enum: - updated - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 package: description: Information about the package. type: object @@ -182832,7 +183018,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *957 + items: *958 source_url: type: string format: uri @@ -182902,7 +183088,7 @@ x-webhooks: - owner - package_version - registry - repository: *914 + repository: *915 sender: *4 required: - action @@ -183078,12 +183264,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *911 + enterprise: *912 id: type: integer - installation: *912 - organization: *913 - repository: *914 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - id @@ -183160,7 +183346,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &958 + personal_access_token_request: &959 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -183306,10 +183492,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *911 - organization: *913 + enterprise: *912 + organization: *914 sender: *4 - installation: *912 + installation: *913 required: - action - personal_access_token_request @@ -183386,11 +183572,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *958 - enterprise: *911 - organization: *913 + personal_access_token_request: *959 + enterprise: *912 + organization: *914 sender: *4 - installation: *912 + installation: *913 required: - action - personal_access_token_request @@ -183466,11 +183652,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *958 - enterprise: *911 - organization: *913 + personal_access_token_request: *959 + enterprise: *912 + organization: *914 sender: *4 - installation: *912 + installation: *913 required: - action - personal_access_token_request @@ -183545,11 +183731,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *958 - organization: *913 - enterprise: *911 + personal_access_token_request: *959 + organization: *914 + enterprise: *912 sender: *4 - installation: *912 + installation: *913 required: - action - personal_access_token_request @@ -183654,7 +183840,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *959 + last_response: *960 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -183686,8 +183872,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 zen: description: Random string of GitHub zen. @@ -183932,10 +184118,10 @@ x-webhooks: - from required: - note - enterprise: *911 - installation: *912 - organization: *913 - project_card: &960 + enterprise: *912 + installation: *913 + organization: *914 + project_card: &961 title: Project Card type: object properties: @@ -184054,7 +184240,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *914 + repository: *915 sender: *4 required: - action @@ -184135,11 +184321,11 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - project_card: *960 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project_card: *961 + repository: *915 sender: *4 required: - action @@ -184219,9 +184405,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 project_card: title: Project Card type: object @@ -184349,8 +184535,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *953 - required: *954 + properties: *954 + required: *955 nullable: true sender: *4 required: @@ -184444,11 +184630,11 @@ x-webhooks: - from required: - note - enterprise: *911 - installation: *912 - organization: *913 - project_card: *960 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project_card: *961 + repository: *915 sender: *4 required: - action @@ -184542,9 +184728,9 @@ x-webhooks: - from required: - column_id - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 project_card: allOf: - title: Project Card @@ -184734,7 +184920,7 @@ x-webhooks: type: string required: - after_id - repository: *914 + repository: *915 sender: *4 required: - action @@ -184814,10 +185000,10 @@ x-webhooks: type: string enum: - closed - enterprise: *911 - installation: *912 - organization: *913 - project: &962 + enterprise: *912 + installation: *913 + organization: *914 + project: &963 title: Project type: object properties: @@ -184941,7 +185127,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *914 + repository: *915 sender: *4 required: - action @@ -185021,10 +185207,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - project_column: &961 + enterprise: *912 + installation: *913 + organization: *914 + project_column: &962 title: Project Column type: object properties: @@ -185063,7 +185249,7 @@ x-webhooks: - name - created_at - updated_at - repository: *914 + repository: *915 sender: *4 required: - action @@ -185142,18 +185328,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - project_column: *961 + enterprise: *912 + installation: *913 + organization: *914 + project_column: *962 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *953 - required: *954 + properties: *954 + required: *955 nullable: true sender: *4 required: @@ -185243,11 +185429,11 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - organization: *913 - project_column: *961 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project_column: *962 + repository: *915 sender: *4 required: - action @@ -185327,11 +185513,11 @@ x-webhooks: type: string enum: - moved - enterprise: *911 - installation: *912 - organization: *913 - project_column: *961 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project_column: *962 + repository: *915 sender: *4 required: - action @@ -185411,11 +185597,11 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - project: *962 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project: *963 + repository: *915 sender: *4 required: - action @@ -185495,18 +185681,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - project: *962 + enterprise: *912 + installation: *913 + organization: *914 + project: *963 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *953 - required: *954 + properties: *954 + required: *955 nullable: true sender: *4 required: @@ -185608,11 +185794,11 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - organization: *913 - project: *962 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project: *963 + repository: *915 sender: *4 required: - action @@ -185691,11 +185877,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *911 - installation: *912 - organization: *913 - project: *962 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + project: *963 + repository: *915 sender: *4 required: - action @@ -185776,9 +185962,9 @@ x-webhooks: type: string enum: - closed - installation: *912 - organization: *913 - projects_v2: *432 + installation: *913 + organization: *914 + projects_v2: *433 sender: *4 required: - action @@ -185859,9 +186045,9 @@ x-webhooks: type: string enum: - created - installation: *912 - organization: *913 - projects_v2: *432 + installation: *913 + organization: *914 + projects_v2: *433 sender: *4 required: - action @@ -185942,9 +186128,9 @@ x-webhooks: type: string enum: - deleted - installation: *912 - organization: *913 - projects_v2: *432 + installation: *913 + organization: *914 + projects_v2: *433 sender: *4 required: - action @@ -186061,9 +186247,9 @@ x-webhooks: type: string to: type: string - installation: *912 - organization: *913 - projects_v2: *432 + installation: *913 + organization: *914 + projects_v2: *433 sender: *4 required: - action @@ -186146,7 +186332,7 @@ x-webhooks: type: string enum: - archived - changes: &966 + changes: &967 type: object properties: archived_at: @@ -186160,9 +186346,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *912 - organization: *913 - projects_v2_item: &963 + installation: *913 + organization: *914 + projects_v2_item: &964 title: Projects v2 Item description: An item belonging to a project type: object @@ -186180,7 +186366,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *439 + content_type: *440 creator: *4 created_at: type: string @@ -186297,9 +186483,9 @@ x-webhooks: nullable: true to: type: string - installation: *912 - organization: *913 - projects_v2_item: *963 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -186381,9 +186567,9 @@ x-webhooks: type: string enum: - created - installation: *912 - organization: *913 - projects_v2_item: *963 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -186464,9 +186650,9 @@ x-webhooks: type: string enum: - deleted - installation: *912 - organization: *913 - projects_v2_item: *963 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -186572,7 +186758,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &964 + - &965 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -186594,7 +186780,7 @@ x-webhooks: required: - id - name - - &965 + - &966 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -186628,8 +186814,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *964 - *965 + - *966 required: - field_value - type: object @@ -186645,9 +186831,9 @@ x-webhooks: nullable: true required: - body - installation: *912 - organization: *913 - projects_v2_item: *963 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -186742,9 +186928,9 @@ x-webhooks: to: type: string nullable: true - installation: *912 - organization: *913 - projects_v2_item: *963 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -186827,10 +187013,10 @@ x-webhooks: type: string enum: - restored - changes: *966 - installation: *912 - organization: *913 - projects_v2_item: *963 + changes: *967 + installation: *913 + organization: *914 + projects_v2_item: *964 sender: *4 required: - action @@ -186912,9 +187098,9 @@ x-webhooks: type: string enum: - reopened - installation: *912 - organization: *913 - projects_v2: *432 + installation: *913 + organization: *914 + projects_v2: *433 sender: *4 required: - action @@ -186995,14 +187181,14 @@ x-webhooks: type: string enum: - created - installation: *912 - organization: *913 - projects_v2_status_update: &969 + installation: *913 + organization: *914 + projects_v2_status_update: &970 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *967 - required: *968 + properties: *968 + required: *969 sender: *4 required: - action @@ -187083,9 +187269,9 @@ x-webhooks: type: string enum: - deleted - installation: *912 - organization: *913 - projects_v2_status_update: *969 + installation: *913 + organization: *914 + projects_v2_status_update: *970 sender: *4 required: - action @@ -187221,9 +187407,9 @@ x-webhooks: type: string format: date nullable: true - installation: *912 - organization: *913 - projects_v2_status_update: *969 + installation: *913 + organization: *914 + projects_v2_status_update: *970 sender: *4 required: - action @@ -187294,10 +187480,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - repository @@ -187374,13 +187560,13 @@ x-webhooks: type: string enum: - assigned - assignee: *940 - enterprise: *911 - installation: *912 - number: &970 + assignee: *941 + enterprise: *912 + installation: *913 + number: &971 description: The pull request number. type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -189667,7 +189853,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -189749,11 +189935,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -192035,7 +192221,7 @@ x-webhooks: - draft reason: type: string - repository: *914 + repository: *915 sender: *4 required: - action @@ -192117,11 +192303,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -194403,7 +194589,7 @@ x-webhooks: - draft reason: type: string - repository: *914 + repository: *915 sender: *4 required: - action @@ -194485,13 +194671,13 @@ x-webhooks: type: string enum: - closed - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: &971 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: &972 allOf: - - *754 + - *755 - type: object properties: allow_auto_merge: @@ -194553,7 +194739,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *914 + repository: *915 sender: *4 required: - action @@ -194634,12 +194820,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: *971 - repository: *914 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: *972 + repository: *915 sender: *4 required: - action @@ -194719,11 +194905,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *911 - milestone: *736 - number: *970 - organization: *913 - pull_request: &972 + enterprise: *912 + milestone: *737 + number: *971 + organization: *914 + pull_request: &973 title: Pull Request type: object properties: @@ -197004,7 +197190,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -197083,11 +197269,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -199387,7 +199573,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *914 + repository: *915 sender: *4 required: - action @@ -199511,12 +199697,12 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: *971 - repository: *914 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: *972 + repository: *915 sender: *4 required: - action @@ -199596,11 +199782,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -201885,7 +202071,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -201965,11 +202151,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *911 - installation: *912 - label: *934 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + label: *935 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -204255,7 +204441,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -204336,10 +204522,10 @@ x-webhooks: type: string enum: - locked - enterprise: *911 - installation: *912 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -206623,7 +206809,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -206703,12 +206889,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *911 - milestone: *736 - number: *970 - organization: *913 - pull_request: *972 - repository: *914 + enterprise: *912 + milestone: *737 + number: *971 + organization: *914 + pull_request: *973 + repository: *915 sender: *4 required: - action @@ -206787,12 +206973,12 @@ x-webhooks: type: string enum: - opened - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: *971 - repository: *914 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: *972 + repository: *915 sender: *4 required: - action @@ -206873,12 +207059,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: *971 - repository: *914 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: *972 + repository: *915 sender: *4 required: - action @@ -206958,12 +207144,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *911 - installation: *912 - number: *970 - organization: *913 - pull_request: *971 - repository: *914 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 + pull_request: *972 + repository: *915 sender: *4 required: - action @@ -207329,9 +207515,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: type: object properties: @@ -209505,7 +209691,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *914 + repository: *915 sender: *4 required: - action @@ -209585,7 +209771,7 @@ x-webhooks: type: string enum: - deleted - comment: &974 + comment: &975 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. @@ -209870,9 +210056,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: type: object properties: @@ -212034,7 +212220,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *914 + repository: *915 sender: *4 required: - action @@ -212114,11 +212300,11 @@ x-webhooks: type: string enum: - edited - changes: *973 - comment: *974 - enterprise: *911 - installation: *912 - organization: *913 + changes: *974 + comment: *975 + enterprise: *912 + installation: *913 + organization: *914 pull_request: type: object properties: @@ -214283,7 +214469,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *914 + repository: *915 sender: *4 required: - action @@ -214364,9 +214550,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: title: Simple Pull Request type: object @@ -216543,7 +216729,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *914 + repository: *915 review: description: The review that was affected. type: object @@ -216790,9 +216976,9 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: title: Simple Pull Request type: object @@ -218842,8 +219028,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *914 - review: &975 + repository: *915 + review: &976 description: The review that was affected. type: object properties: @@ -219076,12 +219262,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: description: The pull request number. type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -221368,7 +221554,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 requested_reviewer: title: User type: object @@ -221452,12 +221638,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: description: The pull request number. type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -223751,7 +223937,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 requested_team: title: Team description: Groups of organization members that gives permissions @@ -223943,12 +224129,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: description: The pull request number. type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -226237,7 +226423,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 requested_reviewer: title: User type: object @@ -226322,12 +226508,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *911 - installation: *912 + enterprise: *912 + installation: *913 number: description: The pull request number. type: integer - organization: *913 + organization: *914 pull_request: title: Pull Request type: object @@ -228607,7 +228793,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 requested_team: title: Team description: Groups of organization members that gives permissions @@ -228788,9 +228974,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: title: Simple Pull Request type: object @@ -230969,8 +231155,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *914 - review: *975 + repository: *915 + review: *976 sender: *4 required: - action @@ -231050,9 +231236,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: title: Simple Pull Request type: object @@ -233140,7 +233326,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *914 + repository: *915 sender: *4 thread: type: object @@ -233527,9 +233713,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 pull_request: title: Simple Pull Request type: object @@ -235603,7 +235789,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *914 + repository: *915 sender: *4 thread: type: object @@ -235987,10 +236173,10 @@ x-webhooks: type: string enum: - stacked - enterprise: *911 - installation: *912 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -238276,7 +238462,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -238362,10 +238548,10 @@ x-webhooks: type: string before: type: string - enterprise: *911 - installation: *912 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -240640,7 +240826,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -240722,11 +240908,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *976 - enterprise: *911 - installation: *912 - number: *970 - organization: *913 + assignee: *977 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -243013,7 +243199,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -243092,11 +243278,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *911 - installation: *912 - label: *934 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + label: *935 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -245373,7 +245559,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -245454,10 +245640,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *911 - installation: *912 - number: *970 - organization: *913 + enterprise: *912 + installation: *913 + number: *971 + organization: *914 pull_request: title: Pull Request type: object @@ -247726,7 +247912,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *914 + repository: *915 sender: *4 required: - action @@ -247926,7 +248112,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *911 + enterprise: *912 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -248018,8 +248204,8 @@ x-webhooks: - url - author - committer - installation: *912 - organization: *913 + installation: *913 + organization: *914 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -248605,9 +248791,9 @@ x-webhooks: type: string enum: - published - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 registry_package: type: object properties: @@ -249053,7 +249239,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *957 + items: *958 summary: type: string tag_name: @@ -249107,7 +249293,7 @@ x-webhooks: - owner - package_version - registry - repository: *914 + repository: *915 sender: *4 required: - action @@ -249185,9 +249371,9 @@ x-webhooks: type: string enum: - updated - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 registry_package: type: object properties: @@ -249495,7 +249681,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *957 + items: *958 summary: type: string tag_name: @@ -249544,7 +249730,7 @@ x-webhooks: - owner - package_version - registry - repository: *914 + repository: *915 sender: *4 required: - action @@ -249621,10 +249807,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - release: &977 + enterprise: *912 + installation: *913 + organization: *914 + release: &978 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -249942,7 +250128,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *914 + repository: *915 sender: *4 required: - action @@ -250019,11 +250205,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - release: *977 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + release: *978 + repository: *915 sender: *4 required: - action @@ -250140,11 +250326,11 @@ x-webhooks: type: boolean required: - to - enterprise: *911 - installation: *912 - organization: *913 - release: *977 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + release: *978 + repository: *915 sender: *4 required: - action @@ -250222,9 +250408,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -250546,7 +250732,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *914 + repository: *915 sender: *4 required: - action @@ -250622,10 +250808,10 @@ x-webhooks: type: string enum: - published - enterprise: *911 - installation: *912 - organization: *913 - release: &978 + enterprise: *912 + installation: *913 + organization: *914 + release: &979 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -250944,7 +251130,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *914 + repository: *915 sender: *4 required: - action @@ -251020,11 +251206,11 @@ x-webhooks: type: string enum: - released - enterprise: *911 - installation: *912 - organization: *913 - release: *977 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + release: *978 + repository: *915 sender: *4 required: - action @@ -251100,11 +251286,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *911 - installation: *912 - organization: *913 - release: *978 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + release: *979 + repository: *915 sender: *4 required: - action @@ -251180,11 +251366,11 @@ x-webhooks: type: string enum: - published - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - repository_advisory: *808 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + repository_advisory: *809 sender: *4 required: - action @@ -251260,11 +251446,11 @@ x-webhooks: type: string enum: - reported - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - repository_advisory: *808 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + repository_advisory: *809 sender: *4 required: - action @@ -251340,10 +251526,10 @@ x-webhooks: type: string enum: - archived - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -251420,10 +251606,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -251501,10 +251687,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -251588,10 +251774,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -251703,10 +251889,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -251778,10 +251964,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 status: type: string @@ -251862,10 +252048,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -251942,10 +252128,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252039,10 +252225,10 @@ x-webhooks: - name required: - repository - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252122,10 +252308,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 repository_ruleset: *198 sender: *4 required: @@ -252204,10 +252390,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 repository_ruleset: *198 sender: *4 required: @@ -252286,10 +252472,10 @@ x-webhooks: type: string enum: - edited - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 repository_ruleset: *198 changes: type: object @@ -252351,16 +252537,16 @@ x-webhooks: properties: added: type: array - items: *775 + items: *776 deleted: type: array - items: *775 + items: *776 updated: type: array items: type: object properties: - rule: *775 + rule: *776 changes: type: object properties: @@ -252594,10 +252780,10 @@ x-webhooks: - from required: - owner - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252675,10 +252861,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -252756,7 +252942,7 @@ x-webhooks: type: string enum: - create - alert: &979 + alert: &980 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -252878,10 +253064,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -253087,10 +253273,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -253168,11 +253354,11 @@ x-webhooks: type: string enum: - reopen - alert: *979 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *980 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -253371,10 +253557,10 @@ x-webhooks: enum: - fixed - open - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -253452,7 +253638,7 @@ x-webhooks: type: string enum: - assigned - alert: &981 + alert: &982 type: object properties: number: *134 @@ -253594,12 +253780,12 @@ x-webhooks: properties: *20 required: *21 nullable: true - metadata: *980 + metadata: *981 assignee: *4 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -253677,11 +253863,11 @@ x-webhooks: type: string enum: - created - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -253762,11 +253948,11 @@ x-webhooks: type: string enum: - created - alert: *981 - installation: *912 - location: *982 - organization: *913 - repository: *914 + alert: *982 + installation: *913 + location: *983 + organization: *914 + repository: *915 sender: *4 required: - location @@ -254004,11 +254190,11 @@ x-webhooks: type: string enum: - metadata_created - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254085,11 +254271,11 @@ x-webhooks: type: string enum: - metadata_removed - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254166,11 +254352,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254248,11 +254434,11 @@ x-webhooks: type: string enum: - reopened - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254330,11 +254516,11 @@ x-webhooks: type: string enum: - resolved - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254412,12 +254598,12 @@ x-webhooks: type: string enum: - unassigned - alert: *981 + alert: *982 assignee: *4 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254495,11 +254681,11 @@ x-webhooks: type: string enum: - validated - alert: *981 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + alert: *982 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -254625,10 +254811,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *914 - enterprise: *911 - installation: *912 - organization: *913 + repository: *915 + enterprise: *912 + installation: *913 + organization: *914 sender: *4 required: - action @@ -254706,11 +254892,11 @@ x-webhooks: type: string enum: - published - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - security_advisory: &983 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + security_advisory: &984 description: The details of the security advisory, including summary, description, and severity. type: object @@ -254881,11 +255067,11 @@ x-webhooks: type: string enum: - updated - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 - security_advisory: *983 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 + security_advisory: *984 sender: *4 required: - action @@ -254958,10 +255144,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -255133,11 +255319,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *449 - enterprise: *911 - installation: *912 - organization: *913 - repository: *498 + security_and_analysis: *450 + enterprise: *912 + installation: *913 + organization: *914 + repository: *499 sender: *4 required: - changes @@ -255215,12 +255401,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: &984 + sponsorship: &985 type: object properties: created_at: @@ -255521,12 +255707,12 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: *984 + sponsorship: *985 required: - action - sponsorship @@ -255614,12 +255800,12 @@ x-webhooks: type: string required: - from - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: *984 + sponsorship: *985 required: - action - changes @@ -255696,17 +255882,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &985 + effective_date: &986 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: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: *984 + sponsorship: *985 required: - action - sponsorship @@ -255780,7 +255966,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &986 + changes: &987 type: object properties: tier: @@ -255824,13 +256010,13 @@ x-webhooks: - from required: - tier - effective_date: *985 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + effective_date: *986 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: *984 + sponsorship: *985 required: - action - changes @@ -255907,13 +256093,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *986 - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + changes: *987 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - sponsorship: *984 + sponsorship: *985 required: - action - changes @@ -255987,10 +256173,10 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -256073,10 +256259,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -256496,15 +256682,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *911 + enterprise: *912 id: description: The unique identifier of the status. type: integer - installation: *912 + installation: *913 name: type: string - organization: *913 - repository: *914 + organization: *914 + repository: *915 sender: *4 sha: description: The Commit SHA. @@ -256613,15 +256799,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 + parent_issue: *232 parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 - installation: *912 - organization: *913 - repository: *914 + sub_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -256704,15 +256890,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 + parent_issue: *232 parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 - installation: *912 - organization: *913 - repository: *914 + sub_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -256795,15 +256981,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 + sub_issue: *232 sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 - installation: *912 - organization: *913 - repository: *914 + parent_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -256886,15 +257072,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 + sub_issue: *232 sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 - installation: *912 - organization: *913 - repository: *914 + parent_issue: *232 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -256970,12 +257156,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - team: &987 + team: &988 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -257198,9 +257384,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 repository: title: Repository description: A git repository @@ -257658,7 +257844,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *987 + team: *988 required: - action - team @@ -257734,9 +257920,9 @@ x-webhooks: type: string enum: - created - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 repository: title: Repository description: A git repository @@ -258194,7 +258380,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *987 + team: *988 required: - action - team @@ -258271,9 +258457,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 repository: title: Repository description: A git repository @@ -258731,7 +258917,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *987 + team: *988 required: - action - team @@ -258875,9 +259061,9 @@ x-webhooks: - from required: - permissions - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 repository: title: Repository description: A git repository @@ -259335,7 +259521,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *987 + team: *988 required: - action - changes @@ -259413,9 +259599,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *911 - installation: *912 - organization: *913 + enterprise: *912 + installation: *913 + organization: *914 repository: title: Repository description: A git repository @@ -259873,7 +260059,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *987 + team: *988 required: - action - team @@ -259949,10 +260135,10 @@ x-webhooks: type: string enum: - started - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 required: - action @@ -260025,16 +260211,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *911 + enterprise: *912 inputs: type: object nullable: true additionalProperties: true - installation: *912 - organization: *913 + installation: *913 + organization: *914 ref: type: string - repository: *914 + repository: *915 sender: *4 workflow: type: string @@ -260116,10 +260302,10 @@ x-webhooks: type: string enum: - completed - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 workflow_job: allOf: @@ -260356,7 +260542,7 @@ x-webhooks: type: string required: - conclusion - deployment: *639 + deployment: *640 required: - action - repository @@ -260435,10 +260621,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 workflow_job: allOf: @@ -260698,7 +260884,7 @@ x-webhooks: required: - status - steps - deployment: *639 + deployment: *640 required: - action - repository @@ -260777,10 +260963,10 @@ x-webhooks: type: string enum: - queued - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 workflow_job: type: object @@ -260915,7 +261101,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *639 + deployment: *640 required: - action - repository @@ -260994,10 +261180,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 workflow_job: type: object @@ -261133,7 +261319,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *639 + deployment: *640 required: - action - repository @@ -261213,12 +261399,12 @@ x-webhooks: type: string enum: - completed - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - workflow: *930 + workflow: *931 workflow_run: title: Workflow Run type: object @@ -262217,12 +262403,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - workflow: *930 + workflow: *931 workflow_run: title: Workflow Run type: object @@ -263206,12 +263392,12 @@ x-webhooks: type: string enum: - requested - enterprise: *911 - installation: *912 - organization: *913 - repository: *914 + enterprise: *912 + installation: *913 + organization: *914 + repository: *915 sender: *4 - workflow: *930 + workflow: *931 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.deref.json b/descriptions/ghec/dereferenced/ghec.deref.json index 9a2425dc8..92a27216a 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.json +++ b/descriptions/ghec/dereferenced/ghec.deref.json @@ -82743,6 +82743,542 @@ } } }, + "/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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": 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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": 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", + "nullable": true + }, + { + "type": "integer", + "nullable": true + }, + { + "type": "array", + "nullable": true, + "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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": 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", + "nullable": true + }, + { + "type": "integer", + "nullable": true + }, + { + "type": "array", + "nullable": true, + "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/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index aa15ed77d..0a464e5e8 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.deref.yaml @@ -896,7 +896,7 @@ paths: - subscriptions_url - type - url - type: &478 + type: &479 type: string description: The type of credit the user is receiving. enum: @@ -1056,7 +1056,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &268 + schema: &269 title: Validation Error Simple description: Validation Error Simple type: object @@ -1089,7 +1089,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: - - &813 + - &814 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -3739,7 +3739,7 @@ paths: GitHub. type: object nullable: true - properties: &226 + properties: &227 id: description: Unique identifier of the GitHub app example: 37 @@ -3872,7 +3872,7 @@ paths: about itself. example: 5 type: integer - required: &227 + required: &228 - id - node_id - owner @@ -4177,7 +4177,7 @@ paths: schema: type: integer default: 30 - - &374 + - &375 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 @@ -4186,7 +4186,7 @@ paths: required: false schema: type: string - - &375 + - &376 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4206,7 +4206,7 @@ paths: application/json: schema: type: array - items: &376 + items: &377 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4286,7 +4286,7 @@ paths: - installation_id - repository_id examples: - default: &377 + default: &378 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4318,7 +4318,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &822 + schema: &823 title: Scim Error description: Scim Error type: object @@ -4345,7 +4345,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &267 + schema: &268 title: Validation Error description: Validation Error type: object @@ -4414,7 +4414,7 @@ paths: description: Response content: application/json: - schema: &378 + schema: &379 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4528,7 +4528,7 @@ paths: - request - response examples: - default: &379 + default: &380 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4729,7 +4729,7 @@ paths: parameters: - *17 - *19 - - &238 + - &239 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) @@ -5547,7 +5547,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &448 + properties: &449 id: description: Unique identifier of the repository example: 42 @@ -5567,7 +5567,7 @@ paths: title: License Simple description: License Simple type: object - properties: &234 + properties: &235 key: type: string example: mit @@ -5589,7 +5589,7 @@ paths: html_url: type: string format: uri - required: &235 + required: &236 - key - name - url @@ -5998,7 +5998,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &449 + required: &450 - archive_url - assignees_url - blobs_url @@ -6072,7 +6072,7 @@ paths: - watchers_count - created_at - updated_at - x-github-breaking-changes: &450 + x-github-breaking-changes: &451 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -10403,7 +10403,7 @@ paths: description: Response content: application/json: - schema: &269 + schema: &270 type: object properties: total_active_caches_count: @@ -10418,7 +10418,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &270 + default: &271 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -10611,7 +10611,7 @@ paths: - public_ip_enabled - platform examples: - default: &271 + default: &272 value: total_count: 2 runners: @@ -10906,7 +10906,7 @@ paths: application/json: schema: *49 examples: - default: &272 + default: &273 value: id: 1 platform: linux-x64 @@ -11046,7 +11046,7 @@ paths: application/json: schema: *52 examples: - default: &273 + default: &274 value: version: 1.0.0 size_gb: 75 @@ -11210,7 +11210,7 @@ paths: description: Response content: application/json: - schema: &274 + schema: &275 type: object properties: public_ips: @@ -11235,7 +11235,7 @@ paths: required: - public_ips examples: - default: &275 + default: &276 value: public_ips: current_usage: 17 @@ -11275,7 +11275,7 @@ paths: type: array items: *56 examples: - default: &276 + default: &277 value: id: 4-core cpu_cores: 4 @@ -11590,7 +11590,7 @@ paths: required: true content: application/json: - schema: &277 + schema: &278 title: Actions OIDC Custom Property Inclusion Input description: Input for creating an OIDC custom property inclusion type: object @@ -11701,7 +11701,7 @@ paths: - all - local_only - selected - selected_actions_url: &279 + selected_actions_url: &280 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` @@ -11781,7 +11781,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &281 + schema: &282 type: object properties: days: @@ -11799,7 +11799,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &823 + '401': &824 description: Authorization failure '404': *6 x-github: @@ -11827,7 +11827,7 @@ paths: required: true content: application/json: - schema: &282 + schema: &283 type: object properties: days: @@ -11876,7 +11876,7 @@ paths: required: - approval_policy examples: - default: &283 + default: &284 value: approval_policy: first_time_contributors '404': *6 @@ -11934,7 +11934,7 @@ paths: description: Response content: application/json: - schema: &284 + schema: &285 type: object required: - run_workflows_from_fork_pull_requests @@ -11988,7 +11988,7 @@ paths: required: true content: application/json: - schema: &285 + schema: &286 type: object required: - run_workflows_from_fork_pull_requests @@ -12411,7 +12411,7 @@ paths: description: Success response content: application/json: - schema: &288 + schema: &289 type: object properties: default_workflow_permissions: &69 @@ -12459,7 +12459,7 @@ paths: required: true content: application/json: - schema: &289 + schema: &290 type: object properties: default_workflow_permissions: *69 @@ -13304,7 +13304,7 @@ paths: application/json: schema: type: array - items: &293 + items: &294 title: Runner Application description: Runner Application type: object @@ -13329,7 +13329,7 @@ paths: - download_url - filename examples: - default: &294 + default: &295 value: - os: osx architecture: x64 @@ -13413,7 +13413,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &295 + '201': &296 description: Response content: application/json: @@ -13528,7 +13528,7 @@ paths: - token - expires_at examples: - default: &296 + default: &297 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -13568,7 +13568,7 @@ paths: application/json: schema: *81 examples: - default: &297 + default: &298 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -13600,7 +13600,7 @@ paths: application/json: schema: *78 examples: - default: &298 + default: &299 value: id: 23 name: MBP @@ -13817,7 +13817,7 @@ paths: - *41 - *77 responses: - '200': &299 + '200': &300 description: Response content: application/json: @@ -13873,7 +13873,7 @@ paths: parameters: - *41 - *77 - - &300 + - &301 name: name description: The name of a self-hosted runner's custom label. in: path @@ -13964,7 +13964,7 @@ paths: required: true content: application/json: - schema: &314 + schema: &315 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -14605,7 +14605,7 @@ paths: required: false schema: type: string - - &317 + - &318 name: include description: |- The event types to include: @@ -14661,7 +14661,7 @@ paths: application/json: schema: type: array - items: &318 + items: &319 type: object properties: "@timestamp": @@ -14783,7 +14783,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &319 + default: &320 value: - "@timestamp": 1606929874512 action: team.add_member @@ -15449,7 +15449,7 @@ paths: application/json: schema: type: array - items: &320 + items: &321 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -15610,7 +15610,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &321 + default: &322 value: - id: 21 number: 42 @@ -15715,7 +15715,7 @@ paths: application/json: schema: type: array - items: &323 + items: &324 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -15840,7 +15840,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &324 + default: &325 value: - id: 21 number: 42 @@ -15925,7 +15925,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &329 + - &330 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`, @@ -15935,7 +15935,7 @@ paths: schema: &113 type: string description: The name of the tool used to generate the code scanning analysis. - - &330 + - &331 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 @@ -15958,7 +15958,7 @@ paths: be returned. in: query required: false - schema: &331 + schema: &332 type: string description: State of a code scanning alert. enum: @@ -15991,7 +15991,7 @@ paths: application/json: schema: type: array - items: &332 + items: &333 type: object properties: number: &134 @@ -16020,7 +16020,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &568 + instances_url: &569 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -16055,7 +16055,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &569 + dismissed_reason: &570 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -16064,13 +16064,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &570 + dismissed_comment: &571 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &571 + rule: &572 type: object properties: id: @@ -16123,7 +16123,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &572 + tool: &573 type: object properties: name: *113 @@ -16133,26 +16133,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *114 - most_recent_instance: &573 + most_recent_instance: &574 type: object properties: - ref: &566 + ref: &567 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &583 + analysis_key: &584 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: &584 + environment: &585 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: &585 + category: &586 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16172,7 +16172,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: &586 + location: &587 type: object description: Describe a region within a file for the alert. properties: @@ -16193,7 +16193,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: &587 + items: &588 type: string description: A classification of the file. For example to identify it as generated. @@ -16506,7 +16506,7 @@ paths: - most_recent_instance - repository examples: - default: &333 + default: &334 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -17389,7 +17389,7 @@ paths: description: Response content: application/json: - schema: &335 + schema: &336 type: array description: A list of default code security configurations items: @@ -17405,7 +17405,7 @@ paths: default configuration: *116 examples: - default: &336 + default: &337 value: - default_for_new_repos: public configuration: @@ -17863,7 +17863,7 @@ paths: default: value: default_for_new_repos: all - configuration: &334 + configuration: &335 value: id: 1325 target_type: organization @@ -17953,7 +17953,7 @@ paths: application/json: schema: type: array - items: &337 + items: &338 type: object description: Repositories associated with a code security configuration and attachment status @@ -17977,7 +17977,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &338 + repository: &339 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -18466,7 +18466,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &325 + - &326 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -18552,7 +18552,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &414 + properties: &415 id: description: Unique identifier of the team type: integer @@ -18624,7 +18624,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &415 + required: &416 - id - node_id - url @@ -19305,7 +19305,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': &345 + '413': &346 description: Payload Too Large content: application/json: @@ -20461,7 +20461,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &350 + - &351 name: classification in: query description: |- @@ -20470,7 +20470,7 @@ paths: Can be: `malware`, `general` schema: type: string - - &351 + - &352 name: state in: query description: |- @@ -20479,7 +20479,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &352 + - &353 name: severity in: query description: |- @@ -20488,7 +20488,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &353 + - &354 name: ecosystem in: query description: |- @@ -20497,14 +20497,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &354 + - &355 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 - - &355 + - &356 name: epss_percentage in: query description: |- @@ -20516,7 +20516,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 - - &630 + - &631 name: has in: query description: |- @@ -20530,7 +20530,7 @@ paths: type: string enum: - patch - - &356 + - &357 name: assignee in: query description: |- @@ -20539,7 +20539,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &357 + - &358 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -20549,7 +20549,7 @@ paths: enum: - development - runtime - - &358 + - &359 name: sort in: query description: |- @@ -20575,7 +20575,7 @@ paths: application/json: schema: type: array - items: &359 + items: &360 type: object description: A Dependabot alert. properties: @@ -20639,7 +20639,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &631 + security_advisory: &632 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -20897,14 +20897,14 @@ paths: nullable: true maxLength: 280 fixed_at: *144 - auto_dismissed_at: &632 + auto_dismissed_at: &633 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &633 + dismissal_request: &634 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -20966,7 +20966,7 @@ paths: - repository additionalProperties: false examples: - default: &360 + default: &361 value: - number: 2 state: dismissed @@ -21351,7 +21351,7 @@ paths: description: Response content: application/json: - schema: &361 + schema: &362 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -21377,7 +21377,7 @@ paths: nullable: true additionalProperties: false examples: - default: &362 + default: &363 value: default_level: public accessible_repositories: @@ -21599,7 +21599,7 @@ paths: - *105 - *106 - *107 - - &364 + - &365 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -21625,7 +21625,7 @@ paths: application/json: schema: type: array - items: &366 + items: &367 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -21746,7 +21746,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &367 + default: &368 value: - id: 21 number: 42 @@ -22825,7 +22825,7 @@ paths: application/json: schema: *22 examples: - default: &391 + default: &392 value: id: 1 account: @@ -23079,7 +23079,7 @@ paths: - name - created_on examples: - default: &483 + default: &484 value: total_count: 2 network_configurations: @@ -23330,7 +23330,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &484 + - &485 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -23342,7 +23342,7 @@ paths: description: Response content: application/json: - schema: &485 + schema: &486 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -23376,7 +23376,7 @@ paths: - subnet_id - region examples: - default: &486 + default: &487 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -24195,7 +24195,7 @@ paths: required: true content: application/json: - schema: &447 + schema: &448 title: Custom Property Set Payload description: Custom property set payload type: object @@ -25426,7 +25426,7 @@ paths: nullable: true anyOf: - *169 - - &454 + - &455 title: Organization ruleset conditions type: object description: |- @@ -25473,7 +25473,7 @@ paths: - *172 rules: type: array - items: &778 + items: &779 title: Repository Rule type: object description: A repository rule. @@ -25482,7 +25482,7 @@ paths: - *178 - *179 - *180 - - &775 + - &776 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -25573,7 +25573,7 @@ paths: - *191 - *192 - *193 - - &776 + - &777 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -25822,7 +25822,7 @@ paths: type: string format: date-time examples: - default: &457 + default: &458 value: - version_id: 3 actor: @@ -25875,7 +25875,7 @@ paths: description: Response content: application/json: - schema: &458 + schema: &459 allOf: - *202 - type: object @@ -25930,7 +25930,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &459 + - &460 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -25941,7 +25941,7 @@ paths: enum: - open - resolved - - &460 + - &461 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -25951,7 +25951,7 @@ paths: required: false schema: type: string - - &461 + - &462 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -25962,7 +25962,7 @@ paths: required: false schema: type: string - - &462 + - &463 name: exclude_providers in: query description: |- @@ -25973,7 +25973,7 @@ paths: required: false schema: type: string - - &463 + - &464 name: providers in: query description: |- @@ -25984,7 +25984,7 @@ paths: required: false schema: type: string - - &464 + - &465 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -25993,7 +25993,7 @@ paths: required: false schema: type: string - - &465 + - &466 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -26012,7 +26012,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &466 + - &467 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. @@ -26028,7 +26028,7 @@ paths: - *17 - *110 - *111 - - &467 + - &468 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -26037,7 +26037,7 @@ paths: required: false schema: type: string - - &468 + - &469 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -26046,7 +26046,7 @@ paths: schema: type: boolean default: false - - &469 + - &470 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -26055,7 +26055,7 @@ paths: schema: type: boolean default: false - - &470 + - &471 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -26064,7 +26064,7 @@ paths: schema: type: boolean default: false - - &471 + - &472 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -26075,7 +26075,7 @@ paths: required: false schema: type: boolean - - &472 + - &473 name: included_metadata in: query description: |- @@ -26086,7 +26086,7 @@ paths: required: false schema: type: string - - &473 + - &474 name: owner_email_hash in: query description: |- @@ -26105,7 +26105,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 type: object properties: number: *134 @@ -26124,14 +26124,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &791 + state: &792 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: &792 + resolution: &793 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -26248,8 +26248,8 @@ paths: pull request. ' - oneOf: &793 - - &795 + oneOf: &794 + - &796 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26307,7 +26307,7 @@ paths: - blob_url - commit_sha - commit_url - - &796 + - &797 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. @@ -26362,7 +26362,7 @@ paths: - page_url - commit_sha - commit_url - - &797 + - &798 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -26382,7 +26382,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &798 + - &799 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26402,7 +26402,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &799 + - &800 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26422,7 +26422,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &800 + - &801 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26436,7 +26436,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &801 + - &802 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26450,7 +26450,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &802 + - &803 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26464,7 +26464,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &803 + - &804 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. @@ -26484,7 +26484,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &804 + - &805 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. @@ -26504,7 +26504,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &805 + - &806 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. @@ -26524,7 +26524,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &806 + - &807 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. @@ -26544,7 +26544,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &807 + - &808 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -26592,7 +26592,7 @@ paths: required: *21 nullable: true examples: - default: &475 + default: &476 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -26801,7 +26801,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &477 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -26884,7 +26884,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *204 examples: - default: &477 + default: &478 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -27020,7 +27020,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &480 + - &481 name: advanced_security_product in: query description: | @@ -27040,7 +27040,7 @@ paths: description: Success content: application/json: - schema: &481 + schema: &482 type: object properties: total_advanced_security_committers: @@ -27095,7 +27095,7 @@ paths: required: - repositories examples: - default: &482 + default: &483 value: total_advanced_security_committers: 2 total_count: 2 @@ -30248,7 +30248,7 @@ paths: type: array items: *75 examples: - default: &262 + default: &263 value: - login: github id: 1 @@ -30533,6 +30533,192 @@ 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: &225 + 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. + example: 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. + example: 00000000-0000-0000-0000-000000000000 + username: + type: string + description: The GitHub username of the user associated + with the Visual Studio subscription assignment. + example: gh-user + nullable: true + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription + assignment was manually matched to a user. + example: 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: *225 + 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: *225 + 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 @@ -30622,7 +30808,7 @@ paths: application/json: schema: type: array - items: &257 + items: &258 title: Event description: Event type: object @@ -30632,7 +30818,7 @@ paths: type: type: string nullable: true - actor: &225 + actor: &226 title: Actor description: Actor type: object @@ -30672,7 +30858,7 @@ paths: - id - name - url - org: *225 + org: *226 payload: oneOf: - title: CreateEvent @@ -30718,7 +30904,7 @@ paths: properties: action: type: string - discussion: &934 + discussion: &935 title: Discussion description: A Discussion in a repository. type: object @@ -31005,7 +31191,7 @@ paths: - id labels: type: array - items: &230 + items: &231 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -31080,12 +31266,12 @@ paths: properties: action: type: string - issue: &231 + issue: &232 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &692 + properties: &693 id: type: integer format: int64 @@ -31198,7 +31384,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &436 + properties: &437 url: type: string format: uri @@ -31268,7 +31454,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &437 + required: &438 - closed_issues - creator - description @@ -31347,7 +31533,7 @@ paths: timeline_url: type: string format: uri - type: &401 + type: &402 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -31410,9 +31596,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - author_association: &228 + properties: *227 + required: *228 + author_association: &229 title: author_association type: string example: OWNER @@ -31427,7 +31613,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &229 + reactions: &230 title: Reaction Rollup type: object properties: @@ -31463,7 +31649,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &850 + sub_issues_summary: &851 title: Sub-issues Summary type: object properties: @@ -31488,7 +31674,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &232 + properties: &233 id: description: Unique identifier of the issue comment example: 42 @@ -31531,7 +31717,7 @@ paths: issue_url: type: string format: uri - author_association: *228 + author_association: *229 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -31542,15 +31728,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - reactions: *229 + properties: *227 + required: *228 + reactions: *230 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &719 + properties: &720 pinned_at: type: string format: date-time @@ -31562,7 +31748,7 @@ paths: properties: *20 required: *21 nullable: true - required: &720 + required: &721 - pinned_at - pinned_by nullable: true @@ -31571,16 +31757,16 @@ paths: description: Details about why an issue comment was minimized. type: object - properties: &721 + properties: &722 reason: description: The reason the comment was minimized. type: string nullable: true example: low-quality - required: &722 + required: &723 - reason nullable: true - required: &233 + required: &234 - id - node_id - html_url @@ -31590,7 +31776,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &851 + issue_dependencies_summary: &852 title: Issue Dependencies Summary type: object properties: @@ -31609,7 +31795,7 @@ paths: - total_blocking issue_field_values: type: array - items: &703 + items: &704 title: Issue Field Value description: A value assigned to an issue field type: object @@ -31701,7 +31887,7 @@ paths: - node_id - data_type - value - required: &693 + required: &694 - assignee - closed_at - comments @@ -31722,7 +31908,7 @@ paths: - user - created_at - updated_at - x-github-breaking-changes: &694 + x-github-breaking-changes: &695 - changeset: deprecate_beta_media_type patch: properties: @@ -31769,10 +31955,10 @@ paths: assignees: type: array items: *4 - label: *230 + label: *231 labels: type: array - items: *230 + items: *231 required: - action - issue @@ -31781,14 +31967,14 @@ paths: properties: action: type: string - issue: *231 - comment: &688 + issue: *232 + comment: &689 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 required: - action - issue @@ -31961,8 +32147,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true allow_forking: type: boolean @@ -32051,7 +32237,7 @@ paths: type: string number: type: integer - pull_request: &236 + pull_request: &237 title: Pull Request Minimal type: object properties: @@ -32122,10 +32308,10 @@ paths: assignees: type: array items: *4 - label: *230 + label: *231 labels: type: array - items: *230 + items: *231 required: - action - number @@ -32135,7 +32321,7 @@ paths: properties: action: type: string - pull_request: *236 + pull_request: *237 comment: type: object properties: @@ -32386,7 +32572,7 @@ paths: - pull_request updated_at: type: string - pull_request: *236 + pull_request: *237 required: - action - review @@ -32435,7 +32621,7 @@ paths: updated_at: type: string format: date-time - reactions: *229 + reactions: *230 required: - action - comment @@ -32446,7 +32632,7 @@ paths: type: string release: allOf: - - &768 + - &769 title: Release description: A release. type: object @@ -32517,7 +32703,7 @@ paths: author: *4 assets: type: array - items: &769 + items: &770 title: Release Asset description: Data related to a release. type: object @@ -32592,7 +32778,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *229 + reactions: *230 required: - assets_url - upload_url @@ -32765,7 +32951,7 @@ paths: _links: type: object properties: - timeline: &237 + timeline: &238 title: Link With Type description: Hypermedia Link with Type type: object @@ -32777,17 +32963,17 @@ paths: required: - href - type - user: *237 - security_advisories: *237 - current_user: *237 - current_user_public: *237 - current_user_actor: *237 - current_user_organization: *237 + user: *238 + security_advisories: *238 + current_user: *238 + current_user_public: *238 + current_user_actor: *238 + current_user_organization: *238 current_user_organizations: type: array - items: *237 - repository_discussions: *237 - repository_discussions_category: *237 + items: *238 + repository_discussions: *238 + repository_discussions_category: *238 required: - timeline - user @@ -32849,7 +33035,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *238 + - *239 - *17 - *19 responses: @@ -32859,7 +33045,7 @@ paths: application/json: schema: type: array - items: &239 + items: &240 title: Base Gist description: Base Gist type: object @@ -32987,7 +33173,7 @@ paths: path: "/properties/history" version: '2026-03-10' examples: - default: &240 + default: &241 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -33108,7 +33294,7 @@ paths: description: Response content: application/json: - schema: &241 + schema: &242 title: Gist Simple description: Gist Simple type: object @@ -33125,7 +33311,7 @@ paths: url: type: string format: uri - user: &859 + user: &860 title: Public User description: Public User type: object @@ -33495,7 +33681,7 @@ paths: path: "/properties/history" version: '2026-03-10' examples: - default: &242 + default: &243 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -33599,7 +33785,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-public-gists parameters: - - *238 + - *239 - *17 - *19 responses: @@ -33609,9 +33795,9 @@ paths: application/json: schema: type: array - items: *239 + items: *240 examples: - default: *240 + default: *241 headers: Link: *47 '422': *15 @@ -33633,7 +33819,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-starred-gists parameters: - - *238 + - *239 - *17 - *19 responses: @@ -33643,9 +33829,9 @@ paths: application/json: schema: type: array - items: *239 + items: *240 examples: - default: *240 + default: *241 headers: Link: *47 '401': *25 @@ -33672,7 +33858,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist parameters: - - &243 + - &244 name: gist_id description: The unique identifier of the gist. in: path @@ -33684,10 +33870,10 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: *242 - '403': &246 + default: *243 + '403': &247 description: Forbidden Gist content: application/json: @@ -33734,7 +33920,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#update-a-gist parameters: - - *243 + - *244 requestBody: required: true content: @@ -33794,9 +33980,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - updateGist: *242 + updateGist: *243 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -33954,7 +34140,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#delete-a-gist parameters: - - *243 + - *244 responses: '204': description: Response @@ -33982,7 +34168,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#list-gist-comments parameters: - - *243 + - *244 - *17 - *19 responses: @@ -33992,7 +34178,7 @@ paths: application/json: schema: type: array - items: &244 + items: &245 title: Gist Comment description: A comment made to a gist. type: object @@ -34027,7 +34213,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *228 + author_association: *229 required: - url - id @@ -34091,7 +34277,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#create-a-gist-comment parameters: - - *243 + - *244 requestBody: required: true content: @@ -34116,9 +34302,9 @@ paths: description: Response content: application/json: - schema: *244 + schema: *245 examples: - default: &245 + default: &246 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -34175,8 +34361,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#get-a-gist-comment parameters: - - *243 - - &247 + - *244 + - &248 name: comment_id description: The unique identifier of the comment. in: path @@ -34189,12 +34375,12 @@ paths: description: Response content: application/json: - schema: *244 + schema: *245 examples: - default: *245 + default: *246 '304': *37 '404': *6 - '403': *246 + '403': *247 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -34215,8 +34401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#update-a-gist-comment parameters: - - *243 - - *247 + - *244 + - *248 requestBody: required: true content: @@ -34241,9 +34427,9 @@ paths: description: Response content: application/json: - schema: *244 + schema: *245 examples: - default: *245 + default: *246 '404': *6 x-github: githubCloudOnly: false @@ -34260,8 +34446,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/comments#delete-a-gist-comment parameters: - - *243 - - *247 + - *244 + - *248 responses: '204': description: Response @@ -34284,7 +34470,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-commits parameters: - - *243 + - *244 - *17 - *19 responses: @@ -34385,7 +34571,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gist-forks parameters: - - *243 + - *244 - *17 - *19 responses: @@ -34395,7 +34581,7 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: default: value: @@ -34460,13 +34646,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#fork-a-gist parameters: - - *243 + - *244 responses: '201': description: Response content: application/json: - schema: *239 + schema: *240 examples: default: value: @@ -34543,7 +34729,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *243 + - *244 responses: '204': description: Response if gist is starred @@ -34573,7 +34759,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#star-a-gist parameters: - - *243 + - *244 responses: '204': description: Response @@ -34595,7 +34781,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#unstar-a-gist parameters: - - *243 + - *244 responses: '204': description: Response @@ -34623,7 +34809,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#get-a-gist-revision parameters: - - *243 + - *244 - name: sha in: path required: true @@ -34634,9 +34820,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: *242 + default: *243 '422': *15 '404': *6 '403': *29 @@ -35016,7 +35202,7 @@ paths: - closed - all default: open - - &404 + - &405 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -35035,7 +35221,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - name: collab in: query required: false @@ -35065,9 +35251,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: &405 + default: &406 value: - id: 1 node_id: MDU6SXNzdWUx @@ -35351,8 +35537,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 examples: default: value: @@ -35637,7 +35823,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &248 + X-CommonMarker-Version: &249 example: 0.17.4 schema: type: string @@ -35692,7 +35878,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *248 + X-CommonMarker-Version: *249 content: text/html: schema: @@ -35721,7 +35907,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: - - &251 + - &252 name: account_id description: account_id parameter in: path @@ -35733,7 +35919,7 @@ paths: description: Response content: application/json: - schema: &250 + schema: &251 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -35763,7 +35949,7 @@ paths: nullable: true id: type: integer - plan: &249 + plan: &250 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -35852,7 +36038,7 @@ paths: nullable: true updated_at: type: string - plan: *249 + plan: *250 required: - url - id @@ -35860,7 +36046,7 @@ paths: - login - marketplace_purchase examples: - default: &252 + default: &253 value: url: https://api.github.com/orgs/github type: Organization @@ -35945,9 +36131,9 @@ paths: application/json: schema: type: array - items: *249 + items: *250 examples: - default: &253 + default: &254 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -35987,14 +36173,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &254 + - &255 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &255 + - &256 name: sort description: The property to sort the results by. in: query @@ -36024,9 +36210,9 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: - default: &256 + default: &257 value: - url: https://api.github.com/orgs/github type: Organization @@ -36100,15 +36286,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: - - *251 + - *252 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: - default: *252 + default: *253 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -36140,9 +36326,9 @@ paths: application/json: schema: type: array - items: *249 + items: *250 examples: - default: *253 + default: *254 headers: Link: *47 '401': *25 @@ -36165,8 +36351,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *254 - *255 + - *256 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -36186,9 +36372,9 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: - default: *256 + default: *257 headers: Link: *47 '401': *25 @@ -36452,14 +36638,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: - - &495 + - &496 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &496 + - &497 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -36476,7 +36662,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -36521,7 +36707,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &501 + '301': &502 description: Moved permanently content: application/json: @@ -36543,7 +36729,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &742 + - &743 name: all description: If `true`, show notifications marked as read. in: query @@ -36551,7 +36737,7 @@ paths: schema: type: boolean default: false - - &743 + - &744 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -36560,8 +36746,8 @@ paths: schema: type: boolean default: false - - *238 - - &744 + - *239 + - &745 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: @@ -36586,18 +36772,18 @@ paths: application/json: schema: type: array - items: &258 + items: &259 title: Thread description: Thread type: object properties: id: type: string - repository: &292 + repository: &293 title: Minimal Repository description: Minimal Repository type: object - properties: &368 + properties: &369 id: type: integer format: int64 @@ -36883,7 +37069,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &451 + security_and_analysis: &452 nullable: true type: object properties: @@ -37011,7 +37197,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &369 + required: &370 - archive_url - assignees_url - blobs_url @@ -37058,7 +37244,7 @@ paths: - teams_url - trees_url - url - x-github-breaking-changes: &370 + x-github-breaking-changes: &371 - changeset: remove_has_downloads patch: properties: @@ -37105,7 +37291,7 @@ paths: - url - subscription_url examples: - default: &745 + default: &746 value: - id: '1' repository: @@ -37271,7 +37457,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#get-a-thread parameters: - - &259 + - &260 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 @@ -37285,7 +37471,7 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: default: value: @@ -37388,7 +37574,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-read parameters: - - *259 + - *260 responses: '205': description: Reset Content @@ -37411,7 +37597,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-a-thread-as-done parameters: - - *259 + - *260 responses: '204': description: No content @@ -37434,13 +37620,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: - - *259 + - *260 responses: '200': description: Response content: application/json: - schema: &260 + schema: &261 title: Thread Subscription description: Thread Subscription type: object @@ -37477,7 +37663,7 @@ paths: - url - subscribed examples: - default: &261 + default: &262 value: subscribed: true ignored: false @@ -37508,7 +37694,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#set-a-thread-subscription parameters: - - *259 + - *260 requestBody: required: false content: @@ -37529,9 +37715,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *261 examples: - default: *261 + default: *262 '304': *37 '403': *29 '401': *25 @@ -37554,7 +37740,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#delete-a-thread-subscription parameters: - - *259 + - *260 responses: '204': description: Response @@ -37651,7 +37837,7 @@ paths: type: array items: *75 examples: - default: *262 + default: *263 headers: Link: example: ; rel="next" @@ -37702,7 +37888,7 @@ paths: type: integer custom_roles: type: array - items: &346 + items: &347 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -37750,7 +37936,7 @@ paths: - created_at - updated_at examples: - default: &347 + default: &348 value: id: 8030 name: Security Engineer @@ -37816,7 +38002,7 @@ paths: description: Response content: application/json: - schema: &263 + schema: &264 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -37854,7 +38040,7 @@ paths: required: true content: application/json: - schema: *263 + schema: *264 examples: selected_actions: *44 responses: @@ -37889,7 +38075,7 @@ paths: description: Response content: application/json: - schema: &264 + schema: &265 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -37927,7 +38113,7 @@ paths: required: true content: application/json: - schema: *264 + schema: *265 examples: selected_actions: *46 responses: @@ -37970,7 +38156,7 @@ paths: type: array items: *163 examples: - default: &751 + default: &752 value: - property_name: environment value: production @@ -38020,7 +38206,7 @@ paths: required: - properties examples: - default: &752 + default: &753 value: properties: - property_name: environment @@ -38067,7 +38253,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &266 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -38406,7 +38592,7 @@ paths: path: "/properties/secret_scanning_push_protection_custom_link_enabled" version: '2026-03-10' examples: - default-response: &266 + default-response: &267 value: login: github id: 1 @@ -38737,17 +38923,17 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *266 + default: *267 '422': description: Validation failed content: application/json: schema: oneOf: - - *267 - *268 + - *269 '409': *121 x-github: githubCloudOnly: false @@ -38818,9 +39004,9 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: - default: *270 + default: *271 headers: Link: *47 x-github: @@ -38861,7 +39047,7 @@ paths: type: integer repository_cache_usages: type: array - items: &508 + items: &509 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -38936,7 +39122,7 @@ paths: type: array items: *48 examples: - default: *271 + default: *272 headers: Link: *47 x-github: @@ -39102,7 +39288,7 @@ paths: application/json: schema: *49 examples: - default: *272 + default: *273 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39194,7 +39380,7 @@ paths: application/json: schema: *52 examples: - default: *273 + default: *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39313,9 +39499,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *275 examples: - default: *275 + default: *276 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39351,7 +39537,7 @@ paths: type: array items: *56 examples: - default: *276 + default: *277 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39594,7 +39780,7 @@ paths: required: true content: application/json: - schema: *277 + schema: *278 examples: default: *60 responses: @@ -39687,7 +39873,7 @@ paths: required: - include_claim_keys examples: - default: &278 + default: &279 value: include_claim_keys: - repo @@ -39732,13 +39918,13 @@ paths: format. type: boolean examples: - default: *278 + default: *279 responses: '201': description: Empty response content: application/json: - schema: &303 + schema: &304 title: Empty Object description: An object without any properties. type: object @@ -39777,7 +39963,7 @@ paths: schema: type: object properties: - enabled_repositories: &280 + enabled_repositories: &281 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -39791,7 +39977,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *62 - selected_actions_url: *279 + selected_actions_url: *280 sha_pinning_required: *63 required: - enabled_repositories @@ -39833,7 +40019,7 @@ paths: schema: type: object properties: - enabled_repositories: *280 + enabled_repositories: *281 allowed_actions: *62 sha_pinning_required: *63 required: @@ -39869,7 +40055,7 @@ paths: description: Response content: application/json: - schema: *281 + schema: *282 examples: response: summary: Example response @@ -39900,7 +40086,7 @@ paths: required: true content: application/json: - schema: *282 + schema: *283 examples: application/json: value: @@ -39938,7 +40124,7 @@ paths: application/json: schema: *64 examples: - default: *283 + default: *284 '404': *6 x-github: enabledForGitHubApps: true @@ -39995,7 +40181,7 @@ paths: description: Response content: application/json: - schema: *284 + schema: *285 examples: default: *65 '403': *29 @@ -40020,7 +40206,7 @@ paths: required: true content: application/json: - schema: *285 + schema: *286 examples: default: *65 responses: @@ -40072,7 +40258,7 @@ paths: type: array items: *80 examples: - default: &287 + default: &288 value: total_count: 1 repositories: @@ -40257,7 +40443,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *89 - - &286 + - &287 name: repository_id description: The unique identifier of the repository. in: path @@ -40286,7 +40472,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *89 - - *286 + - *287 responses: '204': description: Response @@ -40482,7 +40668,7 @@ paths: type: array items: *80 examples: - default: *287 + default: *288 '403': *29 '404': *6 x-github: @@ -40551,7 +40737,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: - *89 - - *286 + - *287 responses: '204': description: No content @@ -40578,7 +40764,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: - *89 - - *286 + - *287 responses: '204': description: No content @@ -40612,7 +40798,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: default: *71 x-github: @@ -40646,7 +40832,7 @@ paths: required: false content: application/json: - schema: *289 + schema: *290 examples: default: *71 x-github: @@ -40693,7 +40879,7 @@ paths: type: number runner_groups: type: array - items: &290 + items: &291 type: object properties: id: @@ -40881,9 +41067,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: - default: &291 + default: &292 value: id: 2 name: octo-runner-group @@ -40925,7 +41111,7 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: default: value: @@ -41016,9 +41202,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: - default: *291 + default: *292 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -41082,7 +41268,7 @@ paths: type: array items: *48 examples: - default: *271 + default: *272 headers: Link: *47 x-github: @@ -41123,9 +41309,9 @@ paths: type: number repositories: type: array - items: *292 + items: *293 examples: - default: &344 + default: &345 value: total_count: 1 repositories: @@ -41424,7 +41610,7 @@ paths: parameters: - *89 - *74 - - *286 + - *287 responses: '204': description: Response @@ -41448,7 +41634,7 @@ paths: parameters: - *89 - *74 - - *286 + - *287 responses: '204': description: Response @@ -41666,9 +41852,9 @@ paths: application/json: schema: type: array - items: *293 + items: *294 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41733,7 +41919,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *295 + '201': *296 '404': *6 '422': *7 '409': *121 @@ -41772,7 +41958,7 @@ paths: application/json: schema: *81 examples: - default: *296 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41808,7 +41994,7 @@ paths: application/json: schema: *81 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41839,7 +42025,7 @@ paths: application/json: schema: *78 examples: - default: *298 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42014,7 +42200,7 @@ paths: - *89 - *77 responses: - '200': *299 + '200': *300 '404': *6 x-github: githubCloudOnly: false @@ -42043,7 +42229,7 @@ paths: parameters: - *89 - *77 - - *300 + - *301 responses: '200': *83 '404': *6 @@ -42088,7 +42274,7 @@ paths: type: integer secrets: type: array - items: &301 + items: &302 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -42120,7 +42306,7 @@ paths: - updated_at - visibility examples: - default: &307 + default: &308 value: total_count: 3 secrets: @@ -42167,7 +42353,7 @@ paths: description: Response content: application/json: - schema: &308 + schema: &309 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -42196,7 +42382,7 @@ paths: - key_id - key examples: - default: &309 + default: &310 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -42222,7 +42408,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-organization-secret parameters: - *89 - - &302 + - &303 name: secret_name description: The name of the secret. in: path @@ -42234,9 +42420,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *302 examples: - default: &310 + default: &311 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -42265,7 +42451,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -42322,7 +42508,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -42349,7 +42535,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -42376,7 +42562,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -42394,9 +42580,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: &306 + default: &307 value: total_count: 1 repositories: @@ -42489,7 +42675,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -42542,7 +42728,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -42576,7 +42762,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -42609,7 +42795,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-organization-variables parameters: - *89 - - &311 + - &312 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)." @@ -42633,7 +42819,7 @@ paths: type: integer variables: type: array - items: &304 + items: &305 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -42676,7 +42862,7 @@ paths: - updated_at - visibility examples: - default: &312 + default: &313 value: total_count: 3 variables: @@ -42766,7 +42952,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -42792,7 +42978,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-organization-variable parameters: - *89 - - &305 + - &306 name: name description: The name of the variable. in: path @@ -42804,9 +42990,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *305 examples: - default: &313 + default: &314 value: name: USERNAME value: octocat @@ -42835,7 +43021,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -42898,7 +43084,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-organization-variable parameters: - *89 - - *305 + - *306 responses: '204': description: Response @@ -42925,7 +43111,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 - *19 - *17 responses: @@ -42943,9 +43129,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 '409': description: Response when the visibility of the variable is not set to `selected` @@ -42972,7 +43158,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -43022,7 +43208,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -43057,7 +43243,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -43109,9 +43295,9 @@ paths: type: integer secrets: type: array - items: *301 + items: *302 examples: - default: *307 + default: *308 headers: Link: *47 x-github: @@ -43142,9 +43328,9 @@ paths: description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43167,15 +43353,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *301 + schema: *302 examples: - default: *310 + default: *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43198,7 +43384,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -43255,7 +43441,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -43282,7 +43468,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -43309,7 +43495,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -43327,9 +43513,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43353,7 +43539,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -43406,7 +43592,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -43440,7 +43626,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -43474,7 +43660,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-organization-variables parameters: - *89 - - *311 + - *312 - *19 responses: '200': @@ -43491,9 +43677,9 @@ paths: type: integer variables: type: array - items: *304 + items: *305 examples: - default: *312 + default: *313 headers: Link: *47 x-github: @@ -43564,7 +43750,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -43590,15 +43776,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-an-organization-variable parameters: - *89 - - *305 + - *306 responses: '200': description: Response content: application/json: - schema: *304 + schema: *305 examples: - default: *313 + default: *314 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43620,7 +43806,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -43683,7 +43869,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-an-organization-variable parameters: - *89 - - *305 + - *306 responses: '204': description: Response @@ -43710,7 +43896,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 - *19 - *17 responses: @@ -43728,9 +43914,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 '409': description: Response when the visibility of the variable is not set to `selected` @@ -43757,7 +43943,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#set-selected-repositories-for-an-organization-variable parameters: - *89 - - *305 + - *306 requestBody: required: true content: @@ -43807,7 +43993,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#add-selected-repository-to-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -43842,7 +44028,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#remove-selected-repository-from-an-organization-variable parameters: - *89 - - *305 + - *306 - name: repository_id in: path required: true @@ -43900,7 +44086,7 @@ paths: required: true content: application/json: - schema: *314 + schema: *315 examples: default: *87 parameters: @@ -44084,7 +44270,7 @@ paths: type: integer deployment_records: type: array - items: &315 + items: &316 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -44130,7 +44316,7 @@ paths: required: - total_count examples: - default: &316 + default: &317 value: total_count: 1 deployment_records: @@ -44310,11 +44496,11 @@ paths: type: integer deployment_records: type: array - items: *315 + items: *316 required: - total_count examples: - default: *316 + default: *317 '403': description: Forbidden content: @@ -44553,9 +44739,9 @@ paths: type: integer deployment_records: type: array - items: *315 + items: *316 examples: - default: *316 + default: *317 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44684,12 +44870,12 @@ paths: required: - subject_digests examples: - default: &892 + default: &893 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &893 + withPredicateType: &894 value: subject_digests: - sha256:abc123 @@ -44747,7 +44933,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &894 + default: &895 value: attestations_subject_digests: - sha256:abc: @@ -45112,7 +45298,7 @@ paths: initiator: type: string examples: - default: &541 + default: &542 value: attestations: - bundle: @@ -45252,7 +45438,7 @@ paths: required: false schema: type: string - - *317 + - *318 - *131 - *132 - *133 @@ -45264,9 +45450,9 @@ paths: application/json: schema: type: array - items: *318 + items: *319 examples: - default: *319 + default: *320 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45389,7 +45575,7 @@ paths: subcategory: bypass-requests parameters: - *89 - - &322 + - &323 name: repository_name description: The name of the repository to filter on. in: query @@ -45408,9 +45594,9 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: - default: *321 + default: *322 '404': *6 '500': *40 "/orgs/{org}/bypass-requests/secret-scanning": @@ -45434,7 +45620,7 @@ paths: subcategory: delegated-bypass parameters: - *89 - - *322 + - *323 - *105 - *106 - *107 @@ -45448,9 +45634,9 @@ paths: application/json: schema: type: array - items: *323 + items: *324 examples: - default: *324 + default: *325 '404': *6 '500': *40 "/orgs/{org}/campaigns": @@ -45477,7 +45663,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &326 + schema: &327 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -45503,7 +45689,7 @@ paths: application/json: schema: type: array - items: &327 + items: &328 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -45534,7 +45720,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *325 + items: *326 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -45552,7 +45738,7 @@ paths: type: string format: date-time nullable: true - state: *326 + state: *327 contact_link: description: The contact link of the campaign. type: string @@ -45772,9 +45958,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: &328 + default: &329 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -45857,9 +46043,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *328 + default: *329 '404': *6 '422': description: Unprocessable Entity @@ -45936,7 +46122,7 @@ paths: type: string format: uri nullable: true - state: *326 + state: *327 examples: default: value: @@ -45946,9 +46132,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *328 + default: *329 '400': description: Bad Request content: @@ -46015,8 +46201,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *89 - - *329 - *330 + - *331 - *110 - *111 - *19 @@ -46027,7 +46213,7 @@ paths: be returned. in: query required: false - schema: *331 + schema: *332 - name: sort description: The property by which to sort the results. in: query @@ -46043,7 +46229,7 @@ paths: be returned. in: query required: false - schema: &567 + schema: &568 type: string description: Severity of a code scanning alert. enum: @@ -46069,9 +46255,9 @@ paths: application/json: schema: type: array - items: *332 + items: *333 examples: - default: *333 + default: *334 headers: Link: *47 '404': *6 @@ -46446,7 +46632,7 @@ paths: application/json: schema: *116 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46474,9 +46660,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *336 examples: - default: *336 + default: *337 '304': *37 '403': *29 '404': *6 @@ -46565,7 +46751,7 @@ paths: application/json: schema: *116 examples: - default: *334 + default: *335 '304': *37 '403': *29 '404': *6 @@ -47010,7 +47196,7 @@ paths: default: value: default_for_new_repos: all - configuration: *334 + configuration: *335 '403': *29 '404': *6 x-github: @@ -47063,13 +47249,13 @@ paths: application/json: schema: type: array - items: *337 + items: *338 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *338 + repository: *339 '403': *29 '404': *6 x-github: @@ -47109,7 +47295,7 @@ paths: type: integer codespaces: type: array - items: &406 + items: &407 type: object title: Codespace description: A codespace. @@ -47134,12 +47320,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *292 + repository: *293 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &599 + properties: &600 name: type: string description: The name of the machine. @@ -47181,7 +47367,7 @@ paths: - ready - in_progress nullable: true - required: &600 + required: &601 - name - display_name - operating_system @@ -47386,7 +47572,7 @@ paths: - pulls_url - recent_folders examples: - default: &407 + default: &408 value: total_count: 3 codespaces: @@ -48010,7 +48196,7 @@ paths: type: integer secrets: type: array - items: &339 + items: &340 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -48049,7 +48235,7 @@ paths: - updated_at - visibility examples: - default: &601 + default: &602 value: total_count: 2 secrets: @@ -48087,7 +48273,7 @@ paths: description: Response content: application/json: - schema: &602 + schema: &603 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -48116,7 +48302,7 @@ paths: - key_id - key examples: - default: &603 + default: &604 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -48140,15 +48326,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: &605 + default: &606 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -48176,7 +48362,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -48231,7 +48417,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -48258,7 +48444,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -48284,7 +48470,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -48302,9 +48488,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 '404': *6 x-github: githubCloudOnly: false @@ -48327,7 +48513,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -48378,7 +48564,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -48412,7 +48598,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -48482,7 +48668,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: &340 + items: &341 title: Space description: A GitHub Copilot Space represents an interactive AI workspace where users can ask questions and get assistance. @@ -48863,9 +49049,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: &341 + default: &342 summary: Example response for an organization copilot space value: id: 84 @@ -48970,9 +49156,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *341 + default: *342 '403': *29 '404': *6 x-github: @@ -49098,9 +49284,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *341 + default: *342 '403': *29 '404': *6 '422': *15 @@ -49183,7 +49369,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: &342 + items: &343 title: Copilot Space Collaborator description: A collaborator (user or team) of a Copilot Space type: object @@ -49406,7 +49592,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: user: value: @@ -49536,7 +49722,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: user: value: @@ -49687,7 +49873,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: &343 + items: &344 title: Copilot Space Resource description: A resource attached to a Copilot Space. type: object @@ -49830,7 +50016,7 @@ paths: description: Resource created content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -49846,7 +50032,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -49901,7 +50087,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -49970,7 +50156,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -50698,12 +50884,12 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 required: - total_count - repositories examples: - default: *344 + default: *345 '500': *40 '401': *25 '403': *29 @@ -50789,7 +50975,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: - *89 - - *286 + - *287 responses: '204': description: No Content @@ -50823,7 +51009,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: - *89 - - *286 + - *287 responses: '204': description: No Content @@ -50971,7 +51157,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': *345 + '413': *346 '422': *7 x-github: githubCloudOnly: @@ -51411,7 +51597,7 @@ paths: type: integer custom_roles: type: array - items: *346 + items: *347 examples: default: value: @@ -51503,7 +51689,7 @@ paths: required: true content: application/json: - schema: &348 + schema: &349 type: object properties: name: @@ -51544,9 +51730,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51577,9 +51763,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '404': *6 x-github: githubCloudOnly: true @@ -51607,7 +51793,7 @@ paths: required: true content: application/json: - schema: &349 + schema: &350 type: object properties: name: @@ -51645,9 +51831,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51705,7 +51891,7 @@ paths: required: true content: application/json: - schema: *348 + schema: *349 examples: default: value: @@ -51719,9 +51905,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51758,9 +51944,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '404': *6 x-github: githubCloudOnly: true @@ -51794,7 +51980,7 @@ paths: required: true content: application/json: - schema: *349 + schema: *350 examples: default: value: @@ -51809,9 +51995,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *347 + default: *348 '422': *15 '404': *6 x-github: @@ -51871,12 +52057,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *89 - - *350 - *351 - *352 - *353 - *354 - *355 + - *356 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -51906,7 +52092,7 @@ paths: enum: - patch - deployment - - *356 + - *357 - name: runtime_risk in: query description: |- @@ -51915,8 +52101,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *357 - *358 + - *359 - *112 - *110 - *111 @@ -51928,9 +52114,9 @@ paths: application/json: schema: type: array - items: *359 + items: *360 examples: - default: *360 + default: *361 '304': *37 '400': *14 '403': *29 @@ -51979,9 +52165,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: *362 + default: *363 '403': *29 '404': *6 x-github: @@ -52144,7 +52330,7 @@ paths: type: integer secrets: type: array - items: &363 + items: &364 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -52221,7 +52407,7 @@ paths: description: Response content: application/json: - schema: &636 + schema: &637 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -52238,7 +52424,7 @@ paths: - key_id - key examples: - default: &637 + default: &638 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -52262,13 +52448,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: default: value: @@ -52297,7 +52483,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -52354,7 +52540,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -52387,7 +52573,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-an-organization-secret parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -52412,7 +52598,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 - *19 - *17 responses: @@ -52430,9 +52616,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52454,7 +52640,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -52505,7 +52691,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -52537,7 +52723,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *89 - - *302 + - *303 - name: repository_id in: path required: true @@ -52574,7 +52760,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - &646 + - &647 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -52582,7 +52768,7 @@ paths: required: false schema: type: string - - &647 + - &648 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -52590,7 +52776,7 @@ paths: required: false schema: type: string - - &648 + - &649 name: time_period description: |- The time period to filter by. @@ -52606,7 +52792,7 @@ paths: - week - month default: month - - &649 + - &650 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -52621,7 +52807,7 @@ paths: - denied - all default: all - - *322 + - *323 - *17 - *19 responses: @@ -52631,7 +52817,7 @@ paths: application/json: schema: type: array - items: &650 + items: &651 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -52737,7 +52923,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: &365 + items: &366 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -52787,7 +52973,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &651 + default: &652 value: - id: 21 number: 42 @@ -52875,11 +53061,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - *322 + - *323 - *105 - *106 - *107 - - *364 + - *365 - *17 - *19 responses: @@ -52889,7 +53075,7 @@ paths: application/json: schema: type: array - items: &652 + items: &653 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -52995,7 +53181,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *365 + items: *366 url: type: string format: uri @@ -53006,7 +53192,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &653 + default: &654 value: - id: 21 number: 42 @@ -53094,11 +53280,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - *322 + - *323 - *105 - *106 - *107 - - *364 + - *365 - *17 - *19 responses: @@ -53108,9 +53294,9 @@ paths: application/json: schema: type: array - items: *366 + items: *367 examples: - default: *367 + default: *368 '404': *6 '403': *29 '500': *40 @@ -53136,7 +53322,7 @@ paths: application/json: schema: type: array - items: &417 + items: &418 title: Package description: A software package type: object @@ -53186,9 +53372,9 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *368 - required: *369 - x-github-breaking-changes: *370 + properties: *369 + required: *370 + x-github-breaking-changes: *371 nullable: true created_at: type: string @@ -53207,7 +53393,7 @@ paths: - created_at - updated_at examples: - default: &418 + default: &419 value: - id: 197 name: hello_docker @@ -53295,7 +53481,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: 200-response: value: @@ -53394,7 +53580,7 @@ paths: description: Response content: application/json: - schema: &492 + schema: &493 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -53475,7 +53661,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &493 + default: &494 value: group_id: '123' group_name: Octocat admins @@ -53530,7 +53716,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &490 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -53567,7 +53753,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &490 + default: &491 value: groups: - group_id: '123' @@ -53612,7 +53798,7 @@ paths: application/json: schema: type: array - items: &395 + items: &396 title: Organization Invitation description: Organization Invitation type: object @@ -53659,7 +53845,7 @@ paths: - invitation_teams_url - node_id examples: - default: &396 + default: &397 value: - id: 1 login: monalisa @@ -53726,7 +53912,7 @@ paths: application/json: schema: type: array - items: &452 + items: &453 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -53740,7 +53926,7 @@ paths: - name - description examples: - default: &453 + default: &454 value: - name: add_assignee description: Assign or remove a user @@ -53781,7 +53967,7 @@ paths: application/json: schema: type: array - items: &371 + items: &372 title: Org Hook description: Org Hook type: object @@ -53950,9 +54136,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: &372 + default: &373 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -53997,7 +54183,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-an-organization-webhook parameters: - *89 - - &373 + - &374 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. @@ -54010,9 +54196,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 '404': *6 x-github: githubCloudOnly: false @@ -54034,7 +54220,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-an-organization-webhook parameters: - *89 - - *373 + - *374 requestBody: required: false content: @@ -54079,7 +54265,7 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: default: value: @@ -54119,7 +54305,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *89 - - *373 + - *374 responses: '204': description: Response @@ -54145,7 +54331,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *89 - - *373 + - *374 responses: '200': description: Response @@ -54174,7 +54360,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *89 - - *373 + - *374 requestBody: required: false content: @@ -54223,10 +54409,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *89 - - *373 - - *17 - *374 + - *17 - *375 + - *376 responses: '200': description: Response @@ -54234,9 +54420,9 @@ paths: application/json: schema: type: array - items: *376 + items: *377 examples: - default: *377 + default: *378 '400': *14 '422': *15 x-github: @@ -54260,16 +54446,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *89 - - *373 + - *374 - *16 responses: '200': description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: *379 + default: *380 '400': *14 '422': *15 x-github: @@ -54293,7 +54479,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *89 - - *373 + - *374 - *16 responses: '202': *39 @@ -54320,7 +54506,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *89 - - *373 + - *374 responses: '204': description: Response @@ -54343,7 +54529,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *89 - - &384 + - &385 name: actor_type in: path description: The type of the actor @@ -54356,14 +54542,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &385 + - &386 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &380 + - &381 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`.' @@ -54371,7 +54557,7 @@ paths: required: true schema: type: string - - &381 + - &382 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) @@ -54465,12 +54651,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-subject-stats parameters: - *89 - - *380 - *381 + - *382 - *19 - *17 - *112 - - &390 + - &391 name: sort description: The property to sort the results by. in: query @@ -54548,14 +54734,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats parameters: - *89 - - *380 - *381 + - *382 responses: '200': description: Response content: application/json: - schema: &382 + schema: &383 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -54571,7 +54757,7 @@ paths: type: integer format: int64 examples: - default: &383 + default: &384 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -54592,23 +54778,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *89 - - &386 + - &387 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *380 - *381 + - *382 responses: '200': description: Response content: application/json: - schema: *382 + schema: *383 examples: - default: *383 + default: *384 x-github: enabledForGitHubApps: true category: orgs @@ -54627,18 +54813,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *89 - - *380 - *381 - - *384 + - *382 - *385 + - *386 responses: '200': description: Response content: application/json: - schema: *382 + schema: *383 examples: - default: *383 + default: *384 x-github: enabledForGitHubApps: true category: orgs @@ -54656,9 +54842,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats parameters: - *89 - - *380 - *381 - - &387 + - *382 + - &388 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -54671,7 +54857,7 @@ paths: description: Response content: application/json: - schema: &388 + schema: &389 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -54687,7 +54873,7 @@ paths: type: integer format: int64 examples: - default: &389 + default: &390 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -54724,18 +54910,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-user parameters: - *89 - - *386 - - *380 - - *381 - *387 + - *381 + - *382 + - *388 responses: '200': description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: *389 + default: *390 x-github: enabledForGitHubApps: true category: orgs @@ -54753,19 +54939,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *89 - - *384 - *385 - - *380 + - *386 - *381 - - *387 + - *382 + - *388 responses: '200': description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: *389 + default: *390 x-github: enabledForGitHubApps: true category: orgs @@ -54783,13 +54969,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-user-stats parameters: - *89 - - *386 - - *380 + - *387 - *381 + - *382 - *19 - *17 - *112 - - *390 + - *391 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -54870,7 +55056,7 @@ paths: application/json: schema: *22 examples: - default: *391 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -54990,12 +55176,12 @@ paths: application/json: schema: anyOf: - - &393 + - &394 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &392 + limit: &393 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -55020,7 +55206,7 @@ paths: properties: {} additionalProperties: false examples: - default: &394 + default: &395 value: limit: collaborators_only origin: organization @@ -55049,13 +55235,13 @@ paths: required: true content: application/json: - schema: &682 + schema: &683 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *392 + limit: *393 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -55079,9 +55265,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *394 + default: *395 '422': *15 x-github: githubCloudOnly: false @@ -55159,9 +55345,9 @@ paths: application/json: schema: type: array - items: *395 + items: *396 examples: - default: *396 + default: *397 headers: Link: *47 '404': *6 @@ -55239,7 +55425,7 @@ paths: description: Response content: application/json: - schema: *395 + schema: *396 examples: default: value: @@ -55296,7 +55482,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#cancel-an-organization-invitation parameters: - *89 - - &397 + - &398 name: invitation_id description: The unique identifier of the invitation. in: path @@ -55330,7 +55516,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#list-organization-invitation-teams parameters: - *89 - - *397 + - *398 - *17 - *19 responses: @@ -55340,9 +55526,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: &416 + default: &417 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -55385,7 +55571,7 @@ paths: application/json: schema: type: array - items: &398 + items: &399 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -55638,9 +55824,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: &399 + default: &400 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -55696,7 +55882,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *89 - - &400 + - &401 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -55804,9 +55990,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: *399 + default: *400 '404': *6 '422': *7 x-github: @@ -55831,7 +56017,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *89 - - *400 + - *401 responses: '204': *130 '404': *6 @@ -55861,9 +56047,9 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: &686 + default: &687 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -55946,9 +56132,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: &402 + default: &403 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -55981,7 +56167,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *89 - - &403 + - &404 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -56034,9 +56220,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *402 + default: *403 '404': *6 '422': *7 x-github: @@ -56061,7 +56247,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *89 - - *403 + - *404 responses: '204': description: Response @@ -56124,7 +56310,7 @@ paths: - closed - all default: open - - *404 + - *405 - name: type description: Can be the name of an issue type. in: query @@ -56143,7 +56329,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - *17 - *19 responses: @@ -56153,9 +56339,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *405 + default: *406 headers: Link: *47 '404': *6 @@ -56320,9 +56506,9 @@ paths: type: integer codespaces: type: array - items: *406 + items: *407 examples: - default: *407 + default: *408 '304': *37 '500': *40 '401': *25 @@ -56349,7 +56535,7 @@ paths: parameters: - *89 - *151 - - &408 + - &409 name: codespace_name in: path required: true @@ -56384,15 +56570,15 @@ paths: parameters: - *89 - *151 - - *408 + - *409 responses: '200': description: Response content: application/json: - schema: *406 + schema: *407 examples: - default: &598 + default: &599 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -56648,7 +56834,7 @@ paths: description: Response content: application/json: - schema: &409 + schema: &410 title: Org Membership description: Org Membership type: object @@ -56715,7 +56901,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &410 + response-if-user-has-an-active-admin-membership-with-organization: &411 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -56816,9 +57002,9 @@ paths: description: Response content: application/json: - schema: *409 + schema: *410 examples: - response-if-user-already-had-membership-with-organization: *410 + response-if-user-already-had-membership-with-organization: *411 '422': *15 '403': *29 x-github: @@ -56895,7 +57081,7 @@ paths: application/json: schema: type: array - items: &411 + items: &412 title: Migration description: A migration. type: object @@ -57235,7 +57421,7 @@ paths: description: Response content: application/json: - schema: *411 + schema: *412 examples: default: value: @@ -57414,7 +57600,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#get-an-organization-migration-status parameters: - *89 - - &412 + - &413 name: migration_id description: The unique identifier of the migration. in: path @@ -57441,7 +57627,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *411 + schema: *412 examples: default: value: @@ -57611,7 +57797,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *89 - - *412 + - *413 responses: '302': description: Response @@ -57633,7 +57819,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *89 - - *412 + - *413 responses: '204': description: Response @@ -57657,8 +57843,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#unlock-an-organization-repository parameters: - *89 - - *412 - - &875 + - *413 + - &876 name: repo_name description: repo_name parameter in: path @@ -57686,7 +57872,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *89 - - *412 + - *413 - *17 - *19 responses: @@ -57696,9 +57882,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: &423 + default: &424 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -57927,7 +58113,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &413 + items: &414 title: Organization Role description: Organization roles type: object @@ -58134,7 +58320,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: default: value: @@ -58364,7 +58550,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: default: value: @@ -58461,7 +58647,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: default: value: @@ -58619,8 +58805,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *414 - required: *415 + properties: *415 + required: *416 nullable: true type: description: The ownership type of the team @@ -58652,7 +58838,7 @@ paths: - type - parent examples: - default: *416 + default: *417 headers: Link: *47 '404': @@ -58710,13 +58896,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &479 + items: &480 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *414 - required: *415 + properties: *415 + required: *416 name: nullable: true type: string @@ -59004,7 +59190,7 @@ paths: - nuget - container - *89 - - &876 + - &877 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -59040,12 +59226,12 @@ paths: application/json: schema: type: array - items: *417 + items: *418 examples: - default: *418 + default: *419 '403': *29 '401': *25 - '400': &878 + '400': &879 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -59067,7 +59253,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-an-organization parameters: - - &419 + - &420 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 @@ -59085,7 +59271,7 @@ paths: - docker - nuget - container - - &420 + - &421 name: package_name description: The name of the package. in: path @@ -59098,7 +59284,7 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: default: value: @@ -59150,8 +59336,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *419 - *420 + - *421 - *89 responses: '204': @@ -59184,8 +59370,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *419 - *420 + - *421 - *89 - name: token description: package token @@ -59218,8 +59404,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: - - *419 - *420 + - *421 - *89 - *19 - *17 @@ -59240,7 +59426,7 @@ paths: application/json: schema: type: array - items: &421 + items: &422 title: Package Version description: A version of a software package type: object @@ -59365,10 +59551,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: - - *419 - *420 + - *421 - *89 - - &422 + - &423 name: package_version_id description: Unique identifier of the package version. in: path @@ -59380,7 +59566,7 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: default: value: @@ -59416,10 +59602,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *419 - *420 + - *421 - *89 - - *422 + - *423 responses: '204': description: Response @@ -59451,10 +59637,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *419 - *420 + - *421 - *89 - - *422 + - *423 responses: '204': description: Response @@ -59484,7 +59670,7 @@ paths: - *89 - *17 - *19 - - &424 + - &425 name: sort description: The property by which to sort the results. in: query @@ -59495,7 +59681,7 @@ paths: - created_at default: created_at - *112 - - &425 + - &426 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -59506,7 +59692,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &426 + - &427 name: repository description: The name of the repository to use to filter the results. in: query @@ -59514,7 +59700,7 @@ paths: schema: type: string example: Hello-World - - &427 + - &428 name: permission description: The permission to use to filter the results. in: query @@ -59522,7 +59708,7 @@ paths: schema: type: string example: issues_read - - &428 + - &429 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) @@ -59532,7 +59718,7 @@ paths: schema: type: string format: date-time - - &429 + - &430 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) @@ -59542,7 +59728,7 @@ paths: schema: type: string format: date-time - - &430 + - &431 name: token_id description: The ID of the token in: query @@ -59853,9 +60039,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *423 + default: *424 headers: Link: *47 x-github: @@ -59881,14 +60067,14 @@ paths: - *89 - *17 - *19 - - *424 - - *112 - *425 + - *112 - *426 - *427 - *428 - *429 - *430 + - *431 responses: '500': *40 '422': *15 @@ -60168,9 +60354,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *423 + default: *424 headers: Link: *47 x-github: @@ -60212,7 +60398,7 @@ paths: type: integer configurations: type: array - items: &431 + items: &432 title: Organization private registry description: Private registry configuration for an organization type: object @@ -60723,7 +60909,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &432 + org-private-registry-with-selected-visibility: &433 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -60813,15 +60999,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *89 - - *302 + - *303 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *431 + schema: *432 examples: - default: *432 + default: *433 '404': *6 x-github: githubCloudOnly: false @@ -60844,7 +61030,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *89 - - *302 + - *303 requestBody: required: true content: @@ -61032,7 +61218,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *89 - - *302 + - *303 responses: '204': description: Response @@ -61072,7 +61258,7 @@ paths: application/json: schema: type: array - items: &433 + items: &434 title: Projects v2 Project description: A projects v2 project type: object @@ -61142,7 +61328,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &971 + properties: &972 id: type: number description: The unique identifier of the status update. @@ -61190,7 +61376,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &972 + required: &973 - id - node_id - created_at @@ -61215,7 +61401,7 @@ paths: - deleted_at - deleted_by examples: - default: &434 + default: &435 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -61318,7 +61504,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-organization parameters: - - &435 + - &436 name: project_number description: The project's number. in: path @@ -61331,9 +61517,9 @@ paths: description: Response content: application/json: - schema: *433 + schema: *434 examples: - default: *434 + default: *435 headers: Link: *47 '304': *37 @@ -61356,7 +61542,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *89 - - *435 + - *436 requestBody: required: true description: Details of the draft item to create in the project. @@ -61390,7 +61576,7 @@ paths: description: Response content: application/json: - schema: &441 + schema: &442 title: Projects v2 Item description: An item belonging to a project type: object @@ -61403,8 +61589,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *231 - - &615 + - *232 + - &616 title: Pull Request Simple description: Pull Request Simple type: object @@ -61510,8 +61696,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *436 - required: *437 + properties: *437 + required: *438 nullable: true active_lock_reason: type: string @@ -61554,7 +61740,7 @@ paths: items: *4 requested_teams: type: array - items: *325 + items: *326 head: type: object properties: @@ -61604,7 +61790,7 @@ paths: _links: type: object properties: - comments: &438 + comments: &439 title: Link description: Hypermedia Link type: object @@ -61613,13 +61799,13 @@ paths: type: string required: - href - commits: *438 - statuses: *438 - html: *438 - issue: *438 - review_comments: *438 - review_comment: *438 - self: *438 + commits: *439 + statuses: *439 + html: *439 + issue: *439 + review_comments: *439 + review_comment: *439 + self: *439 required: - comments - commits @@ -61629,8 +61815,8 @@ paths: - review_comments - review_comment - self - author_association: *228 - auto_merge: &754 + author_association: *229 + auto_merge: &755 title: Auto merge description: The status of auto merging a pull request. type: object @@ -61804,7 +61990,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &440 + content_type: &441 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -61844,7 +62030,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &442 + draft_issue: &443 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -61918,7 +62104,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-organization parameters: - - *435 + - *436 - *89 - *17 - *110 @@ -61930,7 +62116,7 @@ paths: application/json: schema: type: array - items: &439 + items: &440 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -62080,7 +62266,7 @@ paths: - updated_at - project_url examples: - default: &898 + default: &899 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62210,7 +62396,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: - - *435 + - *436 - *89 requestBody: required: true @@ -62257,7 +62443,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &899 + items: &900 type: object properties: name: @@ -62294,7 +62480,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &900 + iteration_configuration: &901 type: object description: The configuration for iteration fields. properties: @@ -62344,7 +62530,7 @@ paths: value: name: Due date data_type: date - single_select_field: &901 + single_select_field: &902 summary: Create a single select field value: name: Priority @@ -62371,7 +62557,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &902 + iteration_field: &903 summary: Create an iteration field value: name: Sprint @@ -62395,9 +62581,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *439 + schema: *440 examples: - text_field: &903 + text_field: &904 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -62406,7 +62592,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: &904 + number_field: &905 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -62415,7 +62601,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: &905 + date_field: &906 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -62424,7 +62610,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: &906 + single_select_field: &907 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62458,7 +62644,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &907 + iteration_field: &908 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -62503,8 +62689,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - - *435 - - &908 + - *436 + - &909 name: field_id description: The unique identifier of the field. in: path @@ -62517,9 +62703,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *440 examples: - default: &909 + default: &910 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62575,7 +62761,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: - - *435 + - *436 - *89 - 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) @@ -62608,7 +62794,7 @@ paths: application/json: schema: type: array - items: &443 + items: &444 title: Projects v2 Item description: An item belonging to a project type: object @@ -62624,7 +62810,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *440 + content_type: *441 content: type: object additionalProperties: true @@ -62667,7 +62853,7 @@ paths: - updated_at - archived_at examples: - default: &444 + default: &445 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -63365,7 +63551,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-organization-owned-project parameters: - *89 - - *435 + - *436 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -63435,22 +63621,22 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *442 + value: *443 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *442 + value: *443 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *442 + value: *443 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *442 + value: *443 '304': *37 '403': *29 '401': *25 @@ -63470,9 +63656,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: - - *435 + - *436 - *89 - - &445 + - &446 name: item_id description: The unique identifier of the project item. in: path @@ -63498,9 +63684,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *444 examples: - default: *444 + default: *445 headers: Link: *47 '304': *37 @@ -63521,9 +63707,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-organization parameters: - - *435 + - *436 - *89 - - *445 + - *446 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -63593,13 +63779,13 @@ paths: description: Response content: application/json: - schema: *443 + schema: *444 examples: - text_field: *444 - number_field: *444 - date_field: *444 - single_select_field: *444 - iteration_field: *444 + text_field: *445 + number_field: *445 + date_field: *445 + single_select_field: *445 + iteration_field: *445 '401': *25 '403': *29 '404': *6 @@ -63619,9 +63805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-organization parameters: - - *435 + - *436 - *89 - - *445 + - *446 responses: '204': description: Response @@ -63645,7 +63831,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *89 - - *435 + - *436 requestBody: required: true content: @@ -63716,7 +63902,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &889 + schema: &890 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -63814,7 +64000,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &446 + value: &447 value: id: 1 number: 1 @@ -63860,10 +64046,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *446 + value: *447 roadmap_view: summary: Response for creating a roadmap view - value: *446 + value: *447 '304': *37 '403': *29 '401': *25 @@ -63891,9 +64077,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: - - *435 + - *436 - *89 - - &910 + - &911 name: view_number description: The number that identifies the project view. in: path @@ -63925,9 +64111,9 @@ paths: application/json: schema: type: array - items: *443 + items: *444 examples: - default: *444 + default: *445 headers: Link: *47 '304': *37 @@ -64091,7 +64277,7 @@ paths: required: true content: application/json: - schema: *447 + schema: *448 examples: default: value: @@ -64454,9 +64640,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *423 + default: *424 headers: Link: *47 x-github: @@ -64659,7 +64845,7 @@ paths: description: Response content: application/json: - schema: &500 + schema: &501 title: Full Repository description: Full Repository type: object @@ -64947,9 +65133,9 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *448 - required: *449 - x-github-breaking-changes: *450 + properties: *449 + required: *450 + x-github-breaking-changes: *451 nullable: true temp_clone_token: type: string @@ -65036,8 +65222,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true organization: title: Simple User @@ -65064,7 +65250,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &620 + properties: &621 url: type: string format: uri @@ -65080,12 +65266,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &621 + required: &622 - url - key - name - html_url - security_and_analysis: *451 + security_and_analysis: *452 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -65180,7 +65366,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &502 + default: &503 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -65718,9 +65904,9 @@ paths: application/json: schema: type: array - items: *452 + items: *453 examples: - default: *453 + default: *454 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -65745,7 +65931,7 @@ paths: - *89 - *17 - *19 - - &777 + - &778 name: targets description: | A comma-separated list of rule targets to filter by. @@ -65836,11 +66022,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *176 - conditions: *454 + conditions: *455 rules: type: array description: An array of rules within the ruleset. - items: &456 + items: &457 title: Repository Rule type: object description: A repository rule. @@ -65905,7 +66091,7 @@ paths: application/json: schema: *198 examples: - default: &455 + default: &456 value: id: 21 name: super cool ruleset @@ -65961,7 +66147,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &779 + - &780 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 @@ -65971,16 +66157,16 @@ paths: schema: type: string x-multi-segment: true - - *322 + - *323 - *107 - - &780 + - &781 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 - - &781 + - &782 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -65993,7 +66179,7 @@ paths: - bypass - all default: all - - &782 + - &783 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. @@ -66016,7 +66202,7 @@ paths: description: Response content: application/json: - schema: &783 + schema: &784 title: Rule Suites description: Response type: array @@ -66071,7 +66257,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &784 + default: &785 value: - id: 21 actor_id: 12 @@ -66115,7 +66301,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &785 + - &786 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -66131,7 +66317,7 @@ paths: description: Response content: application/json: - schema: &786 + schema: &787 title: Rule Suite description: Response type: object @@ -66230,7 +66416,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &787 + default: &788 value: id: 21 actor_id: 12 @@ -66305,7 +66491,7 @@ paths: application/json: schema: *198 examples: - default: *455 + default: *456 '404': *6 '500': *40 put: @@ -66354,11 +66540,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *176 - conditions: *454 + conditions: *455 rules: description: An array of rules within the ruleset. type: array - items: *456 + items: *457 examples: default: value: @@ -66395,7 +66581,7 @@ paths: application/json: schema: *198 examples: - default: *455 + default: *456 '404': *6 '422': *15 '500': *40 @@ -66455,7 +66641,7 @@ paths: type: array items: *202 examples: - default: *457 + default: *458 '404': *6 '500': *40 x-github: @@ -66492,7 +66678,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: default: value: @@ -66555,7 +66741,6 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *89 - - *459 - *460 - *461 - *462 @@ -66563,10 +66748,11 @@ paths: - *464 - *465 - *466 + - *467 - *112 - *19 - *17 - - &789 + - &790 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 @@ -66576,7 +66762,7 @@ paths: required: false schema: type: string - - &790 + - &791 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 @@ -66586,13 +66772,13 @@ paths: required: false schema: type: string - - *467 - *468 - *469 - *470 - *471 - *472 - *473 + - *474 responses: '200': description: Response @@ -66600,9 +66786,9 @@ paths: application/json: schema: type: array - items: *474 + items: *475 examples: - default: *475 + default: *476 headers: Link: *47 '404': *6 @@ -66637,9 +66823,9 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 + default: *478 '403': *29 '404': *6 patch: @@ -66792,7 +66978,7 @@ paths: application/json: schema: type: array - items: &811 + items: &812 description: A repository security advisory. type: object properties: @@ -67012,7 +67198,7 @@ paths: login: type: string description: The username of the user credited. - type: *478 + type: *479 credits_detailed: type: array nullable: true @@ -67022,7 +67208,7 @@ paths: type: object properties: user: *4 - type: *478 + type: *479 state: type: string description: The state of the user's acceptance of the @@ -67046,7 +67232,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *325 + items: *326 private_fork: readOnly: true nullable: true @@ -67115,7 +67301,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &812 + default: &813 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -67502,7 +67688,7 @@ paths: application/json: schema: type: array - items: *479 + items: *480 examples: default: value: @@ -67601,7 +67787,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *89 - - *480 + - *481 - *17 - *19 responses: @@ -67609,9 +67795,9 @@ paths: description: Success content: application/json: - schema: *481 + schema: *482 examples: - default: *482 + default: *483 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -67755,9 +67941,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *306 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67826,7 +68012,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *89 - - *286 + - *287 responses: '204': description: Response @@ -67849,7 +68035,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - *89 - - *286 + - *287 responses: '204': description: Response @@ -67892,7 +68078,7 @@ paths: type: array items: *156 examples: - default: *483 + default: *484 headers: Link: *47 x-github: @@ -68121,15 +68307,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: - *89 - - *484 + - *485 responses: '200': description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 headers: Link: *47 x-github: @@ -68167,7 +68353,7 @@ paths: description: Response content: application/json: - schema: &497 + schema: &498 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -68213,7 +68399,7 @@ paths: type: string nullable: true examples: - default: &498 + default: &499 value: groups: - group_id: '123' @@ -68268,9 +68454,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *416 + default: *417 headers: Link: *47 '403': *29 @@ -68364,7 +68550,7 @@ paths: description: Response content: application/json: - schema: &487 + schema: &488 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -68427,8 +68613,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *414 - required: *415 + properties: *415 + required: *416 nullable: true members_count: type: integer @@ -68691,7 +68877,7 @@ paths: - repos_count - organization examples: - default: &488 + default: &489 value: id: 1 node_id: MDQ6VGVhbTE= @@ -68779,9 +68965,9 @@ paths: description: Response content: application/json: - schema: *487 + schema: *488 examples: - default: *488 + default: *489 '404': *6 x-github: githubCloudOnly: false @@ -68865,16 +69051,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *487 + schema: *488 examples: - default: *488 + default: *489 '201': description: Response content: application/json: - schema: *487 + schema: *488 examples: - default: *488 + default: *489 '404': *6 '422': *15 '403': *29 @@ -68904,7 +69090,7 @@ paths: responses: '204': description: Response - '422': &491 + '422': &492 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -68933,10 +69119,10 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: *490 - '422': *491 + default: *491 + '422': *492 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -68979,10 +69165,10 @@ paths: description: Response content: application/json: - schema: *492 + schema: *493 examples: - default: *493 - '422': *491 + default: *494 + '422': *492 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -69006,7 +69192,7 @@ paths: responses: '204': description: Response - '422': *491 + '422': *492 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -69038,12 +69224,12 @@ paths: application/json: schema: type: array - items: *395 + items: *396 examples: - default: *396 + default: *397 headers: Link: *47 - '422': *491 + '422': *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69087,7 +69273,7 @@ paths: application/json: schema: type: array - items: &853 + items: &854 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 @@ -69206,7 +69392,7 @@ paths: - type - url examples: - default: &854 + default: &855 value: - login: octocat id: 1 @@ -69265,7 +69451,7 @@ paths: description: Response content: application/json: - schema: &494 + schema: &495 title: Team Membership description: Team Membership type: object @@ -69292,7 +69478,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &855 + response-if-user-is-a-team-maintainer: &856 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -69355,9 +69541,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - response-if-users-membership-with-team-is-now-pending: &856 + response-if-users-membership-with-team-is-now-pending: &857 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -69431,9 +69617,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *423 + default: *424 headers: Link: *47 x-github: @@ -69464,14 +69650,14 @@ paths: parameters: - *89 - *224 - - *495 - *496 + - *497 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &857 + schema: &858 title: Team Repository description: A team's access to a repository. type: object @@ -69494,8 +69680,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true forks: type: integer @@ -70127,8 +70313,8 @@ paths: parameters: - *89 - *224 - - *495 - *496 + - *497 requestBody: required: false content: @@ -70175,8 +70361,8 @@ paths: parameters: - *89 - *224 - - *495 - *496 + - *497 responses: '204': description: Response @@ -70209,10 +70395,10 @@ paths: description: Response content: application/json: - schema: *497 + schema: *498 examples: - default: *498 - '422': *491 + default: *499 + '422': *492 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70278,7 +70464,7 @@ paths: description: Response content: application/json: - schema: *497 + schema: *498 examples: default: value: @@ -70290,7 +70476,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *491 + '422': *492 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70322,9 +70508,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - response-if-child-teams-exist: &858 + response-if-child-teams-exist: &859 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -70477,7 +70663,7 @@ paths: resources: type: object properties: - core: &499 + core: &500 title: Rate Limit type: object properties: @@ -70494,21 +70680,21 @@ paths: - remaining - reset - used - graphql: *499 - search: *499 - code_search: *499 - source_import: *499 - integration_manifest: *499 - actions_runner_registration: *499 - scim: *499 - dependency_snapshots: *499 - dependency_sbom: *499 - code_scanning_autofix: *499 - copilot_usage_records: *499 + graphql: *500 + search: *500 + code_search: *500 + source_import: *500 + integration_manifest: *500 + actions_runner_registration: *500 + scim: *500 + dependency_snapshots: *500 + dependency_sbom: *500 + code_scanning_autofix: *500 + copilot_usage_records: *500 required: - core - search - rate: *499 + rate: *500 required: - rate - resources @@ -70622,14 +70808,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository parameters: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *500 + schema: *501 examples: default-response: summary: Default response @@ -71144,7 +71330,7 @@ paths: version: '2026-03-10' '403': *29 '404': *6 - '301': *501 + '301': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71162,8 +71348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#update-a-repository parameters: - - *495 - *496 + - *497 requestBody: required: false content: @@ -71483,10 +71669,10 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *502 - '307': &503 + default: *503 + '307': &504 description: Temporary Redirect content: application/json: @@ -71515,8 +71701,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository parameters: - - *495 - *496 + - *497 responses: '204': description: Response @@ -71538,7 +71724,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': *503 + '307': *504 '404': *6 '409': *121 x-github: @@ -71562,11 +71748,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *495 - *496 + - *497 - *17 - *19 - - &519 + - &520 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -71589,7 +71775,7 @@ paths: type: integer artifacts: type: array - items: &504 + items: &505 title: Artifact description: An artifact type: object @@ -71667,7 +71853,7 @@ paths: - expires_at - updated_at examples: - default: &520 + default: &521 value: total_count: 2 artifacts: @@ -71728,9 +71914,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#get-an-artifact parameters: - - *495 - *496 - - &505 + - *497 + - &506 name: artifact_id description: The unique identifier of the artifact. in: path @@ -71742,7 +71928,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: default: value: @@ -71780,9 +71966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#delete-an-artifact parameters: - - *495 - *496 - - *505 + - *497 + - *506 responses: '204': description: Response @@ -71806,9 +71992,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#download-an-artifact parameters: - - *495 - *496 - - *505 + - *497 + - *506 - name: archive_format in: path required: true @@ -71818,11 +72004,11 @@ paths: '302': description: Response headers: - Location: &639 + Location: &640 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': &687 + '410': &688 description: Gone content: application/json: @@ -71847,14 +72033,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: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: &506 + schema: &507 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -71887,13 +72073,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: - - *495 - *496 + - *497 requestBody: required: true content: application/json: - schema: *506 + schema: *507 examples: selected_actions: *44 responses: @@ -71922,14 +72108,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: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: &507 + schema: &508 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -71962,13 +72148,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: - - *495 - *496 + - *497 requestBody: required: true content: application/json: - schema: *507 + schema: *508 examples: selected_actions: *46 responses: @@ -71999,14 +72185,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: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *508 + schema: *509 examples: default: value: @@ -72032,11 +72218,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: - - *495 - *496 + - *497 - *17 - *19 - - &509 + - &510 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 @@ -72070,7 +72256,7 @@ paths: description: Response content: application/json: - schema: &510 + schema: &511 title: Repository actions caches description: Repository actions caches type: object @@ -72112,7 +72298,7 @@ paths: - total_count - actions_caches examples: - default: &511 + default: &512 value: total_count: 1 actions_caches: @@ -72144,23 +72330,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: - - *495 - *496 + - *497 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *509 + - *510 responses: '200': description: Response content: application/json: - schema: *510 + schema: *511 examples: - default: *511 + default: *512 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72180,8 +72366,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: - - *495 - *496 + - *497 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -72210,8 +72396,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: - - *495 - *496 + - *497 - *17 - *111 responses: @@ -72293,8 +72479,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: - - *495 - *496 + - *497 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -72446,9 +72632,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: - - *495 - *496 - - &512 + - *497 + - &513 name: job_id description: The unique identifier of the job. in: path @@ -72460,7 +72646,7 @@ paths: description: Response content: application/json: - schema: &523 + schema: &524 title: Job description: Information of a job execution in a workflow run type: object @@ -72767,9 +72953,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: - - *495 - *496 - - *512 + - *497 + - *513 responses: '302': description: Response @@ -72797,9 +72983,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: - - *495 - *496 - - *512 + - *497 + - *513 requestBody: required: false content: @@ -72825,7 +73011,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -72849,8 +73035,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: - - *495 - *496 + - *497 responses: '200': description: Status response @@ -72909,8 +73095,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -72949,7 +73135,7 @@ paths: description: Empty response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -72978,8 +73164,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-organization-secrets parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -72997,7 +73183,7 @@ paths: type: integer secrets: type: array - items: &525 + items: &526 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -73017,7 +73203,7 @@ paths: - created_at - updated_at examples: - default: &526 + default: &527 value: total_count: 2 secrets: @@ -73050,9 +73236,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-organization-variables parameters: - - *495 - *496 - - *311 + - *497 + - *312 - *19 responses: '200': @@ -73069,7 +73255,7 @@ paths: type: integer variables: type: array - items: &527 + items: &528 title: Actions Variable type: object properties: @@ -73099,7 +73285,7 @@ paths: - created_at - updated_at examples: - default: &528 + default: &529 value: total_count: 2 variables: @@ -73132,8 +73318,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -73142,11 +73328,11 @@ paths: schema: type: object properties: - enabled: &513 + enabled: &514 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *62 - selected_actions_url: *279 + selected_actions_url: *280 sha_pinning_required: *63 required: - enabled @@ -73177,8 +73363,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: - - *495 - *496 + - *497 responses: '204': description: Response @@ -73189,7 +73375,7 @@ paths: schema: type: object properties: - enabled: *513 + enabled: *514 allowed_actions: *62 sha_pinning_required: *63 required: @@ -73222,14 +73408,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: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: &514 + schema: &515 type: object properties: access_level: @@ -73247,7 +73433,7 @@ paths: required: - access_level examples: - default: &515 + default: &516 value: access_level: organization x-github: @@ -73272,15 +73458,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: - - *495 - *496 + - *497 requestBody: required: true content: application/json: - schema: *514 + schema: *515 examples: - default: *515 + default: *516 responses: '204': description: Response @@ -73304,14 +73490,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: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *281 + schema: *282 examples: default: value: @@ -73335,8 +73521,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: - - *495 - *496 + - *497 responses: '204': description: Empty response for successful settings update @@ -73346,7 +73532,7 @@ paths: required: true content: application/json: - schema: *282 + schema: *283 examples: default: summary: Set retention days @@ -73370,8 +73556,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -73379,7 +73565,7 @@ paths: application/json: schema: *64 examples: - default: *283 + default: *284 '404': *6 x-github: enabledForGitHubApps: true @@ -73398,8 +73584,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: - - *495 - *496 + - *497 responses: '204': description: Response @@ -73433,14 +73619,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: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *284 + schema: *285 examples: default: *65 '403': *29 @@ -73462,13 +73648,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: - - *495 - *496 + - *497 requestBody: required: true content: application/json: - schema: *285 + schema: *286 examples: default: *65 responses: @@ -73494,8 +73680,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -73526,8 +73712,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: - - *495 - *496 + - *497 responses: '204': description: Response @@ -73559,14 +73745,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: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *288 + schema: *289 examples: default: *71 x-github: @@ -73589,8 +73775,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: - - *495 - *496 + - *497 responses: '204': description: Success response @@ -73601,7 +73787,7 @@ paths: required: true content: application/json: - schema: *289 + schema: *290 examples: default: *71 x-github: @@ -73630,8 +73816,8 @@ paths: in: query schema: type: string - - *495 - *496 + - *497 - *17 - *19 responses: @@ -73675,8 +73861,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -73684,9 +73870,9 @@ paths: application/json: schema: type: array - items: *293 + items: *294 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73708,8 +73894,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -73752,7 +73938,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *295 + '201': *296 '404': *6 '422': *7 '409': *121 @@ -73783,8 +73969,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: - - *495 - *496 + - *497 responses: '201': description: Response @@ -73792,7 +73978,7 @@ paths: application/json: schema: *81 examples: - default: *296 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73820,8 +74006,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: - - *495 - *496 + - *497 responses: '201': description: Response @@ -73829,7 +74015,7 @@ paths: application/json: schema: *81 examples: - default: *297 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73851,8 +74037,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: - - *495 - *496 + - *497 - *77 responses: '200': @@ -73861,7 +74047,7 @@ paths: application/json: schema: *78 examples: - default: *298 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73882,8 +74068,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: - - *495 - *496 + - *497 - *77 responses: '204': @@ -73910,8 +74096,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: - - *495 - *496 + - *497 - *77 responses: '200': *83 @@ -73936,8 +74122,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: - - *495 - *496 + - *497 - *77 requestBody: required: true @@ -73986,8 +74172,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: - - *495 - *496 + - *497 - *77 requestBody: required: true @@ -74037,11 +74223,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: - - *495 - *496 + - *497 - *77 responses: - '200': *299 + '200': *300 '404': *6 x-github: githubCloudOnly: false @@ -74068,10 +74254,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: - - *495 - *496 + - *497 - *77 - - *300 + - *301 responses: '200': *83 '404': *6 @@ -74099,9 +74285,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: - - *495 - *496 - - &531 + - *497 + - &532 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. @@ -74109,7 +74295,7 @@ paths: required: false schema: type: string - - &532 + - &533 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -74117,7 +74303,7 @@ paths: required: false schema: type: string - - &533 + - &534 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -74126,7 +74312,7 @@ paths: required: false schema: type: string - - &534 + - &535 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 @@ -74153,7 +74339,7 @@ paths: - pending - *17 - *19 - - &535 + - &536 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)." @@ -74162,7 +74348,7 @@ paths: schema: type: string format: date-time - - &516 + - &517 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -74171,13 +74357,13 @@ paths: schema: type: boolean default: false - - &536 + - &537 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &537 + - &538 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -74200,7 +74386,7 @@ paths: type: integer workflow_runs: type: array - items: &517 + items: &518 title: Workflow Run description: An invocation of a workflow type: object @@ -74295,7 +74481,7 @@ paths: that triggered the run. type: array nullable: true - items: *236 + items: *237 created_at: type: string format: date-time @@ -74348,7 +74534,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &561 + properties: &562 id: type: string description: SHA for the commit @@ -74399,7 +74585,7 @@ paths: - name - email nullable: true - required: &562 + required: &563 - id - tree_id - message @@ -74407,8 +74593,8 @@ paths: - author - committer nullable: true - repository: *292 - head_repository: *292 + repository: *293 + head_repository: *293 head_repository_id: type: integer example: 5 @@ -74446,7 +74632,7 @@ paths: - workflow_url - pull_requests examples: - default: &538 + default: &539 value: total_count: 1 workflow_runs: @@ -74682,24 +74868,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *495 - *496 - - &518 + - *497 + - &519 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *516 + - *517 responses: '200': description: Response content: application/json: - schema: *517 + schema: *518 examples: - default: &521 + default: &522 value: id: 30433642 name: Build @@ -74940,9 +75126,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *495 - *496 - - *518 + - *497 + - *519 responses: '204': description: Response @@ -74965,9 +75151,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: - - *495 - *496 - - *518 + - *497 + - *519 responses: '200': description: Response @@ -75086,15 +75272,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: - - *495 - *496 - - *518 + - *497 + - *519 responses: '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75121,12 +75307,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *495 - *496 - - *518 + - *497 + - *519 - *17 - *19 - - *519 + - *520 - *112 responses: '200': @@ -75143,9 +75329,9 @@ paths: type: integer artifacts: type: array - items: *504 + items: *505 examples: - default: *520 + default: *521 headers: Link: *47 x-github: @@ -75169,25 +75355,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *495 - *496 - - *518 - - &522 + - *497 + - *519 + - &523 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *516 + - *517 responses: '200': description: Response content: application/json: - schema: *517 + schema: *518 examples: - default: *521 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75210,10 +75396,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: - - *495 - *496 - - *518 - - *522 + - *497 + - *519 + - *523 - *17 - *19 responses: @@ -75231,9 +75417,9 @@ paths: type: integer jobs: type: array - items: *523 + items: *524 examples: - default: &524 + default: &525 value: total_count: 1 jobs: @@ -75346,10 +75532,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *495 - *496 - - *518 - - *522 + - *497 + - *519 + - *523 responses: '302': description: Response @@ -75377,15 +75563,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *495 - *496 - - *518 + - *497 + - *519 responses: '202': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75425,9 +75611,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: - - *495 - *496 - - *518 + - *497 + - *519 - *17 - *110 - *111 @@ -75598,9 +75784,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: - - *495 - *496 - - *518 + - *497 + - *519 requestBody: required: true content: @@ -75667,15 +75853,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *495 - *496 - - *518 + - *497 + - *519 responses: '202': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -75702,9 +75888,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: - - *495 - *496 - - *518 + - *497 + - *519 - 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 @@ -75734,9 +75920,9 @@ paths: type: integer jobs: type: array - items: *523 + items: *524 examples: - default: *524 + default: *525 headers: Link: *47 x-github: @@ -75761,9 +75947,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *495 - *496 - - *518 + - *497 + - *519 responses: '302': description: Response @@ -75790,9 +75976,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *495 - *496 - - *518 + - *497 + - *519 responses: '204': description: Response @@ -75819,9 +76005,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: - - *495 - *496 - - *518 + - *497 + - *519 responses: '200': description: Response @@ -75881,7 +76067,7 @@ paths: items: type: object properties: - type: &654 + type: &655 type: string description: The type of reviewer. enum: @@ -75891,7 +76077,7 @@ paths: reviewer: anyOf: - *4 - - *325 + - *326 required: - environment - wait_timer @@ -75966,9 +76152,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: - - *495 - *496 - - *518 + - *497 + - *519 requestBody: required: true content: @@ -76015,12 +76201,12 @@ paths: application/json: schema: type: array - items: &641 + items: &642 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &928 + properties: &929 url: type: string format: uri @@ -76103,9 +76289,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - required: &929 + properties: *227 + required: *228 + required: &930 - id - node_id - sha @@ -76121,7 +76307,7 @@ paths: - created_at - updated_at examples: - default: &642 + default: &643 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -76177,9 +76363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *495 - *496 - - *518 + - *497 + - *519 requestBody: required: false content: @@ -76200,7 +76386,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -76223,9 +76409,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: - - *495 - *496 - - *518 + - *497 + - *519 requestBody: required: false content: @@ -76246,7 +76432,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -76279,9 +76465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *495 - *496 - - *518 + - *497 + - *519 responses: '200': description: Response @@ -76418,8 +76604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-secrets parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -76437,9 +76623,9 @@ paths: type: integer secrets: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -76464,16 +76650,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-public-key parameters: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76495,17 +76681,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: &539 + default: &540 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -76531,9 +76717,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 requestBody: required: true content: @@ -76564,7 +76750,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -76590,9 +76776,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 responses: '204': description: Response @@ -76617,9 +76803,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-variables parameters: - - *495 - *496 - - *311 + - *497 + - *312 - *19 responses: '200': @@ -76636,9 +76822,9 @@ paths: type: integer variables: type: array - items: *527 + items: *528 examples: - default: *528 + default: *529 headers: Link: *47 x-github: @@ -76661,8 +76847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-a-repository-variable parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -76689,7 +76875,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -76714,17 +76900,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-a-repository-variable parameters: - - *495 - *496 - - *305 + - *497 + - *306 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: &540 + default: &541 value: name: USERNAME value: octocat @@ -76750,9 +76936,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-a-repository-variable parameters: - - *495 - *496 - - *305 + - *497 + - *306 requestBody: required: true content: @@ -76794,9 +76980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-a-repository-variable parameters: - - *495 - *496 - - *305 + - *497 + - *306 responses: '204': description: Response @@ -76821,8 +77007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#list-repository-workflows parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -76840,7 +77026,7 @@ paths: type: integer workflows: type: array - items: &529 + items: &530 title: Workflow description: A GitHub Actions workflow type: object @@ -76947,9 +77133,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-a-workflow parameters: - - *495 - *496 - - &530 + - *497 + - &531 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -76964,7 +77150,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: default: value: @@ -76997,9 +77183,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#disable-a-workflow parameters: - - *495 - *496 - - *530 + - *497 + - *531 responses: '204': description: Response @@ -77024,9 +77210,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *495 - *496 - - *530 + - *497 + - *531 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -77124,9 +77310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#enable-a-workflow parameters: - - *495 - *496 - - *530 + - *497 + - *531 responses: '204': description: Response @@ -77153,19 +77339,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: - - *495 - *496 - - *530 + - *497 - *531 - *532 - *533 - *534 + - *535 - *17 - *19 - - *535 - - *516 - *536 + - *517 - *537 + - *538 responses: '200': description: Response @@ -77181,9 +77367,9 @@ paths: type: integer workflow_runs: type: array - items: *517 + items: *518 examples: - default: *538 + default: *539 headers: Link: *47 x-github: @@ -77216,9 +77402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-workflow-usage parameters: - - *495 - *496 - - *530 + - *497 + - *531 responses: '200': description: Response @@ -77279,8 +77465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-activities parameters: - - *495 - *496 + - *497 - *112 - *17 - *110 @@ -77449,8 +77635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-organization-secrets parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -77468,9 +77654,9 @@ paths: type: integer secrets: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -77494,9 +77680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-organization-variables parameters: - - *495 - *496 - - *311 + - *497 + - *312 - *19 responses: '200': @@ -77513,9 +77699,9 @@ paths: type: integer variables: type: array - items: *527 + items: *528 examples: - default: *528 + default: *529 headers: Link: *47 x-github: @@ -77540,8 +77726,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-secrets parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -77559,9 +77745,9 @@ paths: type: integer secrets: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -77586,16 +77772,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-public-key parameters: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77617,17 +77803,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *539 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77649,9 +77835,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 requestBody: required: true content: @@ -77682,7 +77868,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -77708,9 +77894,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 responses: '204': description: Response @@ -77735,9 +77921,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-variables parameters: - - *495 - *496 - - *311 + - *497 + - *312 - *19 responses: '200': @@ -77754,9 +77940,9 @@ paths: type: integer variables: type: array - items: *527 + items: *528 examples: - default: *528 + default: *529 headers: Link: *47 x-github: @@ -77779,8 +77965,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#create-a-repository-variable parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -77807,7 +77993,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -77832,17 +78018,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-a-repository-variable parameters: - - *495 - *496 - - *305 + - *497 + - *306 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *540 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77863,9 +78049,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-a-repository-variable parameters: - - *495 - *496 - - *305 + - *497 + - *306 requestBody: required: true content: @@ -77907,9 +78093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-a-repository-variable parameters: - - *495 - *496 - - *305 + - *497 + - *306 responses: '204': description: Response @@ -77930,8 +78116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#list-assignees parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -77968,8 +78154,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: - - *495 - *496 + - *497 - name: assignee in: path required: true @@ -78005,8 +78191,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#create-an-attestation parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -78116,8 +78302,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#list-attestations parameters: - - *495 - *496 + - *497 - *17 - *110 - *111 @@ -78174,7 +78360,7 @@ paths: initiator: type: string examples: - default: *541 + default: *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78208,8 +78394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *495 - *496 + - *497 responses: '200': description: Response @@ -78217,7 +78403,7 @@ paths: application/json: schema: type: array - items: &542 + items: &543 title: Autolink reference description: An autolink reference. type: object @@ -78271,8 +78457,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -78311,9 +78497,9 @@ paths: description: response content: application/json: - schema: *542 + schema: *543 examples: - default: &543 + default: &544 value: id: 1 key_prefix: TICKET- @@ -78344,9 +78530,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: - - *495 - *496 - - &544 + - *497 + - &545 name: autolink_id description: The unique identifier of the autolink. in: path @@ -78358,9 +78544,9 @@ paths: description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *543 + default: *544 '404': *6 x-github: githubCloudOnly: false @@ -78380,9 +78566,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: - - *495 - *496 - - *544 + - *497 + - *545 responses: '204': description: Response @@ -78406,8 +78592,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: - - *495 - *496 + - *497 responses: '200': description: Response if Dependabot is enabled @@ -78455,8 +78641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-dependabot-security-updates parameters: - - *495 - *496 + - *497 responses: '204': description: Response @@ -78477,8 +78663,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-dependabot-security-updates parameters: - - *495 - *496 + - *497 responses: '204': description: Response @@ -78498,8 +78684,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#list-branches parameters: - - *495 - *496 + - *497 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -78537,7 +78723,7 @@ paths: - url protected: type: boolean - protection: &546 + protection: &547 title: Branch Protection description: Branch Protection type: object @@ -78579,7 +78765,7 @@ paths: required: - contexts - checks - enforce_admins: &549 + enforce_admins: &550 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -78594,7 +78780,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &551 + required_pull_request_reviews: &552 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -78615,7 +78801,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *325 + items: *326 apps: description: The list of apps with review dismissal access. @@ -78644,7 +78830,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *325 + items: *326 apps: description: The list of apps allowed to bypass pull request requirements. @@ -78670,7 +78856,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &548 + restrictions: &549 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -78733,7 +78919,7 @@ paths: type: string teams: type: array - items: *325 + items: *326 apps: type: array items: @@ -78947,9 +79133,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#get-a-branch parameters: - - *495 - *496 - - &547 + - *497 + - &548 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). @@ -78963,14 +79149,14 @@ paths: description: Response content: application/json: - schema: &557 + schema: &558 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &611 + commit: &612 title: Commit description: Commit type: object @@ -79004,7 +79190,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &545 + properties: &546 name: type: string example: '"Chris Wanstrath"' @@ -79020,7 +79206,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *545 + properties: *546 nullable: true message: type: string @@ -79041,7 +79227,7 @@ paths: required: - sha - url - verification: &672 + verification: &673 title: Verification type: object properties: @@ -79075,12 +79261,12 @@ paths: nullable: true oneOf: - *4 - - *303 + - *304 committer: nullable: true oneOf: - *4 - - *303 + - *304 parents: type: array items: @@ -79111,7 +79297,7 @@ paths: type: integer files: type: array - items: &624 + items: &625 title: Diff Entry description: Diff Entry type: object @@ -79195,7 +79381,7 @@ paths: - self protected: type: boolean - protection: *546 + protection: *547 protection_url: type: string format: uri @@ -79302,7 +79488,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *501 + '301': *502 '404': *6 x-github: githubCloudOnly: false @@ -79324,15 +79510,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-branch-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response content: application/json: - schema: *546 + schema: *547 examples: default: value: @@ -79526,9 +79712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-branch-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: true content: @@ -79783,7 +79969,7 @@ paths: url: type: string format: uri - required_status_checks: &554 + required_status_checks: &555 title: Status Check Policy description: Status Check Policy type: object @@ -79859,7 +80045,7 @@ paths: items: *4 teams: type: array - items: *325 + items: *326 apps: type: array items: *5 @@ -79877,7 +80063,7 @@ paths: items: *4 teams: type: array - items: *325 + items: *326 apps: type: array items: *5 @@ -79935,7 +80121,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *548 + restrictions: *549 required_conversation_resolution: type: object properties: @@ -80047,9 +80233,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-branch-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '204': description: Response @@ -80074,17 +80260,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: &550 + default: &551 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -80106,17 +80292,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: *550 + default: *551 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80135,9 +80321,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '204': description: Response @@ -80162,17 +80348,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: &552 + default: &553 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -80268,9 +80454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: false content: @@ -80368,9 +80554,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: *552 + default: *553 '422': *15 x-github: githubCloudOnly: false @@ -80391,9 +80577,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '204': description: Response @@ -80420,17 +80606,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: &553 + default: &554 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -80453,17 +80639,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: *553 + default: *554 '404': *6 x-github: githubCloudOnly: false @@ -80483,9 +80669,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '204': description: Response @@ -80510,17 +80696,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-status-checks-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response content: application/json: - schema: *554 + schema: *555 examples: - default: &555 + default: &556 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -80546,9 +80732,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-status-check-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: false content: @@ -80600,9 +80786,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: - default: *555 + default: *556 '404': *6 '422': *15 x-github: @@ -80624,9 +80810,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-protection parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '204': description: Response @@ -80650,9 +80836,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response @@ -80686,9 +80872,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-status-check-contexts parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: false content: @@ -80755,9 +80941,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-status-check-contexts parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: false content: @@ -80821,9 +81007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: content: application/json: @@ -80889,15 +81075,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response content: application/json: - schema: *548 + schema: *549 examples: default: value: @@ -80988,9 +81174,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 responses: '204': description: Response @@ -81013,9 +81199,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: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response @@ -81025,7 +81211,7 @@ paths: type: array items: *5 examples: - default: &556 + default: &557 value: - id: 1 slug: octoapp @@ -81082,9 +81268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: true content: @@ -81118,7 +81304,7 @@ paths: type: array items: *5 examples: - default: *556 + default: *557 '422': *15 x-github: githubCloudOnly: false @@ -81139,9 +81325,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: true content: @@ -81175,7 +81361,7 @@ paths: type: array items: *5 examples: - default: *556 + default: *557 '422': *15 x-github: githubCloudOnly: false @@ -81196,9 +81382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: true content: @@ -81232,7 +81418,7 @@ paths: type: array items: *5 examples: - default: *556 + default: *557 '422': *15 x-github: githubCloudOnly: false @@ -81254,9 +81440,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: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response @@ -81264,9 +81450,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *416 + default: *417 '404': *6 x-github: githubCloudOnly: false @@ -81286,9 +81472,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: false content: @@ -81324,9 +81510,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *416 + default: *417 '422': *15 x-github: githubCloudOnly: false @@ -81347,9 +81533,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: false content: @@ -81385,9 +81571,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *416 + default: *417 '422': *15 x-github: githubCloudOnly: false @@ -81408,9 +81594,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: content: application/json: @@ -81445,9 +81631,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *416 + default: *417 '422': *15 x-github: githubCloudOnly: false @@ -81469,9 +81655,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: - - *495 - *496 - - *547 + - *497 + - *548 responses: '200': description: Response @@ -81505,9 +81691,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: true content: @@ -81565,9 +81751,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: true content: @@ -81625,9 +81811,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: true content: @@ -81687,9 +81873,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#rename-a-branch parameters: - - *495 - *496 - - *547 + - *497 + - *548 requestBody: required: true content: @@ -81711,7 +81897,7 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: default: value: @@ -81825,8 +82011,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *495 - *496 + - *497 - *105 - *106 - *107 @@ -81840,9 +82026,9 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: - default: *321 + default: *322 '404': *6 '500': *40 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -81862,8 +82048,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *495 - *496 + - *497 - name: bypass_request_number in: path required: true @@ -81877,7 +82063,7 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: default: value: @@ -81936,8 +82122,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *495 - *496 + - *497 - *105 - *106 - *107 @@ -81951,9 +82137,9 @@ paths: application/json: schema: type: array - items: *323 + items: *324 examples: - default: *324 + default: *325 '404': *6 '403': *29 '500': *40 @@ -81977,8 +82163,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *495 - *496 + - *497 - name: bypass_request_number in: path required: true @@ -81990,7 +82176,7 @@ paths: description: A single bypass request. content: application/json: - schema: *323 + schema: *324 examples: default: value: @@ -82048,8 +82234,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *495 - *496 + - *497 - name: bypass_request_number in: path required: true @@ -82120,8 +82306,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *495 - *496 + - *497 - name: bypass_response_id in: path required: true @@ -82154,8 +82340,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#create-a-check-run parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -82434,7 +82620,7 @@ paths: description: Response content: application/json: - schema: &558 + schema: &559 title: CheckRun description: A check performed on the code of a given code change type: object @@ -82545,16 +82731,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *236 - deployment: &921 + items: *237 + deployment: &922 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -82621,8 +82807,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 required: - id - node_id @@ -82834,9 +83020,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#get-a-check-run parameters: - - *495 - *496 - - &559 + - *497 + - &560 name: check_run_id description: The unique identifier of the check run. in: path @@ -82848,9 +83034,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: - default: &560 + default: &561 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -82950,9 +83136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#update-a-check-run parameters: - - *495 - *496 - - *559 + - *497 + - *560 requestBody: required: true content: @@ -83192,9 +83378,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: - default: *560 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83214,9 +83400,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-run-annotations parameters: - - *495 - *496 - - *559 + - *497 + - *560 - *17 - *19 responses: @@ -83311,15 +83497,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#rerequest-a-check-run parameters: - - *495 - *496 - - *559 + - *497 + - *560 responses: '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -83357,8 +83543,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#create-a-check-suite parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -83380,7 +83566,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &563 + schema: &564 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -83444,7 +83630,7 @@ paths: nullable: true pull_requests: type: array - items: *236 + items: *237 nullable: true app: title: GitHub app @@ -83455,9 +83641,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - repository: *292 + properties: *227 + required: *228 + repository: *293 created_at: type: string format: date-time @@ -83466,12 +83652,12 @@ paths: type: string format: date-time nullable: true - head_commit: &954 + head_commit: &955 title: Simple Commit description: A commit. type: object - properties: *561 - required: *562 + properties: *562 + required: *563 latest_check_runs_count: type: integer check_runs_url: @@ -83499,7 +83685,7 @@ paths: - check_runs_url - pull_requests examples: - default: &564 + default: &565 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -83790,9 +83976,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *563 + schema: *564 examples: - default: *564 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83811,8 +83997,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -83873,7 +84059,7 @@ paths: required: - app_id - setting - repository: *292 + repository: *293 examples: default: value: @@ -84121,9 +84307,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#get-a-check-suite parameters: - - *495 - *496 - - &565 + - *497 + - &566 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -84135,9 +84321,9 @@ paths: description: Response content: application/json: - schema: *563 + schema: *564 examples: - default: *564 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84160,17 +84346,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: - - *495 - *496 - - *565 - - &617 + - *497 + - *566 + - &618 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &618 + - &619 name: status description: Returns check runs with the specified `status`. in: query @@ -84209,9 +84395,9 @@ paths: type: integer check_runs: type: array - items: *558 + items: *559 examples: - default: &619 + default: &620 value: total_count: 1 check_runs: @@ -84313,15 +84499,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#rerequest-a-check-suite parameters: - - *495 - *496 - - *565 + - *497 + - *566 responses: '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -84348,21 +84534,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: - - *495 - *496 - - *329 + - *497 - *330 + - *331 - *19 - *17 - - &581 + - &582 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: *566 - - &582 + schema: *567 + - &583 name: pr description: The number of the pull request for the results you want to list. in: query @@ -84387,13 +84573,13 @@ paths: be returned. in: query required: false - schema: *331 + schema: *332 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *567 + schema: *568 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -84417,7 +84603,7 @@ paths: updated_at: *142 url: *139 html_url: *140 - instances_url: *568 + instances_url: *569 state: *115 fixed_at: *144 dismissed_by: @@ -84428,11 +84614,11 @@ paths: required: *21 nullable: true dismissed_at: *143 - dismissed_reason: *569 - dismissed_comment: *570 - rule: *571 - tool: *572 - most_recent_instance: *573 + dismissed_reason: *570 + dismissed_comment: *571 + rule: *572 + tool: *573 + most_recent_instance: *574 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -84558,7 +84744,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &574 + '403': &575 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -84585,9 +84771,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: - - *495 - *496 - - &575 + - *497 + - &576 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -84601,7 +84787,7 @@ paths: description: Response content: application/json: - schema: &576 + schema: &577 type: object properties: number: *134 @@ -84609,7 +84795,7 @@ paths: updated_at: *142 url: *139 html_url: *140 - instances_url: *568 + instances_url: *569 state: *115 fixed_at: *144 dismissed_by: @@ -84620,8 +84806,8 @@ paths: required: *21 nullable: true dismissed_at: *143 - dismissed_reason: *569 - dismissed_comment: *570 + dismissed_reason: *570 + dismissed_comment: *571 rule: type: object properties: @@ -84675,8 +84861,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *572 - most_recent_instance: *573 + tool: *573 + most_recent_instance: *574 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -84775,7 +84961,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *574 + '403': *575 '404': *6 '503': *203 x-github: @@ -84795,9 +84981,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: - - *495 - *496 - - *575 + - *497 + - *576 requestBody: required: true content: @@ -84812,8 +84998,8 @@ paths: enum: - open - dismissed - dismissed_reason: *569 - dismissed_comment: *570 + dismissed_reason: *570 + dismissed_comment: *571 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -84841,7 +85027,7 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: default: value: @@ -84917,7 +85103,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &580 + '403': &581 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -84944,15 +85130,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: - - *495 - *496 - - *575 + - *497 + - *576 responses: '200': description: Response content: application/json: - schema: &577 + schema: &578 type: object properties: status: @@ -84978,13 +85164,13 @@ paths: - description - started_at examples: - default: &578 + default: &579 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &579 + '400': &580 description: Bad Request content: application/json: @@ -84995,7 +85181,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': *574 + '403': *575 '404': *6 '500': *40 x-github: @@ -85020,29 +85206,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: - - *495 - *496 - - *575 + - *497 + - *576 responses: '200': description: OK content: application/json: - schema: *577 + schema: *578 examples: - default: *578 + default: *579 '202': description: Accepted content: application/json: - schema: *577 + schema: *578 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *579 + '400': *580 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -85074,9 +85260,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: - - *495 - *496 - - *575 + - *497 + - *576 requestBody: required: false content: @@ -85121,8 +85307,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *579 - '403': *580 + '400': *580 + '403': *581 '404': *6 '422': description: Unprocessable Entity @@ -85146,13 +85332,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: - - *495 - *496 - - *575 + - *497 + - *576 - *19 - *17 - - *581 - *582 + - *583 responses: '200': description: Response @@ -85163,10 +85349,10 @@ paths: items: type: object properties: - ref: *566 - analysis_key: *583 - environment: *584 - category: *585 + ref: *567 + analysis_key: *584 + environment: *585 + category: *586 state: type: string description: State of a code scanning alert instance. @@ -85181,7 +85367,7 @@ paths: properties: text: type: string - location: *586 + location: *587 html_url: type: string classifications: @@ -85189,7 +85375,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: *587 + items: *588 examples: default: value: @@ -85226,7 +85412,7 @@ paths: end_column: 50 classifications: - source - '403': *574 + '403': *575 '404': *6 '503': *203 x-github: @@ -85260,25 +85446,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: - - *495 - *496 - - *329 + - *497 - *330 + - *331 - *19 - *17 - - *582 + - *583 - 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: *566 + schema: *567 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &588 + schema: &589 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -85299,23 +85485,23 @@ paths: application/json: schema: type: array - items: &589 + items: &590 type: object properties: - ref: *566 - commit_sha: &597 + ref: *567 + commit_sha: &598 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: *583 + analysis_key: *584 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *585 + category: *586 error: type: string example: error reading field xyz @@ -85339,8 +85525,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *588 - tool: *572 + sarif_id: *589 + tool: *573 deletable: type: boolean warning: @@ -85401,7 +85587,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *574 + '403': *575 '404': *6 '503': *203 x-github: @@ -85437,8 +85623,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: - - *495 - *496 + - *497 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -85451,7 +85637,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: response: summary: application/json response @@ -85505,7 +85691,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *574 + '403': *575 '404': *6 '422': description: Response if analysis could not be processed @@ -85592,8 +85778,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: - - *495 - *496 + - *497 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -85646,7 +85832,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': *580 + '403': *581 '404': *6 '503': *203 x-github: @@ -85668,8 +85854,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -85677,7 +85863,7 @@ paths: application/json: schema: type: array - items: &590 + items: &591 title: CodeQL Database description: A CodeQL database. type: object @@ -85788,7 +85974,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': *574 + '403': *575 '404': *6 '503': *203 x-github: @@ -85817,8 +86003,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: - - *495 - *496 + - *497 - name: language in: path description: The language of the CodeQL database. @@ -85830,7 +86016,7 @@ paths: description: Response content: application/json: - schema: *590 + schema: *591 examples: default: value: @@ -85862,9 +86048,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': &628 + '302': &629 description: Found - '403': *574 + '403': *575 '404': *6 '503': *203 x-github: @@ -85886,8 +86072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *495 - *496 + - *497 - name: language in: path description: The language of the CodeQL database. @@ -85897,7 +86083,7 @@ paths: responses: '204': description: Response - '403': *580 + '403': *581 '404': *6 '503': *203 x-github: @@ -85925,8 +86111,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -85935,7 +86121,7 @@ paths: type: object additionalProperties: false properties: - language: &591 + language: &592 type: string description: The language targeted by the CodeQL query enum: @@ -86015,7 +86201,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &595 + schema: &596 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -86025,7 +86211,7 @@ paths: description: The ID of the variant analysis. controller_repo: *122 actor: *4 - query_language: *591 + query_language: *592 query_pack_url: type: string description: The download url for the query pack. @@ -86072,7 +86258,7 @@ paths: items: type: object properties: - repository: &592 + repository: &593 title: Repository Identifier description: Repository Identifier type: object @@ -86108,7 +86294,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &596 + analysis_status: &597 type: string description: The new status of the CodeQL variant analysis repository task. @@ -86140,7 +86326,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &593 + access_mismatch_repos: &594 type: object properties: repository_count: @@ -86154,7 +86340,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: *592 + items: *593 required: - repository_count - repositories @@ -86176,8 +86362,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *593 - over_limit_repos: *593 + no_codeql_db_repos: *594 + over_limit_repos: *594 required: - access_mismatch_repos - not_found_repos @@ -86193,7 +86379,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &594 + value: &595 summary: Default response value: id: 1 @@ -86339,10 +86525,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *594 + value: *595 repository_lists: summary: Response for a successful variant analysis submission - value: *594 + value: *595 '404': *6 '422': description: Unable to process variant analysis submission @@ -86370,8 +86556,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: - - *495 - *496 + - *497 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -86383,9 +86569,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: *594 + default: *595 '404': *6 '503': *203 x-github: @@ -86408,7 +86594,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: - - *495 + - *496 - name: repo in: path description: The name of the controller repository. @@ -86443,7 +86629,7 @@ paths: type: object properties: repository: *122 - analysis_status: *596 + analysis_status: *597 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -86568,8 +86754,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -86671,7 +86857,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *574 + '403': *575 '404': *6 '503': *203 x-github: @@ -86692,8 +86878,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -86760,7 +86946,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -86785,7 +86971,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *580 + '403': *581 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -86856,8 +87042,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -86865,7 +87051,7 @@ paths: schema: type: object properties: - commit_sha: *597 + commit_sha: *598 ref: type: string description: |- @@ -86923,7 +87109,7 @@ paths: schema: type: object properties: - id: *588 + id: *589 url: type: string description: The REST API URL for checking the status of the upload. @@ -86937,7 +87123,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': *580 + '403': *581 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -86960,8 +87146,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: - - *495 - *496 + - *497 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -87007,7 +87193,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': *574 + '403': *575 '404': description: Not Found if the sarif id does not match any upload '503': *203 @@ -87032,8 +87218,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -87114,8 +87300,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-codeowners-errors parameters: - - *495 - *496 + - *497 - 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 @@ -87235,8 +87421,8 @@ paths: parameters: - *17 - *19 - - *495 - *496 + - *497 responses: '200': description: Response @@ -87252,7 +87438,7 @@ paths: type: integer codespaces: type: array - items: *406 + items: *407 examples: default: value: @@ -87550,8 +87736,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -87614,17 +87800,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *406 + schema: *407 examples: - default: *598 + default: *599 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *406 + schema: *407 examples: - default: *598 + default: *599 '400': *14 '401': *25 '403': *29 @@ -87653,8 +87839,8 @@ paths: parameters: - *17 - *19 - - *495 - *496 + - *497 responses: '200': description: Response @@ -87718,8 +87904,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: - - *495 - *496 + - *497 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -87754,14 +87940,14 @@ paths: type: integer machines: type: array - items: &864 + items: &865 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *599 - required: *600 + properties: *600 + required: *601 examples: - default: &865 + default: &866 value: total_count: 2 machines: @@ -87801,8 +87987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *495 - *496 + - *497 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -87886,8 +88072,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: - - *495 - *496 + - *497 - 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 @@ -87953,8 +88139,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -87972,7 +88158,7 @@ paths: type: integer secrets: type: array - items: &604 + items: &605 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -87992,7 +88178,7 @@ paths: - created_at - updated_at examples: - default: *601 + default: *602 headers: Link: *47 x-github: @@ -88015,16 +88201,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -88044,17 +88230,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 responses: '200': description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *605 + default: *606 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88074,9 +88260,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: - - *495 - *496 - - *302 + - *497 + - *303 requestBody: required: true content: @@ -88104,7 +88290,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -88128,9 +88314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 responses: '204': description: Response @@ -88158,8 +88344,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *495 - *496 + - *497 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -88201,7 +88387,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &606 + properties: &607 login: type: string example: octocat @@ -88294,7 +88480,7 @@ paths: user_view_type: type: string example: public - required: &607 + required: &608 - avatar_url - events_url - followers_url @@ -88368,8 +88554,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: - - *495 - *496 + - *497 - *151 responses: '204': @@ -88416,8 +88602,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *495 - *496 + - *497 - *151 requestBody: required: false @@ -88444,7 +88630,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &685 + schema: &686 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -88455,7 +88641,7 @@ paths: example: 42 type: integer format: int64 - repository: *292 + repository: *293 invitee: title: Simple User description: A GitHub user. @@ -88633,7 +88819,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *267 + schema: *268 '403': *29 x-github: triggersNotification: true @@ -88673,8 +88859,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *495 - *496 + - *497 - *151 responses: '204': @@ -88706,8 +88892,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *495 - *496 + - *497 - *151 responses: '200': @@ -88728,8 +88914,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *606 - required: *607 + properties: *607 + required: *608 nullable: true required: - permission @@ -88784,8 +88970,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -88795,7 +88981,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 title: Commit Comment description: Commit Comment type: object @@ -88836,8 +89022,8 @@ paths: updated_at: type: string format: date-time - author_association: *228 - reactions: *229 + author_association: *229 + reactions: *230 required: - url - html_url @@ -88853,7 +89039,7 @@ paths: - created_at - updated_at examples: - default: &613 + default: &614 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -88912,17 +89098,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#get-a-commit-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 responses: '200': description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: &614 + default: &615 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -88979,9 +89165,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#update-a-commit-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 requestBody: required: true content: @@ -89003,7 +89189,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -89054,9 +89240,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#delete-a-commit-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 responses: '204': description: Response @@ -89077,9 +89263,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 - 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. @@ -89105,7 +89291,7 @@ paths: application/json: schema: type: array - items: &609 + items: &610 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -89148,7 +89334,7 @@ paths: - content - created_at examples: - default: &690 + default: &691 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -89193,9 +89379,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 requestBody: required: true content: @@ -89227,9 +89413,9 @@ paths: description: Reaction exists content: application/json: - schema: *609 + schema: *610 examples: - default: &610 + default: &611 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -89258,9 +89444,9 @@ paths: description: Reaction created content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '422': *15 x-github: githubCloudOnly: false @@ -89282,10 +89468,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *495 - *496 - - *247 - - &691 + - *497 + - *248 + - &692 name: reaction_id description: The unique identifier of the reaction. in: path @@ -89340,8 +89526,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-commits parameters: - - *495 - *496 + - *497 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -89397,9 +89583,9 @@ paths: application/json: schema: type: array - items: *611 + items: *612 examples: - default: &761 + default: &762 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -89493,9 +89679,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-branches-for-head-commit parameters: - - *495 - *496 - - &612 + - *497 + - &613 name: commit_sha description: The SHA of the commit. in: path @@ -89567,9 +89753,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments parameters: - - *495 - *496 - - *612 + - *497 + - *613 - *17 - *19 responses: @@ -89579,9 +89765,9 @@ paths: application/json: schema: type: array - items: *608 + items: *609 examples: - default: *613 + default: *614 headers: Link: *47 x-github: @@ -89609,9 +89795,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#create-a-commit-comment parameters: - - *495 - *496 - - *612 + - *497 + - *613 requestBody: required: true content: @@ -89646,9 +89832,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *614 + default: *615 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -89676,9 +89862,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: - - *495 - *496 - - *612 + - *497 + - *613 - *17 - *19 responses: @@ -89688,9 +89874,9 @@ paths: application/json: schema: type: array - items: *615 + items: *616 examples: - default: &753 + default: &754 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -90227,11 +90413,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#get-a-commit parameters: - - *495 - *496 + - *497 - *19 - *17 - - &616 + - &617 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)" @@ -90246,9 +90432,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: - default: &738 + default: &739 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -90336,7 +90522,7 @@ paths: schema: type: string examples: - default: &625 + default: &626 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -90349,7 +90535,7 @@ paths: schema: type: string examples: - default: &626 + default: &627 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -90402,11 +90588,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: - - *495 - *496 - - *616 + - *497 - *617 - *618 + - *619 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -90440,9 +90626,9 @@ paths: type: integer check_runs: type: array - items: *558 + items: *559 examples: - default: *619 + default: *620 headers: Link: *47 x-github: @@ -90467,9 +90653,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: - - *495 - *496 - - *616 + - *497 + - *617 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -90477,7 +90663,7 @@ paths: schema: type: integer example: 1 - - *617 + - *618 - *17 - *19 responses: @@ -90495,7 +90681,7 @@ paths: type: integer check_suites: type: array - items: *563 + items: *564 examples: default: value: @@ -90695,9 +90881,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: - - *495 - *496 - - *616 + - *497 + - *617 - *17 - *19 responses: @@ -90764,7 +90950,7 @@ paths: type: string total_count: type: integer - repository: *292 + repository: *293 commit_url: type: string format: uri @@ -90895,9 +91081,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *495 - *496 - - *616 + - *497 + - *617 - *17 - *19 responses: @@ -90907,7 +91093,7 @@ paths: application/json: schema: type: array - items: &816 + items: &817 title: Status description: The status of a commit. type: object @@ -90988,7 +91174,7 @@ paths: site_admin: false headers: Link: *47 - '301': *501 + '301': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91016,8 +91202,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/community#get-community-profile-metrics parameters: - - *495 - *496 + - *497 responses: '200': description: Response @@ -91046,20 +91232,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *620 - required: *621 + properties: *621 + required: *622 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &622 + properties: &623 url: type: string format: uri html_url: type: string format: uri - required: &623 + required: &624 - url - html_url nullable: true @@ -91067,32 +91253,32 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true contributing: title: Community Health File type: object - properties: *622 - required: *623 + properties: *623 + required: *624 nullable: true readme: title: Community Health File type: object - properties: *622 - required: *623 + properties: *623 + required: *624 nullable: true issue_template: title: Community Health File type: object - properties: *622 - required: *623 + properties: *623 + required: *624 nullable: true pull_request_template: title: Community Health File type: object - properties: *622 - required: *623 + properties: *623 + required: *624 nullable: true required: - code_of_conduct @@ -91219,8 +91405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#compare-two-commits parameters: - - *495 - *496 + - *497 - *19 - *17 - name: basehead @@ -91263,8 +91449,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *611 - merge_base_commit: *611 + base_commit: *612 + merge_base_commit: *612 status: type: string enum: @@ -91284,10 +91470,10 @@ paths: example: 6 commits: type: array - items: *611 + items: *612 files: type: array - items: *624 + items: *625 required: - url - html_url @@ -91533,12 +91719,12 @@ paths: schema: type: string examples: - default: *625 + default: *626 application/vnd.github.patch: schema: type: string examples: - default: *626 + default: *627 '404': *6 '500': *40 '503': *203 @@ -91583,8 +91769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-repository-content parameters: - - *495 - *496 + - *497 - name: path description: path parameter in: path @@ -91744,7 +91930,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &627 + response-if-content-is-a-file-github-object: &628 summary: Response if content is a file value: type: file @@ -91876,7 +92062,7 @@ paths: - size - type - url - - &766 + - &767 title: Content File description: Content File type: object @@ -92077,7 +92263,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *627 + response-if-content-is-a-file: *628 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -92146,7 +92332,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *628 + '302': *629 '304': *37 x-github: githubCloudOnly: false @@ -92199,8 +92385,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#create-or-update-file-contents parameters: - - *495 - *496 + - *497 - name: path description: path parameter in: path @@ -92293,7 +92479,7 @@ paths: description: Response content: application/json: - schema: &629 + schema: &630 title: File Commit description: File Commit type: object @@ -92445,7 +92631,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: example-for-creating-a-file: value: @@ -92499,7 +92685,7 @@ paths: schema: oneOf: - *3 - - &667 + - &668 description: Repository rule violation was detected type: object properties: @@ -92520,7 +92706,7 @@ paths: items: type: object properties: - placeholder_id: &808 + placeholder_id: &809 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -92552,8 +92738,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#delete-a-file parameters: - - *495 - *496 + - *497 - name: path description: path parameter in: path @@ -92614,7 +92800,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: default: value: @@ -92669,8 +92855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-contributors parameters: - - *495 - *496 + - *497 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -92799,8 +92985,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -92932,24 +93118,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *495 - *496 - - *350 + - *497 - *351 - *352 - *353 - *354 + - *355 - 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 - - *355 - - *630 - *356 + - *631 - *357 - *358 + - *359 - *112 - *110 - *111 @@ -92961,7 +93147,7 @@ paths: application/json: schema: type: array - items: &634 + items: &635 type: object description: A Dependabot alert. properties: @@ -93008,7 +93194,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *631 + security_advisory: *632 security_vulnerability: *138 url: *139 html_url: *140 @@ -93039,8 +93225,8 @@ paths: nullable: true maxLength: 280 fixed_at: *144 - auto_dismissed_at: *632 - dismissal_request: *633 + auto_dismissed_at: *633 + dismissal_request: *634 assignees: type: array description: The users assigned to this alert. @@ -93295,9 +93481,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *495 - *496 - - &635 + - *497 + - &636 name: alert_number in: path description: |- @@ -93312,7 +93498,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -93444,9 +93630,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *495 - *496 - - *635 + - *497 + - *636 requestBody: required: true content: @@ -93519,7 +93705,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -93649,8 +93835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-repository-secrets parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -93668,7 +93854,7 @@ paths: type: integer secrets: type: array - items: &638 + items: &639 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -93721,16 +93907,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *636 + schema: *637 examples: - default: *637 + default: *638 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93750,15 +93936,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 responses: '200': description: Response content: application/json: - schema: *638 + schema: *639 examples: default: value: @@ -93784,9 +93970,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 requestBody: required: true content: @@ -93814,7 +94000,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -93838,9 +94024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *495 - *496 - - *302 + - *497 + - *303 responses: '204': description: Response @@ -93862,8 +94048,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: - - *495 - *496 + - *497 - 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 @@ -94026,8 +94212,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -94265,8 +94451,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: - - *495 - *496 + - *497 - name: sbom_uuid in: path required: true @@ -94277,7 +94463,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *639 + Location: *640 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -94298,8 +94484,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: - - *495 - *496 + - *497 responses: '201': description: Response @@ -94337,8 +94523,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -94413,7 +94599,7 @@ paths: - version - url additionalProperties: false - metadata: &640 + metadata: &641 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -94446,7 +94632,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *640 + metadata: *641 resolved: type: object description: A collection of resolved package dependencies. @@ -94459,7 +94645,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *640 + metadata: *641 relationship: type: string description: A notation of whether a dependency is requested @@ -94588,8 +94774,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#list-deployments parameters: - - *495 - *496 + - *497 - name: sha description: The SHA recorded at creation time. in: query @@ -94629,9 +94815,9 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: - default: *642 + default: *643 headers: Link: *47 x-github: @@ -94697,8 +94883,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#create-a-deployment parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -94779,7 +94965,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: simple-example: summary: Simple example @@ -94852,9 +95038,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#get-a-deployment parameters: - - *495 - *496 - - &643 + - *497 + - &644 name: deployment_id description: deployment_id parameter in: path @@ -94866,7 +95052,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: default: value: @@ -94931,9 +95117,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#delete-a-deployment parameters: - - *495 - *496 - - *643 + - *497 + - *644 responses: '204': description: Response @@ -94955,9 +95141,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#list-deployment-statuses parameters: - - *495 - *496 - - *643 + - *497 + - *644 - *17 - *19 responses: @@ -94967,7 +95153,7 @@ paths: application/json: schema: type: array - items: &644 + items: &645 title: Deployment Status description: The status of a deployment. type: object @@ -95058,8 +95244,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 required: - id - node_id @@ -95128,9 +95314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#create-a-deployment-status parameters: - - *495 - *496 - - *643 + - *497 + - *644 requestBody: required: true content: @@ -95205,9 +95391,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: &645 + default: &646 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -95263,9 +95449,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#get-a-deployment-status parameters: - - *495 - *496 - - *643 + - *497 + - *644 - name: status_id in: path required: true @@ -95276,9 +95462,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: *645 + default: *646 '404': *6 x-github: githubCloudOnly: false @@ -95305,12 +95491,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *495 - *496 - - *646 + - *497 - *647 - *648 - *649 + - *650 - *17 - *19 responses: @@ -95320,9 +95506,9 @@ paths: application/json: schema: type: array - items: *650 + items: *651 examples: - default: *651 + default: *652 '404': *6 '403': *29 '500': *40 @@ -95346,8 +95532,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *495 - *496 + - *497 - name: alert_number in: path required: true @@ -95359,7 +95545,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -95415,8 +95601,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *495 - *496 + - *497 - name: alert_number in: path required: true @@ -95475,12 +95661,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *495 - *496 - - *646 + - *497 - *647 - *648 - *649 + - *650 - *17 - *19 responses: @@ -95490,9 +95676,9 @@ paths: application/json: schema: type: array - items: *652 + items: *653 examples: - default: *653 + default: *654 '404': *6 '403': *29 '500': *40 @@ -95516,8 +95702,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *495 - *496 + - *497 - name: alert_number in: path required: true @@ -95529,7 +95715,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -95580,8 +95766,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *495 - *496 + - *497 - name: alert_number in: path required: true @@ -95619,7 +95805,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -95670,8 +95856,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *495 - *496 + - *497 - name: alert_number in: path required: true @@ -95742,8 +95928,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *495 - *496 + - *497 - name: alert_number in: path required: true @@ -95776,12 +95962,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *495 - *496 + - *497 - *105 - *106 - *107 - - *364 + - *365 - *17 - *19 responses: @@ -95791,9 +95977,9 @@ paths: application/json: schema: type: array - items: *366 + items: *367 examples: - default: *367 + default: *368 '404': *6 '403': *29 '500': *40 @@ -95818,8 +96004,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *495 - *496 + - *497 - name: alert_number in: path required: true @@ -95831,7 +96017,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *366 + schema: *367 examples: default: value: @@ -95889,8 +96075,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *495 - *496 + - *497 - name: alert_number in: path required: true @@ -95959,8 +96145,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -96017,8 +96203,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#list-environments parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -96035,7 +96221,7 @@ paths: type: integer environments: type: array - items: &655 + items: &656 title: Environment description: Details of a deployment environment type: object @@ -96087,7 +96273,7 @@ paths: type: type: string example: wait_timer - wait_timer: &657 + wait_timer: &658 type: integer example: 30 description: The amount of time to delay a job after @@ -96124,11 +96310,11 @@ paths: items: type: object properties: - type: *654 + type: *655 reviewer: anyOf: - *4 - - *325 + - *326 required: - id - node_id @@ -96148,7 +96334,7 @@ paths: - id - node_id - type - deployment_branch_policy: &658 + deployment_branch_policy: &659 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -96264,9 +96450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#get-an-environment parameters: - - *495 - *496 - - &656 + - *497 + - &657 name: environment_name in: path required: true @@ -96279,9 +96465,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: &659 + default: &660 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -96365,9 +96551,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#create-or-update-an-environment parameters: - - *495 - *496 - - *656 + - *497 + - *657 requestBody: required: false content: @@ -96376,7 +96562,7 @@ paths: type: object nullable: true properties: - wait_timer: *657 + wait_timer: *658 prevent_self_review: type: boolean example: false @@ -96393,13 +96579,13 @@ paths: items: type: object properties: - type: *654 + type: *655 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *658 + deployment_branch_policy: *659 additionalProperties: false examples: default: @@ -96419,9 +96605,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *659 + default: *660 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -96445,9 +96631,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#delete-an-environment parameters: - - *495 - *496 - - *656 + - *497 + - *657 responses: '204': description: Default response @@ -96472,9 +96658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *495 - *496 - - *656 + - *497 + - *657 - *17 - *19 responses: @@ -96492,7 +96678,7 @@ paths: example: 2 branch_policies: type: array - items: &660 + items: &661 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -96549,9 +96735,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *495 - *496 - - *656 + - *497 + - *657 requestBody: required: true content: @@ -96597,9 +96783,9 @@ paths: description: Response content: application/json: - schema: *660 + schema: *661 examples: - example-wildcard: &661 + example-wildcard: &662 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -96641,10 +96827,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *495 - *496 - - *656 - - &662 + - *497 + - *657 + - &663 name: branch_policy_id in: path required: true @@ -96656,9 +96842,9 @@ paths: description: Response content: application/json: - schema: *660 + schema: *661 examples: - default: *661 + default: *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96677,10 +96863,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *495 - *496 - - *656 - - *662 + - *497 + - *657 + - *663 requestBody: required: true content: @@ -96708,9 +96894,9 @@ paths: description: Response content: application/json: - schema: *660 + schema: *661 examples: - default: *661 + default: *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96729,10 +96915,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *495 - *496 - - *656 - - *662 + - *497 + - *657 + - *663 responses: '204': description: Response @@ -96757,9 +96943,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: - - *656 + - *657 + - *497 - *496 - - *495 responses: '200': description: List of deployment protection rules @@ -96775,7 +96961,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &663 + items: &664 title: Deployment protection rule description: Deployment protection rule type: object @@ -96794,7 +96980,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &664 + app: &665 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -96893,9 +97079,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: - - *656 + - *657 + - *497 - *496 - - *495 requestBody: content: application/json: @@ -96916,9 +97102,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *663 + schema: *664 examples: - default: &665 + default: &666 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -96953,9 +97139,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: - - *656 + - *657 + - *497 - *496 - - *495 - *19 - *17 responses: @@ -96974,7 +97160,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *664 + items: *665 examples: default: value: @@ -97009,10 +97195,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: - - *495 - *496 - - *656 - - &666 + - *497 + - *657 + - &667 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -97024,9 +97210,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: - default: *665 + default: *666 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97047,10 +97233,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: - - *656 + - *657 + - *497 - *496 - - *495 - - *666 + - *667 responses: '204': description: Response @@ -97076,9 +97262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-environment-secrets parameters: - - *495 - *496 - - *656 + - *497 + - *657 - *17 - *19 responses: @@ -97096,9 +97282,9 @@ paths: type: integer secrets: type: array - items: *525 + items: *526 examples: - default: *526 + default: *527 headers: Link: *47 x-github: @@ -97123,17 +97309,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-public-key parameters: - - *495 - *496 - - *656 + - *497 + - *657 responses: '200': description: Response content: application/json: - schema: *308 + schema: *309 examples: - default: *309 + default: *310 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97155,18 +97341,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-secret parameters: - - *495 - *496 - - *656 - - *302 + - *497 + - *657 + - *303 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *539 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97188,10 +97374,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *495 - *496 - - *656 - - *302 + - *497 + - *657 + - *303 requestBody: required: true content: @@ -97222,7 +97408,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -97248,10 +97434,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-environment-secret parameters: - - *495 - *496 - - *656 - - *302 + - *497 + - *657 + - *303 responses: '204': description: Default response @@ -97276,10 +97462,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-environment-variables parameters: - - *495 - *496 - - *656 - - *311 + - *497 + - *657 + - *312 - *19 responses: '200': @@ -97296,9 +97482,9 @@ paths: type: integer variables: type: array - items: *527 + items: *528 examples: - default: *528 + default: *529 headers: Link: *47 x-github: @@ -97321,9 +97507,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-an-environment-variable parameters: - - *495 - *496 - - *656 + - *497 + - *657 requestBody: required: true content: @@ -97350,7 +97536,7 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -97375,18 +97561,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-environment-variable parameters: - - *495 - *496 - - *656 - - *305 + - *497 + - *657 + - *306 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *540 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97407,10 +97593,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-environment-variable parameters: - - *495 - *496 - - *305 - - *656 + - *497 + - *306 + - *657 requestBody: required: true content: @@ -97452,10 +97638,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-environment-variable parameters: - - *495 - *496 - - *305 - - *656 + - *497 + - *306 + - *657 responses: '204': description: Response @@ -97477,8 +97663,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-repository-events parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -97488,7 +97674,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: 200-response: value: @@ -97546,8 +97732,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#list-forks parameters: - - *495 - *496 + - *497 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -97569,7 +97755,7 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: default: value: @@ -97706,8 +97892,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#create-a-fork parameters: - - *495 - *496 + - *497 requestBody: required: false content: @@ -97739,9 +97925,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *502 + default: *503 '400': *14 '422': *15 '403': *29 @@ -97762,8 +97948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#create-a-blob parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -97822,8 +98008,8 @@ paths: application/json: schema: oneOf: - - *267 - - *667 + - *268 + - *668 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97848,8 +98034,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#get-a-blob parameters: - - *495 - *496 + - *497 - name: file_sha in: path required: true @@ -97948,8 +98134,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#create-a-commit parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -98058,7 +98244,7 @@ paths: description: Response content: application/json: - schema: &668 + schema: &669 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -98272,15 +98458,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#get-a-commit-object parameters: - - *495 - *496 - - *612 + - *497 + - *613 responses: '200': description: Response content: application/json: - schema: *668 + schema: *669 examples: default: value: @@ -98336,9 +98522,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#list-matching-references parameters: - - *495 - *496 - - &669 + - *497 + - &670 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. @@ -98355,7 +98541,7 @@ paths: application/json: schema: type: array - items: &670 + items: &671 title: Git Reference description: Git references within a repository type: object @@ -98430,17 +98616,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference parameters: - - *495 - *496 - - *669 + - *497 + - *670 responses: '200': description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: &671 + default: &672 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -98469,8 +98655,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#create-a-reference parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -98499,9 +98685,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: *671 + default: *672 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -98527,9 +98713,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#update-a-reference parameters: - - *495 - *496 - - *669 + - *497 + - *670 requestBody: required: true content: @@ -98558,9 +98744,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: *671 + default: *672 '422': *15 '409': *121 x-github: @@ -98578,9 +98764,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#delete-a-reference parameters: - - *495 - *496 - - *669 + - *497 + - *670 responses: '204': description: Response @@ -98635,8 +98821,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#create-a-tag-object parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -98703,7 +98889,7 @@ paths: description: Response content: application/json: - schema: &673 + schema: &674 title: Git Tag description: Metadata for a Git tag type: object @@ -98754,7 +98940,7 @@ paths: - sha - type - url - verification: *672 + verification: *673 required: - sha - url @@ -98764,7 +98950,7 @@ paths: - tag - message examples: - default: &674 + default: &675 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -98837,8 +99023,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#get-a-tag parameters: - - *495 - *496 + - *497 - name: tag_sha in: path required: true @@ -98849,9 +99035,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *674 examples: - default: *674 + default: *675 '404': *6 '409': *121 x-github: @@ -98875,8 +99061,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#create-a-tree parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -98949,7 +99135,7 @@ paths: description: Response content: application/json: - schema: &675 + schema: &676 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -99045,8 +99231,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#get-a-tree parameters: - - *495 - *496 + - *497 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -99069,7 +99255,7 @@ paths: description: Response content: application/json: - schema: *675 + schema: *676 examples: default-response: summary: Default response @@ -99127,8 +99313,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -99171,8 +99357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-repository-webhooks parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -99182,7 +99368,7 @@ paths: application/json: schema: type: array - items: &676 + items: &677 title: Webhook description: Webhooks for repositories. type: object @@ -99236,7 +99422,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &963 + last_response: &964 title: Hook Response type: object properties: @@ -99310,8 +99496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#create-a-repository-webhook parameters: - - *495 - *496 + - *497 requestBody: required: false content: @@ -99363,9 +99549,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: &677 + default: &678 value: type: Repository id: 12345678 @@ -99413,17 +99599,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-repository-webhook parameters: - - *495 - *496 - - *373 + - *497 + - *374 responses: '200': description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: *677 + default: *678 '404': *6 x-github: githubCloudOnly: false @@ -99443,9 +99629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-repository-webhook parameters: - - *495 - *496 - - *373 + - *497 + - *374 requestBody: required: true content: @@ -99490,9 +99676,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: *677 + default: *678 '422': *15 '404': *6 x-github: @@ -99513,9 +99699,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *495 - *496 - - *373 + - *497 + - *374 responses: '204': description: Response @@ -99539,9 +99725,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: - - *495 - *496 - - *373 + - *497 + - *374 responses: '200': description: Response @@ -99568,9 +99754,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: - - *495 - *496 - - *373 + - *497 + - *374 requestBody: required: false content: @@ -99614,12 +99800,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *495 - *496 - - *373 - - *17 + - *497 - *374 + - *17 - *375 + - *376 responses: '200': description: Response @@ -99627,9 +99813,9 @@ paths: application/json: schema: type: array - items: *376 + items: *377 examples: - default: *377 + default: *378 '400': *14 '422': *15 x-github: @@ -99648,18 +99834,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: - - *495 - *496 - - *373 + - *497 + - *374 - *16 responses: '200': description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: *379 + default: *380 '400': *14 '422': *15 x-github: @@ -99678,9 +99864,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: - - *495 - *496 - - *373 + - *497 + - *374 - *16 responses: '202': *39 @@ -99703,9 +99889,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *495 - *496 - - *373 + - *497 + - *374 responses: '204': description: Response @@ -99730,9 +99916,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *495 - *496 - - *373 + - *497 + - *374 responses: '204': description: Response @@ -99755,8 +99941,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: - - *495 - *496 + - *497 responses: '200': description: Response if immutable releases are enabled @@ -99802,8 +99988,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-immutable-releases parameters: - - *495 - *496 + - *497 responses: '204': *130 '409': *121 @@ -99823,8 +100009,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-immutable-releases parameters: - - *495 - *496 + - *497 responses: '204': *130 '409': *121 @@ -99881,14 +100067,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-an-import-status parameters: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: &678 + schema: &679 title: Import description: A repository import from an external source. type: object @@ -99987,7 +100173,7 @@ paths: - html_url - authors_url examples: - default: &681 + default: &682 value: vcs: subversion use_lfs: true @@ -100003,7 +100189,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': &679 + '503': &680 description: Unavailable due to service under maintenance. content: application/json: @@ -100032,8 +100218,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#start-an-import parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -100081,7 +100267,7 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: default: value: @@ -100106,7 +100292,7 @@ paths: type: string '422': *15 '404': *6 - '503': *679 + '503': *680 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100134,8 +100320,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-an-import parameters: - - *495 - *496 + - *497 requestBody: required: false content: @@ -100184,7 +100370,7 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: example-1: summary: Example 1 @@ -100232,7 +100418,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': *679 + '503': *680 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100255,12 +100441,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#cancel-an-import parameters: - - *495 - *496 + - *497 responses: '204': description: Response - '503': *679 + '503': *680 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100286,9 +100472,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-commit-authors parameters: - - *495 - *496 - - &887 + - *497 + - &888 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -100302,7 +100488,7 @@ paths: application/json: schema: type: array - items: &680 + items: &681 title: Porter Author description: Porter Author type: object @@ -100356,7 +100542,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': *679 + '503': *680 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100381,8 +100567,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#map-a-commit-author parameters: - - *495 - *496 + - *497 - name: author_id in: path required: true @@ -100412,7 +100598,7 @@ paths: description: Response content: application/json: - schema: *680 + schema: *681 examples: default: value: @@ -100425,7 +100611,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *679 + '503': *680 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100449,8 +100635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-large-files parameters: - - *495 - *496 + - *497 responses: '200': description: Response @@ -100491,7 +100677,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *679 + '503': *680 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100519,8 +100705,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -100547,11 +100733,11 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: - default: *681 + default: *682 '422': *15 - '503': *679 + '503': *680 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100574,8 +100760,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -100583,8 +100769,8 @@ paths: application/json: schema: *22 examples: - default: *391 - '301': *501 + default: *392 + '301': *502 '404': *6 x-github: githubCloudOnly: false @@ -100604,8 +100790,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *495 - *496 + - *497 responses: '200': description: Response @@ -100613,12 +100799,12 @@ paths: application/json: schema: anyOf: - - *393 + - *394 - type: object properties: {} additionalProperties: false examples: - default: &683 + default: &684 value: limit: collaborators_only origin: repository @@ -100643,13 +100829,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *495 - *496 + - *497 requestBody: required: true content: application/json: - schema: *682 + schema: *683 examples: default: summary: Example request body @@ -100661,9 +100847,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *683 + default: *684 '409': description: Response x-github: @@ -100685,8 +100871,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *495 - *496 + - *497 responses: '204': description: Response @@ -100713,8 +100899,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -100768,13 +100954,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: - - *495 - *496 + - *497 requestBody: required: true content: application/json: - schema: &684 + schema: &685 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. @@ -100824,13 +101010,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: - - *495 - *496 + - *497 requestBody: required: true content: application/json: - schema: *684 + schema: *685 examples: default: summary: Example request body @@ -100863,8 +101049,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -100917,8 +101103,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -100994,8 +101180,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#list-repository-invitations parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -101005,9 +101191,9 @@ paths: application/json: schema: type: array - items: *685 + items: *686 examples: - default: &880 + default: &881 value: - id: 1 repository: @@ -101138,9 +101324,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *495 - *496 - - *397 + - *497 + - *398 requestBody: required: false content: @@ -101169,7 +101355,7 @@ paths: description: Response content: application/json: - schema: *685 + schema: *686 examples: default: value: @@ -101300,9 +101486,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *495 - *496 - - *397 + - *497 + - *398 responses: '204': description: Response @@ -101325,8 +101511,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -101334,9 +101520,9 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: - default: *686 + default: *687 '404': *6 x-github: githubCloudOnly: false @@ -101365,8 +101551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-repository-issues parameters: - - *495 - *496 + - *497 - 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 @@ -101428,7 +101614,7 @@ paths: required: false schema: type: string - - *404 + - *405 - name: sort description: What to sort results by. in: query @@ -101441,7 +101627,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - *17 - *19 responses: @@ -101451,9 +101637,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: &702 + default: &703 value: - id: 1 node_id: MDU6SXNzdWUx @@ -101602,7 +101788,7 @@ paths: state_reason: completed headers: Link: *47 - '301': *501 + '301': *502 '422': *15 '404': *6 x-github: @@ -101631,8 +101817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#create-an-issue parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -101739,9 +101925,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: &699 + default: &700 value: id: 1 node_id: MDU6SXNzdWUx @@ -101904,7 +102090,7 @@ paths: '422': *15 '503': *203 '404': *6 - '410': *687 + '410': *688 x-github: triggersNotification: true githubCloudOnly: false @@ -101942,9 +102128,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *495 - *496 - - *255 + - *497 + - *256 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -101954,7 +102140,7 @@ paths: enum: - asc - desc - - *238 + - *239 - *17 - *19 responses: @@ -101964,9 +102150,9 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: - default: &701 + default: &702 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -102025,17 +102211,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 responses: '200': description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: &689 + default: &690 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -102091,9 +102277,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#update-an-issue-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 requestBody: required: true content: @@ -102115,9 +102301,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *689 + default: *690 '422': *15 x-github: githubCloudOnly: false @@ -102135,9 +102321,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#delete-an-issue-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 responses: '204': description: Response @@ -102165,15 +102351,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#pin-an-issue-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 responses: '200': description: Response content: application/json: - schema: *688 + schema: *689 examples: default: value: @@ -102229,7 +102415,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *687 + '410': *688 '422': *15 x-github: githubCloudOnly: false @@ -102246,16 +102432,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#unpin-an-issue-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *687 + '410': *688 '503': *203 x-github: githubCloudOnly: false @@ -102273,9 +102459,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 - 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. @@ -102301,9 +102487,9 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: - default: *690 + default: *691 headers: Link: *47 '404': *6 @@ -102324,9 +102510,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *495 - *496 - - *247 + - *497 + - *248 requestBody: required: true content: @@ -102358,16 +102544,16 @@ paths: description: Reaction exists content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '201': description: Reaction created content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '422': *15 x-github: githubCloudOnly: false @@ -102389,10 +102575,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *495 - *496 - - *247 - - *691 + - *497 + - *248 + - *692 responses: '204': description: Response @@ -102412,8 +102598,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events-for-a-repository parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -102423,7 +102609,7 @@ paths: application/json: schema: type: array - items: &698 + items: &699 title: Issue Event description: Issue Event type: object @@ -102466,9 +102652,9 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *692 - required: *693 - x-github-breaking-changes: *694 + properties: *693 + required: *694 + x-github-breaking-changes: *695 nullable: true label: title: Issue Event Label @@ -102512,7 +102698,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *325 + requested_team: *326 dismissed_review: title: Issue Event Dismissed Review type: object @@ -102577,7 +102763,7 @@ paths: required: - from - to - issue_type: &695 + issue_type: &696 title: Issue Type description: The type of issue. type: object @@ -102605,14 +102791,14 @@ paths: required: - id - name - prev_issue_type: *695 + prev_issue_type: *696 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: &696 + properties: &697 number: type: integer description: The number of the referenced issue. @@ -102650,7 +102836,7 @@ paths: - id - node_id - name - required: &697 + required: &698 - number - title - state @@ -102662,25 +102848,25 @@ paths: event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *696 - required: *697 + properties: *697 + required: *698 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *696 - required: *697 + properties: *697 + required: *698 blocking: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *696 - required: *697 - author_association: *228 + properties: *697 + required: *698 + author_association: *229 lock_reason: type: string nullable: true @@ -102693,8 +102879,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 required: - id - node_id @@ -102879,8 +103065,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#get-an-issue-event parameters: - - *495 - *496 + - *497 - name: event_id in: path required: true @@ -102891,7 +103077,7 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: default: value: @@ -103084,7 +103270,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *687 + '410': *688 '403': *29 x-github: githubCloudOnly: false @@ -103118,9 +103304,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue parameters: - - *495 - *496 - - &700 + - *497 + - &701 name: issue_number description: The number that identifies the issue. in: path @@ -103132,11 +103318,11 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: default: summary: Issue - value: *699 + value: *700 pinned_comment: summary: Issue with pinned comment value: @@ -103341,9 +103527,9 @@ paths: - op: remove path: "/value/assignee" version: '2026-03-10' - '301': *501 + '301': *502 '404': *6 - '410': *687 + '410': *688 '304': *37 x-github: githubCloudOnly: false @@ -103368,9 +103554,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#update-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: false content: @@ -103511,17 +103697,17 @@ paths: application/json: schema: allOf: - - *231 + - *232 - type: object properties: {} examples: - default: *699 + default: *700 '422': *15 '503': *203 '403': *29 - '301': *501 + '301': *502 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103549,9 +103735,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: false content: @@ -103577,9 +103763,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *699 + default: *700 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103595,9 +103781,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: content: application/json: @@ -103622,9 +103808,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *699 + default: *700 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103646,9 +103832,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: - - *495 - *496 - - *700 + - *497 + - *701 - name: assignee in: path required: true @@ -103688,10 +103874,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments parameters: - - *495 - *496 - - *700 - - *238 + - *497 + - *701 + - *239 - *17 - *19 responses: @@ -103701,13 +103887,13 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: - default: *701 + default: *702 headers: Link: *47 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103736,9 +103922,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#create-an-issue-comment parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: true content: @@ -103760,16 +103946,16 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *689 + default: *690 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *687 + '410': *688 '422': *15 '404': *6 x-github: @@ -103797,9 +103983,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: - - *495 - *496 - - *700 + - *497 + - *701 - *17 - *19 responses: @@ -103809,14 +103995,14 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *702 + default: *703 headers: Link: *47 - '301': *501 + '301': *502 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103844,9 +104030,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: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: true content: @@ -103868,17 +104054,17 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *699 + default: *700 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *501 + '301': *502 '403': *29 - '410': *687 + '410': *688 '422': *15 '404': *6 x-github: @@ -103909,9 +104095,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: - - *495 - *496 - - *700 + - *497 + - *701 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -103923,15 +104109,15 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *699 - '301': *501 + default: *700 + '301': *502 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *687 + '410': *688 x-github: triggersNotification: true githubCloudOnly: false @@ -103957,9 +104143,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: - - *495 - *496 - - *700 + - *497 + - *701 - *17 - *19 responses: @@ -103969,14 +104155,14 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *702 + default: *703 headers: Link: *47 - '301': *501 + '301': *502 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103993,9 +104179,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events parameters: - - *495 - *496 - - *700 + - *497 + - *701 - *17 - *19 responses: @@ -104009,7 +104195,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &706 + - &707 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -104040,8 +104226,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 label: type: object properties: @@ -104063,7 +104249,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &707 + - &708 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -104094,8 +104280,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 label: type: object properties: @@ -104183,8 +104369,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 assignee: *4 assigner: *4 required: @@ -104199,7 +104385,7 @@ paths: - performed_via_github_app - assignee - assigner - - &708 + - &709 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -104230,8 +104416,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 milestone: type: object properties: @@ -104250,7 +104436,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &709 + - &710 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -104281,8 +104467,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 milestone: type: object properties: @@ -104301,7 +104487,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &710 + - &711 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -104332,8 +104518,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 rename: type: object properties: @@ -104355,7 +104541,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &711 + - &712 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -104386,10 +104572,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 review_requester: *4 - requested_team: *325 + requested_team: *326 requested_reviewer: *4 required: - review_requester @@ -104402,7 +104588,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &712 + - &713 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -104433,10 +104619,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 review_requester: *4 - requested_team: *325 + requested_team: *326 requested_reviewer: *4 required: - review_requester @@ -104449,7 +104635,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &713 + - &714 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -104480,8 +104666,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 dismissed_review: type: object properties: @@ -104509,7 +104695,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &714 + - &715 title: Locked Issue Event description: Locked Issue Event type: object @@ -104540,8 +104726,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 lock_reason: type: string example: '"off-topic"' @@ -104557,7 +104743,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &715 + - &716 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -104588,8 +104774,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 project_card: type: object properties: @@ -104623,7 +104809,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &716 + - &717 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -104654,8 +104840,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 project_card: type: object properties: @@ -104689,7 +104875,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &717 + - &718 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -104720,8 +104906,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 project_card: type: object properties: @@ -104755,7 +104941,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &718 + - &719 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -104811,7 +104997,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &723 + - &724 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -104842,9 +105028,9 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - issue_type: *695 + properties: *227 + required: *228 + issue_type: *696 required: - issue_type - id @@ -104856,7 +105042,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &724 + - &725 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -104887,9 +105073,9 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - prev_issue_type: *695 + properties: *227 + required: *228 + prev_issue_type: *696 required: - prev_issue_type - id @@ -104901,7 +105087,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &725 + - &726 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -104932,10 +105118,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - issue_type: *695 - prev_issue_type: *695 + properties: *227 + required: *228 + issue_type: *696 + prev_issue_type: *696 required: - issue_type - prev_issue_type @@ -104948,7 +105134,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &726 + - &727 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -104979,8 +105165,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -104988,8 +105174,8 @@ paths: events). type: object nullable: true - properties: *696 - required: *697 + properties: *697 + required: *698 required: - sub_issue - id @@ -105001,7 +105187,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &727 + - &728 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -105032,8 +105218,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -105041,8 +105227,8 @@ paths: events). type: object nullable: true - properties: *696 - required: *697 + properties: *697 + required: *698 required: - sub_issue - id @@ -105054,7 +105240,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &728 + - &729 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -105085,8 +105271,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 parent_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -105094,8 +105280,8 @@ paths: events). type: object nullable: true - properties: *696 - required: *697 + properties: *697 + required: *698 required: - parent_issue - id @@ -105107,7 +105293,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &729 + - &730 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -105138,8 +105324,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 parent_issue: title: Issue Reference description: A minimal reference to an issue linked from a @@ -105147,8 +105333,8 @@ paths: events). type: object nullable: true - properties: *696 - required: *697 + properties: *697 + required: *698 required: - parent_issue - id @@ -105160,7 +105346,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &730 + - &731 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -105191,8 +105377,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a @@ -105200,8 +105386,8 @@ paths: events). type: object nullable: true - properties: *696 - required: *697 + properties: *697 + required: *698 required: - blocked_by - id @@ -105213,7 +105399,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &731 + - &732 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -105244,8 +105430,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a @@ -105253,8 +105439,8 @@ paths: events). type: object nullable: true - properties: *696 - required: *697 + properties: *697 + required: *698 required: - blocked_by - id @@ -105266,7 +105452,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &732 + - &733 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -105297,8 +105483,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocking: title: Issue Reference description: A minimal reference to an issue linked from a @@ -105306,8 +105492,8 @@ paths: events). type: object nullable: true - properties: *696 - required: *697 + properties: *697 + required: *698 required: - blocking - id @@ -105319,7 +105505,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &733 + - &734 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -105350,8 +105536,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 blocking: title: Issue Reference description: A minimal reference to an issue linked from a @@ -105359,8 +105545,8 @@ paths: events). type: object nullable: true - properties: *696 - required: *697 + properties: *697 + required: *698 required: - blocking - id @@ -105407,7 +105593,7 @@ paths: color: red headers: Link: *47 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105424,9 +105610,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: - - *495 - *496 - - *700 + - *497 + - *701 - *17 - *19 responses: @@ -105436,9 +105622,9 @@ paths: application/json: schema: type: array - items: *703 + items: *704 examples: - default: &704 + default: &705 value: - issue_field_id: 1 issue_field_name: DRI @@ -105478,9 +105664,9 @@ paths: color: green headers: Link: *47 - '301': *501 + '301': *502 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105509,9 +105695,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: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: true content: @@ -105581,9 +105767,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *703 + items: *704 examples: - default: *704 + default: *705 '400': *14 '403': *29 '404': *6 @@ -105619,9 +105805,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: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: true content: @@ -105686,9 +105872,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *703 + items: *704 examples: - default: *704 + default: *705 '400': *14 '403': *29 '404': *6 @@ -105719,10 +105905,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: - - *495 - *496 - - *700 - - *400 + - *497 + - *701 + - *401 responses: '204': description: Issue field value deleted successfully @@ -105747,9 +105933,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 - *17 - *19 responses: @@ -105759,9 +105945,9 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: &705 + default: &706 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -105779,9 +105965,9 @@ paths: default: false headers: Link: *47 - '301': *501 + '301': *502 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105797,9 +105983,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#add-labels-to-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: false content: @@ -105842,12 +106028,12 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *705 - '301': *501 + default: *706 + '301': *502 '404': *6 - '410': *687 + '410': *688 '422': *15 x-github: githubCloudOnly: false @@ -105864,9 +106050,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#set-labels-for-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: false content: @@ -105926,12 +106112,12 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *705 - '301': *501 + default: *706 + '301': *502 '404': *6 - '410': *687 + '410': *688 '422': *15 x-github: githubCloudOnly: false @@ -105948,15 +106134,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 responses: '204': description: Response - '301': *501 + '301': *502 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105975,9 +106161,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 - name: name in: path required: true @@ -105990,7 +106176,7 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: default: value: @@ -106001,9 +106187,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *501 + '301': *502 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106023,9 +106209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#lock-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: false content: @@ -106053,7 +106239,7 @@ paths: '204': description: Response '403': *29 - '410': *687 + '410': *688 '404': *6 '422': *15 x-github: @@ -106071,9 +106257,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#unlock-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 responses: '204': description: Response @@ -106103,20 +106289,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#get-parent-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 responses: '200': description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *699 - '301': *501 + default: *700 + '301': *502 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106133,9 +106319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 - 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. @@ -106161,13 +106347,13 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: - default: *690 + default: *691 headers: Link: *47 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106185,9 +106371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: true content: @@ -106219,16 +106405,16 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '201': description: Response content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '422': *15 x-github: githubCloudOnly: false @@ -106250,10 +106436,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *495 - *496 - - *700 - - *691 + - *497 + - *701 + - *692 responses: '204': description: Response @@ -106282,9 +106468,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#remove-sub-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: true content: @@ -106306,9 +106492,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *699 + default: *700 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -106341,9 +106527,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#list-sub-issues parameters: - - *495 - *496 - - *700 + - *497 + - *701 - *17 - *19 responses: @@ -106353,13 +106539,13 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *702 + default: *703 headers: Link: *47 '404': *6 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106387,9 +106573,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#add-sub-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: true content: @@ -106416,16 +106602,16 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *699 + default: *700 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *687 + '410': *688 '422': *15 '404': *6 x-github: @@ -106445,9 +106631,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 requestBody: required: true content: @@ -106478,9 +106664,9 @@ paths: description: Response content: application/json: - schema: *231 + schema: *232 examples: - default: *699 + default: *700 '403': *29 '404': *6 '422': *7 @@ -106502,9 +106688,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *495 - *496 - - *700 + - *497 + - *701 - *17 - *19 responses: @@ -106519,7 +106705,6 @@ paths: description: Timeline Event type: object anyOf: - - *706 - *707 - *708 - *709 @@ -106532,6 +106717,7 @@ paths: - *716 - *717 - *718 + - *719 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -106574,7 +106760,7 @@ paths: issue_url: type: string format: uri - author_association: *228 + author_association: *229 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -106584,23 +106770,23 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 - reactions: *229 + properties: *227 + required: *228 + reactions: *230 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *719 - required: *720 + properties: *720 + required: *721 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *721 - required: *722 + properties: *722 + required: *723 nullable: true required: - event @@ -106632,7 +106818,7 @@ paths: properties: type: type: string - issue: *231 + issue: *232 required: - event - created_at @@ -106832,7 +107018,7 @@ paths: type: string body_text: type: string - author_association: *228 + author_association: *229 required: - event - id @@ -106855,7 +107041,7 @@ paths: type: string comments: type: array - items: &755 + items: &756 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -106950,7 +107136,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *228 + author_association: *229 _links: type: object properties: @@ -107034,7 +107220,7 @@ paths: enum: - line - file - reactions: *229 + reactions: *230 body_html: type: string example: '"

comment body

"' @@ -107070,7 +107256,7 @@ paths: type: string comments: type: array - items: *608 + items: *609 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -107101,8 +107287,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 assignee: *4 required: - id @@ -107145,8 +107331,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 assignee: *4 required: - id @@ -107189,8 +107375,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 state_reason: type: string nullable: true @@ -107204,7 +107390,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *723 - *724 - *725 - *726 @@ -107215,6 +107400,7 @@ paths: - *731 - *732 - *733 + - *734 examples: default: value: @@ -107371,7 +107557,7 @@ paths: Link: *47 '404': *6 '400': *14 - '410': *687 + '410': *688 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107388,8 +107574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -107399,7 +107585,7 @@ paths: application/json: schema: type: array - items: &734 + items: &735 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -107465,8 +107651,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -107502,9 +107688,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: &735 + default: &736 value: id: 1 key: ssh-rsa AAA... @@ -107538,9 +107724,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *495 - *496 - - &736 + - *497 + - &737 name: key_id description: The unique identifier of the key. in: path @@ -107552,9 +107738,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *735 + default: *736 '404': *6 x-github: githubCloudOnly: false @@ -107572,9 +107758,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *495 - *496 - - *736 + - *497 + - *737 responses: '204': description: Response @@ -107594,8 +107780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-a-repository parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -107605,9 +107791,9 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *705 + default: *706 headers: Link: *47 '404': *6 @@ -107628,8 +107814,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#create-a-label parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -107665,9 +107851,9 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: - default: &737 + default: &738 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -107699,8 +107885,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#get-a-label parameters: - - *495 - *496 + - *497 - name: name in: path required: true @@ -107711,9 +107897,9 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: - default: *737 + default: *738 '404': *6 x-github: githubCloudOnly: false @@ -107730,8 +107916,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#update-a-label parameters: - - *495 - *496 + - *497 - name: name in: path required: true @@ -107770,7 +107956,7 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: default: value: @@ -107796,8 +107982,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#delete-a-label parameters: - - *495 - *496 + - *497 - name: name in: path required: true @@ -107823,8 +108009,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-languages parameters: - - *495 - *496 + - *497 responses: '200': description: Response @@ -107860,8 +108046,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *495 - *496 + - *497 responses: '202': *39 '403': @@ -107889,8 +108075,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *495 - *496 + - *497 responses: '204': description: Response @@ -107916,9 +108102,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *495 - *496 - - *581 + - *497 + - *582 responses: '200': description: Response @@ -107980,8 +108166,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true required: - _links @@ -108063,8 +108249,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -108129,8 +108315,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#merge-a-branch parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -108164,9 +108350,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *611 + schema: *612 examples: - default: *738 + default: *739 '204': description: Response when already merged '404': @@ -108191,8 +108377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#list-milestones parameters: - - *495 - *496 + - *497 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -108233,12 +108419,12 @@ paths: application/json: schema: type: array - items: &739 + items: &740 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *436 - required: *437 + properties: *437 + required: *438 examples: default: value: @@ -108294,8 +108480,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#create-a-milestone parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -108335,9 +108521,9 @@ paths: description: Response content: application/json: - schema: *739 + schema: *740 examples: - default: &740 + default: &741 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -108396,9 +108582,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#get-a-milestone parameters: - - *495 - *496 - - &741 + - *497 + - &742 name: milestone_number description: The number that identifies the milestone. in: path @@ -108410,9 +108596,9 @@ paths: description: Response content: application/json: - schema: *739 + schema: *740 examples: - default: *740 + default: *741 '404': *6 x-github: githubCloudOnly: false @@ -108429,9 +108615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#update-a-milestone parameters: - - *495 - *496 - - *741 + - *497 + - *742 requestBody: required: false content: @@ -108469,9 +108655,9 @@ paths: description: Response content: application/json: - schema: *739 + schema: *740 examples: - default: *740 + default: *741 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108487,9 +108673,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#delete-a-milestone parameters: - - *495 - *496 - - *741 + - *497 + - *742 responses: '204': description: Response @@ -108510,9 +108696,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: - - *495 - *496 - - *741 + - *497 + - *742 - *17 - *19 responses: @@ -108522,9 +108708,9 @@ paths: application/json: schema: type: array - items: *230 + items: *231 examples: - default: *705 + default: *706 headers: Link: *47 x-github: @@ -108543,12 +108729,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: - - *495 - *496 - - *742 + - *497 - *743 - - *238 - *744 + - *239 + - *745 - *17 - *19 responses: @@ -108558,9 +108744,9 @@ paths: application/json: schema: type: array - items: *258 + items: *259 examples: - default: *745 + default: *746 headers: Link: *47 x-github: @@ -108584,8 +108770,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *495 - *496 + - *497 requestBody: required: false content: @@ -108643,14 +108829,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-apiname-pages-site parameters: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: &746 + schema: &747 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -108775,7 +108961,7 @@ paths: - custom_404 - public examples: - default: &747 + default: &748 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -108816,8 +109002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-apiname-pages-site parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -108871,9 +109057,9 @@ paths: description: Response content: application/json: - schema: *746 + schema: *747 examples: - default: *747 + default: *748 '422': *15 '409': *121 x-github: @@ -108896,8 +109082,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -109004,8 +109190,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *495 - *496 + - *497 responses: '204': description: Response @@ -109031,8 +109217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#list-apiname-pages-builds parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -109042,7 +109228,7 @@ paths: application/json: schema: type: array - items: &748 + items: &749 title: Page Build description: Page Build type: object @@ -109136,8 +109322,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#request-a-apiname-pages-build parameters: - - *495 - *496 + - *497 responses: '201': description: Response @@ -109182,16 +109368,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-latest-pages-build parameters: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *748 + schema: *749 examples: - default: &749 + default: &750 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -109239,8 +109425,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-apiname-pages-build parameters: - - *495 - *496 + - *497 - name: build_id in: path required: true @@ -109251,9 +109437,9 @@ paths: description: Response content: application/json: - schema: *748 + schema: *749 examples: - default: *749 + default: *750 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109273,8 +109459,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-github-pages-deployment parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -109379,9 +109565,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: - - *495 - *496 - - &750 + - *497 + - &751 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -109439,9 +109625,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *495 - *496 - - *750 + - *497 + - *751 responses: '204': *130 '404': *6 @@ -109468,8 +109654,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -109700,7 +109886,7 @@ paths: description: Empty response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -109727,8 +109913,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: - - *495 - *496 + - *497 responses: '200': description: Private vulnerability reporting status @@ -109765,8 +109951,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: - - *495 - *496 + - *497 responses: '204': *130 '422': *14 @@ -109787,8 +109973,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: - - *495 - *496 + - *497 responses: '204': *130 '422': *14 @@ -109810,8 +109996,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -109821,7 +110007,7 @@ paths: type: array items: *163 examples: - default: *751 + default: *752 '403': *29 '404': *6 x-github: @@ -109843,8 +110029,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -109860,7 +110046,7 @@ paths: required: - properties examples: - default: *752 + default: *753 responses: '204': description: No Content when custom property values are successfully created @@ -109898,8 +110084,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests parameters: - - *495 - *496 + - *497 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -109959,9 +110145,9 @@ paths: application/json: schema: type: array - items: *615 + items: *616 examples: - default: *753 + default: *754 headers: Link: *47 '304': *37 @@ -109993,8 +110179,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#create-a-pull-request parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -110059,7 +110245,7 @@ paths: description: Response content: application/json: - schema: &757 + schema: &758 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -110170,8 +110356,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *436 - required: *437 + properties: *437 + required: *438 nullable: true active_lock_reason: type: string @@ -110214,7 +110400,7 @@ paths: items: *4 requested_teams: type: array - items: *479 + items: *480 head: type: object properties: @@ -110252,14 +110438,14 @@ paths: _links: type: object properties: - comments: *438 - commits: *438 - statuses: *438 - html: *438 - issue: *438 - review_comments: *438 - review_comment: *438 - self: *438 + comments: *439 + commits: *439 + statuses: *439 + html: *439 + issue: *439 + review_comments: *439 + review_comment: *439 + self: *439 required: - comments - commits @@ -110269,8 +110455,8 @@ paths: - review_comments - review_comment - self - author_association: *228 - auto_merge: *754 + author_association: *229 + auto_merge: *755 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -110456,7 +110642,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &758 + default: &759 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -110994,8 +111180,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *495 - *496 + - *497 - name: sort in: query required: false @@ -111014,7 +111200,7 @@ paths: enum: - asc - desc - - *238 + - *239 - *17 - *19 responses: @@ -111024,9 +111210,9 @@ paths: application/json: schema: type: array - items: *755 + items: *756 examples: - default: &760 + default: &761 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -111103,17 +111289,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: - - *495 - *496 - - *247 + - *497 + - *248 responses: '200': description: Response content: application/json: - schema: *755 + schema: *756 examples: - default: &756 + default: &757 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -111188,9 +111374,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: - - *495 - *496 - - *247 + - *497 + - *248 requestBody: required: true content: @@ -111212,9 +111398,9 @@ paths: description: Response content: application/json: - schema: *755 + schema: *756 examples: - default: *756 + default: *757 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111230,9 +111416,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: - - *495 - *496 - - *247 + - *497 + - *248 responses: '204': description: Response @@ -111253,9 +111439,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: - - *495 - *496 - - *247 + - *497 + - *248 - 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. @@ -111281,9 +111467,9 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: - default: *690 + default: *691 headers: Link: *47 '404': *6 @@ -111304,9 +111490,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: - - *495 - *496 - - *247 + - *497 + - *248 requestBody: required: true content: @@ -111338,16 +111524,16 @@ paths: description: Reaction exists content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '201': description: Reaction created content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '422': *15 x-github: githubCloudOnly: false @@ -111369,10 +111555,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *495 - *496 - - *247 - - *691 + - *497 + - *248 + - *692 responses: '204': description: Response @@ -111415,9 +111601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#get-a-pull-request parameters: - - *495 - *496 - - &759 + - *497 + - &760 name: pull_number description: The number that identifies the pull request. in: path @@ -111430,9 +111616,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *757 + schema: *758 examples: - default: *758 + default: *759 '304': *37 '404': *6 '406': @@ -111467,9 +111653,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request parameters: - - *495 - *496 - - *759 + - *497 + - *760 requestBody: required: false content: @@ -111511,9 +111697,9 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: - default: *758 + default: *759 '422': *15 '403': *29 x-github: @@ -111535,9 +111721,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: - - *495 - *496 - - *759 + - *497 + - *760 requestBody: required: true content: @@ -111597,17 +111783,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *406 + schema: *407 examples: - default: *598 + default: *599 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *406 + schema: *407 examples: - default: *598 + default: *599 '401': *25 '403': *29 '404': *6 @@ -111637,10 +111823,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: - - *495 - *496 - - *759 - - *255 + - *497 + - *760 + - *256 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -111650,7 +111836,7 @@ paths: enum: - asc - desc - - *238 + - *239 - *17 - *19 responses: @@ -111660,9 +111846,9 @@ paths: application/json: schema: type: array - items: *755 + items: *756 examples: - default: *760 + default: *761 headers: Link: *47 x-github: @@ -111695,9 +111881,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: - - *495 - *496 - - *759 + - *497 + - *760 requestBody: required: true content: @@ -111802,7 +111988,7 @@ paths: description: Response content: application/json: - schema: *755 + schema: *756 examples: example-for-a-multi-line-comment: value: @@ -111890,10 +112076,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: - - *495 - *496 - - *759 - - *247 + - *497 + - *760 + - *248 requestBody: required: true content: @@ -111915,7 +112101,7 @@ paths: description: Response content: application/json: - schema: *755 + schema: *756 examples: default: value: @@ -112001,9 +112187,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *495 - *496 - - *759 + - *497 + - *760 - *17 - *19 responses: @@ -112013,9 +112199,9 @@ paths: application/json: schema: type: array - items: *611 + items: *612 examples: - default: *761 + default: *762 headers: Link: *47 x-github: @@ -112045,9 +112231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests-files parameters: - - *495 - *496 - - *759 + - *497 + - *760 - *17 - *19 responses: @@ -112057,7 +112243,7 @@ paths: application/json: schema: type: array - items: *624 + items: *625 examples: default: value: @@ -112095,9 +112281,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: - - *495 - *496 - - *759 + - *497 + - *760 responses: '204': description: Response if pull request has been merged @@ -112120,9 +112306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#merge-a-pull-request parameters: - - *495 - *496 - - *759 + - *497 + - *760 requestBody: required: false content: @@ -112233,9 +112419,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: - - *495 - *496 - - *759 + - *497 + - *760 responses: '200': description: Response @@ -112251,7 +112437,7 @@ paths: items: *4 teams: type: array - items: *325 + items: *326 required: - users - teams @@ -112310,9 +112496,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: - - *495 - *496 - - *759 + - *497 + - *760 requestBody: required: false content: @@ -112349,7 +112535,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: default: value: @@ -112885,9 +113071,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: - - *495 - *496 - - *759 + - *497 + - *760 requestBody: required: true content: @@ -112921,7 +113107,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: default: value: @@ -113437,9 +113623,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *495 - *496 - - *759 + - *497 + - *760 - *17 - *19 responses: @@ -113449,7 +113635,7 @@ paths: application/json: schema: type: array - items: &762 + items: &763 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -113518,7 +113704,7 @@ paths: type: string body_text: type: string - author_association: *228 + author_association: *229 required: - id - node_id @@ -113600,9 +113786,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: - - *495 - *496 - - *759 + - *497 + - *760 requestBody: required: false content: @@ -113688,9 +113874,9 @@ paths: description: Response content: application/json: - schema: *762 + schema: *763 examples: - default: &764 + default: &765 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -113753,10 +113939,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: - - *495 - *496 - - *759 - - &763 + - *497 + - *760 + - &764 name: review_id description: The unique identifier of the review. in: path @@ -113768,9 +113954,9 @@ paths: description: Response content: application/json: - schema: *762 + schema: *763 examples: - default: &765 + default: &766 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -113829,10 +114015,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: - - *495 - *496 - - *759 - - *763 + - *497 + - *760 + - *764 requestBody: required: true content: @@ -113855,7 +114041,7 @@ paths: description: Response content: application/json: - schema: *762 + schema: *763 examples: default: value: @@ -113917,18 +114103,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: - - *495 - *496 - - *759 - - *763 + - *497 + - *760 + - *764 responses: '200': description: Response content: application/json: - schema: *762 + schema: *763 examples: - default: *764 + default: *765 '422': *7 '404': *6 x-github: @@ -113955,10 +114141,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: - - *495 - *496 - - *759 - - *763 + - *497 + - *760 + - *764 - *17 - *19 responses: @@ -114037,13 +114223,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *228 + author_association: *229 _links: type: object properties: - self: *438 - html: *438 - pull_request: *438 + self: *439 + html: *439 + pull_request: *439 required: - self - html @@ -114052,7 +114238,7 @@ paths: type: string body_html: type: string - reactions: *229 + reactions: *230 side: description: The side of the first line of the range for a multi-line comment. @@ -114193,10 +114379,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: - - *495 - *496 - - *759 - - *763 + - *497 + - *760 + - *764 requestBody: required: true content: @@ -114224,7 +114410,7 @@ paths: description: Response content: application/json: - schema: *762 + schema: *763 examples: default: value: @@ -114287,10 +114473,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: - - *495 - *496 - - *759 - - *763 + - *497 + - *760 + - *764 requestBody: required: true content: @@ -114325,9 +114511,9 @@ paths: description: Response content: application/json: - schema: *762 + schema: *763 examples: - default: *765 + default: *766 '404': *6 '422': *7 '403': *29 @@ -114349,9 +114535,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *495 - *496 - - *759 + - *497 + - *760 requestBody: required: false content: @@ -114414,8 +114600,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme parameters: - - *495 - *496 + - *497 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -114428,9 +114614,9 @@ paths: description: Response content: application/json: - schema: *766 + schema: *767 examples: - default: &767 + default: &768 value: type: file encoding: base64 @@ -114472,8 +114658,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: - - *495 - *496 + - *497 - name: dir description: The alternate path to look for a README file in: path @@ -114493,9 +114679,9 @@ paths: description: Response content: application/json: - schema: *766 + schema: *767 examples: - default: *767 + default: *768 '404': *6 '422': *15 x-github: @@ -114517,8 +114703,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#list-releases parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -114528,7 +114714,7 @@ paths: application/json: schema: type: array - items: *768 + items: *769 examples: default: value: @@ -114622,8 +114808,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#create-a-release parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -114699,9 +114885,9 @@ paths: description: Response content: application/json: - schema: *768 + schema: *769 examples: - default: &772 + default: &773 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -114806,9 +114992,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#get-a-release-asset parameters: - - *495 - *496 - - &770 + - *497 + - &771 name: asset_id description: The unique identifier of the asset. in: path @@ -114820,9 +115006,9 @@ paths: description: Response content: application/json: - schema: *769 + schema: *770 examples: - default: &771 + default: &772 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 @@ -114857,7 +115043,7 @@ paths: type: User site_admin: false '404': *6 - '302': *628 + '302': *629 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114873,9 +115059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#update-a-release-asset parameters: - - *495 - *496 - - *770 + - *497 + - *771 requestBody: required: false content: @@ -114903,9 +115089,9 @@ paths: description: Response content: application/json: - schema: *769 + schema: *770 examples: - default: *771 + default: *772 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114921,9 +115107,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#delete-a-release-asset parameters: - - *495 - *496 - - *770 + - *497 + - *771 responses: '204': description: Response @@ -114948,8 +115134,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -115034,16 +115220,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-the-latest-release parameters: - - *495 - *496 + - *497 responses: '200': description: Response content: application/json: - schema: *768 + schema: *769 examples: - default: *772 + default: *773 '404': *6 x-github: githubCloudOnly: false @@ -115061,8 +115247,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release-by-tag-name parameters: - - *495 - *496 + - *497 - name: tag description: tag parameter in: path @@ -115075,9 +115261,9 @@ paths: description: Response content: application/json: - schema: *768 + schema: *769 examples: - default: *772 + default: *773 '404': *6 x-github: githubCloudOnly: false @@ -115099,9 +115285,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release parameters: - - *495 - *496 - - &773 + - *497 + - &774 name: release_id description: The unique identifier of the release. in: path @@ -115115,9 +115301,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: *768 + schema: *769 examples: - default: *772 + default: *773 '401': description: Unauthorized x-github: @@ -115135,9 +115321,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#update-a-release parameters: - - *495 - *496 - - *773 + - *497 + - *774 requestBody: required: false content: @@ -115201,9 +115387,9 @@ paths: description: Response content: application/json: - schema: *768 + schema: *769 examples: - default: *772 + default: *773 '404': description: Not Found if the discussion category name is invalid content: @@ -115224,9 +115410,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#delete-a-release parameters: - - *495 - *496 - - *773 + - *497 + - *774 responses: '204': description: Response @@ -115247,9 +115433,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#list-release-assets parameters: - - *495 - *496 - - *773 + - *497 + - *774 - *17 - *19 responses: @@ -115259,7 +115445,7 @@ paths: application/json: schema: type: array - items: *769 + items: *770 examples: default: value: @@ -115341,9 +115527,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: - - *495 - *496 - - *773 + - *497 + - *774 - name: name in: query required: true @@ -115369,7 +115555,7 @@ paths: description: Response for successful upload content: application/json: - schema: *769 + schema: *770 examples: response-for-successful-upload: value: @@ -115424,9 +115610,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *495 - *496 - - *773 + - *497 + - *774 - 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. @@ -115450,9 +115636,9 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: - default: *690 + default: *691 headers: Link: *47 '404': *6 @@ -115473,9 +115659,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *495 - *496 - - *773 + - *497 + - *774 requestBody: required: true content: @@ -115505,16 +115691,16 @@ paths: description: Reaction exists content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '201': description: Reaction created content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '422': *15 x-github: githubCloudOnly: false @@ -115536,10 +115722,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-release-reaction parameters: - - *495 - *496 - - *773 - - *691 + - *497 + - *774 + - *692 responses: '204': description: Response @@ -115563,9 +115749,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-rules-for-a-branch parameters: - - *495 - *496 - - *547 + - *497 + - *548 - *17 - *19 responses: @@ -115582,7 +115768,7 @@ paths: oneOf: - allOf: - *177 - - &774 + - &775 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -115603,70 +115789,70 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *178 - - *774 + - *775 - allOf: - *179 - - *774 + - *775 - allOf: - *180 - - *774 + - *775 - allOf: + - *776 - *775 - - *774 - allOf: - *181 - - *774 + - *775 - allOf: - *182 - - *774 + - *775 - allOf: - *183 - - *774 + - *775 - allOf: - *184 - - *774 + - *775 - allOf: - *185 - - *774 + - *775 - allOf: - *186 - - *774 + - *775 - allOf: - *187 - - *774 + - *775 - allOf: - *188 - - *774 + - *775 - allOf: - *189 - - *774 + - *775 - allOf: - *190 - - *774 + - *775 - allOf: - *191 - - *774 + - *775 - allOf: - *192 - - *774 + - *775 - allOf: - *193 - - *774 + - *775 - allOf: - - *776 - - *774 + - *777 + - *775 - allOf: - *194 - - *774 + - *775 - allOf: - *195 - - *774 + - *775 - allOf: - *196 - - *774 + - *775 - allOf: - *197 - - *774 + - *775 examples: default: value: @@ -115705,8 +115891,8 @@ paths: category: repos subcategory: rules parameters: - - *495 - *496 + - *497 - *17 - *19 - name: includes_parents @@ -115717,7 +115903,7 @@ paths: schema: type: boolean default: true - - *777 + - *778 responses: '200': description: Response @@ -115772,8 +115958,8 @@ paths: category: repos subcategory: rules parameters: - - *495 - *496 + - *497 requestBody: description: Request body required: true @@ -115802,7 +115988,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *778 + items: *779 required: - name - enforcement @@ -115835,7 +116021,7 @@ paths: application/json: schema: *198 examples: - default: &788 + default: &789 value: id: 42 name: super cool ruleset @@ -115883,13 +116069,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *495 - *496 - - *779 - - *107 + - *497 - *780 + - *107 - *781 - *782 + - *783 - *17 - *19 responses: @@ -115897,9 +116083,9 @@ paths: description: Response content: application/json: - schema: *783 + schema: *784 examples: - default: *784 + default: *785 '404': *6 '500': *40 x-github: @@ -115920,17 +116106,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *495 - *496 - - *785 + - *497 + - *786 responses: '200': description: Response content: application/json: - schema: *786 + schema: *787 examples: - default: *787 + default: *788 '404': *6 '500': *40 x-github: @@ -115958,8 +116144,8 @@ paths: category: repos subcategory: rules parameters: - - *495 - *496 + - *497 - name: ruleset_id description: The ID of the ruleset. in: path @@ -115981,7 +116167,7 @@ paths: application/json: schema: *198 examples: - default: *788 + default: *789 '404': *6 '500': *40 put: @@ -115999,8 +116185,8 @@ paths: category: repos subcategory: rules parameters: - - *495 - *496 + - *497 - name: ruleset_id description: The ID of the ruleset. in: path @@ -116034,7 +116220,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *778 + items: *779 examples: default: value: @@ -116064,7 +116250,7 @@ paths: application/json: schema: *198 examples: - default: *788 + default: *789 '404': *6 '422': *15 '500': *40 @@ -116083,8 +116269,8 @@ paths: category: repos subcategory: rules parameters: - - *495 - *496 + - *497 - name: ruleset_id description: The ID of the ruleset. in: path @@ -116107,8 +116293,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-history parameters: - - *495 - *496 + - *497 - *17 - *19 - name: ruleset_id @@ -116126,7 +116312,7 @@ paths: type: array items: *202 examples: - default: *457 + default: *458 '404': *6 '500': *40 x-github: @@ -116145,8 +116331,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-version parameters: - - *495 - *496 + - *497 - name: ruleset_id description: The ID of the ruleset. in: path @@ -116164,7 +116350,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: default: value: @@ -116219,9 +116405,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: - - *495 - *496 - - *459 + - *497 - *460 - *461 - *462 @@ -116229,18 +116414,19 @@ paths: - *464 - *465 - *466 + - *467 - *112 - *19 - *17 - - *789 - *790 - - *467 + - *791 - *468 - *469 - *470 - *471 - *472 - *473 + - *474 responses: '200': description: Response @@ -116267,8 +116453,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *791 - resolution: *792 + state: *792 + resolution: *793 resolved_at: type: string format: date-time @@ -116374,7 +116560,7 @@ paths: pull request. ' - oneOf: *793 + oneOf: *794 nullable: true has_more_locations: type: boolean @@ -116538,16 +116724,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: - - *495 - *496 - - *575 - - *470 + - *497 + - *576 + - *471 responses: '200': description: Response content: application/json: - schema: &794 + schema: &795 type: object properties: number: *134 @@ -116565,8 +116751,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *791 - resolution: *792 + state: *792 + resolution: *793 resolved_at: type: string format: date-time @@ -116672,7 +116858,7 @@ paths: pull request. ' - oneOf: *793 + oneOf: *794 nullable: true has_more_locations: type: boolean @@ -116700,7 +116886,7 @@ paths: properties: *20 required: *21 nullable: true - metadata: &984 + metadata: &985 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -116773,9 +116959,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: - - *495 - *496 - - *575 + - *497 + - *576 requestBody: required: true content: @@ -116783,8 +116969,8 @@ paths: schema: type: object properties: - state: *791 - resolution: *792 + state: *792 + resolution: *793 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -116828,7 +117014,7 @@ paths: description: Response content: application/json: - schema: *794 + schema: *795 examples: default: value: @@ -116930,9 +117116,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: - - *495 - *496 - - *575 + - *497 + - *576 - *19 - *17 responses: @@ -116943,7 +117129,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &986 + items: &987 type: object properties: type: @@ -116969,7 +117155,6 @@ paths: example: commit details: oneOf: - - *795 - *796 - *797 - *798 @@ -116982,6 +117167,7 @@ paths: - *805 - *806 - *807 + - *808 examples: default: value: @@ -117067,8 +117253,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -117076,14 +117262,14 @@ paths: schema: type: object properties: - reason: &809 + reason: &810 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *808 + placeholder_id: *809 required: - reason - placeholder_id @@ -117100,7 +117286,7 @@ paths: schema: type: object properties: - reason: *809 + reason: *810 expire_at: type: string format: date-time @@ -117146,8 +117332,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: - - *495 - *496 + - *497 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -117162,7 +117348,7 @@ paths: properties: incremental_scans: type: array - items: &810 + items: &811 description: Information on a single scan performed by secret scanning on the repository type: object @@ -117193,15 +117379,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *810 + items: *811 backfill_scans: type: array - items: *810 + items: *811 custom_pattern_backfill_scans: type: array items: allOf: - - *810 + - *811 - type: object properties: pattern_name: @@ -117214,7 +117400,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *810 + items: *811 examples: default: value: @@ -117279,8 +117465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *495 - *496 + - *497 - *112 - name: sort description: The property to sort the results by. @@ -117324,9 +117510,9 @@ paths: application/json: schema: type: array - items: *811 + items: *812 examples: - default: *812 + default: *813 '400': *14 '404': *6 x-github: @@ -117349,8 +117535,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -117423,7 +117609,7 @@ paths: login: type: string description: The username of the user credited. - type: *478 + type: *479 required: - login - type @@ -117510,9 +117696,9 @@ paths: description: Response content: application/json: - schema: *811 + schema: *812 examples: - default: &814 + default: &815 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -117751,8 +117937,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: - - *495 - *496 + - *497 requestBody: required: true content: @@ -117856,7 +118042,7 @@ paths: description: Response content: application/json: - schema: *811 + schema: *812 examples: default: value: @@ -118009,17 +118195,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: - - *495 - *496 - - *813 + - *497 + - *814 responses: '200': description: Response content: application/json: - schema: *811 + schema: *812 examples: - default: *814 + default: *815 '403': *29 '404': *6 x-github: @@ -118043,9 +118229,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: - - *495 - *496 - - *813 + - *497 + - *814 requestBody: required: true content: @@ -118118,7 +118304,7 @@ paths: login: type: string description: The username of the user credited. - type: *478 + type: *479 required: - login - type @@ -118204,17 +118390,17 @@ paths: description: Response content: application/json: - schema: *811 + schema: *812 examples: - default: *814 - add_credit: *814 + default: *815 + add_credit: *815 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *267 + schema: *268 examples: invalid_state_transition: value: @@ -118245,9 +118431,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: - - *495 - *496 - - *813 + - *497 + - *814 responses: '202': *39 '400': *14 @@ -118274,17 +118460,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: - - *495 - *496 - - *813 + - *497 + - *814 responses: '202': description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *502 + default: *503 '400': *14 '422': *15 '403': *29 @@ -118310,8 +118496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-stargazers parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -118410,8 +118596,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *495 - *496 + - *497 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -118420,7 +118606,7 @@ paths: application/json: schema: type: array - items: &815 + items: &816 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -118453,8 +118639,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: - - *495 - *496 + - *497 responses: '200': description: Response @@ -118530,8 +118716,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *495 - *496 + - *497 responses: '200': description: Response @@ -118627,8 +118813,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *495 - *496 + - *497 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -118782,8 +118968,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: - - *495 - *496 + - *497 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -118793,7 +118979,7 @@ paths: application/json: schema: type: array - items: *815 + items: *816 examples: default: value: @@ -118826,8 +119012,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#create-a-commit-status parameters: - - *495 - *496 + - *497 - name: sha in: path required: true @@ -118881,7 +119067,7 @@ paths: description: Response content: application/json: - schema: *816 + schema: *817 examples: default: value: @@ -118935,8 +119121,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#list-watchers parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -118968,14 +119154,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#get-a-repository-subscription parameters: - - *495 - *496 + - *497 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &817 + schema: &818 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -119043,8 +119229,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#set-a-repository-subscription parameters: - - *495 - *496 + - *497 requestBody: required: false content: @@ -119070,7 +119256,7 @@ paths: description: Response content: application/json: - schema: *817 + schema: *818 examples: default: value: @@ -119097,8 +119283,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#delete-a-repository-subscription parameters: - - *495 - *496 + - *497 responses: '204': description: Response @@ -119118,8 +119304,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-tags parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -119198,8 +119384,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *495 - *496 + - *497 - name: ref in: path required: true @@ -119235,8 +119421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-teams parameters: - - *495 - *496 + - *497 - *17 - *19 responses: @@ -119246,9 +119432,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - default: *416 + default: *417 headers: Link: *47 '404': *6 @@ -119268,8 +119454,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-all-repository-topics parameters: - - *495 - *496 + - *497 - *19 - *17 responses: @@ -119277,7 +119463,7 @@ paths: description: Response content: application/json: - schema: &818 + schema: &819 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -119289,7 +119475,7 @@ paths: required: - names examples: - default: &819 + default: &820 value: names: - octocat @@ -119312,8 +119498,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#replace-all-repository-topics parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -119344,9 +119530,9 @@ paths: description: Response content: application/json: - schema: *818 + schema: *819 examples: - default: *819 + default: *820 '404': *6 '422': *7 x-github: @@ -119367,9 +119553,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-repository-clones parameters: - - *495 - *496 - - &820 + - *497 + - &821 name: per description: The time frame to display results for. in: query @@ -119398,7 +119584,7 @@ paths: example: 128 clones: type: array - items: &821 + items: &822 title: Traffic type: object properties: @@ -119485,8 +119671,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-paths parameters: - - *495 - *496 + - *497 responses: '200': description: Response @@ -119576,8 +119762,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-sources parameters: - - *495 - *496 + - *497 responses: '200': description: Response @@ -119637,9 +119823,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-page-views parameters: - - *495 - *496 - - *820 + - *497 + - *821 responses: '200': description: Response @@ -119658,7 +119844,7 @@ paths: example: 3782 views: type: array - items: *821 + items: *822 required: - uniques - count @@ -119735,8 +119921,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#transfer-a-repository parameters: - - *495 - *496 + - *497 requestBody: required: true content: @@ -119772,7 +119958,7 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: default: value: @@ -120016,8 +120202,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: - - *495 - *496 + - *497 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -120040,8 +120226,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-vulnerability-alerts parameters: - - *495 - *496 + - *497 responses: '204': description: Response @@ -120063,8 +120249,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-vulnerability-alerts parameters: - - *495 - *496 + - *497 responses: '204': description: Response @@ -120090,8 +120276,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *495 - *496 + - *497 - name: ref in: path required: true @@ -120183,9 +120369,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *502 + default: *503 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -120226,7 +120412,7 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: default: value: @@ -120336,7 +120522,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &829 + - &830 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -120345,7 +120531,7 @@ paths: schema: type: string example: members - - &834 + - &835 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -120356,7 +120542,7 @@ paths: default: 1 format: int32 example: 1 - - &835 + - &836 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -120398,7 +120584,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &824 + items: &825 allOf: - type: object required: @@ -120473,7 +120659,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: &836 + meta: &837 type: object description: The metadata associated with the creation/updates to the user. @@ -120533,30 +120719,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &825 + '400': &826 description: Bad request content: application/json: - schema: *822 + schema: *823 application/scim+json: - schema: *822 - '401': *823 - '403': &826 + schema: *823 + '401': *824 + '403': &827 description: Permission denied - '429': &827 + '429': &828 description: Too many requests content: application/json: - schema: *822 + schema: *823 application/scim+json: - schema: *822 - '500': &828 + schema: *823 + '500': &829 description: Internal server error content: application/json: - schema: *822 + schema: *823 application/scim+json: - schema: *822 + schema: *823 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120580,7 +120766,7 @@ paths: required: true content: application/json: - schema: &832 + schema: &833 type: object required: - schemas @@ -120640,9 +120826,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *824 + schema: *825 examples: - group: &830 + group: &831 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -120661,13 +120847,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': *825 - '401': *823 - '403': *826 - '409': &833 + '400': *826 + '401': *824 + '403': *827 + '409': &834 description: Duplicate record detected - '429': *827 - '500': *828 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120684,7 +120870,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: - - &831 + - &832 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -120692,22 +120878,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *829 + - *830 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *824 + schema: *825 examples: - default: *830 - '400': *825 - '401': *823 - '403': *826 + default: *831 + '400': *826 + '401': *824 + '403': *827 '404': *6 - '429': *827 - '500': *828 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120726,13 +120912,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: - - *831 + - *832 - *41 requestBody: required: true content: application/json: - schema: *832 + schema: *833 examples: group: summary: Group @@ -120758,17 +120944,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *824 + schema: *825 examples: - group: *830 - groupWithMembers: *830 - '400': *825 - '401': *823 - '403': *826 + group: *831 + groupWithMembers: *831 + '400': *826 + '401': *824 + '403': *827 '404': *6 - '409': *833 - '429': *827 - '500': *828 + '409': *834 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120792,13 +120978,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: - - *831 + - *832 - *41 requestBody: required: true content: application/json: - schema: &843 + schema: &844 type: object required: - Operations @@ -120858,17 +121044,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *824 + schema: *825 examples: - updateGroup: *830 - addMembers: *830 - '400': *825 - '401': *823 - '403': *826 + updateGroup: *831 + addMembers: *831 + '400': *826 + '401': *824 + '403': *827 '404': *6 - '409': *833 - '429': *827 - '500': *828 + '409': *834 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120884,17 +121070,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: - - *831 + - *832 - *41 responses: '204': description: Group was deleted, no content - '400': *825 - '401': *823 - '403': *826 + '400': *826 + '401': *824 + '403': *827 '404': *6 - '429': *827 - '500': *828 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120928,8 +121114,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *834 - *835 + - *836 - *41 responses: '200': @@ -120962,7 +121148,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &838 + items: &839 allOf: - type: object required: @@ -121041,7 +121227,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &837 + roles: &838 type: array description: The roles assigned to the user. items: @@ -121097,7 +121283,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *836 + meta: *837 startIndex: type: integer description: A starting index for the returned page @@ -121134,11 +121320,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *825 - '401': *823 - '403': *826 - '429': *827 - '500': *828 + '400': *826 + '401': *824 + '403': *827 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121162,7 +121348,7 @@ paths: required: true content: application/json: - schema: &841 + schema: &842 type: object required: - schemas @@ -121244,9 +121430,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *837 + roles: *838 examples: - user: &842 + user: &843 summary: User value: schemas: @@ -121293,9 +121479,9 @@ paths: description: User has been created content: application/scim+json: - schema: *838 + schema: *839 examples: - user: &839 + user: &840 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -121321,13 +121507,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: *839 - '400': *825 - '401': *823 - '403': *826 - '409': *833 - '429': *827 - '500': *828 + enterpriseOwner: *840 + '400': *826 + '401': *824 + '403': *827 + '409': *834 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121344,7 +121530,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: - - &840 + - &841 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -121357,15 +121543,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *838 + schema: *839 examples: - default: *839 - '400': *825 - '401': *823 - '403': *826 + default: *840 + '400': *826 + '401': *824 + '403': *827 '404': *6 - '429': *827 - '500': *828 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121416,30 +121602,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: - - *840 + - *841 - *41 requestBody: required: true content: application/json: - schema: *841 + schema: *842 examples: - user: *842 + user: *843 responses: '200': description: User was updated content: application/scim+json: - schema: *838 + schema: *839 examples: - user: *839 - '400': *825 - '401': *823 - '403': *826 + user: *840 + '400': *826 + '401': *824 + '403': *827 '404': *6 - '409': *833 - '429': *827 - '500': *828 + '409': *834 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121480,13 +121666,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: - - *840 + - *841 - *41 requestBody: required: true content: application/json: - schema: *843 + schema: *844 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -121526,18 +121712,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *838 - examples: - userMultiValuedProperties: *839 - userSingleValuedProperties: *839 - disableUser: *839 - '400': *825 - '401': *823 - '403': *826 + schema: *839 + examples: + userMultiValuedProperties: *840 + userSingleValuedProperties: *840 + disableUser: *840 + '400': *826 + '401': *824 + '403': *827 '404': *6 - '409': *833 - '429': *827 - '500': *828 + '409': *834 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121557,17 +121743,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: - - *840 + - *841 - *41 responses: '204': description: User was deleted, no content - '400': *825 - '401': *823 - '403': *826 + '400': *826 + '401': *824 + '403': *827 '404': *6 - '429': *827 - '500': *828 + '429': *828 + '500': *829 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121654,7 +121840,7 @@ paths: example: 1 Resources: type: array - items: &844 + items: &845 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -121885,22 +122071,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &845 + '404': &846 description: Resource not found content: application/json: - schema: *822 + schema: *823 application/scim+json: - schema: *822 - '403': &846 + schema: *823 + '403': &847 description: Forbidden content: application/json: - schema: *822 + schema: *823 application/scim+json: - schema: *822 - '400': *825 - '429': *827 + schema: *823 + '400': *826 + '429': *828 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -121926,9 +122112,9 @@ paths: description: Response content: application/scim+json: - schema: *844 + schema: *845 examples: - default: &847 + default: &848 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -121951,17 +122137,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *845 - '403': *846 - '500': *828 + '404': *846 + '403': *847 + '500': *829 '409': description: Conflict content: application/json: - schema: *822 + schema: *823 application/scim+json: - schema: *822 - '400': *825 + schema: *823 + '400': *826 requestBody: required: true content: @@ -122059,17 +122245,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *840 + - *841 responses: '200': description: Response content: application/scim+json: - schema: *844 + schema: *845 examples: - default: *847 - '404': *845 - '403': *846 + default: *848 + '404': *846 + '403': *847 '304': *37 x-github: githubCloudOnly: true @@ -122093,18 +122279,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *840 + - *841 responses: '200': description: Response content: application/scim+json: - schema: *844 + schema: *845 examples: - default: *847 + default: *848 '304': *37 - '404': *845 - '403': *846 + '404': *846 + '403': *847 requestBody: required: true content: @@ -122217,19 +122403,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *840 + - *841 responses: '200': description: Response content: application/scim+json: - schema: *844 + schema: *845 examples: - default: *847 + default: *848 '304': *37 - '404': *845 - '403': *846 - '400': *825 + '404': *846 + '403': *847 + '400': *826 '429': description: Response content: @@ -122320,12 +122506,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *840 + - *841 responses: '204': description: Response - '404': *845 - '403': *846 + '404': *846 + '403': *847 '304': *37 x-github: githubCloudOnly: true @@ -122443,7 +122629,7 @@ paths: html_url: type: string format: uri - repository: *292 + repository: *293 score: type: number file_size: @@ -122461,7 +122647,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &848 + text_matches: &849 title: Search Result Text Matches type: array items: @@ -122624,7 +122810,7 @@ paths: enum: - author-date - committer-date - - &849 + - &850 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 @@ -122695,7 +122881,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *545 + properties: *546 nullable: true comment_count: type: integer @@ -122715,7 +122901,7 @@ paths: url: type: string format: uri - verification: *672 + verification: *673 required: - author - committer @@ -122734,7 +122920,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *545 + properties: *546 nullable: true parents: type: array @@ -122747,12 +122933,12 @@ paths: type: string sha: type: string - repository: *292 + repository: *293 score: type: number node_id: type: string - text_matches: *848 + text_matches: *849 required: - sha - node_id @@ -122945,7 +123131,7 @@ paths: - interactions - created - updated - - *849 + - *850 - *17 - *19 - name: advanced_search @@ -123059,11 +123245,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: type: string state_reason: @@ -123080,8 +123266,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *436 - required: *437 + properties: *437 + required: *438 nullable: true comments: type: integer @@ -123095,7 +123281,7 @@ paths: type: string format: date-time nullable: true - text_matches: *848 + text_matches: *849 pull_request: type: object properties: @@ -123128,7 +123314,7 @@ paths: type: string score: type: number - author_association: *228 + author_association: *229 draft: type: boolean repository: *80 @@ -123139,7 +123325,7 @@ paths: timeline_url: type: string format: uri - type: *401 + type: *402 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -123149,17 +123335,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - reactions: *229 + reactions: *230 required: - assignee - closed_at @@ -123411,7 +123597,7 @@ paths: enum: - created - updated - - *849 + - *850 - *17 - *19 responses: @@ -123455,7 +123641,7 @@ paths: nullable: true score: type: number - text_matches: *848 + text_matches: *849 required: - id - node_id @@ -123541,7 +123727,7 @@ paths: - forks - help-wanted-issues - updated - - *849 + - *850 - *17 - *19 responses: @@ -123769,8 +123955,8 @@ paths: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true permissions: type: object @@ -123789,7 +123975,7 @@ paths: - admin - pull - push - text_matches: *848 + text_matches: *849 temp_clone_token: type: string allow_merge_commit: @@ -124090,7 +124276,7 @@ paths: type: string format: uri nullable: true - text_matches: *848 + text_matches: *849 related: type: array nullable: true @@ -124283,7 +124469,7 @@ paths: - followers - repositories - joined - - *849 + - *850 - *17 - *19 responses: @@ -124387,7 +124573,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *848 + text_matches: *849 blog: type: string nullable: true @@ -124466,7 +124652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &852 + - &853 name: team_id description: The unique identifier of the team. in: path @@ -124478,9 +124664,9 @@ paths: description: Response content: application/json: - schema: *487 + schema: *488 examples: - default: *488 + default: *489 '404': *6 x-github: githubCloudOnly: false @@ -124507,7 +124693,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *852 + - *853 requestBody: required: true content: @@ -124570,16 +124756,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *487 + schema: *488 examples: - default: *488 + default: *489 '201': description: Response content: application/json: - schema: *487 + schema: *488 examples: - default: *488 + default: *489 '404': *6 '422': *15 '403': *29 @@ -124607,7 +124793,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *852 + - *853 responses: '204': description: Response @@ -124636,7 +124822,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *852 + - *853 - *17 - *19 responses: @@ -124646,9 +124832,9 @@ paths: application/json: schema: type: array - items: *395 + items: *396 examples: - default: *396 + default: *397 headers: Link: *47 x-github: @@ -124676,7 +124862,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *852 + - *853 - name: role description: Filters members returned by their role in the team. in: query @@ -124697,9 +124883,9 @@ paths: application/json: schema: type: array - items: *853 + items: *854 examples: - default: *854 + default: *855 headers: Link: *47 '404': *6 @@ -124727,7 +124913,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *852 + - *853 - *151 responses: '204': @@ -124764,7 +124950,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *852 + - *853 - *151 responses: '204': @@ -124804,7 +124990,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *852 + - *853 - *151 responses: '204': @@ -124841,16 +125027,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: - - *852 + - *853 - *151 responses: '200': description: Response content: application/json: - schema: *494 + schema: *495 examples: - response-if-user-is-a-team-maintainer: *855 + response-if-user-is-a-team-maintainer: *856 '404': *6 x-github: githubCloudOnly: false @@ -124883,7 +125069,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: - - *852 + - *853 - *151 requestBody: required: false @@ -124909,9 +125095,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - response-if-users-membership-with-team-is-now-pending: *856 + response-if-users-membership-with-team-is-now-pending: *857 '403': description: Forbidden if team synchronization is set up '422': @@ -124945,7 +125131,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: - - *852 + - *853 - *151 responses: '204': @@ -124973,7 +125159,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *852 + - *853 - *17 - *19 responses: @@ -124983,9 +125169,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *423 + default: *424 headers: Link: *47 '404': *6 @@ -125015,15 +125201,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: - - *852 - - *495 + - *853 - *496 + - *497 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *857 + schema: *858 examples: alternative-response-with-extra-repository-information: value: @@ -125180,9 +125366,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: - - *852 - - *495 + - *853 - *496 + - *497 requestBody: required: false content: @@ -125232,9 +125418,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: - - *852 - - *495 + - *853 - *496 + - *497 responses: '204': description: Response @@ -125263,15 +125449,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: - - *852 + - *853 responses: '200': description: Response content: application/json: - schema: *497 + schema: *498 examples: - default: *498 + default: *499 '403': *29 '404': *6 x-github: @@ -125298,7 +125484,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: - - *852 + - *853 requestBody: required: true content: @@ -125355,7 +125541,7 @@ paths: description: Response content: application/json: - schema: *497 + schema: *498 examples: default: value: @@ -125386,7 +125572,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *852 + - *853 - *17 - *19 responses: @@ -125396,9 +125582,9 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: - response-if-child-teams-exist: *858 + response-if-child-teams-exist: *859 headers: Link: *47 '404': *6 @@ -125431,7 +125617,7 @@ paths: application/json: schema: oneOf: - - &860 + - &861 title: Private User description: Private User type: object @@ -125634,7 +125820,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *859 + - *860 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -125787,7 +125973,7 @@ paths: description: Response content: application/json: - schema: *860 + schema: *861 examples: default: value: @@ -125990,9 +126176,9 @@ paths: type: integer codespaces: type: array - items: *406 + items: *407 examples: - default: *407 + default: *408 '304': *37 '500': *40 '401': *25 @@ -126131,17 +126317,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *406 + schema: *407 examples: - default: *598 + default: *599 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *406 + schema: *407 examples: - default: *598 + default: *599 '401': *25 '403': *29 '404': *6 @@ -126185,7 +126371,7 @@ paths: type: integer secrets: type: array - items: &861 + items: &862 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -126225,7 +126411,7 @@ paths: - visibility - selected_repositories_url examples: - default: *601 + default: *602 headers: Link: *47 x-github: @@ -126295,13 +126481,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: - - *302 + - *303 responses: '200': description: Response content: application/json: - schema: *861 + schema: *862 examples: default: value: @@ -126331,7 +126517,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: - - *302 + - *303 requestBody: required: true content: @@ -126376,7 +126562,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -126404,7 +126590,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: - - *302 + - *303 responses: '204': description: Response @@ -126429,7 +126615,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: - - *302 + - *303 responses: '200': description: Response @@ -126445,9 +126631,9 @@ paths: type: integer repositories: type: array - items: *292 + items: *293 examples: - default: *344 + default: *345 '401': *25 '403': *29 '404': *6 @@ -126472,7 +126658,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: - - *302 + - *303 requestBody: required: true content: @@ -126526,7 +126712,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: - - *302 + - *303 - name: repository_id in: path required: true @@ -126559,7 +126745,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: - - *302 + - *303 - name: repository_id in: path required: true @@ -126591,15 +126777,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: - - *408 + - *409 responses: '200': description: Response content: application/json: - schema: *406 + schema: *407 examples: - default: *598 + default: *599 '304': *37 '500': *40 '401': *25 @@ -126625,7 +126811,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: - - *408 + - *409 requestBody: required: false content: @@ -126655,9 +126841,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *407 examples: - default: *598 + default: *599 '401': *25 '403': *29 '404': *6 @@ -126679,7 +126865,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: - - *408 + - *409 responses: '202': *39 '304': *37 @@ -126708,13 +126894,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: - - *408 + - *409 responses: '202': description: Response content: application/json: - schema: &862 + schema: &863 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -126755,7 +126941,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &863 + default: &864 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -126787,7 +126973,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *408 + - *409 - name: export_id in: path required: true @@ -126800,9 +126986,9 @@ paths: description: Response content: application/json: - schema: *862 + schema: *863 examples: - default: *863 + default: *864 '404': *6 x-github: githubCloudOnly: false @@ -126823,7 +127009,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *408 + - *409 responses: '200': description: Response @@ -126839,9 +127025,9 @@ paths: type: integer machines: type: array - items: *864 + items: *865 examples: - default: *865 + default: *866 '304': *37 '500': *40 '401': *25 @@ -126870,7 +127056,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: - - *408 + - *409 requestBody: required: true content: @@ -126920,13 +127106,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *500 + repository: *501 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *599 - required: *600 + properties: *600 + required: *601 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -127700,15 +127886,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: - - *408 + - *409 responses: '200': description: Response content: application/json: - schema: *406 + schema: *407 examples: - default: *598 + default: *599 '304': *37 '500': *40 '400': *14 @@ -127740,15 +127926,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: - - *408 + - *409 responses: '200': description: Response content: application/json: - schema: *406 + schema: *407 examples: - default: *598 + default: *599 '500': *40 '401': *25 '403': *29 @@ -127778,9 +127964,9 @@ paths: application/json: schema: type: array - items: *417 + items: *418 examples: - default: &877 + default: &878 value: - id: 197 name: hello_docker @@ -127881,7 +128067,7 @@ paths: application/json: schema: type: array - items: &866 + items: &867 title: Email description: Email type: object @@ -127946,9 +128132,9 @@ paths: application/json: schema: type: array - items: *866 + items: *867 examples: - default: &879 + default: &880 value: - email: octocat@github.com verified: true @@ -128023,7 +128209,7 @@ paths: application/json: schema: type: array - items: *866 + items: *867 examples: default: value: @@ -128279,7 +128465,7 @@ paths: application/json: schema: type: array - items: &867 + items: &868 title: GPG Key description: A unique encryption key type: object @@ -128410,7 +128596,7 @@ paths: - subkeys - revoked examples: - default: &896 + default: &897 value: - id: 3 name: Octocat's GPG Key @@ -128495,9 +128681,9 @@ paths: description: Response content: application/json: - schema: *867 + schema: *868 examples: - default: &868 + default: &869 value: id: 3 name: Octocat's GPG Key @@ -128554,7 +128740,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: - - &869 + - &870 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -128566,9 +128752,9 @@ paths: description: Response content: application/json: - schema: *867 + schema: *868 examples: - default: *868 + default: *869 '404': *6 '304': *37 '403': *29 @@ -128591,7 +128777,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: - - *869 + - *870 responses: '204': description: Response @@ -128793,7 +128979,7 @@ paths: values. Present for org repos only. additionalProperties: true examples: - default: *287 + default: *288 headers: Link: *47 '404': *6 @@ -128819,7 +129005,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *286 + - *287 responses: '204': description: Response @@ -128845,7 +129031,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *286 + - *287 responses: '204': description: Response @@ -128879,12 +129065,12 @@ paths: application/json: schema: anyOf: - - *393 + - *394 - type: object properties: {} additionalProperties: false examples: - default: *394 + default: *395 '204': description: Response when there are no restrictions x-github: @@ -128908,7 +129094,7 @@ paths: required: true content: application/json: - schema: *682 + schema: *683 examples: default: value: @@ -128919,7 +129105,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *394 examples: default: value: @@ -129000,7 +129186,7 @@ paths: - closed - all default: open - - *404 + - *405 - name: sort description: What to sort results by. in: query @@ -129013,7 +129199,7 @@ paths: - comments default: created - *112 - - *238 + - *239 - *17 - *19 responses: @@ -129023,9 +129209,9 @@ paths: application/json: schema: type: array - items: *231 + items: *232 examples: - default: *405 + default: *406 headers: Link: *47 '404': *6 @@ -129058,7 +129244,7 @@ paths: application/json: schema: type: array - items: &870 + items: &871 title: Key description: Key type: object @@ -129159,9 +129345,9 @@ paths: description: Response content: application/json: - schema: *870 + schema: *871 examples: - default: &871 + default: &872 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -129194,15 +129380,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: - - *736 + - *737 responses: '200': description: Response content: application/json: - schema: *870 + schema: *871 examples: - default: *871 + default: *872 '404': *6 '304': *37 '403': *29 @@ -129225,7 +129411,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: - - *736 + - *737 responses: '204': description: Response @@ -129258,7 +129444,7 @@ paths: application/json: schema: type: array - items: &872 + items: &873 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -129315,7 +129501,7 @@ paths: - id - type - login - plan: *249 + plan: *250 required: - billing_cycle - next_billing_date @@ -129326,7 +129512,7 @@ paths: - account - plan examples: - default: &873 + default: &874 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -129388,9 +129574,9 @@ paths: application/json: schema: type: array - items: *872 + items: *873 examples: - default: *873 + default: *874 headers: Link: *47 '304': *37 @@ -129430,7 +129616,7 @@ paths: application/json: schema: type: array - items: *409 + items: *410 examples: default: value: @@ -129544,7 +129730,7 @@ paths: description: Response content: application/json: - schema: *409 + schema: *410 examples: default: value: @@ -129631,9 +129817,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *409 + schema: *410 examples: - default: &874 + default: &875 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -129680,9 +129866,9 @@ paths: processed asynchronously. content: application/json: - schema: *409 + schema: *410 examples: - default: *874 + default: *875 '403': *29 '404': *6 '422': *15 @@ -129711,7 +129897,7 @@ paths: application/json: schema: type: array - items: *411 + items: *412 examples: default: value: @@ -129964,7 +130150,7 @@ paths: description: Response content: application/json: - schema: *411 + schema: *412 examples: default: value: @@ -130144,7 +130330,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#get-a-user-migration-status parameters: - - *412 + - *413 - name: exclude in: query required: false @@ -130157,7 +130343,7 @@ paths: description: Response content: application/json: - schema: *411 + schema: *412 examples: default: value: @@ -130351,7 +130537,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#download-a-user-migration-archive parameters: - - *412 + - *413 responses: '302': description: Response @@ -130377,7 +130563,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#delete-a-user-migration-archive parameters: - - *412 + - *413 responses: '204': description: Response @@ -130406,8 +130592,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - - *412 - - *875 + - *413 + - *876 responses: '204': description: Response @@ -130431,7 +130617,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *412 + - *413 - *17 - *19 responses: @@ -130441,9 +130627,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *423 + default: *424 headers: Link: *47 '404': *6 @@ -130498,7 +130684,7 @@ paths: type: array items: *75 examples: - default: *262 + default: *263 headers: Link: *47 '304': *37 @@ -130540,7 +130726,7 @@ paths: - docker - nuget - container - - *876 + - *877 - *19 - *17 responses: @@ -130550,10 +130736,10 @@ paths: application/json: schema: type: array - items: *417 + items: *418 examples: - default: *877 - '400': *878 + default: *878 + '400': *879 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -130573,16 +130759,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: - - *419 - *420 + - *421 responses: '200': description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: &897 + default: &898 value: id: 40201 name: octo-name @@ -130695,8 +130881,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: - - *419 - *420 + - *421 responses: '204': description: Response @@ -130726,8 +130912,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: - - *419 - *420 + - *421 - name: token description: package token schema: @@ -130759,8 +130945,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: - - *419 - *420 + - *421 - *19 - *17 - name: state @@ -130780,7 +130966,7 @@ paths: application/json: schema: type: array - items: *421 + items: *422 examples: default: value: @@ -130829,15 +131015,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: - - *419 - *420 - - *422 + - *421 + - *423 responses: '200': description: Response content: application/json: - schema: *421 + schema: *422 examples: default: value: @@ -130873,9 +131059,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: - - *419 - *420 - - *422 + - *421 + - *423 responses: '204': description: Response @@ -130905,9 +131091,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: - - *419 - *420 - - *422 + - *421 + - *423 responses: '204': description: Response @@ -130944,9 +131130,9 @@ paths: application/json: schema: type: array - items: *866 + items: *867 examples: - default: *879 + default: *880 headers: Link: *47 '304': *37 @@ -131059,7 +131245,7 @@ paths: type: array items: *80 examples: - default: &886 + default: &887 summary: Default response value: - id: 1296269 @@ -131363,9 +131549,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *502 + default: *503 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -131409,9 +131595,9 @@ paths: application/json: schema: type: array - items: *685 + items: *686 examples: - default: *880 + default: *881 headers: Link: *47 '304': *37 @@ -131434,7 +131620,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *397 + - *398 responses: '204': description: Response @@ -131463,7 +131649,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *397 + - *398 responses: '204': description: Response @@ -131496,7 +131682,7 @@ paths: application/json: schema: type: array - items: &881 + items: &882 title: Social account description: Social media account type: object @@ -131511,7 +131697,7 @@ paths: - provider - url examples: - default: &882 + default: &883 value: - provider: twitter url: https://twitter.com/github @@ -131573,9 +131759,9 @@ paths: application/json: schema: type: array - items: *881 + items: *882 examples: - default: *882 + default: *883 '422': *15 '304': *37 '404': *6 @@ -131662,7 +131848,7 @@ paths: application/json: schema: type: array - items: &883 + items: &884 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -131682,7 +131868,7 @@ paths: - title - created_at examples: - default: &911 + default: &912 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -131746,9 +131932,9 @@ paths: description: Response content: application/json: - schema: *883 + schema: *884 examples: - default: &884 + default: &885 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -131778,7 +131964,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: - - &885 + - &886 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -131790,9 +131976,9 @@ paths: description: Response content: application/json: - schema: *883 + schema: *884 examples: - default: *884 + default: *885 '404': *6 '304': *37 '403': *29 @@ -131815,7 +132001,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: - - *885 + - *886 responses: '204': description: Response @@ -131844,7 +132030,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: - - &912 + - &913 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 @@ -131869,11 +132055,11 @@ paths: type: array items: *80 examples: - default-response: *886 + default-response: *887 application/vnd.github.v3.star+json: schema: type: array - items: &913 + items: &914 title: Starred Repository description: Starred Repository type: object @@ -132029,8 +132215,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: - - *495 - *496 + - *497 responses: '204': description: Response if this repository is starred by you @@ -132058,8 +132244,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: - - *495 - *496 + - *497 responses: '204': description: Response @@ -132083,8 +132269,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: - - *495 - *496 + - *497 responses: '204': description: Response @@ -132117,9 +132303,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *423 + default: *424 headers: Link: *47 '304': *37 @@ -132156,7 +132342,7 @@ paths: application/json: schema: type: array - items: *487 + items: *488 examples: default: value: @@ -132234,7 +132420,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#get-a-user-using-their-id parameters: - - *251 + - *252 responses: '200': description: Response @@ -132242,10 +132428,10 @@ paths: application/json: schema: oneOf: + - *861 - *860 - - *859 examples: - default-response: &890 + default-response: &891 summary: Default response value: login: octocat @@ -132280,7 +132466,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &891 + response-with-git-hub-plan-information: &892 summary: Response with GitHub plan information value: login: octocat @@ -132337,14 +132523,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: - - &888 + - &889 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *435 + - *436 requestBody: required: true description: Details of the draft item to create in the project. @@ -132378,9 +132564,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: - draft_issue: *442 + draft_issue: *443 '304': *37 '403': *29 '401': *25 @@ -132403,7 +132589,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *887 + - *888 - *17 responses: '200': @@ -132438,8 +132624,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: - - *888 - - *435 + - *889 + - *436 requestBody: required: true content: @@ -132510,17 +132696,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *889 + schema: *890 examples: table_view: summary: Response for creating a table view - value: *446 + value: *447 board_view: summary: Response for creating a board view with filter - value: *446 + value: *447 roadmap_view: summary: Response for creating a roadmap view - value: *446 + value: *447 '304': *37 '403': *29 '401': *25 @@ -132562,11 +132748,11 @@ paths: application/json: schema: oneOf: + - *861 - *860 - - *859 examples: - default-response: *890 - response-with-git-hub-plan-information: *891 + default-response: *891 + response-with-git-hub-plan-information: *892 '404': *6 x-github: githubCloudOnly: false @@ -132616,8 +132802,8 @@ paths: required: - subject_digests examples: - default: *892 - withPredicateType: *893 + default: *893 + withPredicateType: *894 responses: '200': description: Response @@ -132670,7 +132856,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *894 + default: *895 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -132890,12 +133076,12 @@ paths: initiator: type: string examples: - default: *541 + default: *542 '201': description: Response content: application/json: - schema: *303 + schema: *304 examples: default: value: @@ -132971,7 +133157,7 @@ paths: spaces: type: array description: The list of Copilot Spaces on this page of results. - items: *340 + items: *341 examples: default: summary: Example response for listing user copilot spaces @@ -133183,9 +133369,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: &895 + default: &896 summary: Example response for a user copilot space value: id: 42 @@ -133284,9 +133470,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *895 + default: *896 '403': *29 '404': *6 x-github: @@ -133407,9 +133593,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *895 + default: *896 '403': *29 '404': *6 '422': *15 @@ -133486,7 +133672,7 @@ paths: collaborators: type: array description: The list of collaborators for this Copilot Space. - items: *342 + items: *343 examples: default: value: @@ -133629,7 +133815,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: default: value: @@ -133740,7 +133926,7 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: default: value: @@ -133870,7 +134056,7 @@ paths: resources: type: array description: The list of resources attached to this Copilot Space. - items: *343 + items: *344 examples: default: value: @@ -133962,7 +134148,7 @@ paths: description: Resource created content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -133978,7 +134164,7 @@ paths: description: Duplicate github_file resource already exists content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -134031,7 +134217,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -134098,7 +134284,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: default: value: @@ -134175,9 +134361,9 @@ paths: application/json: schema: type: array - items: *417 + items: *418 examples: - default: *877 + default: *878 '403': *29 '401': *25 x-github: @@ -134210,7 +134396,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -134283,7 +134469,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -134370,7 +134556,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -134518,7 +134704,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/gists/gists#list-gists-for-a-user parameters: - *151 - - *238 + - *239 - *17 - *19 responses: @@ -134528,9 +134714,9 @@ paths: application/json: schema: type: array - items: *239 + items: *240 examples: - default: *240 + default: *241 headers: Link: *47 '422': *15 @@ -134561,9 +134747,9 @@ paths: application/json: schema: type: array - items: *867 + items: *868 examples: - default: *896 + default: *897 headers: Link: *47 x-github: @@ -134667,7 +134853,7 @@ paths: application/json: schema: *22 examples: - default: *391 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -134752,7 +134938,7 @@ paths: type: array items: *75 examples: - default: *262 + default: *263 headers: Link: *47 x-github: @@ -134791,7 +134977,7 @@ paths: - docker - nuget - container - - *876 + - *877 - *151 - *19 - *17 @@ -134802,12 +134988,12 @@ paths: application/json: schema: type: array - items: *417 + items: *418 examples: - default: *877 + default: *878 '403': *29 '401': *25 - '400': *878 + '400': *879 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -134827,17 +135013,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-a-user parameters: - - *419 - *420 + - *421 - *151 responses: '200': description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *897 + default: *898 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -134858,8 +135044,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-a-user parameters: - - *419 - *420 + - *421 - *151 responses: '204': @@ -134892,8 +135078,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-a-user parameters: - - *419 - *420 + - *421 - *151 - name: token description: package token @@ -134926,8 +135112,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: - - *419 - *420 + - *421 - *151 responses: '200': @@ -134936,7 +135122,7 @@ paths: application/json: schema: type: array - items: *421 + items: *422 examples: default: value: @@ -134994,16 +135180,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: - - *419 - *420 - - *422 + - *421 + - *423 - *151 responses: '200': description: Response content: application/json: - schema: *421 + schema: *422 examples: default: value: @@ -135038,10 +135224,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-a-user parameters: - - *419 - *420 + - *421 - *151 - - *422 + - *423 responses: '204': description: Response @@ -135073,10 +135259,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-a-user parameters: - - *419 - *420 + - *421 - *151 - - *422 + - *423 responses: '204': description: Response @@ -135117,9 +135303,9 @@ paths: application/json: schema: type: array - items: *433 + items: *434 examples: - default: *434 + default: *435 headers: Link: *47 '304': *37 @@ -135141,16 +135327,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-user parameters: - - *435 + - *436 - *151 responses: '200': description: Response content: application/json: - schema: *433 + schema: *434 examples: - default: *434 + default: *435 headers: Link: *47 '304': *37 @@ -135172,7 +135358,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-user parameters: - - *435 + - *436 - *151 - *17 - *110 @@ -135184,9 +135370,9 @@ paths: application/json: schema: type: array - items: *439 + items: *440 examples: - default: *898 + default: *899 headers: Link: *47 '304': *37 @@ -135208,7 +135394,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-field-to-user-owned-project parameters: - *151 - - *435 + - *436 requestBody: required: true content: @@ -135246,7 +135432,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *899 + items: *900 required: - name - data_type @@ -135262,7 +135448,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *900 + iteration_configuration: *901 required: - name - data_type @@ -135284,20 +135470,20 @@ paths: value: name: Due date data_type: date - single_select_field: *901 - iteration_field: *902 + single_select_field: *902 + iteration_field: *903 responses: '201': description: Response content: application/json: - schema: *439 + schema: *440 examples: - text_field: *903 - number_field: *904 - date_field: *905 - single_select_field: *906 - iteration_field: *907 + text_field: *904 + number_field: *905 + date_field: *906 + single_select_field: *907 + iteration_field: *908 '304': *37 '403': *29 '401': *25 @@ -135318,17 +135504,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - - *435 - - *908 + - *436 + - *909 - *151 responses: '200': description: Response content: application/json: - schema: *439 + schema: *440 examples: - default: *909 + default: *910 headers: Link: *47 '304': *37 @@ -135351,7 +135537,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: - - *435 + - *436 - *151 - *110 - *111 @@ -135384,9 +135570,9 @@ paths: application/json: schema: type: array - items: *443 + items: *444 examples: - default: *444 + default: *445 headers: Link: *47 '304': *37 @@ -135408,7 +135594,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-user-owned-project parameters: - *151 - - *435 + - *436 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -135478,22 +135664,22 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *442 + value: *443 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *442 + value: *443 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *442 + value: *443 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *442 + value: *443 '304': *37 '403': *29 '401': *25 @@ -135513,9 +135699,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: - - *435 + - *436 - *151 - - *445 + - *446 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -135535,9 +135721,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *444 examples: - default: *444 + default: *445 headers: Link: *47 '304': *37 @@ -135558,9 +135744,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-user parameters: - - *435 + - *436 - *151 - - *445 + - *446 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -135630,13 +135816,13 @@ paths: description: Response content: application/json: - schema: *443 + schema: *444 examples: - text_field: *444 - number_field: *444 - date_field: *444 - single_select_field: *444 - iteration_field: *444 + text_field: *445 + number_field: *445 + date_field: *445 + single_select_field: *445 + iteration_field: *445 '401': *25 '403': *29 '404': *6 @@ -135656,9 +135842,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-user parameters: - - *435 + - *436 - *151 - - *445 + - *446 responses: '204': description: Response @@ -135680,9 +135866,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: - - *435 + - *436 - *151 - - *910 + - *911 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -135708,9 +135894,9 @@ paths: application/json: schema: type: array - items: *443 + items: *444 examples: - default: *444 + default: *445 headers: Link: *47 '304': *37 @@ -135748,7 +135934,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -135823,7 +136009,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -135929,9 +136115,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *423 + default: *424 headers: Link: *47 x-github: @@ -135961,9 +136147,9 @@ paths: application/json: schema: type: array - items: *881 + items: *882 examples: - default: *882 + default: *883 headers: Link: *47 x-github: @@ -135993,9 +136179,9 @@ paths: application/json: schema: type: array - items: *883 + items: *884 examples: - default: *911 + default: *912 headers: Link: *47 x-github: @@ -136020,7 +136206,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *151 - - *912 + - *913 - *112 - *17 - *19 @@ -136032,11 +136218,11 @@ paths: schema: anyOf: - type: array - items: *913 + items: *914 - type: array items: *80 examples: - default-response: *886 + default-response: *887 headers: Link: *47 x-github: @@ -136065,9 +136251,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *423 + default: *424 headers: Link: *47 x-github: @@ -136195,7 +136381,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &914 + enterprise: &915 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -136253,7 +136439,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &915 + installation: &916 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -136272,7 +136458,7 @@ x-webhooks: required: - id - node_id - organization: &916 + organization: &917 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -136332,13 +136518,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &917 + repository: &918 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &956 + properties: &957 id: description: Unique identifier of the repository example: 42 @@ -136358,8 +136544,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *234 - required: *235 + properties: *235 + required: *236 nullable: true organization: title: Simple User @@ -137033,7 +137219,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &957 + required: &958 - archive_url - assignees_url - blobs_url @@ -137107,7 +137293,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &958 + x-github-breaking-changes: &959 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -137198,10 +137384,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -137277,11 +137463,11 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - rule: &918 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + rule: &919 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) @@ -137504,11 +137690,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - rule: *918 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + rule: *919 sender: *4 required: - action @@ -137691,11 +137877,11 @@ x-webhooks: - everyone required: - from - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - rule: *918 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + rule: *919 sender: *4 required: - action @@ -137768,7 +137954,7 @@ x-webhooks: required: true content: application/json: - schema: &940 + schema: &941 title: Exemption request cancellation event type: object properties: @@ -137776,11 +137962,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - exemption_request: &919 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + exemption_request: &920 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -138084,7 +138270,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &920 + items: &921 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -138194,7 +138380,7 @@ x-webhooks: required: true content: application/json: - schema: &941 + schema: &942 title: Exemption request completed event type: object properties: @@ -138202,11 +138388,11 @@ x-webhooks: type: string enum: - completed - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - exemption_request: *919 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + exemption_request: *920 sender: *4 required: - action @@ -138278,7 +138464,7 @@ x-webhooks: required: true content: application/json: - schema: &938 + schema: &939 title: Exemption request created event type: object properties: @@ -138286,11 +138472,11 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - exemption_request: *919 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + exemption_request: *920 sender: *4 required: - action @@ -138362,7 +138548,7 @@ x-webhooks: required: true content: application/json: - schema: &942 + schema: &943 title: Exemption response dismissed event type: object properties: @@ -138370,12 +138556,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - exemption_request: *919 - exemption_response: *920 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + exemption_request: *920 + exemption_response: *921 sender: *4 required: - action @@ -138449,7 +138635,7 @@ x-webhooks: required: true content: application/json: - schema: &939 + schema: &940 title: Exemption response submitted event type: object properties: @@ -138457,12 +138643,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - exemption_request: *919 - exemption_response: *920 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + exemption_request: *920 + exemption_response: *921 sender: *4 required: - action @@ -138546,7 +138732,7 @@ x-webhooks: type: string enum: - completed - check_run: &922 + check_run: &923 title: CheckRun description: A check performed on the code of a given code change type: object @@ -138599,8 +138785,8 @@ x-webhooks: type: string pull_requests: type: array - items: *236 - repository: *292 + items: *237 + repository: *293 status: example: completed type: string @@ -138637,7 +138823,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *921 + deployment: *922 details_url: example: https://example.com type: string @@ -138687,7 +138873,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *236 + items: *237 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -138722,10 +138908,10 @@ x-webhooks: - output - app - pull_requests - installation: *915 - enterprise: *914 - organization: *916 - repository: *917 + installation: *916 + enterprise: *915 + organization: *917 + repository: *918 sender: *4 required: - check_run @@ -139116,11 +139302,11 @@ x-webhooks: type: string enum: - created - check_run: *922 - installation: *915 - enterprise: *914 - organization: *916 - repository: *917 + check_run: *923 + installation: *916 + enterprise: *915 + organization: *917 + repository: *918 sender: *4 required: - check_run @@ -139514,11 +139700,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *922 - installation: *915 - enterprise: *914 - organization: *916 - repository: *917 + check_run: *923 + installation: *916 + enterprise: *915 + organization: *917 + repository: *918 requested_action: description: The action requested by the user. type: object @@ -139921,11 +140107,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *922 - installation: *915 - enterprise: *914 - organization: *916 - repository: *917 + check_run: *923 + installation: *916 + enterprise: *915 + organization: *917 + repository: *918 sender: *4 required: - check_run @@ -140895,10 +141081,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -141597,10 +141783,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -142293,10 +142479,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -142462,7 +142648,7 @@ x-webhooks: required: - login - id - dismissed_comment: *570 + dismissed_comment: *571 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -142607,20 +142793,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &923 + commit_oid: &924 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: *914 - installation: *915 - organization: *916 - ref: &924 + enterprise: *915 + installation: *916 + organization: *917 + ref: &925 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: *917 + repository: *918 sender: *4 required: - action @@ -142785,7 +142971,7 @@ x-webhooks: required: - login - id - dismissed_comment: *570 + dismissed_comment: *571 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -143015,12 +143201,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *923 - enterprise: *914 - installation: *915 - organization: *916 - ref: *924 - repository: *917 + commit_oid: *924 + enterprise: *915 + installation: *916 + organization: *917 + ref: *925 + repository: *918 sender: *4 required: - action @@ -143115,7 +143301,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *570 + dismissed_comment: *571 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -143286,12 +143472,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *923 - enterprise: *914 - installation: *915 - organization: *916 - ref: *924 - repository: *917 + commit_oid: *924 + enterprise: *915 + installation: *916 + organization: *917 + ref: *925 + repository: *918 sender: *4 required: - action @@ -143457,7 +143643,7 @@ x-webhooks: required: - login - id - dismissed_comment: *570 + dismissed_comment: *571 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -143623,12 +143809,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *923 - enterprise: *914 - installation: *915 - organization: *916 - ref: *924 - repository: *917 + commit_oid: *924 + enterprise: *915 + installation: *916 + organization: *917 + ref: *925 + repository: *918 sender: *4 required: - action @@ -143727,7 +143913,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *570 + dismissed_comment: *571 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -143902,16 +144088,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *917 + repository: *918 sender: *4 required: - action @@ -144008,7 +144194,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *570 + dismissed_comment: *571 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -144148,12 +144334,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *923 - enterprise: *914 - installation: *915 - organization: *916 - ref: *924 - repository: *917 + commit_oid: *924 + enterprise: *915 + installation: *916 + organization: *917 + ref: *925 + repository: *918 sender: *4 required: - action @@ -144319,7 +144505,7 @@ x-webhooks: required: - login - id - dismissed_comment: *570 + dismissed_comment: *571 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -144464,10 +144650,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -144722,10 +144908,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -144805,18 +144991,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *916 - pusher_type: &925 + organization: *917 + pusher_type: &926 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &926 + ref: &927 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -144826,7 +145012,7 @@ x-webhooks: enum: - tag - branch - repository: *917 + repository: *918 sender: *4 required: - ref @@ -144909,9 +145095,9 @@ x-webhooks: enum: - created definition: *164 - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 sender: *4 required: - action @@ -144996,9 +145182,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 sender: *4 required: - action @@ -145076,9 +145262,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *164 - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 sender: *4 required: - action @@ -145156,9 +145342,9 @@ x-webhooks: enum: - updated definition: *164 - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 sender: *4 required: - action @@ -145235,10 +145421,10 @@ x-webhooks: type: string enum: - updated - enterprise: *914 - installation: *915 - repository: *917 - organization: *916 + enterprise: *915 + installation: *916 + repository: *918 + organization: *917 sender: *4 new_property_values: type: array @@ -145323,18 +145509,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *914 - installation: *915 - organization: *916 - pusher_type: *925 - ref: *926 + enterprise: *915 + installation: *916 + organization: *917 + pusher_type: *926 + ref: *927 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *917 + repository: *918 sender: *4 required: - ref @@ -145414,11 +145600,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *634 - installation: *915 - organization: *916 - enterprise: *914 - repository: *917 + alert: *635 + installation: *916 + organization: *917 + enterprise: *915 + repository: *918 sender: *4 required: - action @@ -145498,11 +145684,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *634 - installation: *915 - organization: *916 - enterprise: *914 - repository: *917 + alert: *635 + installation: *916 + organization: *917 + enterprise: *915 + repository: *918 sender: *4 required: - action @@ -145583,11 +145769,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *634 - installation: *915 - organization: *916 - enterprise: *914 - repository: *917 + alert: *635 + installation: *916 + organization: *917 + enterprise: *915 + repository: *918 sender: *4 required: - action @@ -145668,11 +145854,11 @@ x-webhooks: type: string enum: - created - alert: *634 - installation: *915 - organization: *916 - enterprise: *914 - repository: *917 + alert: *635 + installation: *916 + organization: *917 + enterprise: *915 + repository: *918 sender: *4 required: - action @@ -145751,11 +145937,11 @@ x-webhooks: type: string enum: - dismissed - alert: *634 - installation: *915 - organization: *916 - enterprise: *914 - repository: *917 + alert: *635 + installation: *916 + organization: *917 + enterprise: *915 + repository: *918 sender: *4 required: - action @@ -145834,11 +146020,11 @@ x-webhooks: type: string enum: - fixed - alert: *634 - installation: *915 - organization: *916 - enterprise: *914 - repository: *917 + alert: *635 + installation: *916 + organization: *917 + enterprise: *915 + repository: *918 sender: *4 required: - action @@ -145918,11 +146104,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *634 - installation: *915 - organization: *916 - enterprise: *914 - repository: *917 + alert: *635 + installation: *916 + organization: *917 + enterprise: *915 + repository: *918 sender: *4 required: - action @@ -146001,11 +146187,11 @@ x-webhooks: type: string enum: - reopened - alert: *634 - installation: *915 - organization: *916 - enterprise: *914 - repository: *917 + alert: *635 + installation: *916 + organization: *917 + enterprise: *915 + repository: *918 sender: *4 required: - action @@ -146082,9 +146268,9 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - key: &927 + enterprise: *915 + installation: *916 + key: &928 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -146120,8 +146306,8 @@ x-webhooks: - verified - created_at - read_only - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -146198,11 +146384,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - key: *927 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + key: *928 + organization: *917 + repository: *918 sender: *4 required: - action @@ -146758,12 +146944,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - workflow: &933 + workflow: &934 title: Workflow type: object nullable: true @@ -147504,15 +147690,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *928 - required: *929 + properties: *929 + required: *930 nullable: true pull_requests: type: array - items: *757 - repository: *917 - organization: *916 - installation: *915 + items: *758 + repository: *918 + organization: *917 + installation: *916 sender: *4 responses: '200': @@ -147583,7 +147769,7 @@ x-webhooks: type: string enum: - approved - approver: &930 + approver: &931 type: object properties: avatar_url: @@ -147626,11 +147812,11 @@ x-webhooks: type: string comment: type: string - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - reviewers: &931 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + reviewers: &932 type: array items: type: object @@ -147709,7 +147895,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &932 + workflow_job_run: &933 type: object properties: conclusion: @@ -148440,18 +148626,18 @@ x-webhooks: type: string enum: - rejected - approver: *930 + approver: *931 comment: type: string - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - reviewers: *931 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + reviewers: *932 sender: *4 since: type: string - workflow_job_run: *932 + workflow_job_run: *933 workflow_job_runs: type: array items: @@ -149155,13 +149341,13 @@ x-webhooks: type: string enum: - requested - enterprise: *914 + enterprise: *915 environment: type: string - installation: *915 - organization: *916 - repository: *917 - requestor: &943 + installation: *916 + organization: *917 + repository: *918 + requestor: &944 title: User type: object nullable: true @@ -151050,12 +151236,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - workflow: *933 + workflow: *934 workflow_run: title: Deployment Workflow Run type: object @@ -151735,7 +151921,7 @@ x-webhooks: type: string enum: - answered - answer: &936 + answer: &937 type: object properties: author_association: @@ -151892,11 +152078,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -152023,11 +152209,11 @@ x-webhooks: - from required: - category - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -152110,11 +152296,11 @@ x-webhooks: type: string enum: - closed - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -152196,7 +152382,7 @@ x-webhooks: type: string enum: - created - comment: &935 + comment: &936 type: object properties: author_association: @@ -152353,11 +152539,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -152440,12 +152626,12 @@ x-webhooks: type: string enum: - deleted - comment: *935 - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + comment: *936 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -152540,12 +152726,12 @@ x-webhooks: - from required: - body - comment: *935 - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + comment: *936 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -152629,11 +152815,11 @@ x-webhooks: type: string enum: - created - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -152715,11 +152901,11 @@ x-webhooks: type: string enum: - deleted - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -152819,11 +153005,11 @@ x-webhooks: type: string required: - from - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -152905,10 +153091,10 @@ x-webhooks: type: string enum: - labeled - discussion: *934 - enterprise: *914 - installation: *915 - label: &937 + discussion: *935 + enterprise: *915 + installation: *916 + label: &938 title: Label type: object properties: @@ -152940,8 +153126,8 @@ x-webhooks: - color - default - description - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -153024,11 +153210,11 @@ x-webhooks: type: string enum: - locked - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -153110,11 +153296,11 @@ x-webhooks: type: string enum: - pinned - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -153196,11 +153382,11 @@ x-webhooks: type: string enum: - reopened - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -153285,16 +153471,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *934 - new_repository: *917 + new_discussion: *935 + new_repository: *918 required: - new_discussion - new_repository - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -153377,10 +153563,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *934 - old_answer: *936 - organization: *916 - repository: *917 + discussion: *935 + old_answer: *937 + organization: *917 + repository: *918 sender: *4 required: - action @@ -153462,12 +153648,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *934 - enterprise: *914 - installation: *915 - label: *937 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + label: *938 + organization: *917 + repository: *918 sender: *4 required: - action @@ -153550,11 +153736,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -153636,11 +153822,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *934 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + discussion: *935 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -153709,7 +153895,7 @@ x-webhooks: required: true content: application/json: - schema: *938 + schema: *939 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153772,7 +153958,7 @@ x-webhooks: required: true content: application/json: - schema: *939 + schema: *940 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153835,7 +154021,7 @@ x-webhooks: required: true content: application/json: - schema: *940 + schema: *941 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153898,7 +154084,7 @@ x-webhooks: required: true content: application/json: - schema: *938 + schema: *939 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153961,7 +154147,7 @@ x-webhooks: required: true content: application/json: - schema: *939 + schema: *940 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154027,7 +154213,7 @@ x-webhooks: required: true content: application/json: - schema: *940 + schema: *941 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154093,7 +154279,7 @@ x-webhooks: required: true content: application/json: - schema: *941 + schema: *942 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154159,7 +154345,7 @@ x-webhooks: required: true content: application/json: - schema: *938 + schema: *939 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154225,7 +154411,7 @@ x-webhooks: required: true content: application/json: - schema: *942 + schema: *943 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154291,7 +154477,7 @@ x-webhooks: required: true content: application/json: - schema: *939 + schema: *940 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154356,7 +154542,7 @@ x-webhooks: required: true content: application/json: - schema: *940 + schema: *941 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154421,7 +154607,7 @@ x-webhooks: required: true content: application/json: - schema: *941 + schema: *942 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154486,7 +154672,7 @@ x-webhooks: required: true content: application/json: - schema: *938 + schema: *939 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154551,7 +154737,7 @@ x-webhooks: required: true content: application/json: - schema: *942 + schema: *943 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154617,7 +154803,7 @@ x-webhooks: required: true content: application/json: - schema: *939 + schema: *940 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154684,7 +154870,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *914 + enterprise: *915 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -155344,9 +155530,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *915 - organization: *916 - repository: *917 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - forkee @@ -155492,9 +155678,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 pages: description: The pages that were updated. type: array @@ -155531,7 +155717,7 @@ x-webhooks: - action - sha - html_url - repository: *917 + repository: *918 sender: *4 required: - pages @@ -155607,10 +155793,10 @@ x-webhooks: type: string enum: - created - enterprise: *914 + enterprise: *915 installation: *22 - organization: *916 - repositories: &944 + organization: *917 + repositories: &945 description: An array of repository objects that the installation can access. type: array @@ -155636,8 +155822,8 @@ x-webhooks: - name - full_name - private - repository: *917 - requester: *943 + repository: *918 + requester: *944 sender: *4 required: - action @@ -155712,11 +155898,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 + enterprise: *915 installation: *22 - organization: *916 - repositories: *944 - repository: *917 + organization: *917 + repositories: *945 + repository: *918 requester: nullable: true sender: *4 @@ -155792,11 +155978,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *914 + enterprise: *915 installation: *22 - organization: *916 - repositories: *944 - repository: *917 + organization: *917 + repositories: *945 + repository: *918 requester: nullable: true sender: *4 @@ -155872,10 +156058,10 @@ x-webhooks: type: string enum: - added - enterprise: *914 + enterprise: *915 installation: *22 - organization: *916 - repositories_added: &945 + organization: *917 + repositories_added: &946 description: An array of repository objects, which were added to the installation. type: array @@ -155921,15 +156107,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *917 - repository_selection: &946 + repository: *918 + repository_selection: &947 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *943 + requester: *944 sender: *4 required: - action @@ -156008,10 +156194,10 @@ x-webhooks: type: string enum: - removed - enterprise: *914 + enterprise: *915 installation: *22 - organization: *916 - repositories_added: *945 + organization: *917 + repositories_added: *946 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -156038,9 +156224,9 @@ x-webhooks: - name - full_name - private - repository: *917 - repository_selection: *946 - requester: *943 + repository: *918 + repository_selection: *947 + requester: *944 sender: *4 required: - action @@ -156119,11 +156305,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *914 + enterprise: *915 installation: *22 - organization: *916 - repositories: *944 - repository: *917 + organization: *917 + repositories: *945 + repository: *918 requester: nullable: true sender: *4 @@ -156302,10 +156488,10 @@ x-webhooks: type: string required: - from - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 target_type: type: string @@ -156384,11 +156570,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *914 + enterprise: *915 installation: *22 - organization: *916 - repositories: *944 - repository: *917 + organization: *917 + repositories: *945 + repository: *918 requester: nullable: true sender: *4 @@ -156512,8 +156698,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *226 - required: *227 + properties: *227 + required: *228 reactions: title: Reactions type: object @@ -156562,15 +156748,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *719 - required: *720 + properties: *720 + required: *721 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *721 - required: *722 + properties: *722 + required: *723 nullable: true user: title: User @@ -156655,8 +156841,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -157445,8 +157631,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157462,7 +157648,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -157795,8 +157981,8 @@ x-webhooks: - state - locked - assignee - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -157876,7 +158062,7 @@ x-webhooks: type: string enum: - deleted - comment: &947 + comment: &948 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -158033,15 +158219,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *719 - required: *720 + properties: *720 + required: *721 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *721 - required: *722 + properties: *722 + required: *723 nullable: true required: - url @@ -158056,8 +158242,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -158842,8 +159028,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158859,7 +159045,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -159194,8 +159380,8 @@ x-webhooks: - state - locked - assignee - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -159275,7 +159461,7 @@ x-webhooks: type: string enum: - edited - changes: &977 + changes: &978 description: The changes to the comment. type: object properties: @@ -159287,9 +159473,9 @@ x-webhooks: type: string required: - from - comment: *947 - enterprise: *914 - installation: *915 + comment: *948 + enterprise: *915 + installation: *916 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -160077,8 +160263,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160094,7 +160280,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -160427,8 +160613,8 @@ x-webhooks: - state - locked - assignee - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -160509,9 +160695,9 @@ x-webhooks: type: string enum: - pinned - comment: *947 - enterprise: *914 - installation: *915 + comment: *948 + enterprise: *915 + installation: *916 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -161301,8 +161487,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161318,7 +161504,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -161653,8 +161839,8 @@ x-webhooks: - state - locked - assignee - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -161734,9 +161920,9 @@ x-webhooks: type: string enum: - unpinned - comment: *947 - enterprise: *914 - installation: *915 + comment: *948 + enterprise: *915 + installation: *916 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -162526,8 +162712,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162543,7 +162729,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -162878,8 +163064,8 @@ x-webhooks: - state - locked - assignee - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -162962,15 +163148,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 + blocking_issue: *232 blocking_issue_repo: *80 - installation: *915 - organization: *916 - repository: *917 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -163053,15 +163239,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 + blocking_issue: *232 blocking_issue_repo: *80 - installation: *915 - organization: *916 - repository: *917 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -163143,15 +163329,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 - installation: *915 - organization: *916 - repository: *917 + blocking_issue: *232 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -163234,15 +163420,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *231 + blocked_issue: *232 blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *231 - installation: *915 - organization: *916 - repository: *917 + blocking_issue: *232 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -163322,10 +163508,10 @@ x-webhooks: type: string enum: - assigned - assignee: *943 - enterprise: *914 - installation: *915 - issue: &948 + assignee: *944 + enterprise: *915 + installation: *916 + issue: &949 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -164114,14 +164300,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164137,7 +164323,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -164238,8 +164424,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -164319,8 +164505,8 @@ x-webhooks: type: string enum: - closed - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -165114,14 +165300,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165137,7 +165323,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -165373,8 +165559,8 @@ x-webhooks: required: - state - closed_at - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -165453,8 +165639,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -166239,14 +166425,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166262,7 +166448,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -166362,8 +166548,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -166442,8 +166628,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -167250,14 +167436,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167273,7 +167459,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -167352,7 +167538,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &949 + milestone: &950 title: Milestone description: A collection of related issues and pull requests. type: object @@ -167490,8 +167676,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -167590,8 +167776,8 @@ x-webhooks: type: string required: - from - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168380,14 +168566,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168400,7 +168586,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *401 + type: *402 title: description: Title of the issue type: string @@ -168504,9 +168690,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *937 - organization: *916 - repository: *917 + label: *938 + organization: *917 + repository: *918 sender: *4 required: - action @@ -168586,9 +168772,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *914 - installation: *915 - issue: *948 + enterprise: *915 + installation: *916 + issue: *949 issue_field: type: object description: The issue field whose value was set or updated on the @@ -168742,8 +168928,8 @@ x-webhooks: - id required: - from - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -168823,9 +169009,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *914 - installation: *915 - issue: *948 + enterprise: *915 + installation: *916 + issue: *949 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -168906,8 +169092,8 @@ x-webhooks: nullable: true required: - id - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -168987,8 +169173,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -169776,14 +169962,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169796,7 +169982,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *401 + type: *402 title: description: Title of the issue type: string @@ -169900,9 +170086,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *937 - organization: *916 - repository: *917 + label: *938 + organization: *917 + repository: *918 sender: *4 required: - action @@ -169982,8 +170168,8 @@ x-webhooks: type: string enum: - locked - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170795,14 +170981,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170815,7 +171001,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *401 + type: *402 title: description: Title of the issue type: string @@ -170896,8 +171082,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -170976,8 +171162,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -171783,14 +171969,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171806,7 +171992,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -171884,9 +172070,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *949 - organization: *916 - repository: *917 + milestone: *950 + organization: *917 + repository: *918 sender: *4 required: - action @@ -172749,11 +172935,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -172781,8 +172967,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true user: title: User @@ -172854,7 +173040,7 @@ x-webhooks: required: - login - id - type: *401 + type: *402 required: - id - number @@ -173334,8 +173520,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -174119,11 +174305,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174139,7 +174325,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -174152,8 +174338,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true user: title: User @@ -174247,8 +174433,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -174328,9 +174514,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *914 - installation: *915 - issue: &950 + enterprise: *915 + installation: *916 + issue: &951 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -175113,14 +175299,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175136,7 +175322,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -175236,8 +175422,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -175316,8 +175502,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -176127,14 +176313,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -176228,9 +176414,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *401 - organization: *916 - repository: *917 + type: *402 + organization: *917 + repository: *918 sender: *4 required: - action @@ -177096,14 +177282,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -177119,7 +177305,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -177698,11 +177884,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *914 - installation: *915 - issue: *950 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + issue: *951 + organization: *917 + repository: *918 sender: *4 required: - action @@ -177782,12 +177968,12 @@ x-webhooks: type: string enum: - typed - enterprise: *914 - installation: *915 - issue: *948 - type: *401 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + issue: *949 + type: *402 + organization: *917 + repository: *918 sender: *4 required: - action @@ -177868,7 +178054,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &980 + assignee: &981 title: User type: object nullable: true @@ -177938,11 +178124,11 @@ x-webhooks: required: - login - id - enterprise: *914 - installation: *915 - issue: *948 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + issue: *949 + organization: *917 + repository: *918 sender: *4 required: - action @@ -178021,12 +178207,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *914 - installation: *915 - issue: *948 - label: *937 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + issue: *949 + label: *938 + organization: *917 + repository: *918 sender: *4 required: - action @@ -178106,8 +178292,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -178917,14 +179103,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *232 - required: *233 + properties: *233 + required: *234 nullable: true - sub_issues_summary: *850 - issue_dependencies_summary: *851 + sub_issues_summary: *851 + issue_dependencies_summary: *852 issue_field_values: type: array - items: *703 + items: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -178940,7 +179126,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *401 + type: *402 updated_at: type: string format: date-time @@ -179018,8 +179204,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -179099,11 +179285,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *914 - installation: *915 - issue: *950 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + issue: *951 + organization: *917 + repository: *918 sender: *4 required: - action @@ -179182,12 +179368,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *914 - installation: *915 - issue: *948 - type: *401 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + issue: *949 + type: *402 + organization: *917 + repository: *918 sender: *4 required: - action @@ -179267,11 +179453,11 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - label: *937 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + label: *938 + organization: *917 + repository: *918 sender: *4 required: - action @@ -179349,11 +179535,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - label: *937 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + label: *938 + organization: *917 + repository: *918 sender: *4 required: - action @@ -179463,11 +179649,11 @@ x-webhooks: type: string required: - from - enterprise: *914 - installation: *915 - label: *937 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + label: *938 + organization: *917 + repository: *918 sender: *4 required: - action @@ -179549,9 +179735,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *914 - installation: *915 - marketplace_purchase: &951 + enterprise: *915 + installation: *916 + marketplace_purchase: &952 title: Marketplace Purchase type: object required: @@ -179634,8 +179820,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *916 - previous_marketplace_purchase: &952 + organization: *917 + previous_marketplace_purchase: &953 title: Marketplace Purchase type: object properties: @@ -179715,7 +179901,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *917 + repository: *918 sender: *4 required: - action @@ -179795,10 +179981,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *914 - installation: *915 - marketplace_purchase: *951 - organization: *916 + enterprise: *915 + installation: *916 + marketplace_purchase: *952 + organization: *917 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -179881,7 +180067,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *917 + repository: *918 sender: *4 required: - action @@ -179963,10 +180149,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *914 - installation: *915 - marketplace_purchase: *951 - organization: *916 + enterprise: *915 + installation: *916 + marketplace_purchase: *952 + organization: *917 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -180048,7 +180234,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *917 + repository: *918 sender: *4 required: - action @@ -180129,8 +180315,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 marketplace_purchase: title: Marketplace Purchase type: object @@ -180212,9 +180398,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *916 - previous_marketplace_purchase: *952 - repository: *917 + organization: *917 + previous_marketplace_purchase: *953 + repository: *918 sender: *4 required: - action @@ -180294,12 +180480,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *914 - installation: *915 - marketplace_purchase: *951 - organization: *916 - previous_marketplace_purchase: *952 - repository: *917 + enterprise: *915 + installation: *916 + marketplace_purchase: *952 + organization: *917 + previous_marketplace_purchase: *953 + repository: *918 sender: *4 required: - action @@ -180401,11 +180587,11 @@ x-webhooks: type: string required: - to - enterprise: *914 - installation: *915 - member: *943 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + member: *944 + organization: *917 + repository: *918 sender: *4 required: - action @@ -180505,11 +180691,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *914 - installation: *915 - member: *943 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + member: *944 + organization: *917 + repository: *918 sender: *4 required: - action @@ -180588,11 +180774,11 @@ x-webhooks: type: string enum: - removed - enterprise: *914 - installation: *915 - member: *943 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + member: *944 + organization: *917 + repository: *918 sender: *4 required: - action @@ -180670,11 +180856,11 @@ x-webhooks: type: string enum: - added - enterprise: *914 - installation: *915 - member: *943 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + member: *944 + organization: *917 + repository: *918 scope: description: The scope of the membership. Currently, can only be `team`. @@ -180750,7 +180936,7 @@ x-webhooks: required: - login - id - team: &953 + team: &954 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -180973,11 +181159,11 @@ x-webhooks: type: string enum: - removed - enterprise: *914 - installation: *915 - member: *943 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + member: *944 + organization: *917 + repository: *918 scope: description: The scope of the membership. Currently, can only be `team`. @@ -181054,7 +181240,7 @@ x-webhooks: required: - login - id - team: *953 + team: *954 required: - action - scope @@ -181136,8 +181322,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *915 - merge_group: &955 + installation: *916 + merge_group: &956 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -181156,15 +181342,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *954 + head_commit: *955 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -181250,10 +181436,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *915 - merge_group: *955 - organization: *916 - repository: *917 + installation: *916 + merge_group: *956 + organization: *917 + repository: *918 sender: *4 required: - action @@ -181326,7 +181512,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 + enterprise: *915 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -181435,17 +181621,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *915 - organization: *916 + installation: *916 + organization: *917 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *956 - required: *957 - x-github-breaking-changes: *958 + properties: *957 + required: *958 + x-github-breaking-changes: *959 nullable: true sender: *4 required: @@ -181526,11 +181712,11 @@ x-webhooks: type: string enum: - closed - enterprise: *914 - installation: *915 - milestone: *949 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + milestone: *950 + organization: *917 + repository: *918 sender: *4 required: - action @@ -181609,9 +181795,9 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - milestone: &959 + enterprise: *915 + installation: *916 + milestone: &960 title: Milestone description: A collection of related issues and pull requests. type: object @@ -181748,8 +181934,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -181828,11 +182014,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - milestone: *949 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + milestone: *950 + organization: *917 + repository: *918 sender: *4 required: - action @@ -181942,11 +182128,11 @@ x-webhooks: type: string required: - from - enterprise: *914 - installation: *915 - milestone: *949 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + milestone: *950 + organization: *917 + repository: *918 sender: *4 required: - action @@ -182026,11 +182212,11 @@ x-webhooks: type: string enum: - opened - enterprise: *914 - installation: *915 - milestone: *959 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + milestone: *960 + organization: *917 + repository: *918 sender: *4 required: - action @@ -182109,11 +182295,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *943 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + blocked_user: *944 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -182192,11 +182378,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *943 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + blocked_user: *944 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -182272,7 +182458,7 @@ x-webhooks: enum: - created definition: *159 - enterprise: *914 + enterprise: *915 sender: *4 required: - action @@ -182352,8 +182538,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 sender: *4 required: - action @@ -182426,8 +182612,8 @@ x-webhooks: enum: - updated definition: *159 - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 sender: *4 required: - action @@ -182499,9 +182685,9 @@ x-webhooks: type: string enum: - updated - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 sender: *4 new_property_values: type: array @@ -182589,9 +182775,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - membership: &960 + enterprise: *915 + installation: *916 + membership: &961 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -182698,8 +182884,8 @@ x-webhooks: - role - organization_url - user - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 required: - action @@ -182777,11 +182963,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *914 - installation: *915 - membership: *960 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + membership: *961 + organization: *917 + repository: *918 sender: *4 required: - action @@ -182860,8 +183046,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -182977,10 +183163,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 - user: *943 + user: *944 required: - action - invitation @@ -183058,11 +183244,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *914 - installation: *915 - membership: *960 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + membership: *961 + organization: *917 + repository: *918 sender: *4 required: - action @@ -183149,11 +183335,11 @@ x-webhooks: properties: from: type: string - enterprise: *914 - installation: *915 - membership: *960 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + membership: *961 + organization: *917 + repository: *918 sender: *4 required: - action @@ -183231,9 +183417,9 @@ x-webhooks: type: string enum: - published - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 package: description: Information about the package. type: object @@ -183732,7 +183918,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &961 + items: &962 title: Ruby Gems metadata type: object properties: @@ -183827,7 +184013,7 @@ x-webhooks: - owner - package_version - registry - repository: *917 + repository: *918 sender: *4 required: - action @@ -183904,9 +184090,9 @@ x-webhooks: type: string enum: - updated - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 package: description: Information about the package. type: object @@ -184259,7 +184445,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *961 + items: *962 source_url: type: string format: uri @@ -184329,7 +184515,7 @@ x-webhooks: - owner - package_version - registry - repository: *917 + repository: *918 sender: *4 required: - action @@ -184505,12 +184691,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *914 + enterprise: *915 id: type: integer - installation: *915 - organization: *916 - repository: *917 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - id @@ -184587,7 +184773,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &962 + personal_access_token_request: &963 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -184733,10 +184919,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *914 - organization: *916 + enterprise: *915 + organization: *917 sender: *4 - installation: *915 + installation: *916 required: - action - personal_access_token_request @@ -184813,11 +184999,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *962 - enterprise: *914 - organization: *916 + personal_access_token_request: *963 + enterprise: *915 + organization: *917 sender: *4 - installation: *915 + installation: *916 required: - action - personal_access_token_request @@ -184893,11 +185079,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *962 - enterprise: *914 - organization: *916 + personal_access_token_request: *963 + enterprise: *915 + organization: *917 sender: *4 - installation: *915 + installation: *916 required: - action - personal_access_token_request @@ -184972,11 +185158,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *962 - organization: *916 - enterprise: *914 + personal_access_token_request: *963 + organization: *917 + enterprise: *915 sender: *4 - installation: *915 + installation: *916 required: - action - personal_access_token_request @@ -185081,7 +185267,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *963 + last_response: *964 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -185113,8 +185299,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 zen: description: Random string of GitHub zen. @@ -185359,10 +185545,10 @@ x-webhooks: - from required: - note - enterprise: *914 - installation: *915 - organization: *916 - project_card: &964 + enterprise: *915 + installation: *916 + organization: *917 + project_card: &965 title: Project Card type: object properties: @@ -185481,7 +185667,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *917 + repository: *918 sender: *4 required: - action @@ -185562,11 +185748,11 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 - project_card: *964 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + project_card: *965 + repository: *918 sender: *4 required: - action @@ -185646,9 +185832,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 project_card: title: Project Card type: object @@ -185776,9 +185962,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *956 - required: *957 - x-github-breaking-changes: *958 + properties: *957 + required: *958 + x-github-breaking-changes: *959 nullable: true sender: *4 required: @@ -185872,11 +186058,11 @@ x-webhooks: - from required: - note - enterprise: *914 - installation: *915 - organization: *916 - project_card: *964 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + project_card: *965 + repository: *918 sender: *4 required: - action @@ -185970,9 +186156,9 @@ x-webhooks: - from required: - column_id - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 project_card: allOf: - title: Project Card @@ -186162,7 +186348,7 @@ x-webhooks: type: string required: - after_id - repository: *917 + repository: *918 sender: *4 required: - action @@ -186242,10 +186428,10 @@ x-webhooks: type: string enum: - closed - enterprise: *914 - installation: *915 - organization: *916 - project: &966 + enterprise: *915 + installation: *916 + organization: *917 + project: &967 title: Project type: object properties: @@ -186369,7 +186555,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *917 + repository: *918 sender: *4 required: - action @@ -186449,10 +186635,10 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 - project_column: &965 + enterprise: *915 + installation: *916 + organization: *917 + project_column: &966 title: Project Column type: object properties: @@ -186491,7 +186677,7 @@ x-webhooks: - name - created_at - updated_at - repository: *917 + repository: *918 sender: *4 required: - action @@ -186570,19 +186756,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - organization: *916 - project_column: *965 + enterprise: *915 + installation: *916 + organization: *917 + project_column: *966 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *956 - required: *957 - x-github-breaking-changes: *958 + properties: *957 + required: *958 + x-github-breaking-changes: *959 nullable: true sender: *4 required: @@ -186672,11 +186858,11 @@ x-webhooks: type: string required: - from - enterprise: *914 - installation: *915 - organization: *916 - project_column: *965 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + project_column: *966 + repository: *918 sender: *4 required: - action @@ -186756,11 +186942,11 @@ x-webhooks: type: string enum: - moved - enterprise: *914 - installation: *915 - organization: *916 - project_column: *965 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + project_column: *966 + repository: *918 sender: *4 required: - action @@ -186840,11 +187026,11 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 - project: *966 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + project: *967 + repository: *918 sender: *4 required: - action @@ -186924,19 +187110,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - organization: *916 - project: *966 + enterprise: *915 + installation: *916 + organization: *917 + project: *967 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *956 - required: *957 - x-github-breaking-changes: *958 + properties: *957 + required: *958 + x-github-breaking-changes: *959 nullable: true sender: *4 required: @@ -187038,11 +187224,11 @@ x-webhooks: type: string required: - from - enterprise: *914 - installation: *915 - organization: *916 - project: *966 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + project: *967 + repository: *918 sender: *4 required: - action @@ -187121,11 +187307,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *914 - installation: *915 - organization: *916 - project: *966 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + project: *967 + repository: *918 sender: *4 required: - action @@ -187206,9 +187392,9 @@ x-webhooks: type: string enum: - closed - installation: *915 - organization: *916 - projects_v2: *433 + installation: *916 + organization: *917 + projects_v2: *434 sender: *4 required: - action @@ -187289,9 +187475,9 @@ x-webhooks: type: string enum: - created - installation: *915 - organization: *916 - projects_v2: *433 + installation: *916 + organization: *917 + projects_v2: *434 sender: *4 required: - action @@ -187372,9 +187558,9 @@ x-webhooks: type: string enum: - deleted - installation: *915 - organization: *916 - projects_v2: *433 + installation: *916 + organization: *917 + projects_v2: *434 sender: *4 required: - action @@ -187491,9 +187677,9 @@ x-webhooks: type: string to: type: string - installation: *915 - organization: *916 - projects_v2: *433 + installation: *916 + organization: *917 + projects_v2: *434 sender: *4 required: - action @@ -187576,7 +187762,7 @@ x-webhooks: type: string enum: - archived - changes: &970 + changes: &971 type: object properties: archived_at: @@ -187590,9 +187776,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *915 - organization: *916 - projects_v2_item: &967 + installation: *916 + organization: *917 + projects_v2_item: &968 title: Projects v2 Item description: An item belonging to a project type: object @@ -187610,7 +187796,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *440 + content_type: *441 creator: *4 created_at: type: string @@ -187727,9 +187913,9 @@ x-webhooks: nullable: true to: type: string - installation: *915 - organization: *916 - projects_v2_item: *967 + installation: *916 + organization: *917 + projects_v2_item: *968 sender: *4 required: - action @@ -187811,9 +187997,9 @@ x-webhooks: type: string enum: - created - installation: *915 - organization: *916 - projects_v2_item: *967 + installation: *916 + organization: *917 + projects_v2_item: *968 sender: *4 required: - action @@ -187894,9 +188080,9 @@ x-webhooks: type: string enum: - deleted - installation: *915 - organization: *916 - projects_v2_item: *967 + installation: *916 + organization: *917 + projects_v2_item: *968 sender: *4 required: - action @@ -188002,7 +188188,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &968 + - &969 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -188024,7 +188210,7 @@ x-webhooks: required: - id - name - - &969 + - &970 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -188058,8 +188244,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *968 - *969 + - *970 required: - field_value - type: object @@ -188075,9 +188261,9 @@ x-webhooks: nullable: true required: - body - installation: *915 - organization: *916 - projects_v2_item: *967 + installation: *916 + organization: *917 + projects_v2_item: *968 sender: *4 required: - action @@ -188172,9 +188358,9 @@ x-webhooks: to: type: string nullable: true - installation: *915 - organization: *916 - projects_v2_item: *967 + installation: *916 + organization: *917 + projects_v2_item: *968 sender: *4 required: - action @@ -188257,10 +188443,10 @@ x-webhooks: type: string enum: - restored - changes: *970 - installation: *915 - organization: *916 - projects_v2_item: *967 + changes: *971 + installation: *916 + organization: *917 + projects_v2_item: *968 sender: *4 required: - action @@ -188342,9 +188528,9 @@ x-webhooks: type: string enum: - reopened - installation: *915 - organization: *916 - projects_v2: *433 + installation: *916 + organization: *917 + projects_v2: *434 sender: *4 required: - action @@ -188425,14 +188611,14 @@ x-webhooks: type: string enum: - created - installation: *915 - organization: *916 - projects_v2_status_update: &973 + installation: *916 + organization: *917 + projects_v2_status_update: &974 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *971 - required: *972 + properties: *972 + required: *973 sender: *4 required: - action @@ -188513,9 +188699,9 @@ x-webhooks: type: string enum: - deleted - installation: *915 - organization: *916 - projects_v2_status_update: *973 + installation: *916 + organization: *917 + projects_v2_status_update: *974 sender: *4 required: - action @@ -188651,9 +188837,9 @@ x-webhooks: type: string format: date nullable: true - installation: *915 - organization: *916 - projects_v2_status_update: *973 + installation: *916 + organization: *917 + projects_v2_status_update: *974 sender: *4 required: - action @@ -188724,10 +188910,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - repository @@ -188804,13 +188990,13 @@ x-webhooks: type: string enum: - assigned - assignee: *943 - enterprise: *914 - installation: *915 - number: &974 + assignee: *944 + enterprise: *915 + installation: *916 + number: &975 description: The pull request number. type: integer - organization: *916 + organization: *917 pull_request: title: Pull Request type: object @@ -191115,7 +191301,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 sender: *4 required: - action @@ -191212,11 +191398,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 number: type: integer - organization: *916 + organization: *917 pull_request: title: Pull Request type: object @@ -193516,7 +193702,7 @@ x-webhooks: - draft reason: type: string - repository: *917 + repository: *918 sender: *4 required: - action @@ -193613,11 +193799,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 number: type: integer - organization: *916 + organization: *917 pull_request: title: Pull Request type: object @@ -195917,7 +196103,7 @@ x-webhooks: - draft reason: type: string - repository: *917 + repository: *918 sender: *4 required: - action @@ -196014,13 +196200,13 @@ x-webhooks: type: string enum: - closed - enterprise: *914 - installation: *915 - number: *974 - organization: *916 - pull_request: &975 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 + pull_request: &976 allOf: - - *757 + - *758 - type: object properties: allow_auto_merge: @@ -196082,7 +196268,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *917 + repository: *918 sender: *4 required: - action @@ -196163,12 +196349,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *914 - installation: *915 - number: *974 - organization: *916 - pull_request: *975 - repository: *917 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 + pull_request: *976 + repository: *918 sender: *4 required: - action @@ -196248,11 +196434,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *914 - milestone: *739 - number: *974 - organization: *916 - pull_request: &976 + enterprise: *915 + milestone: *740 + number: *975 + organization: *917 + pull_request: &977 title: Pull Request type: object properties: @@ -198579,7 +198765,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *917 + repository: *918 sender: *4 required: - action @@ -198658,11 +198844,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 number: type: integer - organization: *916 + organization: *917 pull_request: title: Pull Request type: object @@ -200966,7 +201152,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *917 + repository: *918 sender: *4 required: - action @@ -201098,12 +201284,12 @@ x-webhooks: type: string required: - from - enterprise: *914 - installation: *915 - number: *974 - organization: *916 - pull_request: *975 - repository: *917 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 + pull_request: *976 + repository: *918 sender: *4 required: - action @@ -201183,11 +201369,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 number: type: integer - organization: *916 + organization: *917 pull_request: title: Pull Request type: object @@ -203476,7 +203662,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 sender: *4 required: - action @@ -203564,11 +203750,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *914 - installation: *915 - label: *937 - number: *974 - organization: *916 + enterprise: *915 + installation: *916 + label: *938 + number: *975 + organization: *917 pull_request: title: Pull Request type: object @@ -205872,7 +206058,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 sender: *4 required: - action @@ -205968,10 +206154,10 @@ x-webhooks: type: string enum: - locked - enterprise: *914 - installation: *915 - number: *974 - organization: *916 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 pull_request: title: Pull Request type: object @@ -208273,7 +208459,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 sender: *4 required: - action @@ -208368,12 +208554,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *914 - milestone: *739 - number: *974 - organization: *916 - pull_request: *976 - repository: *917 + enterprise: *915 + milestone: *740 + number: *975 + organization: *917 + pull_request: *977 + repository: *918 sender: *4 required: - action @@ -208452,12 +208638,12 @@ x-webhooks: type: string enum: - opened - enterprise: *914 - installation: *915 - number: *974 - organization: *916 - pull_request: *975 - repository: *917 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 + pull_request: *976 + repository: *918 sender: *4 required: - action @@ -208538,12 +208724,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *914 - installation: *915 - number: *974 - organization: *916 - pull_request: *975 - repository: *917 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 + pull_request: *976 + repository: *918 sender: *4 required: - action @@ -208623,12 +208809,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *914 - installation: *915 - number: *974 - organization: *916 - pull_request: *975 - repository: *917 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 + pull_request: *976 + repository: *918 sender: *4 required: - action @@ -208994,9 +209180,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 pull_request: type: object properties: @@ -211188,7 +211374,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *917 + repository: *918 sender: *4 required: - action @@ -211283,7 +211469,7 @@ x-webhooks: type: string enum: - deleted - comment: &978 + comment: &979 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. @@ -211568,9 +211754,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 pull_request: type: object properties: @@ -213750,7 +213936,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *917 + repository: *918 sender: *4 required: - action @@ -213845,11 +214031,11 @@ x-webhooks: type: string enum: - edited - changes: *977 - comment: *978 - enterprise: *914 - installation: *915 - organization: *916 + changes: *978 + comment: *979 + enterprise: *915 + installation: *916 + organization: *917 pull_request: type: object properties: @@ -216032,7 +216218,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *917 + repository: *918 sender: *4 required: - action @@ -216128,9 +216314,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 pull_request: title: Simple Pull Request type: object @@ -218325,7 +218511,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *917 + repository: *918 review: description: The review that was affected. type: object @@ -218587,9 +218773,9 @@ x-webhooks: type: string required: - from - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 pull_request: title: Simple Pull Request type: object @@ -220643,8 +220829,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *917 - review: &979 + repository: *918 + review: &980 description: The review that was affected. type: object properties: @@ -220885,12 +221071,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 number: description: The pull request number. type: integer - organization: *916 + organization: *917 pull_request: title: Pull Request type: object @@ -223195,7 +223381,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 requested_reviewer: title: User type: object @@ -223279,12 +223465,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 number: description: The pull request number. type: integer - organization: *916 + organization: *917 pull_request: title: Pull Request type: object @@ -225596,7 +225782,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 requested_team: title: Team description: Groups of organization members that gives permissions @@ -225811,12 +225997,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 number: description: The pull request number. type: integer - organization: *916 + organization: *917 pull_request: title: Pull Request type: object @@ -228123,7 +228309,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 requested_reviewer: title: User type: object @@ -228208,12 +228394,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *914 - installation: *915 + enterprise: *915 + installation: *916 number: description: The pull request number. type: integer - organization: *916 + organization: *917 pull_request: title: Pull Request type: object @@ -230511,7 +230697,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 requested_team: title: Team description: Groups of organization members that gives permissions @@ -230715,9 +230901,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 pull_request: title: Simple Pull Request type: object @@ -232914,8 +233100,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *917 - review: *979 + repository: *918 + review: *980 sender: *4 required: - action @@ -233010,9 +233196,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 pull_request: title: Simple Pull Request type: object @@ -235104,7 +235290,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *917 + repository: *918 sender: *4 thread: type: object @@ -235499,9 +235685,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 pull_request: title: Simple Pull Request type: object @@ -237579,7 +237765,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *917 + repository: *918 sender: *4 thread: type: object @@ -237971,10 +238157,10 @@ x-webhooks: type: string enum: - stacked - enterprise: *914 - installation: *915 - number: *974 - organization: *916 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 pull_request: title: Pull Request type: object @@ -240278,7 +240464,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 sender: *4 required: - action @@ -240379,10 +240565,10 @@ x-webhooks: type: string before: type: string - enterprise: *914 - installation: *915 - number: *974 - organization: *916 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 pull_request: title: Pull Request type: object @@ -242675,7 +242861,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 sender: *4 required: - action @@ -242772,11 +242958,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *980 - enterprise: *914 - installation: *915 - number: *974 - organization: *916 + assignee: *981 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 pull_request: title: Pull Request type: object @@ -245081,7 +245267,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 sender: *4 required: - action @@ -245175,11 +245361,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *914 - installation: *915 - label: *937 - number: *974 - organization: *916 + enterprise: *915 + installation: *916 + label: *938 + number: *975 + organization: *917 pull_request: title: Pull Request type: object @@ -247474,7 +247660,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 sender: *4 required: - action @@ -247570,10 +247756,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *914 - installation: *915 - number: *974 - organization: *916 + enterprise: *915 + installation: *916 + number: *975 + organization: *917 pull_request: title: Pull Request type: object @@ -249860,7 +250046,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *917 + repository: *918 sender: *4 required: - action @@ -250075,7 +250261,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *914 + enterprise: *915 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -250167,8 +250353,8 @@ x-webhooks: - url - author - committer - installation: *915 - organization: *916 + installation: *916 + organization: *917 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -250754,9 +250940,9 @@ x-webhooks: type: string enum: - published - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 registry_package: type: object properties: @@ -251202,7 +251388,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *961 + items: *962 summary: type: string tag_name: @@ -251256,7 +251442,7 @@ x-webhooks: - owner - package_version - registry - repository: *917 + repository: *918 sender: *4 required: - action @@ -251334,9 +251520,9 @@ x-webhooks: type: string enum: - updated - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 registry_package: type: object properties: @@ -251644,7 +251830,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *961 + items: *962 summary: type: string tag_name: @@ -251693,7 +251879,7 @@ x-webhooks: - owner - package_version - registry - repository: *917 + repository: *918 sender: *4 required: - action @@ -251770,10 +251956,10 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 - release: &981 + enterprise: *915 + installation: *916 + organization: *917 + release: &982 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -252091,7 +252277,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *917 + repository: *918 sender: *4 required: - action @@ -252168,11 +252354,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - organization: *916 - release: *981 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + release: *982 + repository: *918 sender: *4 required: - action @@ -252289,11 +252475,11 @@ x-webhooks: type: boolean required: - to - enterprise: *914 - installation: *915 - organization: *916 - release: *981 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + release: *982 + repository: *918 sender: *4 required: - action @@ -252371,9 +252557,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -252695,7 +252881,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *917 + repository: *918 sender: *4 required: - action @@ -252771,10 +252957,10 @@ x-webhooks: type: string enum: - published - enterprise: *914 - installation: *915 - organization: *916 - release: &982 + enterprise: *915 + installation: *916 + organization: *917 + release: &983 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -253093,7 +253279,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *917 + repository: *918 sender: *4 required: - action @@ -253169,11 +253355,11 @@ x-webhooks: type: string enum: - released - enterprise: *914 - installation: *915 - organization: *916 - release: *981 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + release: *982 + repository: *918 sender: *4 required: - action @@ -253249,11 +253435,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *914 - installation: *915 - organization: *916 - release: *982 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + release: *983 + repository: *918 sender: *4 required: - action @@ -253329,11 +253515,11 @@ x-webhooks: type: string enum: - published - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - repository_advisory: *811 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + repository_advisory: *812 sender: *4 required: - action @@ -253409,11 +253595,11 @@ x-webhooks: type: string enum: - reported - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - repository_advisory: *811 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + repository_advisory: *812 sender: *4 required: - action @@ -253489,10 +253675,10 @@ x-webhooks: type: string enum: - archived - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -253569,10 +253755,10 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -253650,10 +253836,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -253737,10 +253923,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -253852,10 +254038,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -253927,10 +254113,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 status: type: string @@ -254011,10 +254197,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -254091,10 +254277,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -254188,10 +254374,10 @@ x-webhooks: - name required: - repository - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -254271,10 +254457,10 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 repository_ruleset: *198 sender: *4 required: @@ -254353,10 +254539,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 repository_ruleset: *198 sender: *4 required: @@ -254435,10 +254621,10 @@ x-webhooks: type: string enum: - edited - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 repository_ruleset: *198 changes: type: object @@ -254500,16 +254686,16 @@ x-webhooks: properties: added: type: array - items: *778 + items: *779 deleted: type: array - items: *778 + items: *779 updated: type: array items: type: object properties: - rule: *778 + rule: *779 changes: type: object properties: @@ -254743,10 +254929,10 @@ x-webhooks: - from required: - owner - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -254824,10 +255010,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -254905,7 +255091,7 @@ x-webhooks: type: string enum: - create - alert: &983 + alert: &984 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -255027,10 +255213,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -255236,10 +255422,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -255317,11 +255503,11 @@ x-webhooks: type: string enum: - reopen - alert: *983 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + alert: *984 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -255520,10 +255706,10 @@ x-webhooks: enum: - fixed - open - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -255601,7 +255787,7 @@ x-webhooks: type: string enum: - assigned - alert: &985 + alert: &986 type: object properties: number: *134 @@ -255743,12 +255929,12 @@ x-webhooks: properties: *20 required: *21 nullable: true - metadata: *984 + metadata: *985 assignee: *4 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -255826,11 +256012,11 @@ x-webhooks: type: string enum: - created - alert: *985 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + alert: *986 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -255911,11 +256097,11 @@ x-webhooks: type: string enum: - created - alert: *985 - installation: *915 - location: *986 - organization: *916 - repository: *917 + alert: *986 + installation: *916 + location: *987 + organization: *917 + repository: *918 sender: *4 required: - location @@ -256153,11 +256339,11 @@ x-webhooks: type: string enum: - metadata_created - alert: *985 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + alert: *986 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -256234,11 +256420,11 @@ x-webhooks: type: string enum: - metadata_removed - alert: *985 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + alert: *986 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -256315,11 +256501,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *985 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + alert: *986 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -256397,11 +256583,11 @@ x-webhooks: type: string enum: - reopened - alert: *985 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + alert: *986 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -256479,11 +256665,11 @@ x-webhooks: type: string enum: - resolved - alert: *985 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + alert: *986 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -256561,12 +256747,12 @@ x-webhooks: type: string enum: - unassigned - alert: *985 + alert: *986 assignee: *4 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -256644,11 +256830,11 @@ x-webhooks: type: string enum: - validated - alert: *985 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + alert: *986 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -256774,10 +256960,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *917 - enterprise: *914 - installation: *915 - organization: *916 + repository: *918 + enterprise: *915 + installation: *916 + organization: *917 sender: *4 required: - action @@ -256855,11 +257041,11 @@ x-webhooks: type: string enum: - published - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - security_advisory: &987 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + security_advisory: &988 description: The details of the security advisory, including summary, description, and severity. type: object @@ -257060,11 +257246,11 @@ x-webhooks: type: string enum: - updated - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 - security_advisory: *987 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 + security_advisory: *988 sender: *4 required: - action @@ -257137,10 +257323,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -257332,11 +257518,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *451 - enterprise: *914 - installation: *915 - organization: *916 - repository: *500 + security_and_analysis: *452 + enterprise: *915 + installation: *916 + organization: *917 + repository: *501 sender: *4 required: - changes @@ -257414,12 +257600,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - sponsorship: &988 + sponsorship: &989 type: object properties: created_at: @@ -257720,12 +257906,12 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - sponsorship: *988 + sponsorship: *989 required: - action - sponsorship @@ -257813,12 +257999,12 @@ x-webhooks: type: string required: - from - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - sponsorship: *988 + sponsorship: *989 required: - action - changes @@ -257895,17 +258081,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &989 + effective_date: &990 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: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - sponsorship: *988 + sponsorship: *989 required: - action - sponsorship @@ -257979,7 +258165,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &990 + changes: &991 type: object properties: tier: @@ -258023,13 +258209,13 @@ x-webhooks: - from required: - tier - effective_date: *989 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + effective_date: *990 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - sponsorship: *988 + sponsorship: *989 required: - action - changes @@ -258106,13 +258292,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *990 - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + changes: *991 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - sponsorship: *988 + sponsorship: *989 required: - action - changes @@ -258186,10 +258372,10 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -258272,10 +258458,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -258695,15 +258881,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *914 + enterprise: *915 id: description: The unique identifier of the status. type: integer - installation: *915 + installation: *916 name: type: string - organization: *916 - repository: *917 + organization: *917 + repository: *918 sender: *4 sha: description: The Commit SHA. @@ -258812,15 +258998,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 + parent_issue: *232 parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 - installation: *915 - organization: *916 - repository: *917 + sub_issue: *232 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -258903,15 +259089,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 + parent_issue: *232 parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 - installation: *915 - organization: *916 - repository: *917 + sub_issue: *232 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -258994,15 +259180,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 + sub_issue: *232 sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 - installation: *915 - organization: *916 - repository: *917 + parent_issue: *232 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -259085,15 +259271,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *231 + sub_issue: *232 sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *231 - installation: *915 - organization: *916 - repository: *917 + parent_issue: *232 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -259169,12 +259355,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - team: &991 + team: &992 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -259397,9 +259583,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 repository: title: Repository description: A git repository @@ -259857,7 +260043,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *991 + team: *992 required: - action - team @@ -259933,9 +260119,9 @@ x-webhooks: type: string enum: - created - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 repository: title: Repository description: A git repository @@ -260393,7 +260579,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *991 + team: *992 required: - action - team @@ -260470,9 +260656,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 repository: title: Repository description: A git repository @@ -260930,7 +261116,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *991 + team: *992 required: - action - team @@ -261074,9 +261260,9 @@ x-webhooks: - from required: - permissions - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 repository: title: Repository description: A git repository @@ -261534,7 +261720,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *991 + team: *992 required: - action - changes @@ -261612,9 +261798,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *914 - installation: *915 - organization: *916 + enterprise: *915 + installation: *916 + organization: *917 repository: title: Repository description: A git repository @@ -262072,7 +262258,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *991 + team: *992 required: - action - team @@ -262148,10 +262334,10 @@ x-webhooks: type: string enum: - started - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 required: - action @@ -262224,16 +262410,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *914 + enterprise: *915 inputs: type: object nullable: true additionalProperties: true - installation: *915 - organization: *916 + installation: *916 + organization: *917 ref: type: string - repository: *917 + repository: *918 sender: *4 workflow: type: string @@ -262315,10 +262501,10 @@ x-webhooks: type: string enum: - completed - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 workflow_job: allOf: @@ -262555,7 +262741,7 @@ x-webhooks: type: string required: - conclusion - deployment: *641 + deployment: *642 required: - action - repository @@ -262634,10 +262820,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 workflow_job: allOf: @@ -262897,7 +263083,7 @@ x-webhooks: required: - status - steps - deployment: *641 + deployment: *642 required: - action - repository @@ -262976,10 +263162,10 @@ x-webhooks: type: string enum: - queued - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 workflow_job: type: object @@ -263114,7 +263300,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *641 + deployment: *642 required: - action - repository @@ -263193,10 +263379,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 workflow_job: type: object @@ -263332,7 +263518,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *641 + deployment: *642 required: - action - repository @@ -263412,12 +263598,12 @@ x-webhooks: type: string enum: - completed - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - workflow: *933 + workflow: *934 workflow_run: title: Workflow Run type: object @@ -264416,12 +264602,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - workflow: *933 + workflow: *934 workflow_run: title: Workflow Run type: object @@ -265405,12 +265591,12 @@ x-webhooks: type: string enum: - requested - enterprise: *914 - installation: *915 - organization: *916 - repository: *917 + enterprise: *915 + installation: *916 + organization: *917 + repository: *918 sender: *4 - workflow: *933 + workflow: *934 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/ghec.2022-11-28.json b/descriptions/ghec/ghec.2022-11-28.json index 8851fbd8f..8c15fa951 100644 --- a/descriptions/ghec/ghec.2022-11-28.json +++ b/descriptions/ghec/ghec.2022-11-28.json @@ -20296,6 +20296,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", @@ -144715,6 +144943,34 @@ "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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": true + } + } + }, "actor": { "title": "Actor", "description": "Actor", @@ -330997,6 +331253,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/ghec/ghec.2022-11-28.yaml b/descriptions/ghec/ghec.2022-11-28.yaml index 018b1c6d8..187ce0d96 100644 --- a/descriptions/ghec/ghec.2022-11-28.yaml +++ b/descriptions/ghec/ghec.2022-11-28.yaml @@ -14804,6 +14804,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 @@ -105837,6 +105991,32 @@ 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. + example: 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. + example: 00000000-0000-0000-0000-000000000000 + username: + type: string + description: The GitHub username of the user associated with the Visual + Studio subscription assignment. + example: gh-user + nullable: true + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription assignment was + manually matched to a user. + example: true actor: title: Actor description: Actor @@ -247478,6 +247658,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/ghec/ghec.2026-03-10.json b/descriptions/ghec/ghec.2026-03-10.json index fb63df8c9..2264ec402 100644 --- a/descriptions/ghec/ghec.2026-03-10.json +++ b/descriptions/ghec/ghec.2026-03-10.json @@ -20296,6 +20296,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", @@ -144505,6 +144733,34 @@ "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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": true + } + } + }, "actor": { "title": "Actor", "description": "Actor", @@ -330220,6 +330476,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/ghec/ghec.2026-03-10.yaml b/descriptions/ghec/ghec.2026-03-10.yaml index 08815e255..2e9f7690d 100644 --- a/descriptions/ghec/ghec.2026-03-10.yaml +++ b/descriptions/ghec/ghec.2026-03-10.yaml @@ -14804,6 +14804,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 @@ -105662,6 +105816,32 @@ 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. + example: 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. + example: 00000000-0000-0000-0000-000000000000 + username: + type: string + description: The GitHub username of the user associated with the Visual + Studio subscription assignment. + example: gh-user + nullable: true + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription assignment was + manually matched to a user. + example: true actor: title: Actor description: Actor @@ -246779,6 +246959,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/ghec/ghec.json b/descriptions/ghec/ghec.json index 7a4609b23..c084aa37d 100644 --- a/descriptions/ghec/ghec.json +++ b/descriptions/ghec/ghec.json @@ -20310,6 +20310,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", @@ -145352,6 +145580,34 @@ "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.", + "example": "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.", + "example": "00000000-0000-0000-0000-000000000000" + }, + "username": { + "type": "string", + "description": "The GitHub username of the user associated with the Visual Studio subscription assignment.", + "example": "gh-user", + "nullable": true + }, + "manual_match": { + "type": "boolean", + "description": "Indicates if the Visual Studio subscription assignment was manually matched to a user.", + "example": true + } + } + }, "actor": { "title": "Actor", "description": "Actor", @@ -333165,6 +333421,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/ghec/ghec.yaml b/descriptions/ghec/ghec.yaml index cde23f0b0..e8a9ae90c 100644 --- a/descriptions/ghec/ghec.yaml +++ b/descriptions/ghec/ghec.yaml @@ -14812,6 +14812,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 @@ -106249,6 +106403,32 @@ 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. + example: 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. + example: 00000000-0000-0000-0000-000000000000 + username: + type: string + description: The GitHub username of the user associated with the Visual + Studio subscription assignment. + example: gh-user + nullable: true + manual_match: + type: boolean + description: Indicates if the Visual Studio subscription assignment was + manually matched to a user. + example: true actor: title: Actor description: Actor @@ -248897,6 +249077,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'