diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 3dd1b8d4c..c116763e1 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -174300,6 +174300,496 @@ } } }, + "/orgs/{org}/dismissal-requests/dependabot": { + "get": { + "summary": "List dismissal requests for Dependabot alerts for an organization", + "description": "Lists dismissal requests for Dependabot alerts in an organization.\n\nDelegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager,\nor have the appropriate permission to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/list-dismissal-requests-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "dependabot", + "subcategory": "alert-dismissal-requests" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repository_name", + "description": "The name of the repository to filter on.", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "reviewer", + "description": "Filter bypass requests by the handle of the GitHub user who reviewed the bypass request.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "requester", + "description": "Filter bypass requests by the handle of the GitHub user who requested the bypass.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "time_period", + "description": "The time period to filter by.\n\nFor example, `day` will filter for rule suites that occurred in the past 24 hours, and `week` will filter for rule suites that occurred in the past 7 days (168 hours).", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "hour", + "day", + "week", + "month" + ], + "default": "day" + } + }, + { + "name": "request_status", + "description": "The status of the dismissal request to filter on. When specified, only requests with this status will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "completed", + "cancelled", + "approved", + "expired", + "denied", + "open", + "all" + ], + "default": "all" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "A list of alert dismissal requests.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Dependabot alert dismissal request", + "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The unique identifier of the dismissal request." + }, + "number": { + "type": "integer", + "format": "int64", + "description": "The number uniquely identifying the dismissal request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the repository the dismissal request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the dismissal request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the dismissal request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who requested the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the dismissal request." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the dismissal request metadata.", + "items": { + "type": "object", + "properties": { + "reason": { + "type": "string", + "description": "The reason for the dismissal request." + }, + "alert_number": { + "type": "string", + "description": "The alert number." + }, + "alert_title": { + "type": "string", + "description": "The title of the alert." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the dismissal request.", + "examples": [ + "123" + ] + }, + "status": { + "type": "string", + "description": "The status of the dismissal request.", + "enum": [ + "pending", + "denied", + "approved", + "expired" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the dismissal request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the dismissal request.", + "items": { + "title": "Dismissal request response", + "description": "A response made by a requester to dismiss the request.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the response to the dismissal request." + }, + "reviewer": { + "type": "object", + "description": "The user who reviewed the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who reviewed the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who reviewed the dismissal request." + } + } + }, + "message": { + "type": [ + "string", + "null" + ], + "description": "The response comment of the reviewer." + }, + "status": { + "type": "string", + "description": "The response status to the dismissal request until dismissed.", + "enum": [ + "approved", + "denied", + "dismissed" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the response to the dismissal request was created." + } + } + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the dismissal request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/security/dependabot/1" + ] + } + } + } + }, + "examples": { + "default": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "no_bandwidth", + "alert_number": "1", + "alert_title": "lodash - GHSA-1234-abcd-5678" + } + ], + "resource_identifier": "1", + "status": "denied", + "requester_comment": "No bandwidth to fix this right now", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", + "html_url": "https://github.com/octo-org/smile/security/dependabot/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "tolerable_risk", + "alert_number": "2", + "alert_title": "axios - GHSA-5678-efgh-9012" + } + ], + "resource_identifier": "2", + "status": "approved", + "requester_comment": "Risk is acceptable for this internal tool", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 43, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "approved", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", + "html_url": "https://github.com/octo-org/smile/security/dependabot/2" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + } + } + }, "/orgs/{org}/dismissal-requests/secret-scanning": { "get": { "summary": "List alert dismissal requests for secret scanning for an org", diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 2c2746371..fdad85cf9 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -913,7 +913,7 @@ paths: - subscriptions_url - type - url - type: &421 + type: &423 type: string description: The type of credit the user is receiving. enum: @@ -1079,7 +1079,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: - - &728 + - &729 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1664,7 +1664,7 @@ paths: schema: type: integer default: 30 - - &334 + - &336 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 @@ -1680,7 +1680,7 @@ paths: application/json: schema: type: array - items: &335 + items: &337 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1776,7 +1776,7 @@ paths: - installation_id - repository_id examples: - default: &336 + default: &338 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1808,7 +1808,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &738 + schema: &739 title: Scim Error description: Scim Error type: object @@ -1911,7 +1911,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &339 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2046,7 +2046,7 @@ paths: - request - response examples: - default: &338 + default: &340 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -9260,7 +9260,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &739 + '401': &740 description: Authorization failure '404': *6 x-github: @@ -13525,7 +13525,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &519 + instances_url: &521 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -13561,7 +13561,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &520 + dismissed_reason: &522 type: - string - 'null' @@ -13572,14 +13572,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &521 + dismissed_comment: &523 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &522 + rule: &524 type: object properties: id: @@ -13640,7 +13640,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &523 + tool: &525 type: object properties: name: *109 @@ -13651,15 +13651,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *110 - most_recent_instance: &524 + most_recent_instance: &526 type: object properties: - ref: &517 + ref: &519 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &534 + analysis_key: &536 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -13670,7 +13670,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &535 + category: &537 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16075,7 +16075,7 @@ paths: parent: anyOf: - type: 'null' - - &369 + - &371 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -17468,7 +17468,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 - - &570 + - &572 name: has in: query description: |- @@ -17585,7 +17585,7 @@ paths: - direct - transitive - - security_advisory: &571 + security_advisory: &573 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17821,7 +17821,7 @@ paths: dismissal. maxLength: 280 fixed_at: *133 - auto_dismissed_at: &572 + auto_dismissed_at: &574 type: - string - 'null' @@ -17829,7 +17829,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &573 + dismissal_request: &575 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -19005,7 +19005,7 @@ paths: - name - created_on examples: - default: &425 + default: &427 value: total_count: 2 network_configurations: @@ -19228,7 +19228,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *39 - - &426 + - &428 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -19240,7 +19240,7 @@ paths: description: Response content: application/json: - schema: &427 + schema: &429 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -19279,7 +19279,7 @@ paths: - subnet_id - region examples: - default: &428 + default: &430 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -20125,7 +20125,7 @@ paths: required: true content: application/json: - schema: &399 + schema: &401 title: Custom Property Set Payload description: Custom property set payload type: object @@ -21319,7 +21319,7 @@ paths: conditions: anyOf: - *155 - - &403 + - &405 title: Organization ruleset conditions type: object description: |- @@ -21369,7 +21369,7 @@ paths: - object rules: type: array - items: &694 + items: &695 title: Repository Rule type: object description: A repository rule. @@ -21378,7 +21378,7 @@ paths: - *164 - *165 - *166 - - &692 + - &693 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -21706,7 +21706,7 @@ paths: type: string format: date-time examples: - default: &406 + default: &408 value: - version_id: 3 actor: @@ -21759,7 +21759,7 @@ paths: description: Response content: application/json: - schema: &407 + schema: &409 allOf: - *188 - type: object @@ -21814,7 +21814,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &408 + - &410 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -21825,7 +21825,7 @@ paths: enum: - open - resolved - - &409 + - &411 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -21835,7 +21835,7 @@ paths: required: false schema: type: string - - &410 + - &412 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -21844,7 +21844,7 @@ paths: required: false schema: type: string - - &411 + - &413 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -21863,7 +21863,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &412 + - &414 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. @@ -21879,7 +21879,7 @@ paths: - *17 - *106 - *107 - - &413 + - &415 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -21888,7 +21888,7 @@ paths: required: false schema: type: string - - &414 + - &416 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -21897,7 +21897,7 @@ paths: schema: type: boolean default: false - - &415 + - &417 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -21906,7 +21906,7 @@ paths: schema: type: boolean default: false - - &416 + - &418 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -21922,7 +21922,7 @@ paths: application/json: schema: type: array - items: &417 + items: &419 type: object properties: number: *123 @@ -21938,14 +21938,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &706 + state: &707 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: &707 + resolution: &708 type: - string - 'null' @@ -22052,14 +22052,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &708 + - &709 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &710 + - &711 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -22116,7 +22116,7 @@ paths: - blob_url - commit_sha - commit_url - - &711 + - &712 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. @@ -22177,7 +22177,7 @@ paths: - page_url - commit_sha - commit_url - - &712 + - &713 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -22192,7 +22192,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &713 + - &714 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -22207,7 +22207,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &714 + - &715 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -22222,7 +22222,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &715 + - &716 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22237,7 +22237,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &716 + - &717 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22252,7 +22252,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &717 + - &718 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22267,7 +22267,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &718 + - &719 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. @@ -22282,7 +22282,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &719 + - &720 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. @@ -22297,7 +22297,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &720 + - &721 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. @@ -22312,7 +22312,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &721 + - &722 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. @@ -22327,7 +22327,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &722 + - &723 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 @@ -22352,7 +22352,7 @@ paths: - type: 'null' - *4 examples: - default: &418 + default: &420 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -22561,7 +22561,7 @@ paths: description: Response content: application/json: - schema: &419 + schema: &421 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -22648,7 +22648,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *190 examples: - default: &420 + default: &422 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -22784,7 +22784,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &422 + - &424 name: advanced_security_product in: query description: | @@ -22804,7 +22804,7 @@ paths: description: Success content: application/json: - schema: &423 + schema: &425 type: object properties: total_advanced_security_committers: @@ -22867,7 +22867,7 @@ paths: required: - repositories examples: - default: &424 + default: &426 value: total_advanced_security_committers: 2 total_count: 2 @@ -25669,7 +25669,7 @@ paths: properties: action: type: string - discussion: &846 + discussion: &847 title: Discussion description: A Discussion in a repository. type: object @@ -26172,7 +26172,7 @@ paths: milestone: anyOf: - type: 'null' - - &390 + - &392 title: Milestone description: A collection of related issues and pull requests. @@ -26344,7 +26344,7 @@ paths: timeline_url: type: string format: uri - type: &356 + type: &358 title: Issue Type description: The type of issue. type: @@ -26455,7 +26455,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &766 + sub_issues_summary: &767 title: Sub-issues Summary type: object properties: @@ -26476,7 +26476,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &767 + issue_dependencies_summary: &768 title: Issue Dependencies Summary type: object properties: @@ -26495,7 +26495,7 @@ paths: - total_blocking issue_field_values: type: array - items: &768 + items: &769 title: Issue Field Value description: A value assigned to an issue field type: object @@ -26608,7 +26608,7 @@ paths: action: type: string issue: *212 - comment: &631 + comment: &632 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -27331,7 +27331,7 @@ paths: type: string release: allOf: - - &685 + - &686 title: Release description: A release. type: object @@ -27413,7 +27413,7 @@ paths: author: *4 assets: type: array - items: &686 + items: &687 title: Release Asset description: Data related to a release. type: object @@ -28004,7 +28004,7 @@ paths: url: type: string format: uri - user: &778 + user: &779 title: Public User description: Public User type: object @@ -29899,7 +29899,7 @@ paths: - closed - all default: open - - &359 + - &361 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -29950,7 +29950,7 @@ paths: type: array items: *212 examples: - default: &360 + default: &362 value: - id: 1 node_id: MDU6SXNzdWUx @@ -31361,14 +31361,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: - - &446 + - &448 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &447 + - &449 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -31430,7 +31430,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &452 + '301': &454 description: Moved permanently content: application/json: @@ -31452,7 +31452,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &659 + - &660 name: all description: If `true`, show notifications marked as read. in: query @@ -31460,7 +31460,7 @@ paths: schema: type: boolean default: false - - &660 + - &661 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -31470,7 +31470,7 @@ paths: type: boolean default: false - *218 - - &661 + - &662 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -31841,7 +31841,7 @@ paths: type: boolean examples: - false - security_and_analysis: &400 + security_and_analysis: &402 type: - object - 'null' @@ -32014,7 +32014,7 @@ paths: - url - subscription_url examples: - default: &662 + default: &663 value: - id: '1' repository: @@ -33143,7 +33143,7 @@ paths: type: array items: *149 examples: - default: &668 + default: &669 value: - property_name: environment value: production @@ -33193,7 +33193,7 @@ paths: required: - properties examples: - default: &669 + default: &670 value: properties: - property_name: environment @@ -34084,7 +34084,7 @@ paths: type: integer repository_cache_usages: type: array - items: &459 + items: &461 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -36207,7 +36207,7 @@ paths: type: array items: *272 examples: - default: &781 + default: &782 value: total_count: 1 repositories: @@ -37251,7 +37251,7 @@ paths: description: Response content: application/json: - schema: &479 + schema: &481 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -37286,7 +37286,7 @@ paths: - key_id - key examples: - default: &480 + default: &482 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -37699,7 +37699,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *85 - - &464 + - &466 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)." @@ -38922,12 +38922,12 @@ paths: required: - subject_digests examples: - default: &808 + default: &809 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &809 + withPredicateType: &810 value: subject_digests: - sha256:abc123 @@ -38986,7 +38986,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &810 + default: &811 value: attestations_subject_digests: - sha256:abc: @@ -39335,7 +39335,7 @@ paths: initiator: type: string examples: - default: &493 + default: &495 value: attestations: - bundle: @@ -40257,7 +40257,7 @@ paths: be returned. in: query required: false - schema: &518 + schema: &520 type: string description: Severity of a code scanning alert. enum: @@ -41273,7 +41273,7 @@ paths: type: integer codespaces: type: array - items: &361 + items: &363 type: object title: Codespace description: A codespace. @@ -41308,7 +41308,7 @@ paths: machine: anyOf: - type: 'null' - - &547 + - &549 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -41595,7 +41595,7 @@ paths: - pulls_url - recent_folders examples: - default: &362 + default: &364 value: total_count: 3 codespaces: @@ -42260,7 +42260,7 @@ paths: - updated_at - visibility examples: - default: &548 + default: &550 value: total_count: 2 secrets: @@ -42298,7 +42298,7 @@ paths: description: Response content: application/json: - schema: &549 + schema: &551 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -42333,7 +42333,7 @@ paths: - key_id - key examples: - default: &550 + default: &552 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -42365,7 +42365,7 @@ paths: application/json: schema: *316 examples: - default: &552 + default: &554 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -44094,7 +44094,7 @@ paths: description: Response content: application/json: - schema: &576 + schema: &578 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -44113,7 +44113,7 @@ paths: - key_id - key examples: - default: &577 + default: &579 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -44443,7 +44443,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *85 - - &585 + - &587 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -44451,7 +44451,7 @@ paths: required: false schema: type: string - - &586 + - &588 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -44459,7 +44459,7 @@ paths: required: false schema: type: string - - &587 + - &589 name: time_period description: |- The time period to filter by. @@ -44475,7 +44475,7 @@ paths: - week - month default: month - - &588 + - &590 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -44500,7 +44500,7 @@ paths: application/json: schema: type: array - items: &589 + items: &591 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -44610,7 +44610,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: &591 + items: &331 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -44663,7 +44663,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &590 + default: &592 value: - id: 21 number: 42 @@ -44729,24 +44729,25 @@ paths: '403': *27 '422': *15 '500': *38 - "/orgs/{org}/dismissal-requests/secret-scanning": + "/orgs/{org}/dismissal-requests/dependabot": get: - summary: List alert dismissal requests for secret scanning for an org + summary: List dismissal requests for Dependabot alerts for an organization description: |- - Lists requests to dismiss secret scanning alerts in an org. + Lists dismissal requests for Dependabot alerts in an organization. Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, - or have the "Review and manage secret scanning alert dismissal requests" permission to access this endpoint. + or have the appropriate permission to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. tags: - - secret-scanning - operationId: secret-scanning/list-org-dismissal-requests + - dependabot + operationId: dependabot/list-dismissal-requests-for-org externalDocs: description: API method documentation - url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/alert-dismissal-requests#list-alert-dismissal-requests-for-secret-scanning-for-an-org + url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization x-github: githubCloudOnly: true enabledForGitHubApps: true - category: secret-scanning + category: dependabot subcategory: alert-dismissal-requests parameters: - *85 @@ -44754,7 +44755,7 @@ paths: - *101 - *102 - *103 - - &593 + - &332 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -44773,6 +44774,231 @@ paths: default: all - *17 - *19 + responses: + '200': + description: A list of alert dismissal requests. + content: + application/json: + schema: + type: array + items: &593 + title: Dependabot alert dismissal request + description: Alert dismissal request made by a user asking to dismiss + a Dependabot alert. + type: object + properties: + id: + type: integer + format: int64 + description: The unique identifier of the dismissal request. + number: + type: integer + format: int64 + description: The number uniquely identifying the dismissal request + within its repository. + repository: + type: object + description: The repository the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the repository the dismissal request + is for. + name: + type: string + description: The name of the repository the dismissal request + is for. + full_name: + type: string + description: The full name of the repository the dismissal + request is for. + organization: + type: object + description: The organization associated with the repository + the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the dismissal request. + properties: + actor_id: + type: integer + format: int64 + description: The ID of the GitHub user who requested the + dismissal request. + actor_name: + type: string + description: The name of the GitHub user who requested the + dismissal request. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the dismissal request metadata. + items: + type: object + properties: + reason: + type: string + description: The reason for the dismissal request. + alert_number: + type: string + description: The alert number. + alert_title: + type: string + description: The title of the alert. + resource_identifier: + type: string + description: The unique identifier for the request type of the + dismissal request. + examples: + - '123' + status: + type: string + description: The status of the dismissal request. + enum: + - pending + - denied + - approved + - expired + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating + the dismissal request. + expires_at: + type: string + format: date-time + description: The date and time the dismissal request will expire. + created_at: + type: string + format: date-time + description: The date and time the dismissal request was created. + responses: + type: + - array + - 'null' + description: The responses to the dismissal request. + items: *331 + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: + type: string + description: The URL to view the dismissal request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/security/dependabot/1 + examples: + default: &594 + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: no_bandwidth + alert_number: '1' + alert_title: lodash - GHSA-1234-abcd-5678 + resource_identifier: '1' + status: denied + requester_comment: No bandwidth to fix this right now + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: https://github.com/octo-org/smile/security/dependabot/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: tolerable_risk + alert_number: '2' + alert_title: axios - GHSA-5678-efgh-9012 + resource_identifier: '2' + status: approved + requester_comment: Risk is acceptable for this internal tool + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 43 + reviewer: + actor_id: 4 + actor_name: octocat + status: approved + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 + html_url: https://github.com/octo-org/smile/security/dependabot/2 + '404': *6 + '403': *27 + '500': *38 + "/orgs/{org}/dismissal-requests/secret-scanning": + get: + summary: List alert dismissal requests for secret scanning for an org + description: |- + Lists requests to dismiss secret scanning alerts in an org. + + Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, + or have the "Review and manage secret scanning alert dismissal requests" permission to access this endpoint. + tags: + - secret-scanning + operationId: secret-scanning/list-org-dismissal-requests + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/alert-dismissal-requests#list-alert-dismissal-requests-for-secret-scanning-for-an-org + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: secret-scanning + subcategory: alert-dismissal-requests + parameters: + - *85 + - *298 + - *101 + - *102 + - *103 + - *332 + - *17 + - *19 responses: '200': description: A list of the alert dismissal requests. @@ -44780,7 +45006,7 @@ paths: application/json: schema: type: array - items: &594 + items: &595 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -44907,7 +45133,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &595 + default: &596 value: - id: 21 number: 42 @@ -44995,7 +45221,7 @@ paths: application/json: schema: type: array - items: &371 + items: &373 title: Package description: A software package type: object @@ -45066,7 +45292,7 @@ paths: - created_at - updated_at examples: - default: &372 + default: &374 value: - id: 197 name: hello_docker @@ -45253,7 +45479,7 @@ paths: description: Response content: application/json: - schema: &443 + schema: &445 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -45343,7 +45569,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &444 + default: &446 value: group_id: '123' group_name: Octocat admins @@ -45398,7 +45624,7 @@ paths: description: Response content: application/json: - schema: &441 + schema: &443 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -45438,7 +45664,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &442 + default: &444 value: groups: - group_id: '123' @@ -45482,7 +45708,7 @@ paths: application/json: schema: type: array - items: &353 + items: &355 title: Organization Invitation description: Organization Invitation type: object @@ -45536,7 +45762,7 @@ paths: - invitation_teams_url - node_id examples: - default: &354 + default: &356 value: - id: 1 login: monalisa @@ -45603,7 +45829,7 @@ paths: application/json: schema: type: array - items: &401 + items: &403 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -45617,7 +45843,7 @@ paths: - name - description examples: - default: &402 + default: &404 value: - name: add_assignee description: Assign or remove a user @@ -45658,7 +45884,7 @@ paths: application/json: schema: type: array - items: &331 + items: &333 title: Org Hook description: Org Hook type: object @@ -45841,9 +46067,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: &332 + default: &334 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -45888,7 +46114,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *85 - - &333 + - &335 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. @@ -45901,9 +46127,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *332 + default: *334 '404': *6 x-github: githubCloudOnly: false @@ -45925,7 +46151,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *85 - - *333 + - *335 requestBody: required: false content: @@ -45971,7 +46197,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: default: value: @@ -46011,7 +46237,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *85 - - *333 + - *335 responses: '204': description: Response @@ -46037,7 +46263,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *85 - - *333 + - *335 responses: '200': description: Response @@ -46066,7 +46292,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *85 - - *333 + - *335 requestBody: required: false content: @@ -46115,9 +46341,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *85 - - *333 + - *335 - *17 - - *334 + - *336 responses: '200': description: Response @@ -46125,9 +46351,9 @@ paths: application/json: schema: type: array - items: *335 + items: *337 examples: - default: *336 + default: *338 '400': *14 '422': *15 x-github: @@ -46151,16 +46377,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *85 - - *333 + - *335 - *16 responses: '200': description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '400': *14 '422': *15 x-github: @@ -46184,7 +46410,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *85 - - *333 + - *335 - *16 responses: '202': *37 @@ -46211,7 +46437,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *85 - - *333 + - *335 responses: '204': description: Response @@ -46234,7 +46460,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *85 - - &343 + - &345 name: actor_type in: path description: The type of the actor @@ -46247,14 +46473,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &344 + - &346 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &339 + - &341 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`.' @@ -46262,7 +46488,7 @@ paths: required: true schema: type: string - - &340 + - &342 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) @@ -46357,12 +46583,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *85 - - *339 - - *340 + - *341 + - *342 - *19 - *17 - *108 - - &349 + - &351 name: sort description: The property to sort the results by. in: query @@ -46442,14 +46668,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *85 - - *339 - - *340 + - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &341 + schema: &343 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -46465,7 +46691,7 @@ paths: type: integer format: int64 examples: - default: &342 + default: &344 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -46486,23 +46712,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *85 - - &345 + - &347 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *339 - - *340 + - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *341 + schema: *343 examples: - default: *342 + default: *344 x-github: enabledForGitHubApps: true category: orgs @@ -46521,18 +46747,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *85 - - *339 - - *340 - - *343 - - *344 + - *341 + - *342 + - *345 + - *346 responses: '200': description: Response content: application/json: - schema: *341 + schema: *343 examples: - default: *342 + default: *344 x-github: enabledForGitHubApps: true category: orgs @@ -46550,9 +46776,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *85 - - *339 - - *340 - - &346 + - *341 + - *342 + - &348 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -46565,7 +46791,7 @@ paths: description: Response content: application/json: - schema: &347 + schema: &349 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -46581,7 +46807,7 @@ paths: type: integer format: int64 examples: - default: &348 + default: &350 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -46618,18 +46844,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *85 - - *345 - - *339 - - *340 - - *346 + - *347 + - *341 + - *342 + - *348 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 x-github: enabledForGitHubApps: true category: orgs @@ -46647,19 +46873,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *85 - - *343 - - *344 - - *339 - - *340 + - *345 - *346 + - *341 + - *342 + - *348 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 x-github: enabledForGitHubApps: true category: orgs @@ -46677,13 +46903,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *85 - - *345 - - *339 - - *340 + - *347 + - *341 + - *342 - *19 - *17 - *108 - - *349 + - *351 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -46767,7 +46993,7 @@ paths: application/json: schema: *20 examples: - default: &626 + default: &627 value: id: 1 account: @@ -46933,12 +47159,12 @@ paths: application/json: schema: anyOf: - - &351 + - &353 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &350 + limit: &352 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -46966,7 +47192,7 @@ paths: properties: {} additionalProperties: false examples: - default: &352 + default: &354 value: limit: collaborators_only origin: organization @@ -46995,13 +47221,13 @@ paths: required: true content: application/json: - schema: &627 + schema: &628 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *350 + limit: *352 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -47026,9 +47252,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '422': *15 x-github: githubCloudOnly: false @@ -47106,9 +47332,9 @@ paths: application/json: schema: type: array - items: *353 + items: *355 examples: - default: *354 + default: *356 headers: Link: *45 '404': *6 @@ -47186,7 +47412,7 @@ paths: description: Response content: application/json: - schema: *353 + schema: *355 examples: default: value: @@ -47243,7 +47469,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *85 - - &355 + - &357 name: invitation_id description: The unique identifier of the invitation. in: path @@ -47277,7 +47503,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *85 - - *355 + - *357 - *17 - *19 responses: @@ -47289,7 +47515,7 @@ paths: type: array items: *301 examples: - default: &370 + default: &372 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -47332,7 +47558,7 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: default: value: @@ -47420,9 +47646,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *358 examples: - default: &357 + default: &359 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -47455,7 +47681,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *85 - - &358 + - &360 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -47511,9 +47737,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *358 examples: - default: *357 + default: *359 '404': *6 '422': *7 x-github: @@ -47538,7 +47764,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *85 - - *358 + - *360 responses: '204': description: Response @@ -47601,7 +47827,7 @@ paths: - closed - all default: open - - *359 + - *361 - name: type description: Can be the name of an issue type. in: query @@ -47632,7 +47858,7 @@ paths: type: array items: *212 examples: - default: *360 + default: *362 headers: Link: *45 '404': *6 @@ -47791,9 +48017,9 @@ paths: type: integer codespaces: type: array - items: *361 + items: *363 examples: - default: *362 + default: *364 '304': *35 '500': *38 '401': *23 @@ -47820,7 +48046,7 @@ paths: parameters: - *85 - *136 - - &363 + - &365 name: codespace_name in: path required: true @@ -47855,15 +48081,15 @@ paths: parameters: - *85 - *136 - - *363 + - *365 responses: '200': description: Response content: application/json: - schema: *361 + schema: *363 examples: - default: &546 + default: &548 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -48119,7 +48345,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &366 title: Org Membership description: Org Membership type: object @@ -48188,7 +48414,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &365 + response-if-user-has-an-active-admin-membership-with-organization: &367 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -48285,9 +48511,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *366 examples: - response-if-user-already-had-membership-with-organization: *365 + response-if-user-already-had-membership-with-organization: *367 '422': *15 '403': *27 x-github: @@ -48359,7 +48585,7 @@ paths: application/json: schema: type: array - items: &366 + items: &368 title: Migration description: A migration. type: object @@ -48697,7 +48923,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *368 examples: default: value: @@ -48876,7 +49102,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *85 - - &367 + - &369 name: migration_id description: The unique identifier of the migration. in: path @@ -48904,7 +49130,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *366 + schema: *368 examples: default: value: @@ -49074,7 +49300,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *85 - - *367 + - *369 responses: '302': description: Response @@ -49096,7 +49322,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *85 - - *367 + - *369 responses: '204': description: Response @@ -49120,8 +49346,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *85 - - *367 - - &793 + - *369 + - &794 name: repo_name description: repo_name parameter in: path @@ -49149,7 +49375,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *85 - - *367 + - *369 - *17 - *19 responses: @@ -49161,7 +49387,7 @@ paths: type: array items: *272 examples: - default: &377 + default: &379 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -49370,7 +49596,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &368 + items: &370 title: Organization Role description: Organization roles type: object @@ -49579,7 +49805,7 @@ paths: description: Response content: application/json: - schema: *368 + schema: *370 examples: default: value: @@ -49809,7 +50035,7 @@ paths: description: Response content: application/json: - schema: *368 + schema: *370 examples: default: value: @@ -49906,7 +50132,7 @@ paths: description: Response content: application/json: - schema: *368 + schema: *370 examples: default: value: @@ -50065,7 +50291,7 @@ paths: parent: anyOf: - type: 'null' - - *369 + - *371 type: description: The ownership type of the team type: string @@ -50098,7 +50324,7 @@ paths: - type - parent examples: - default: *370 + default: *372 headers: Link: *45 '404': @@ -50157,7 +50383,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *369 + items: *371 name: type: - string @@ -50467,7 +50693,7 @@ paths: - nuget - container - *85 - - &794 + - &795 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -50503,12 +50729,12 @@ paths: application/json: schema: type: array - items: *371 + items: *373 examples: - default: *372 + default: *374 '403': *27 '401': *23 - '400': &796 + '400': &797 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -50530,7 +50756,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &373 + - &375 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 @@ -50548,7 +50774,7 @@ paths: - docker - nuget - container - - &374 + - &376 name: package_name description: The name of the package. in: path @@ -50561,7 +50787,7 @@ paths: description: Response content: application/json: - schema: *371 + schema: *373 examples: default: value: @@ -50613,8 +50839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *373 - - *374 + - *375 + - *376 - *85 responses: '204': @@ -50647,8 +50873,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *373 - - *374 + - *375 + - *376 - *85 - name: token description: package token @@ -50681,8 +50907,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: - - *373 - - *374 + - *375 + - *376 - *85 - *19 - *17 @@ -50703,7 +50929,7 @@ paths: application/json: schema: type: array - items: &375 + items: &377 title: Package Version description: A version of a software package type: object @@ -50838,10 +51064,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: - - *373 - - *374 + - *375 + - *376 - *85 - - &376 + - &378 name: package_version_id description: Unique identifier of the package version. in: path @@ -50853,7 +51079,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *377 examples: default: value: @@ -50889,10 +51115,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *373 - - *374 - - *85 + - *375 - *376 + - *85 + - *378 responses: '204': description: Response @@ -50924,10 +51150,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *373 - - *374 - - *85 + - *375 - *376 + - *85 + - *378 responses: '204': description: Response @@ -50957,7 +51183,7 @@ paths: - *85 - *17 - *19 - - &378 + - &380 name: sort description: The property by which to sort the results. in: query @@ -50968,7 +51194,7 @@ paths: - created_at default: created_at - *108 - - &379 + - &381 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -50980,7 +51206,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &380 + - &382 name: repository description: The name of the repository to use to filter the results. in: query @@ -50989,7 +51215,7 @@ paths: type: string examples: - Hello-World - - &381 + - &383 name: permission description: The permission to use to filter the results. in: query @@ -50998,7 +51224,7 @@ paths: type: string examples: - issues_read - - &382 + - &384 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) @@ -51008,7 +51234,7 @@ paths: schema: type: string format: date-time - - &383 + - &385 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) @@ -51018,7 +51244,7 @@ paths: schema: type: string format: date-time - - &384 + - &386 name: token_id description: The ID of the token in: query @@ -51337,7 +51563,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -51363,14 +51589,14 @@ paths: - *85 - *17 - *19 - - *378 - - *108 - - *379 - *380 + - *108 - *381 - *382 - *383 - *384 + - *385 + - *386 responses: '500': *38 '422': *15 @@ -51654,7 +51880,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -51696,7 +51922,7 @@ paths: type: integer configurations: type: array - items: &385 + items: &387 title: Organization private registry description: Private registry configuration for an organization type: object @@ -51992,7 +52218,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &386 + org-private-registry-with-selected-visibility: &388 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -52090,9 +52316,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *385 + schema: *387 examples: - default: *386 + default: *388 '404': *6 x-github: githubCloudOnly: false @@ -52260,7 +52486,7 @@ paths: application/json: schema: type: array - items: &387 + items: &389 title: Projects v2 Project description: A projects v2 project type: object @@ -52334,7 +52560,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &879 + - &880 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -52419,7 +52645,7 @@ paths: - deleted_at - deleted_by examples: - default: &388 + default: &390 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -52522,7 +52748,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &389 + - &391 name: project_number description: The project's number. in: path @@ -52535,9 +52761,9 @@ paths: description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: *388 + default: *390 headers: Link: *45 '304': *35 @@ -52560,7 +52786,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *85 - - *389 + - *391 requestBody: required: true description: Details of the draft item to create in the project. @@ -52594,7 +52820,7 @@ paths: description: Response content: application/json: - schema: &394 + schema: &396 title: Projects v2 Item description: An item belonging to a project type: object @@ -52608,7 +52834,7 @@ paths: content: oneOf: - *212 - - &559 + - &561 title: Pull Request Simple description: Pull Request Simple type: object @@ -52728,7 +52954,7 @@ paths: milestone: anyOf: - type: 'null' - - *390 + - *392 active_lock_reason: type: - string @@ -52827,7 +53053,7 @@ paths: _links: type: object properties: - comments: &391 + comments: &393 title: Link description: Hypermedia Link type: object @@ -52836,13 +53062,13 @@ paths: type: string required: - href - commits: *391 - statuses: *391 - html: *391 - issue: *391 - review_comments: *391 - review_comment: *391 - self: *391 + commits: *393 + statuses: *393 + html: *393 + issue: *393 + review_comments: *393 + review_comment: *393 + self: *393 required: - comments - commits @@ -52853,7 +53079,7 @@ paths: - review_comment - self author_association: *213 - auto_merge: &671 + auto_merge: &672 title: Auto merge description: The status of auto merging a pull request. type: @@ -52955,7 +53181,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &393 + content_type: &395 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -52999,7 +53225,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &395 + draft_issue: &397 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -53073,7 +53299,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *389 + - *391 - *85 - *17 - *106 @@ -53085,7 +53311,7 @@ paths: application/json: schema: type: array - items: &392 + items: &394 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -53235,7 +53461,7 @@ paths: - updated_at - project_url examples: - default: &813 + default: &814 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53365,7 +53591,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: - - *389 + - *391 - *85 requestBody: required: true @@ -53412,7 +53638,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &814 + items: &815 type: object properties: name: @@ -53448,7 +53674,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &815 + iteration_configuration: &816 type: object description: The configuration for iteration fields. properties: @@ -53497,7 +53723,7 @@ paths: value: name: Due date data_type: date - single_select_field: &816 + single_select_field: &817 summary: Create a single select field value: name: Priority @@ -53524,7 +53750,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &817 + iteration_field: &818 summary: Create an iteration field value: name: Sprint @@ -53548,9 +53774,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *392 + schema: *394 examples: - text_field: &818 + text_field: &819 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -53559,7 +53785,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: &819 + number_field: &820 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -53568,7 +53794,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: &820 + date_field: &821 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -53577,7 +53803,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: &821 + single_select_field: &822 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53611,7 +53837,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &822 + iteration_field: &823 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -53656,8 +53882,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *389 - - &823 + - *391 + - &824 name: field_id description: The unique identifier of the field. in: path @@ -53670,9 +53896,9 @@ paths: description: Response content: application/json: - schema: *392 + schema: *394 examples: - default: &824 + default: &825 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53728,7 +53954,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: - - *389 + - *391 - *85 - 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) @@ -53761,7 +53987,7 @@ paths: application/json: schema: type: array - items: &396 + items: &398 title: Projects v2 Item description: An item belonging to a project type: object @@ -53778,7 +54004,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *393 + content_type: *395 content: type: - object @@ -53828,7 +54054,7 @@ paths: - updated_at - archived_at examples: - default: &397 + default: &399 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -54525,7 +54751,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - *85 - - *389 + - *391 requestBody: required: true description: Details of the item to add to the project. @@ -54562,10 +54788,10 @@ paths: description: Response content: application/json: - schema: *394 + schema: *396 examples: - issue: *395 - pull_request: *395 + issue: *397 + pull_request: *397 '304': *35 '403': *27 '401': *23 @@ -54585,9 +54811,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: - - *389 + - *391 - *85 - - &398 + - &400 name: item_id description: The unique identifier of the project item. in: path @@ -54613,9 +54839,9 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: - default: *397 + default: *399 headers: Link: *45 '304': *35 @@ -54636,9 +54862,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *389 + - *391 - *85 - - *398 + - *400 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -54711,13 +54937,13 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: - text_field: *397 - number_field: *397 - date_field: *397 - single_select_field: *397 - iteration_field: *397 + text_field: *399 + number_field: *399 + date_field: *399 + single_select_field: *399 + iteration_field: *399 '401': *23 '403': *27 '404': *6 @@ -54737,9 +54963,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *389 + - *391 - *85 - - *398 + - *400 responses: '204': description: Response @@ -54902,7 +55128,7 @@ paths: required: true content: application/json: - schema: *399 + schema: *401 examples: default: value: @@ -55270,7 +55496,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -55474,7 +55700,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &453 title: Full Repository description: Full Repository type: object @@ -55939,7 +56165,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &564 + code_of_conduct: &566 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -55969,7 +56195,7 @@ paths: - key - name - html_url - security_and_analysis: *400 + security_and_analysis: *402 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -56053,7 +56279,7 @@ paths: - network_count - subscribers_count examples: - default: &453 + default: &455 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -56579,9 +56805,9 @@ paths: application/json: schema: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -56606,7 +56832,7 @@ paths: - *85 - *17 - *19 - - &693 + - &694 name: targets description: | A comma-separated list of rule targets to filter by. @@ -56698,11 +56924,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *162 - conditions: *403 + conditions: *405 rules: type: array description: An array of rules within the ruleset. - items: &405 + items: &407 title: Repository Rule type: object description: A repository rule. @@ -56767,7 +56993,7 @@ paths: application/json: schema: *184 examples: - default: &404 + default: &406 value: id: 21 name: super cool ruleset @@ -56822,7 +57048,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *85 - - &695 + - &696 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 @@ -56834,14 +57060,14 @@ paths: x-multi-segment: true - *298 - *103 - - &696 + - &697 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 - - &697 + - &698 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -56861,7 +57087,7 @@ paths: description: Response content: application/json: - schema: &698 + schema: &699 title: Rule Suites description: Response type: array @@ -56917,7 +57143,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &699 + default: &700 value: - id: 21 actor_id: 12 @@ -56961,7 +57187,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *85 - - &700 + - &701 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -56977,7 +57203,7 @@ paths: description: Response content: application/json: - schema: &701 + schema: &702 title: Rule Suite description: Response type: object @@ -57084,7 +57310,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &702 + default: &703 value: id: 21 actor_id: 12 @@ -57159,7 +57385,7 @@ paths: application/json: schema: *184 examples: - default: *404 + default: *406 '404': *6 '500': *38 put: @@ -57208,11 +57434,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *162 - conditions: *403 + conditions: *405 rules: description: An array of rules within the ruleset. type: array - items: *405 + items: *407 examples: default: value: @@ -57249,7 +57475,7 @@ paths: application/json: schema: *184 examples: - default: *404 + default: *406 '404': *6 '500': *38 delete: @@ -57308,7 +57534,7 @@ paths: type: array items: *188 examples: - default: *406 + default: *408 '404': *6 '500': *38 x-github: @@ -57345,7 +57571,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *409 examples: default: value: @@ -57408,15 +57634,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *85 - - *408 - - *409 - *410 - *411 - *412 + - *413 + - *414 - *108 - *19 - *17 - - &704 + - &705 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 @@ -57426,7 +57652,7 @@ paths: required: false schema: type: string - - &705 + - &706 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 @@ -57436,10 +57662,10 @@ paths: required: false schema: type: string - - *413 - - *414 - *415 - *416 + - *417 + - *418 responses: '200': description: Response @@ -57447,9 +57673,9 @@ paths: application/json: schema: type: array - items: *417 + items: *419 examples: - default: *418 + default: *420 headers: Link: *45 '404': *6 @@ -57484,9 +57710,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *421 examples: - default: *420 + default: *422 '403': *27 '404': *6 patch: @@ -57639,7 +57865,7 @@ paths: application/json: schema: type: array - items: &726 + items: &727 description: A repository security advisory. type: object properties: @@ -57883,7 +58109,7 @@ paths: login: type: string description: The username of the user credited. - type: *421 + type: *423 credits_detailed: type: - array @@ -57894,7 +58120,7 @@ paths: type: object properties: user: *4 - type: *421 + type: *423 state: type: string description: The state of the user's acceptance of the @@ -57958,7 +58184,7 @@ paths: - private_fork additionalProperties: false examples: - default: &727 + default: &728 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -58345,9 +58571,9 @@ paths: application/json: schema: type: array - items: *369 + items: *371 examples: - default: *370 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58429,7 +58655,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *85 - - *422 + - *424 - *17 - *19 responses: @@ -58437,9 +58663,9 @@ paths: description: Success content: application/json: - schema: *423 + schema: *425 examples: - default: *424 + default: *426 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -58722,7 +58948,7 @@ paths: type: array items: *141 examples: - default: *425 + default: *427 headers: Link: *45 x-github: @@ -58923,15 +59149,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: - *85 - - *426 + - *428 responses: '200': description: Response content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 headers: Link: *45 x-github: @@ -58969,7 +59195,7 @@ paths: description: Response content: application/json: - schema: &448 + schema: &450 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -59021,7 +59247,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &449 + default: &451 value: groups: - group_id: '123' @@ -59135,7 +59361,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 headers: Link: *45 '403': *27 @@ -59229,7 +59455,7 @@ paths: description: Response content: application/json: - schema: &429 + schema: &431 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -59303,7 +59529,7 @@ paths: parent: anyOf: - type: 'null' - - *369 + - *371 members_count: type: integer examples: @@ -59628,7 +59854,7 @@ paths: - repos_count - organization examples: - default: &430 + default: &432 value: id: 1 node_id: MDQ6VGVhbTE= @@ -59705,9 +59931,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '404': *6 x-github: githubCloudOnly: false @@ -59792,16 +60018,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '201': description: Response content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '404': *6 '422': *15 '403': *27 @@ -59871,7 +60097,7 @@ paths: application/json: schema: type: array - items: &431 + items: &433 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -59982,7 +60208,7 @@ paths: - updated_at - url examples: - default: &770 + default: &771 value: - author: login: octocat @@ -60091,9 +60317,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: &432 + default: &434 value: author: login: octocat @@ -60167,7 +60393,7 @@ paths: parameters: - *85 - *209 - - &433 + - &435 name: discussion_number description: The number that identifies the discussion. in: path @@ -60179,9 +60405,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60205,7 +60431,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 requestBody: required: false content: @@ -60228,9 +60454,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: &771 + default: &772 value: author: login: octocat @@ -60302,7 +60528,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 responses: '204': description: Response @@ -60330,7 +60556,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 - *108 - *17 - *19 @@ -60341,7 +60567,7 @@ paths: application/json: schema: type: array - items: &434 + items: &436 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -60421,7 +60647,7 @@ paths: - updated_at - url examples: - default: &772 + default: &773 value: - author: login: octocat @@ -60491,7 +60717,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 requestBody: required: true content: @@ -60513,9 +60739,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: &435 + default: &437 value: author: login: octocat @@ -60583,8 +60809,8 @@ paths: parameters: - *85 - *209 - - *433 - - &436 + - *435 + - &438 name: comment_number description: The number that identifies the comment. in: path @@ -60596,9 +60822,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: *435 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60622,8 +60848,8 @@ paths: parameters: - *85 - *209 - - *433 - - *436 + - *435 + - *438 requestBody: required: true content: @@ -60645,9 +60871,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: &773 + default: &774 value: author: login: octocat @@ -60713,8 +60939,8 @@ paths: parameters: - *85 - *209 - - *433 - - *436 + - *435 + - *438 responses: '204': description: Response @@ -60742,8 +60968,8 @@ paths: parameters: - *85 - *209 - - *433 - - *436 + - *435 + - *438 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -60769,7 +60995,7 @@ paths: application/json: schema: type: array - items: &437 + items: &439 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -60813,7 +61039,7 @@ paths: - content - created_at examples: - default: &439 + default: &441 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -60865,8 +61091,8 @@ paths: parameters: - *85 - *209 - - *433 - - *436 + - *435 + - *438 requestBody: required: true content: @@ -60899,9 +61125,9 @@ paths: team discussion comment content: application/json: - schema: *437 + schema: *439 examples: - default: &438 + default: &440 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -60930,9 +61156,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60957,9 +61183,9 @@ paths: parameters: - *85 - *209 - - *433 - - *436 - - &440 + - *435 + - *438 + - &442 name: reaction_id description: The unique identifier of the reaction. in: path @@ -60993,7 +61219,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -61019,9 +61245,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 x-github: @@ -61049,7 +61275,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 requestBody: required: true content: @@ -61081,16 +61307,16 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -61115,8 +61341,8 @@ paths: parameters: - *85 - *209 - - *433 - - *440 + - *435 + - *442 responses: '204': description: Response @@ -61146,9 +61372,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -61192,9 +61418,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *445 examples: - default: *444 + default: *446 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -61249,9 +61475,9 @@ paths: application/json: schema: type: array - items: *353 + items: *355 examples: - default: *354 + default: *356 headers: Link: *45 x-github: @@ -61335,7 +61561,7 @@ paths: description: Response content: application/json: - schema: &445 + schema: &447 title: Team Membership description: Team Membership type: object @@ -61363,7 +61589,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &774 + response-if-user-is-a-team-maintainer: &775 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -61426,9 +61652,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: - response-if-users-membership-with-team-is-now-pending: &775 + response-if-users-membership-with-team-is-now-pending: &776 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -61504,7 +61730,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -61535,14 +61761,14 @@ paths: parameters: - *85 - *209 - - *446 - - *447 + - *448 + - *449 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &776 + schema: &777 title: Team Repository description: A team's access to a repository. type: object @@ -62185,8 +62411,8 @@ paths: parameters: - *85 - *209 - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -62233,8 +62459,8 @@ paths: parameters: - *85 - *209 - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -62267,9 +62493,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *450 examples: - default: *449 + default: *451 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -62335,7 +62561,7 @@ paths: description: Response content: application/json: - schema: *448 + schema: *450 examples: default: value: @@ -62380,7 +62606,7 @@ paths: type: array items: *301 examples: - response-if-child-teams-exist: &777 + response-if-child-teams-exist: &778 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -62534,7 +62760,7 @@ paths: resources: type: object properties: - core: &450 + core: &452 title: Rate Limit type: object properties: @@ -62551,21 +62777,21 @@ paths: - remaining - reset - used - graphql: *450 - search: *450 - code_search: *450 - source_import: *450 - integration_manifest: *450 - code_scanning_upload: *450 - actions_runner_registration: *450 - scim: *450 - dependency_snapshots: *450 - dependency_sbom: *450 - code_scanning_autofix: *450 + graphql: *452 + search: *452 + code_search: *452 + source_import: *452 + integration_manifest: *452 + code_scanning_upload: *452 + actions_runner_registration: *452 + scim: *452 + dependency_snapshots: *452 + dependency_sbom: *452 + code_scanning_autofix: *452 required: - core - search - rate: *450 + rate: *452 required: - rate - resources @@ -62670,14 +62896,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *451 + schema: *453 examples: default-response: summary: Default response @@ -63182,7 +63408,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *452 + '301': *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63200,8 +63426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -63459,10 +63685,10 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *453 - '307': &454 + default: *455 + '307': &456 description: Temporary Redirect content: application/json: @@ -63491,8 +63717,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -63514,7 +63740,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': *454 + '307': *456 '404': *6 '409': *116 x-github: @@ -63538,11 +63764,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 - - &471 + - &473 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -63565,7 +63791,7 @@ paths: type: integer artifacts: type: array - items: &455 + items: &457 title: Artifact description: An artifact type: object @@ -63660,7 +63886,7 @@ paths: - expires_at - updated_at examples: - default: &472 + default: &474 value: total_count: 2 artifacts: @@ -63721,9 +63947,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *446 - - *447 - - &456 + - *448 + - *449 + - &458 name: artifact_id description: The unique identifier of the artifact. in: path @@ -63735,7 +63961,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -63773,9 +63999,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *446 - - *447 - - *456 + - *448 + - *449 + - *458 responses: '204': description: Response @@ -63799,9 +64025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *446 - - *447 - - *456 + - *448 + - *449 + - *458 - name: archive_format in: path required: true @@ -63815,7 +64041,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &630 + '410': &631 description: Gone content: application/json: @@ -63840,14 +64066,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: &457 + schema: &459 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -63881,13 +64107,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: application/json: - schema: *457 + schema: *459 examples: selected_actions: *42 responses: @@ -63916,14 +64142,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: &458 + schema: &460 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -63957,13 +64183,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: application/json: - schema: *458 + schema: *460 examples: selected_actions: *44 responses: @@ -63994,14 +64220,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *459 + schema: *461 examples: default: value: @@ -64027,11 +64253,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: - - *446 - - *447 + - *448 + - *449 - *17 - *19 - - &460 + - &462 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 @@ -64065,7 +64291,7 @@ paths: description: Response content: application/json: - schema: &461 + schema: &463 title: Repository actions caches description: Repository actions caches type: object @@ -64115,7 +64341,7 @@ paths: - total_count - actions_caches examples: - default: &462 + default: &464 value: total_count: 1 actions_caches: @@ -64147,23 +64373,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: - - *446 - - *447 + - *448 + - *449 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *460 + - *462 responses: '200': description: Response content: application/json: - schema: *461 + schema: *463 examples: - default: *462 + default: *464 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64183,8 +64409,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: - - *446 - - *447 + - *448 + - *449 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -64215,9 +64441,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: - - *446 - - *447 - - &463 + - *448 + - *449 + - &465 name: job_id description: The unique identifier of the job. in: path @@ -64229,7 +64455,7 @@ paths: description: Response content: application/json: - schema: &475 + schema: &477 title: Job description: Information of a job execution in a workflow run type: object @@ -64576,9 +64802,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: - - *446 - - *447 - - *463 + - *448 + - *449 + - *465 responses: '302': description: Response @@ -64606,9 +64832,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: - - *446 - - *447 - - *463 + - *448 + - *449 + - *465 requestBody: required: false content: @@ -64654,8 +64880,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Status response @@ -64705,8 +64931,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -64769,8 +64995,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -64788,7 +65014,7 @@ paths: type: integer secrets: type: array - items: &477 + items: &479 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -64809,7 +65035,7 @@ paths: - created_at - updated_at examples: - default: &478 + default: &480 value: total_count: 2 secrets: @@ -64842,9 +65068,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *446 - - *447 - - *464 + - *448 + - *449 + - *466 - *19 responses: '200': @@ -64861,7 +65087,7 @@ paths: type: integer variables: type: array - items: &481 + items: &483 title: Actions Variable type: object properties: @@ -64895,7 +65121,7 @@ paths: - created_at - updated_at examples: - default: &482 + default: &484 value: total_count: 2 variables: @@ -64928,8 +65154,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -64938,7 +65164,7 @@ paths: schema: type: object properties: - enabled: &465 + enabled: &467 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *58 @@ -64973,8 +65199,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -64985,7 +65211,7 @@ paths: schema: type: object properties: - enabled: *465 + enabled: *467 allowed_actions: *58 sha_pinning_required: *59 required: @@ -65018,14 +65244,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: &466 + schema: &468 type: object properties: access_level: @@ -65043,7 +65269,7 @@ paths: required: - access_level examples: - default: &467 + default: &469 value: access_level: organization x-github: @@ -65068,15 +65294,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: application/json: - schema: *466 + schema: *468 examples: - default: *467 + default: *469 responses: '204': description: Response @@ -65100,8 +65326,8 @@ 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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65131,8 +65357,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Empty response for successful settings update @@ -65166,8 +65392,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65194,8 +65420,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -65229,8 +65455,8 @@ 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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65258,8 +65484,8 @@ 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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -65290,8 +65516,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65322,8 +65548,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -65355,8 +65581,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65385,8 +65611,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Success response @@ -65426,8 +65652,8 @@ paths: in: query schema: type: string - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -65471,8 +65697,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65504,8 +65730,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -65579,8 +65805,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: - - *446 - - *447 + - *448 + - *449 responses: '201': description: Response @@ -65616,8 +65842,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: - - *446 - - *447 + - *448 + - *449 responses: '201': description: Response @@ -65647,8 +65873,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: - - *446 - - *447 + - *448 + - *449 - *73 responses: '200': @@ -65678,8 +65904,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: - - *446 - - *447 + - *448 + - *449 - *73 responses: '204': @@ -65706,8 +65932,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: - - *446 - - *447 + - *448 + - *449 - *73 responses: '200': *79 @@ -65732,8 +65958,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: - - *446 - - *447 + - *448 + - *449 - *73 requestBody: required: true @@ -65782,8 +66008,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: - - *446 - - *447 + - *448 + - *449 - *73 requestBody: required: true @@ -65833,8 +66059,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *73 responses: '200': *279 @@ -65864,8 +66090,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *73 - *280 responses: @@ -65895,9 +66121,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: - - *446 - - *447 - - &485 + - *448 + - *449 + - &487 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. @@ -65905,7 +66131,7 @@ paths: required: false schema: type: string - - &486 + - &488 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -65913,7 +66139,7 @@ paths: required: false schema: type: string - - &487 + - &489 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -65922,7 +66148,7 @@ paths: required: false schema: type: string - - &488 + - &490 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 @@ -65949,7 +66175,7 @@ paths: - pending - *17 - *19 - - &489 + - &491 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)." @@ -65958,7 +66184,7 @@ paths: schema: type: string format: date-time - - &468 + - &470 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -65967,13 +66193,13 @@ paths: schema: type: boolean default: false - - &490 + - &492 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &491 + - &493 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -65996,7 +66222,7 @@ paths: type: integer workflow_runs: type: array - items: &469 + items: &471 title: Workflow Run description: An invocation of a workflow type: object @@ -66174,7 +66400,7 @@ paths: head_commit: anyOf: - type: 'null' - - &513 + - &515 title: Simple Commit description: A commit. type: object @@ -66289,7 +66515,7 @@ paths: - workflow_url - pull_requests examples: - default: &492 + default: &494 value: total_count: 1 workflow_runs: @@ -66525,24 +66751,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *446 - - *447 - - &470 + - *448 + - *449 + - &472 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *468 + - *470 responses: '200': description: Response content: application/json: - schema: *469 + schema: *471 examples: - default: &473 + default: &475 value: id: 30433642 name: Build @@ -66783,9 +67009,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '204': description: Response @@ -66808,9 +67034,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '200': description: Response @@ -66938,9 +67164,9 @@ 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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '201': description: Response @@ -66973,12 +67199,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 - *17 - *19 - - *471 + - *473 responses: '200': description: Response @@ -66994,9 +67220,9 @@ paths: type: integer artifacts: type: array - items: *455 + items: *457 examples: - default: *472 + default: *474 headers: Link: *45 x-github: @@ -67020,25 +67246,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *446 - - *447 - - *470 - - &474 + - *448 + - *449 + - *472 + - &476 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *468 + - *470 responses: '200': description: Response content: application/json: - schema: *469 + schema: *471 examples: - default: *473 + default: *475 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67061,10 +67287,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: - - *446 - - *447 - - *470 - - *474 + - *448 + - *449 + - *472 + - *476 - *17 - *19 responses: @@ -67082,9 +67308,9 @@ paths: type: integer jobs: type: array - items: *475 + items: *477 examples: - default: &476 + default: &478 value: total_count: 1 jobs: @@ -67197,10 +67423,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *446 - - *447 - - *470 - - *474 + - *448 + - *449 + - *472 + - *476 responses: '302': description: Response @@ -67228,9 +67454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '202': description: Response @@ -67263,9 +67489,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 requestBody: required: true content: @@ -67332,9 +67558,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '202': description: Response @@ -67367,9 +67593,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 - 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 @@ -67399,9 +67625,9 @@ paths: type: integer jobs: type: array - items: *475 + items: *477 examples: - default: *476 + default: *478 headers: Link: *45 x-github: @@ -67426,9 +67652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '302': description: Response @@ -67455,9 +67681,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '204': description: Response @@ -67484,9 +67710,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '200': description: Response @@ -67555,7 +67781,7 @@ paths: items: type: object properties: - type: &596 + type: &597 type: string description: The type of reviewer. enum: @@ -67641,9 +67867,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 requestBody: required: true content: @@ -67693,7 +67919,7 @@ paths: application/json: schema: type: array - items: &580 + items: &582 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -67805,7 +68031,7 @@ paths: - created_at - updated_at examples: - default: &581 + default: &583 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -67861,9 +68087,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 requestBody: required: false content: @@ -67908,9 +68134,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 requestBody: required: false content: @@ -67965,9 +68191,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '200': description: Response @@ -68104,8 +68330,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -68123,9 +68349,9 @@ paths: type: integer secrets: type: array - items: *477 + items: *479 examples: - default: *478 + default: *480 headers: Link: *45 x-github: @@ -68150,16 +68376,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *479 + schema: *481 examples: - default: *480 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68181,17 +68407,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '200': description: Response content: application/json: - schema: *477 + schema: *479 examples: - default: &609 + default: &610 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -68217,8 +68443,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 requestBody: required: true @@ -68276,8 +68502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '204': @@ -68303,9 +68529,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *446 - - *447 - - *464 + - *448 + - *449 + - *466 - *19 responses: '200': @@ -68322,9 +68548,9 @@ paths: type: integer variables: type: array - items: *481 + items: *483 examples: - default: *482 + default: *484 headers: Link: *45 x-github: @@ -68347,8 +68573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -68400,17 +68626,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *446 - - *447 + - *448 + - *449 - *285 responses: '200': description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: &610 + default: &611 value: name: USERNAME value: octocat @@ -68436,8 +68662,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *446 - - *447 + - *448 + - *449 - *285 requestBody: required: true @@ -68480,8 +68706,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *446 - - *447 + - *448 + - *449 - *285 responses: '204': @@ -68507,8 +68733,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -68526,7 +68752,7 @@ paths: type: integer workflows: type: array - items: &483 + items: &485 title: Workflow description: A GitHub Actions workflow type: object @@ -68644,9 +68870,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *446 - - *447 - - &484 + - *448 + - *449 + - &486 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -68661,7 +68887,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *485 examples: default: value: @@ -68694,9 +68920,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *446 - - *447 - - *484 + - *448 + - *449 + - *486 responses: '204': description: Response @@ -68721,9 +68947,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *446 - - *447 - - *484 + - *448 + - *449 + - *486 responses: '204': description: Response @@ -68774,9 +69000,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *446 - - *447 - - *484 + - *448 + - *449 + - *486 responses: '204': description: Response @@ -68803,19 +69029,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: - - *446 - - *447 - - *484 - - *485 + - *448 + - *449 - *486 - *487 - *488 - - *17 - - *19 - *489 - - *468 - *490 + - *17 + - *19 - *491 + - *470 + - *492 + - *493 responses: '200': description: Response @@ -68831,9 +69057,9 @@ paths: type: integer workflow_runs: type: array - items: *469 + items: *471 examples: - default: *492 + default: *494 headers: Link: *45 x-github: @@ -68866,9 +69092,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *446 - - *447 - - *484 + - *448 + - *449 + - *486 responses: '200': description: Response @@ -68929,8 +69155,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *446 - - *447 + - *448 + - *449 - *108 - *17 - *106 @@ -69098,8 +69324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -69136,8 +69362,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: - - *446 - - *447 + - *448 + - *449 - name: assignee in: path required: true @@ -69173,8 +69399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#create-an-attestation parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -69286,8 +69512,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#list-attestations parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *106 - *107 @@ -69344,7 +69570,7 @@ paths: initiator: type: string examples: - default: *493 + default: *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69364,8 +69590,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -69373,7 +69599,7 @@ paths: application/json: schema: type: array - items: &494 + items: &496 title: Autolink reference description: An autolink reference. type: object @@ -69432,8 +69658,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -69472,9 +69698,9 @@ paths: description: response content: application/json: - schema: *494 + schema: *496 examples: - default: &495 + default: &497 value: id: 1 key_prefix: TICKET- @@ -69505,9 +69731,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: - - *446 - - *447 - - &496 + - *448 + - *449 + - &498 name: autolink_id description: The unique identifier of the autolink. in: path @@ -69519,9 +69745,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: - default: *495 + default: *497 '404': *6 x-github: githubCloudOnly: false @@ -69541,9 +69767,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: - - *446 - - *447 - - *496 + - *448 + - *449 + - *498 responses: '204': description: Response @@ -69567,8 +69793,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response if Dependabot is enabled @@ -69618,8 +69844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -69640,8 +69866,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -69661,8 +69887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *446 - - *447 + - *448 + - *449 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -69700,7 +69926,7 @@ paths: - url protected: type: boolean - protection: &498 + protection: &500 title: Branch Protection description: Branch Protection type: object @@ -69743,7 +69969,7 @@ paths: required: - contexts - checks - enforce_admins: &501 + enforce_admins: &503 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -69760,7 +69986,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &503 + required_pull_request_reviews: &505 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -69844,7 +70070,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &500 + restrictions: &502 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -70137,9 +70363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *446 - - *447 - - &499 + - *448 + - *449 + - &501 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). @@ -70153,14 +70379,14 @@ paths: description: Response content: application/json: - schema: &509 + schema: &511 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &555 + commit: &557 title: Commit description: Commit type: object @@ -70199,7 +70425,7 @@ paths: author: anyOf: - type: 'null' - - &497 + - &499 title: Git User description: Metaproperties for Git author/committer information. @@ -70221,7 +70447,7 @@ paths: committer: anyOf: - type: 'null' - - *497 + - *499 message: type: string examples: @@ -70245,7 +70471,7 @@ paths: required: - sha - url - verification: &616 + verification: &617 title: Verification type: object properties: @@ -70325,7 +70551,7 @@ paths: type: integer files: type: array - items: &566 + items: &568 title: Diff Entry description: Diff Entry type: object @@ -70421,7 +70647,7 @@ paths: - self protected: type: boolean - protection: *498 + protection: *500 protection_url: type: string format: uri @@ -70530,7 +70756,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *452 + '301': *454 '404': *6 x-github: githubCloudOnly: false @@ -70552,15 +70778,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *498 + schema: *500 examples: default: value: @@ -70754,9 +70980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -71016,7 +71242,7 @@ paths: url: type: string format: uri - required_status_checks: &506 + required_status_checks: &508 title: Status Check Policy description: Status Check Policy type: object @@ -71175,7 +71401,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *500 + restrictions: *502 required_conversation_resolution: type: object properties: @@ -71287,9 +71513,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -71314,17 +71540,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: &502 + default: &504 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -71346,17 +71572,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *502 + default: *504 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71375,9 +71601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -71402,17 +71628,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *503 + schema: *505 examples: - default: &504 + default: &506 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -71508,9 +71734,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -71608,9 +71834,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *505 examples: - default: *504 + default: *506 '422': *15 x-github: githubCloudOnly: false @@ -71631,9 +71857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -71660,17 +71886,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: &505 + default: &507 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -71693,17 +71919,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *505 + default: *507 '404': *6 x-github: githubCloudOnly: false @@ -71723,9 +71949,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -71750,17 +71976,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *506 + schema: *508 examples: - default: &507 + default: &509 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -71786,9 +72012,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -71840,9 +72066,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *508 examples: - default: *507 + default: *509 '404': *6 '422': *15 x-github: @@ -71864,9 +72090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -71890,9 +72116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response @@ -71926,9 +72152,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -71995,9 +72221,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -72061,9 +72287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: content: application/json: @@ -72129,15 +72355,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *500 + schema: *502 examples: default: value: @@ -72228,9 +72454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -72253,9 +72479,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: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response @@ -72265,7 +72491,7 @@ paths: type: array items: *5 examples: - default: &508 + default: &510 value: - id: 1 slug: octoapp @@ -72322,9 +72548,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72358,7 +72584,7 @@ paths: type: array items: *5 examples: - default: *508 + default: *510 '422': *15 x-github: githubCloudOnly: false @@ -72379,9 +72605,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72415,7 +72641,7 @@ paths: type: array items: *5 examples: - default: *508 + default: *510 '422': *15 x-github: githubCloudOnly: false @@ -72436,9 +72662,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72472,7 +72698,7 @@ paths: type: array items: *5 examples: - default: *508 + default: *510 '422': *15 x-github: githubCloudOnly: false @@ -72494,9 +72720,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: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response @@ -72506,7 +72732,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 '404': *6 x-github: githubCloudOnly: false @@ -72526,9 +72752,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -72566,7 +72792,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 '422': *15 x-github: githubCloudOnly: false @@ -72587,9 +72813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -72627,7 +72853,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 '422': *15 x-github: githubCloudOnly: false @@ -72648,9 +72874,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: content: application/json: @@ -72687,7 +72913,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 '422': *15 x-github: githubCloudOnly: false @@ -72709,9 +72935,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: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response @@ -72745,9 +72971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72805,9 +73031,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72865,9 +73091,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72927,9 +73153,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72951,7 +73177,7 @@ paths: description: Response content: application/json: - schema: *509 + schema: *511 examples: default: value: @@ -73065,8 +73291,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *446 - - *447 + - *448 + - *449 - *101 - *102 - *103 @@ -73102,8 +73328,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: bypass_request_number in: path required: true @@ -73176,8 +73402,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *446 - - *447 + - *448 + - *449 - *101 - *102 - *103 @@ -73217,8 +73443,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *446 - - *447 + - *448 + - *449 - name: bypass_request_number in: path required: true @@ -73288,8 +73514,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *446 - - *447 + - *448 + - *449 - name: bypass_request_number in: path required: true @@ -73360,8 +73586,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *446 - - *447 + - *448 + - *449 - name: bypass_response_id in: path required: true @@ -73394,8 +73620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -73674,7 +73900,7 @@ paths: description: Response content: application/json: - schema: &510 + schema: &512 title: CheckRun description: A check performed on the code of a given code change type: object @@ -73810,7 +74036,7 @@ paths: check. type: array items: *216 - deployment: &835 + deployment: &836 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -74097,9 +74323,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *446 - - *447 - - &511 + - *448 + - *449 + - &513 name: check_run_id description: The unique identifier of the check run. in: path @@ -74111,9 +74337,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *512 examples: - default: &512 + default: &514 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -74213,9 +74439,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *446 - - *447 - - *511 + - *448 + - *449 + - *513 requestBody: required: true content: @@ -74455,9 +74681,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *512 examples: - default: *512 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74477,9 +74703,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *446 - - *447 - - *511 + - *448 + - *449 + - *513 - *17 - *19 responses: @@ -74589,9 +74815,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *446 - - *447 - - *511 + - *448 + - *449 + - *513 responses: '201': description: Response @@ -74635,8 +74861,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -74658,7 +74884,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &514 + schema: &516 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -74756,7 +74982,7 @@ paths: - string - 'null' format: date-time - head_commit: *513 + head_commit: *515 latest_check_runs_count: type: integer check_runs_url: @@ -74784,7 +75010,7 @@ paths: - check_runs_url - pull_requests examples: - default: &515 + default: &517 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -75075,9 +75301,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *514 + schema: *516 examples: - default: *515 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75096,8 +75322,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -75406,9 +75632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *446 - - *447 - - &516 + - *448 + - *449 + - &518 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -75420,9 +75646,9 @@ paths: description: Response content: application/json: - schema: *514 + schema: *516 examples: - default: *515 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75445,17 +75671,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: - - *446 - - *447 - - *516 - - &561 + - *448 + - *449 + - *518 + - &563 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &562 + - &564 name: status description: Returns check runs with the specified `status`. in: query @@ -75494,9 +75720,9 @@ paths: type: integer check_runs: type: array - items: *510 + items: *512 examples: - default: &563 + default: &565 value: total_count: 1 check_runs: @@ -75598,9 +75824,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *446 - - *447 - - *516 + - *448 + - *449 + - *518 responses: '201': description: Response @@ -75633,21 +75859,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: - - *446 - - *447 + - *448 + - *449 - *305 - *306 - *19 - *17 - - &532 + - &534 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: *517 - - &533 + schema: *519 + - &535 name: pr description: The number of the pull request for the results you want to list. in: query @@ -75678,7 +75904,7 @@ paths: be returned. in: query required: false - schema: *518 + schema: *520 responses: '200': description: Response @@ -75694,7 +75920,7 @@ paths: updated_at: *131 url: *128 html_url: *129 - instances_url: *519 + instances_url: *521 state: *111 fixed_at: *133 dismissed_by: @@ -75702,11 +75928,11 @@ paths: - type: 'null' - *4 dismissed_at: *132 - dismissed_reason: *520 - dismissed_comment: *521 - rule: *522 - tool: *523 - most_recent_instance: *524 + dismissed_reason: *522 + dismissed_comment: *523 + rule: *524 + tool: *525 + most_recent_instance: *526 dismissal_approved_by: anyOf: - type: 'null' @@ -75829,7 +76055,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &525 + '403': &527 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -75856,9 +76082,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: - - *446 - - *447 - - &526 + - *448 + - *449 + - &528 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -75872,7 +76098,7 @@ paths: description: Response content: application/json: - schema: &527 + schema: &529 type: object properties: number: *123 @@ -75880,7 +76106,7 @@ paths: updated_at: *131 url: *128 html_url: *129 - instances_url: *519 + instances_url: *521 state: *111 fixed_at: *133 dismissed_by: @@ -75888,8 +76114,8 @@ paths: - type: 'null' - *4 dismissed_at: *132 - dismissed_reason: *520 - dismissed_comment: *521 + dismissed_reason: *522 + dismissed_comment: *523 rule: type: object properties: @@ -75951,8 +76177,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *523 - most_recent_instance: *524 + tool: *525 + most_recent_instance: *526 dismissal_approved_by: anyOf: - type: 'null' @@ -76048,7 +76274,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -76068,9 +76294,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 requestBody: required: true content: @@ -76085,8 +76311,8 @@ paths: enum: - open - dismissed - dismissed_reason: *520 - dismissed_comment: *521 + dismissed_reason: *522 + dismissed_comment: *523 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -76106,7 +76332,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *529 examples: default: value: @@ -76182,7 +76408,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &531 + '403': &533 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -76209,15 +76435,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 responses: '200': description: Response content: application/json: - schema: &528 + schema: &530 type: object properties: status: @@ -76244,13 +76470,13 @@ paths: - description - started_at examples: - default: &529 + default: &531 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &530 + '400': &532 description: Bad Request content: application/json: @@ -76261,7 +76487,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': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -76286,29 +76512,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 responses: '200': description: OK content: application/json: - schema: *528 + schema: *530 examples: - default: *529 + default: *531 '202': description: Accepted content: application/json: - schema: *528 + schema: *530 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *530 + '400': *532 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -76340,9 +76566,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 requestBody: required: false content: @@ -76388,8 +76614,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *530 - '403': *531 + '400': *532 + '403': *533 '404': *6 '422': description: Unprocessable Entity @@ -76413,13 +76639,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 - *19 - *17 - - *532 - - *533 + - *534 + - *535 responses: '200': description: Response @@ -76427,7 +76653,7 @@ paths: application/json: schema: type: array - items: *524 + items: *526 examples: default: value: @@ -76466,7 +76692,7 @@ paths: end_column: 50 classifications: - source - '403': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -76500,25 +76726,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: - - *446 - - *447 + - *448 + - *449 - *305 - *306 - *19 - *17 - - *533 + - *535 - 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: *517 + schema: *519 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &536 + schema: &538 type: string description: An identifier for the upload. examples: @@ -76540,23 +76766,23 @@ paths: application/json: schema: type: array - items: &537 + items: &539 type: object properties: - ref: *517 - commit_sha: &545 + ref: *519 + commit_sha: &547 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *534 + analysis_key: *536 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *535 + category: *537 error: type: string examples: @@ -76581,8 +76807,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *536 - tool: *523 + sarif_id: *538 + tool: *525 deletable: type: boolean warning: @@ -76644,7 +76870,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -76680,8 +76906,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: - - *446 - - *447 + - *448 + - *449 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76694,7 +76920,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: response: summary: application/json response @@ -76748,7 +76974,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *525 + '403': *527 '404': *6 '422': description: Response if analysis could not be processed @@ -76835,8 +77061,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: - - *446 - - *447 + - *448 + - *449 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76892,7 +77118,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': *531 + '403': *533 '404': *6 '503': *189 x-github: @@ -76914,8 +77140,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -76923,7 +77149,7 @@ paths: application/json: schema: type: array - items: &538 + items: &540 title: CodeQL Database description: A CodeQL database. type: object @@ -77035,7 +77261,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': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -77064,8 +77290,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: - - *446 - - *447 + - *448 + - *449 - name: language in: path description: The language of the CodeQL database. @@ -77077,7 +77303,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *540 examples: default: value: @@ -77109,9 +77335,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': &568 + '302': &570 description: Found - '403': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -77133,8 +77359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *446 - - *447 + - *448 + - *449 - name: language in: path description: The language of the CodeQL database. @@ -77144,7 +77370,7 @@ paths: responses: '204': description: Response - '403': *531 + '403': *533 '404': *6 '503': *189 x-github: @@ -77172,8 +77398,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -77182,7 +77408,7 @@ paths: type: object additionalProperties: false properties: - language: &539 + language: &541 type: string description: The language targeted by the CodeQL query enum: @@ -77262,7 +77488,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &543 + schema: &545 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -77272,7 +77498,7 @@ paths: description: The ID of the variant analysis. controller_repo: *117 actor: *4 - query_language: *539 + query_language: *541 query_pack_url: type: string description: The download url for the query pack. @@ -77320,7 +77546,7 @@ paths: items: type: object properties: - repository: &540 + repository: &542 title: Repository Identifier description: Repository Identifier type: object @@ -77362,7 +77588,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &544 + analysis_status: &546 type: string description: The new status of the CodeQL variant analysis repository task. @@ -77394,7 +77620,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &541 + access_mismatch_repos: &543 type: object properties: repository_count: @@ -77409,7 +77635,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: *540 + items: *542 required: - repository_count - repositories @@ -77432,8 +77658,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *541 - over_limit_repos: *541 + no_codeql_db_repos: *543 + over_limit_repos: *543 required: - access_mismatch_repos - not_found_repos @@ -77449,7 +77675,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &542 + value: &544 summary: Default response value: id: 1 @@ -77601,10 +77827,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *542 + value: *544 repository_lists: summary: Response for a successful variant analysis submission - value: *542 + value: *544 '404': *6 '422': description: Unable to process variant analysis submission @@ -77632,8 +77858,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: - - *446 - - *447 + - *448 + - *449 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -77645,9 +77871,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *545 examples: - default: *542 + default: *544 '404': *6 '503': *189 x-github: @@ -77670,7 +77896,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: - - *446 + - *448 - name: repo in: path description: The name of the controller repository. @@ -77705,7 +77931,7 @@ paths: type: object properties: repository: *117 - analysis_status: *544 + analysis_status: *546 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -77830,8 +78056,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -77924,7 +78150,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -77945,8 +78171,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -78040,7 +78266,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *531 + '403': *533 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -78111,8 +78337,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -78120,7 +78346,7 @@ paths: schema: type: object properties: - commit_sha: *545 + commit_sha: *547 ref: type: string description: |- @@ -78180,7 +78406,7 @@ paths: schema: type: object properties: - id: *536 + id: *538 url: type: string description: The REST API URL for checking the status of the upload. @@ -78194,7 +78420,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': *531 + '403': *533 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -78217,8 +78443,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: - - *446 - - *447 + - *448 + - *449 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -78266,7 +78492,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': *525 + '403': *527 '404': description: Not Found if the sarif id does not match any upload '503': *189 @@ -78291,8 +78517,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -78373,8 +78599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *446 - - *447 + - *448 + - *449 - 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 @@ -78502,8 +78728,8 @@ paths: parameters: - *17 - *19 - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -78519,7 +78745,7 @@ paths: type: integer codespaces: type: array - items: *361 + items: *363 examples: default: value: @@ -78817,8 +79043,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -78882,17 +79108,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '400': *14 '401': *23 '403': *27 @@ -78921,8 +79147,8 @@ paths: parameters: - *17 - *19 - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -78986,8 +79212,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: - - *446 - - *447 + - *448 + - *449 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -79024,9 +79250,9 @@ paths: type: integer machines: type: array - items: *547 + items: *549 examples: - default: &784 + default: &785 value: total_count: 2 machines: @@ -79066,8 +79292,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *446 - - *447 + - *448 + - *449 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -79154,8 +79380,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: - - *446 - - *447 + - *448 + - *449 - 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 @@ -79224,8 +79450,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -79243,7 +79469,7 @@ paths: type: integer secrets: type: array - items: &551 + items: &553 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -79264,7 +79490,7 @@ paths: - created_at - updated_at examples: - default: *548 + default: *550 headers: Link: *45 x-github: @@ -79287,16 +79513,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *549 + schema: *551 examples: - default: *550 + default: *552 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -79316,17 +79542,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '200': description: Response content: application/json: - schema: *551 + schema: *553 examples: - default: *552 + default: *554 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79346,8 +79572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 requestBody: required: true @@ -79400,8 +79626,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '204': @@ -79430,8 +79656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *446 - - *447 + - *448 + - *449 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -79469,7 +79695,7 @@ paths: application/json: schema: type: array - items: &553 + items: &555 title: Collaborator description: Collaborator type: object @@ -79662,8 +79888,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: - - *446 - - *447 + - *448 + - *449 - *136 responses: '204': @@ -79710,8 +79936,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *446 - - *447 + - *448 + - *449 - *136 requestBody: required: false @@ -79738,7 +79964,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &629 + schema: &630 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -79966,8 +80192,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *446 - - *447 + - *448 + - *449 - *136 responses: '204': @@ -79999,8 +80225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *446 - - *447 + - *448 + - *449 - *136 responses: '200': @@ -80021,7 +80247,7 @@ paths: user: anyOf: - type: 'null' - - *553 + - *555 required: - permission - role_name @@ -80075,8 +80301,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -80086,7 +80312,7 @@ paths: application/json: schema: type: array - items: &554 + items: &556 title: Commit Comment description: Commit Comment type: object @@ -80144,7 +80370,7 @@ paths: - created_at - updated_at examples: - default: &557 + default: &559 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80203,17 +80429,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 responses: '200': description: Response content: application/json: - schema: *554 + schema: *556 examples: - default: &558 + default: &560 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80270,8 +80496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -80294,7 +80520,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: default: value: @@ -80345,8 +80571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 responses: '204': @@ -80368,8 +80594,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -80396,9 +80622,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 '404': *6 @@ -80419,8 +80645,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -80453,16 +80679,16 @@ paths: description: Reaction exists content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Reaction created content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '422': *15 x-github: githubCloudOnly: false @@ -80484,10 +80710,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *446 - - *447 + - *448 + - *449 - *227 - - *440 + - *442 responses: '204': description: Response @@ -80536,8 +80762,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *446 - - *447 + - *448 + - *449 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -80593,9 +80819,9 @@ paths: application/json: schema: type: array - items: *555 + items: *557 examples: - default: &678 + default: &679 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -80689,9 +80915,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *446 - - *447 - - &556 + - *448 + - *449 + - &558 name: commit_sha description: The SHA of the commit. in: path @@ -80763,9 +80989,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *446 - - *447 - - *556 + - *448 + - *449 + - *558 - *17 - *19 responses: @@ -80775,9 +81001,9 @@ paths: application/json: schema: type: array - items: *554 + items: *556 examples: - default: *557 + default: *559 headers: Link: *45 x-github: @@ -80805,9 +81031,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *446 - - *447 - - *556 + - *448 + - *449 + - *558 requestBody: required: true content: @@ -80842,9 +81068,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: - default: *558 + default: *560 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80872,9 +81098,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: - - *446 - - *447 - - *556 + - *448 + - *449 + - *558 - *17 - *19 responses: @@ -80884,9 +81110,9 @@ paths: application/json: schema: type: array - items: *559 + items: *561 examples: - default: &670 + default: &671 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -81423,11 +81649,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *446 - - *447 + - *448 + - *449 - *19 - *17 - - &560 + - &562 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)" @@ -81442,9 +81668,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *557 examples: - default: &656 + default: &657 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -81557,11 +81783,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: - - *446 - - *447 - - *560 - - *561 + - *448 + - *449 - *562 + - *563 + - *564 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -81595,9 +81821,9 @@ paths: type: integer check_runs: type: array - items: *510 + items: *512 examples: - default: *563 + default: *565 headers: Link: *45 x-github: @@ -81622,9 +81848,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: - - *446 - - *447 - - *560 + - *448 + - *449 + - *562 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -81632,7 +81858,7 @@ paths: schema: type: integer example: 1 - - *561 + - *563 - *17 - *19 responses: @@ -81650,7 +81876,7 @@ paths: type: integer check_suites: type: array - items: *514 + items: *516 examples: default: value: @@ -81850,9 +82076,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: - - *446 - - *447 - - *560 + - *448 + - *449 + - *562 - *17 - *19 responses: @@ -82054,9 +82280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *446 - - *447 - - *560 + - *448 + - *449 + - *562 - *17 - *19 responses: @@ -82066,7 +82292,7 @@ paths: application/json: schema: type: array - items: &731 + items: &732 title: Status description: The status of a commit. type: object @@ -82147,7 +82373,7 @@ paths: site_admin: false headers: Link: *45 - '301': *452 + '301': *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82175,8 +82401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -82209,11 +82435,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *564 + - *566 code_of_conduct_file: anyOf: - type: 'null' - - &565 + - &567 title: Community Health File type: object properties: @@ -82233,19 +82459,19 @@ paths: contributing: anyOf: - type: 'null' - - *565 + - *567 readme: anyOf: - type: 'null' - - *565 + - *567 issue_template: anyOf: - type: 'null' - - *565 + - *567 pull_request_template: anyOf: - type: 'null' - - *565 + - *567 required: - code_of_conduct - code_of_conduct_file @@ -82374,8 +82600,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *446 - - *447 + - *448 + - *449 - *19 - *17 - name: basehead @@ -82423,8 +82649,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *555 - merge_base_commit: *555 + base_commit: *557 + merge_base_commit: *557 status: type: string enum: @@ -82448,10 +82674,10 @@ paths: - 6 commits: type: array - items: *555 + items: *557 files: type: array - items: *566 + items: *568 required: - url - html_url @@ -82737,8 +82963,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *446 - - *447 + - *448 + - *449 - name: path description: path parameter in: path @@ -82891,7 +83117,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &567 + response-if-content-is-a-file: &569 summary: Response if content is a file value: type: file @@ -83028,7 +83254,7 @@ paths: - size - type - url - - &683 + - &684 title: Content File description: Content File type: object @@ -83246,7 +83472,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *567 + response-if-content-is-a-file: *569 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -83315,7 +83541,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *568 + '302': *570 '304': *35 x-github: githubCloudOnly: false @@ -83338,8 +83564,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *446 - - *447 + - *448 + - *449 - name: path description: path parameter in: path @@ -83434,7 +83660,7 @@ paths: description: Response content: application/json: - schema: &569 + schema: &571 title: File Commit description: File Commit type: object @@ -83590,7 +83816,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *571 examples: example-for-creating-a-file: value: @@ -83644,7 +83870,7 @@ paths: schema: oneOf: - *3 - - &611 + - &612 description: Repository rule violation was detected type: object properties: @@ -83665,7 +83891,7 @@ paths: items: type: object properties: - placeholder_id: &723 + placeholder_id: &724 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -83697,8 +83923,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *446 - - *447 + - *448 + - *449 - name: path description: path parameter in: path @@ -83759,7 +83985,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *571 examples: default: value: @@ -83814,8 +84040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *446 - - *447 + - *448 + - *449 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -83939,8 +84165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *321 - *322 - *323 @@ -83952,7 +84178,7 @@ paths: schema: type: string - *325 - - *570 + - *572 - *326 - *327 - *108 @@ -83973,7 +84199,7 @@ paths: application/json: schema: type: array - items: &574 + items: &576 type: object description: A Dependabot alert. properties: @@ -84023,7 +84249,7 @@ paths: - direct - transitive - - security_advisory: *571 + security_advisory: *573 security_vulnerability: *127 url: *128 html_url: *129 @@ -84054,8 +84280,8 @@ paths: dismissal. maxLength: 280 fixed_at: *133 - auto_dismissed_at: *572 - dismissal_request: *573 + auto_dismissed_at: *574 + dismissal_request: *575 required: - number - state @@ -84285,9 +84511,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *446 - - *447 - - &575 + - *448 + - *449 + - &577 name: alert_number in: path description: |- @@ -84302,7 +84528,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: default: value: @@ -84415,9 +84641,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *446 - - *447 - - *575 + - *448 + - *449 + - *577 requestBody: required: true content: @@ -84462,7 +84688,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: default: value: @@ -84591,8 +84817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -84610,7 +84836,7 @@ paths: type: integer secrets: type: array - items: &578 + items: &580 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -84664,16 +84890,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *576 + schema: *578 examples: - default: *577 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84693,15 +84919,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '200': description: Response content: application/json: - schema: *578 + schema: *580 examples: default: value: @@ -84727,8 +84953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 requestBody: required: true @@ -84781,8 +85007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '204': @@ -84805,8 +85031,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: - - *446 - - *447 + - *448 + - *449 - 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 @@ -84980,8 +85206,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -85241,8 +85467,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -85325,7 +85551,7 @@ paths: - version - url additionalProperties: false - metadata: &579 + metadata: &581 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -85364,7 +85590,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *579 + metadata: *581 resolved: type: object description: A collection of resolved package dependencies. @@ -85378,7 +85604,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *579 + metadata: *581 relationship: type: string description: A notation of whether a dependency is requested @@ -85511,8 +85737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *446 - - *447 + - *448 + - *449 - name: sha description: The SHA recorded at creation time. in: query @@ -85553,9 +85779,9 @@ paths: application/json: schema: type: array - items: *580 + items: *582 examples: - default: *581 + default: *583 headers: Link: *45 x-github: @@ -85621,8 +85847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -85704,7 +85930,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: simple-example: summary: Simple example @@ -85777,9 +86003,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *446 - - *447 - - &582 + - *448 + - *449 + - &584 name: deployment_id description: deployment_id parameter in: path @@ -85791,7 +86017,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: default: value: @@ -85856,9 +86082,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *446 - - *447 - - *582 + - *448 + - *449 + - *584 responses: '204': description: Response @@ -85880,9 +86106,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *446 - - *447 - - *582 + - *448 + - *449 + - *584 - *17 - *19 responses: @@ -85892,7 +86118,7 @@ paths: application/json: schema: type: array - items: &583 + items: &585 title: Deployment Status description: The status of a deployment. type: object @@ -86056,9 +86282,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *446 - - *447 - - *582 + - *448 + - *449 + - *584 requestBody: required: true content: @@ -86133,9 +86359,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: - default: &584 + default: &586 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -86191,9 +86417,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *446 - - *447 - - *582 + - *448 + - *449 + - *584 - name: status_id in: path required: true @@ -86204,9 +86430,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: - default: *584 + default: *586 '404': *6 x-github: githubCloudOnly: false @@ -86233,12 +86459,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 - - *585 - - *586 + - *448 + - *449 - *587 - *588 + - *589 + - *590 - *17 - *19 responses: @@ -86248,9 +86474,9 @@ paths: application/json: schema: type: array - items: *589 + items: *591 examples: - default: *590 + default: *592 '404': *6 '403': *27 '500': *38 @@ -86274,8 +86500,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86287,7 +86513,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *589 + schema: *591 examples: default: value: @@ -86343,8 +86569,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86403,12 +86629,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *446 - - *447 - - *585 - - *586 + - *448 + - *449 - *587 - *588 + - *589 + - *590 - *17 - *19 responses: @@ -86418,193 +86644,9 @@ paths: application/json: schema: type: array - items: &592 - title: Dependabot alert dismissal request - description: Alert dismissal request made by a user asking to dismiss - a Dependabot alert. - type: object - properties: - id: - type: integer - format: int64 - description: The unique identifier of the dismissal request. - number: - type: integer - format: int64 - description: The number uniquely identifying the dismissal request - within its repository. - repository: - type: object - description: The repository the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the repository the dismissal request - is for. - name: - type: string - description: The name of the repository the dismissal request - is for. - full_name: - type: string - description: The full name of the repository the dismissal - request is for. - organization: - type: object - description: The organization associated with the repository - the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the dismissal request. - properties: - actor_id: - type: integer - format: int64 - description: The ID of the GitHub user who requested the - dismissal request. - actor_name: - type: string - description: The name of the GitHub user who requested the - dismissal request. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the dismissal request metadata. - items: - type: object - properties: - reason: - type: string - description: The reason for the dismissal request. - alert_number: - type: string - description: The alert number. - alert_title: - type: string - description: The title of the alert. - resource_identifier: - type: string - description: The unique identifier for the request type of the - dismissal request. - examples: - - '123' - status: - type: string - description: The status of the dismissal request. - enum: - - pending - - denied - - approved - - expired - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating - the dismissal request. - expires_at: - type: string - format: date-time - description: The date and time the dismissal request will expire. - created_at: - type: string - format: date-time - description: The date and time the dismissal request was created. - responses: - type: - - array - - 'null' - description: The responses to the dismissal request. - items: *591 - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: - type: string - description: The URL to view the dismissal request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/security/dependabot/1 + items: *593 examples: - default: - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: no_bandwidth - alert_number: '1' - alert_title: lodash - GHSA-1234-abcd-5678 - resource_identifier: '1' - status: denied - requester_comment: No bandwidth to fix this right now - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: https://github.com/octo-org/smile/security/dependabot/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: tolerable_risk - alert_number: '2' - alert_title: axios - GHSA-5678-efgh-9012 - resource_identifier: '2' - status: approved - requester_comment: Risk is acceptable for this internal tool - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 43 - reviewer: - actor_id: 4 - actor_name: octocat - status: approved - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 - html_url: https://github.com/octo-org/smile/security/dependabot/2 + default: *594 '404': *6 '403': *27 '500': *38 @@ -86628,8 +86670,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86641,7 +86683,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *592 + schema: *593 examples: default: value: @@ -86692,8 +86734,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86764,12 +86806,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - *101 - *102 - *103 - - *593 + - *332 - *17 - *19 responses: @@ -86779,9 +86821,9 @@ paths: application/json: schema: type: array - items: *594 + items: *595 examples: - default: *595 + default: *596 '404': *6 '403': *27 '500': *38 @@ -86806,8 +86848,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86819,7 +86861,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *594 + schema: *595 examples: default: value: @@ -86877,8 +86919,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86947,8 +86989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -87005,8 +87047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -87024,7 +87066,7 @@ paths: - 5 environments: type: array - items: &597 + items: &598 title: Environment description: Details of a deployment environment type: object @@ -87086,7 +87128,7 @@ paths: type: string examples: - wait_timer - wait_timer: &599 + wait_timer: &600 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -87128,7 +87170,7 @@ paths: items: type: object properties: - type: *596 + type: *597 reviewer: anyOf: - *4 @@ -87155,7 +87197,7 @@ paths: - id - node_id - type - deployment_branch_policy: &600 + deployment_branch_policy: &601 type: - object - 'null' @@ -87272,9 +87314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *446 - - *447 - - &598 + - *448 + - *449 + - &599 name: environment_name in: path required: true @@ -87287,9 +87329,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: &601 + default: &602 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -87373,9 +87415,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 requestBody: required: false content: @@ -87385,7 +87427,7 @@ paths: - object - 'null' properties: - wait_timer: *599 + wait_timer: *600 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -87404,14 +87446,14 @@ paths: items: type: object properties: - type: *596 + type: *597 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *600 + deployment_branch_policy: *601 additionalProperties: false examples: default: @@ -87431,9 +87473,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: *601 + default: *602 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -87457,9 +87499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 responses: '204': description: Default response @@ -87484,9 +87526,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *17 - *19 responses: @@ -87505,7 +87547,7 @@ paths: - 2 branch_policies: type: array - items: &602 + items: &603 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -87566,9 +87608,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 requestBody: required: true content: @@ -87616,9 +87658,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - example-wildcard: &603 + example-wildcard: &604 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -87660,10 +87702,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *446 - - *447 - - *598 - - &604 + - *448 + - *449 + - *599 + - &605 name: branch_policy_id in: path required: true @@ -87675,9 +87717,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87696,10 +87738,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *446 - - *447 - - *598 - - *604 + - *448 + - *449 + - *599 + - *605 requestBody: required: true content: @@ -87728,9 +87770,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87749,10 +87791,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *446 - - *447 - - *598 - - *604 + - *448 + - *449 + - *599 + - *605 responses: '204': description: Response @@ -87777,9 +87819,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: - - *598 - - *447 - - *446 + - *599 + - *449 + - *448 responses: '200': description: List of deployment protection rules @@ -87796,7 +87838,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &605 + items: &606 title: Deployment protection rule description: Deployment protection rule type: object @@ -87818,7 +87860,7 @@ paths: for the environment. examples: - true - app: &606 + app: &607 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -87921,9 +87963,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: - - *598 - - *447 - - *446 + - *599 + - *449 + - *448 requestBody: content: application/json: @@ -87944,9 +87986,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *605 + schema: *606 examples: - default: &607 + default: &608 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -87981,9 +88023,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: - - *598 - - *447 - - *446 + - *599 + - *449 + - *448 - *19 - *17 responses: @@ -88003,7 +88045,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *606 + items: *607 examples: default: value: @@ -88038,10 +88080,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: - - *446 - - *447 - - *598 - - &608 + - *448 + - *449 + - *599 + - &609 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -88053,9 +88095,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *607 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88076,10 +88118,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: - - *598 - - *447 - - *446 - - *608 + - *599 + - *449 + - *448 + - *609 responses: '204': description: Response @@ -88105,9 +88147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *17 - *19 responses: @@ -88125,9 +88167,9 @@ paths: type: integer secrets: type: array - items: *477 + items: *479 examples: - default: *478 + default: *480 headers: Link: *45 x-github: @@ -88152,17 +88194,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 responses: '200': description: Response content: application/json: - schema: *479 + schema: *481 examples: - default: *480 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88184,18 +88226,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *282 responses: '200': description: Response content: application/json: - schema: *477 + schema: *479 examples: - default: *609 + default: *610 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88217,9 +88259,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *282 requestBody: required: true @@ -88277,9 +88319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *282 responses: '204': @@ -88305,10 +88347,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *446 - - *447 - - *598 - - *464 + - *448 + - *449 + - *599 + - *466 - *19 responses: '200': @@ -88325,9 +88367,9 @@ paths: type: integer variables: type: array - items: *481 + items: *483 examples: - default: *482 + default: *484 headers: Link: *45 x-github: @@ -88350,9 +88392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 requestBody: required: true content: @@ -88404,18 +88446,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *285 responses: '200': description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: *610 + default: *611 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88436,10 +88478,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *446 - - *447 + - *448 + - *449 - *285 - - *598 + - *599 requestBody: required: true content: @@ -88481,10 +88523,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *446 - - *447 + - *448 + - *449 - *285 - - *598 + - *599 responses: '204': description: Response @@ -88506,8 +88548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -88575,8 +88617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *446 - - *447 + - *448 + - *449 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -88735,8 +88777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -88769,9 +88811,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *453 + default: *455 '400': *14 '422': *15 '403': *27 @@ -88792,8 +88834,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -88853,7 +88895,7 @@ paths: schema: oneOf: - *247 - - *611 + - *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88878,8 +88920,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *446 - - *447 + - *448 + - *449 - name: file_sha in: path required: true @@ -88979,8 +89021,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -89089,7 +89131,7 @@ paths: description: Response content: application/json: - schema: &612 + schema: &613 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -89316,15 +89358,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *446 - - *447 - - *556 + - *448 + - *449 + - *558 responses: '200': description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -89380,9 +89422,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *446 - - *447 - - &613 + - *448 + - *449 + - &614 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. @@ -89399,7 +89441,7 @@ paths: application/json: schema: type: array - items: &614 + items: &615 title: Git Reference description: Git references within a repository type: object @@ -89475,17 +89517,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *446 - - *447 - - *613 + - *448 + - *449 + - *614 responses: '200': description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: &615 + default: &616 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -89514,8 +89556,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -89544,9 +89586,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -89572,9 +89614,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *446 - - *447 - - *613 + - *448 + - *449 + - *614 requestBody: required: true content: @@ -89603,9 +89645,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 '422': *15 '409': *116 x-github: @@ -89623,9 +89665,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *446 - - *447 - - *613 + - *448 + - *449 + - *614 responses: '204': description: Response @@ -89680,8 +89722,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -89748,7 +89790,7 @@ paths: description: Response content: application/json: - schema: &617 + schema: &618 title: Git Tag description: Metadata for a Git tag type: object @@ -89804,7 +89846,7 @@ paths: - sha - type - url - verification: *616 + verification: *617 required: - sha - url @@ -89814,7 +89856,7 @@ paths: - tag - message examples: - default: &618 + default: &619 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -89887,8 +89929,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *446 - - *447 + - *448 + - *449 - name: tag_sha in: path required: true @@ -89899,9 +89941,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: *618 + default: *619 '404': *6 '409': *116 x-github: @@ -89925,8 +89967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -90000,7 +90042,7 @@ paths: description: Response content: application/json: - schema: &619 + schema: &620 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -90102,8 +90144,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *446 - - *447 + - *448 + - *449 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -90126,7 +90168,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: default-response: summary: Default response @@ -90185,8 +90227,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -90196,7 +90238,7 @@ paths: application/json: schema: type: array - items: &620 + items: &621 title: Webhook description: Webhooks for repositories. type: object @@ -90259,7 +90301,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &871 + last_response: &872 title: Hook Response type: object properties: @@ -90336,8 +90378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -90390,9 +90432,9 @@ paths: description: Response content: application/json: - schema: *620 + schema: *621 examples: - default: &621 + default: &622 value: type: Repository id: 12345678 @@ -90440,17 +90482,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 responses: '200': description: Response content: application/json: - schema: *620 + schema: *621 examples: - default: *621 + default: *622 '404': *6 x-github: githubCloudOnly: false @@ -90470,9 +90512,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 requestBody: required: true content: @@ -90517,9 +90559,9 @@ paths: description: Response content: application/json: - schema: *620 + schema: *621 examples: - default: *621 + default: *622 '422': *15 '404': *6 x-github: @@ -90540,9 +90582,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 responses: '204': description: Response @@ -90566,9 +90608,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: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 responses: '200': description: Response @@ -90595,9 +90637,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: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 requestBody: required: false content: @@ -90641,11 +90683,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 - *17 - - *334 + - *336 responses: '200': description: Response @@ -90653,9 +90695,9 @@ paths: application/json: schema: type: array - items: *335 + items: *337 examples: - default: *336 + default: *338 '400': *14 '422': *15 x-github: @@ -90674,18 +90716,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: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 - *16 responses: '200': description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '400': *14 '422': *15 x-github: @@ -90704,9 +90746,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: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 - *16 responses: '202': *37 @@ -90729,9 +90771,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 responses: '204': description: Response @@ -90756,9 +90798,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 responses: '204': description: Response @@ -90781,8 +90823,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response if immutable releases are enabled @@ -90830,8 +90872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': *148 '409': *116 @@ -90851,8 +90893,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': *148 '409': *116 @@ -90909,14 +90951,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: &622 + schema: &623 title: Import description: A repository import from an external source. type: object @@ -91023,7 +91065,7 @@ paths: - html_url - authors_url examples: - default: &625 + default: &626 value: vcs: subversion use_lfs: true @@ -91039,7 +91081,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': &623 + '503': &624 description: Unavailable due to service under maintenance. content: application/json: @@ -91068,8 +91110,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -91117,7 +91159,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *623 examples: default: value: @@ -91142,7 +91184,7 @@ paths: type: string '422': *15 '404': *6 - '503': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91170,8 +91212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -91223,7 +91265,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *623 examples: example-1: summary: Example 1 @@ -91271,7 +91313,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': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91294,12 +91336,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response - '503': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91325,9 +91367,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *446 - - *447 - - &805 + - *448 + - *449 + - &806 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -91341,7 +91383,7 @@ paths: application/json: schema: type: array - items: &624 + items: &625 title: Porter Author description: Porter Author type: object @@ -91395,7 +91437,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': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91420,8 +91462,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *446 - - *447 + - *448 + - *449 - name: author_id in: path required: true @@ -91451,7 +91493,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *625 examples: default: value: @@ -91464,7 +91506,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91488,8 +91530,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -91530,7 +91572,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91558,8 +91600,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -91586,11 +91628,11 @@ paths: description: Response content: application/json: - schema: *622 + schema: *623 examples: - default: *625 + default: *626 '422': *15 - '503': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91613,8 +91655,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -91622,8 +91664,8 @@ paths: application/json: schema: *20 examples: - default: *626 - '301': *452 + default: *627 + '301': *454 '404': *6 x-github: githubCloudOnly: false @@ -91643,8 +91685,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -91652,12 +91694,12 @@ paths: application/json: schema: anyOf: - - *351 + - *353 - type: object properties: {} additionalProperties: false examples: - default: &628 + default: &629 value: limit: collaborators_only origin: repository @@ -91682,13 +91724,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: application/json: - schema: *627 + schema: *628 examples: default: summary: Example request body @@ -91700,9 +91742,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *628 + default: *629 '409': description: Response x-github: @@ -91724,8 +91766,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -91748,8 +91790,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -91759,9 +91801,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: &798 + default: &799 value: - id: 1 repository: @@ -91892,9 +91934,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *446 - - *447 - - *355 + - *448 + - *449 + - *357 requestBody: required: false content: @@ -91923,7 +91965,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: default: value: @@ -92054,9 +92096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *446 - - *447 - - *355 + - *448 + - *449 + - *357 responses: '204': description: Response @@ -92087,8 +92129,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *446 - - *447 + - *448 + - *449 - 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 @@ -92136,7 +92178,7 @@ paths: required: false schema: type: string - - *359 + - *361 - name: sort description: What to sort results by. in: query @@ -92161,7 +92203,7 @@ paths: type: array items: *212 examples: - default: &637 + default: &638 value: - id: 1 node_id: MDU6SXNzdWUx @@ -92309,7 +92351,7 @@ paths: state_reason: completed headers: Link: *45 - '301': *452 + '301': *454 '422': *15 '404': *6 x-github: @@ -92338,8 +92380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -92431,7 +92473,7 @@ paths: application/json: schema: *212 examples: - default: &634 + default: &635 value: id: 1 node_id: MDU6SXNzdWUx @@ -92587,7 +92629,7 @@ paths: '422': *15 '503': *189 '404': *6 - '410': *630 + '410': *631 x-github: triggersNotification: true githubCloudOnly: false @@ -92615,8 +92657,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *235 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -92637,9 +92679,9 @@ paths: application/json: schema: type: array - items: *631 + items: *632 examples: - default: &636 + default: &637 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92697,17 +92739,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 responses: '200': description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: &632 + default: &633 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92761,8 +92803,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -92785,9 +92827,9 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 '422': *15 x-github: githubCloudOnly: false @@ -92805,8 +92847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 responses: '204': @@ -92827,8 +92869,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -92855,9 +92897,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 '404': *6 @@ -92878,8 +92920,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -92912,16 +92954,16 @@ paths: description: Reaction exists content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Reaction created content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '422': *15 x-github: githubCloudOnly: false @@ -92943,10 +92985,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *446 - - *447 + - *448 + - *449 - *227 - - *440 + - *442 responses: '204': description: Response @@ -92966,8 +93008,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -92977,7 +93019,7 @@ paths: application/json: schema: type: array - items: &633 + items: &634 title: Issue Event description: Issue Event type: object @@ -93316,8 +93358,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *446 - - *447 + - *448 + - *449 - name: event_id in: path required: true @@ -93328,7 +93370,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *634 examples: default: value: @@ -93520,7 +93562,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *630 + '410': *631 '403': *27 x-github: githubCloudOnly: false @@ -93554,9 +93596,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *446 - - *447 - - &635 + - *448 + - *449 + - &636 name: issue_number description: The number that identifies the issue. in: path @@ -93570,10 +93612,10 @@ paths: application/json: schema: *212 examples: - default: *634 - '301': *452 + default: *635 + '301': *454 '404': *6 - '410': *630 + '410': *631 '304': *35 x-github: githubCloudOnly: false @@ -93598,9 +93640,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: false content: @@ -93721,13 +93763,13 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 '422': *15 '503': *189 '403': *27 - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93745,9 +93787,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: false content: @@ -93775,7 +93817,7 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93791,9 +93833,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: content: application/json: @@ -93820,7 +93862,7 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93842,9 +93884,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: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - name: assignee in: path required: true @@ -93884,9 +93926,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *218 - *17 - *19 @@ -93897,13 +93939,13 @@ paths: application/json: schema: type: array - items: *631 + items: *632 examples: - default: *636 + default: *637 headers: Link: *45 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93932,9 +93974,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -93956,16 +93998,16 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *630 + '410': *631 '422': *15 '404': *6 x-github: @@ -93993,9 +94035,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: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -94007,12 +94049,12 @@ paths: type: array items: *212 examples: - default: *637 + default: *638 headers: Link: *45 - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94040,9 +94082,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: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -94066,15 +94108,15 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *452 + '301': *454 '403': *27 - '410': *630 + '410': *631 '422': *15 '404': *6 x-github: @@ -94105,9 +94147,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: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -94121,13 +94163,13 @@ paths: application/json: schema: *212 examples: - default: *634 - '301': *452 + default: *635 + '301': *454 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *630 + '410': *631 x-github: triggersNotification: true githubCloudOnly: false @@ -94153,9 +94195,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: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -94167,12 +94209,12 @@ paths: type: array items: *212 examples: - default: *637 + default: *638 headers: Link: *45 - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94189,9 +94231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -94205,7 +94247,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &639 + - &640 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -94254,7 +94296,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &640 + - &641 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -94382,7 +94424,7 @@ paths: - performed_via_github_app - assignee - assigner - - &641 + - &642 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -94428,7 +94470,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &642 + - &643 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -94474,7 +94516,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &643 + - &644 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -94523,7 +94565,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &644 + - &645 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -94565,7 +94607,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &645 + - &646 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -94607,7 +94649,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &646 + - &647 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -94663,7 +94705,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &647 + - &648 title: Locked Issue Event description: Locked Issue Event type: object @@ -94708,7 +94750,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &648 + - &649 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -94769,7 +94811,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &649 + - &650 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -94830,7 +94872,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &650 + - &651 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -94891,7 +94933,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &651 + - &652 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -94984,7 +95026,7 @@ paths: color: red headers: Link: *45 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95001,9 +95043,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -95015,7 +95057,7 @@ paths: type: array items: *211 examples: - default: &638 + default: &639 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -95033,9 +95075,9 @@ paths: default: false headers: Link: *45 - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95052,9 +95094,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: false content: @@ -95115,10 +95157,10 @@ paths: type: array items: *211 examples: - default: *638 - '301': *452 + default: *639 + '301': *454 '404': *6 - '410': *630 + '410': *631 '422': *15 x-github: githubCloudOnly: false @@ -95135,9 +95177,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: false content: @@ -95199,10 +95241,10 @@ paths: type: array items: *211 examples: - default: *638 - '301': *452 + default: *639 + '301': *454 '404': *6 - '410': *630 + '410': *631 '422': *15 x-github: githubCloudOnly: false @@ -95219,15 +95261,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 responses: '204': description: Response - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95246,9 +95288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - name: name in: path required: true @@ -95272,9 +95314,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95294,9 +95336,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: false content: @@ -95325,7 +95367,7 @@ paths: '204': description: Response '403': *27 - '410': *630 + '410': *631 '404': *6 '422': *15 x-github: @@ -95343,9 +95385,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 responses: '204': description: Response @@ -95375,9 +95417,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 responses: '200': description: Response @@ -95385,10 +95427,10 @@ paths: application/json: schema: *212 examples: - default: *634 - '301': *452 + default: *635 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95405,9 +95447,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - 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. @@ -95433,13 +95475,13 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95457,9 +95499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -95491,16 +95533,16 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '422': *15 x-github: githubCloudOnly: false @@ -95522,10 +95564,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *446 - - *447 - - *635 - - *440 + - *448 + - *449 + - *636 + - *442 responses: '204': description: Response @@ -95554,9 +95596,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -95580,7 +95622,7 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -95613,9 +95655,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -95627,11 +95669,11 @@ paths: type: array items: *212 examples: - default: *637 + default: *638 headers: Link: *45 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95659,9 +95701,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -95690,14 +95732,14 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *630 + '410': *631 '422': *15 '404': *6 x-github: @@ -95717,9 +95759,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -95752,7 +95794,7 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 '403': *27 '404': *6 '422': *7 @@ -95774,9 +95816,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -95791,7 +95833,6 @@ paths: description: Timeline Event type: object anyOf: - - *639 - *640 - *641 - *642 @@ -95804,6 +95845,7 @@ paths: - *649 - *650 - *651 + - *652 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -96132,7 +96174,7 @@ paths: type: string comments: type: array - items: &672 + items: &673 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -96370,7 +96412,7 @@ paths: type: string comments: type: array - items: *554 + items: *556 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -96645,7 +96687,7 @@ paths: headers: Link: *45 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96662,8 +96704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -96673,7 +96715,7 @@ paths: application/json: schema: type: array - items: &652 + items: &653 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -96741,8 +96783,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -96778,9 +96820,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: &653 + default: &654 value: id: 1 key: ssh-rsa AAA... @@ -96814,9 +96856,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *446 - - *447 - - &654 + - *448 + - *449 + - &655 name: key_id description: The unique identifier of the key. in: path @@ -96828,9 +96870,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *653 + default: *654 '404': *6 x-github: githubCloudOnly: false @@ -96848,9 +96890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *446 - - *447 - - *654 + - *448 + - *449 + - *655 responses: '204': description: Response @@ -96870,8 +96912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -96883,7 +96925,7 @@ paths: type: array items: *211 examples: - default: *638 + default: *639 headers: Link: *45 '404': *6 @@ -96904,8 +96946,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -96943,7 +96985,7 @@ paths: application/json: schema: *211 examples: - default: &655 + default: &656 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96975,8 +97017,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *446 - - *447 + - *448 + - *449 - name: name in: path required: true @@ -96989,7 +97031,7 @@ paths: application/json: schema: *211 examples: - default: *655 + default: *656 '404': *6 x-github: githubCloudOnly: false @@ -97006,8 +97048,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *446 - - *447 + - *448 + - *449 - name: name in: path required: true @@ -97072,8 +97114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *446 - - *447 + - *448 + - *449 - name: name in: path required: true @@ -97099,8 +97141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -97136,8 +97178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '202': *37 '403': @@ -97165,8 +97207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -97192,9 +97234,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *446 - - *447 - - *532 + - *448 + - *449 + - *534 responses: '200': description: Response @@ -97341,8 +97383,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -97407,8 +97449,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -97442,9 +97484,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *555 + schema: *557 examples: - default: *656 + default: *657 '204': description: Response when already merged '404': @@ -97469,8 +97511,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *446 - - *447 + - *448 + - *449 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -97511,7 +97553,7 @@ paths: application/json: schema: type: array - items: *390 + items: *392 examples: default: value: @@ -97567,8 +97609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -97608,9 +97650,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *392 examples: - default: &657 + default: &658 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -97669,9 +97711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *446 - - *447 - - &658 + - *448 + - *449 + - &659 name: milestone_number description: The number that identifies the milestone. in: path @@ -97683,9 +97725,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *392 examples: - default: *657 + default: *658 '404': *6 x-github: githubCloudOnly: false @@ -97702,9 +97744,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *446 - - *447 - - *658 + - *448 + - *449 + - *659 requestBody: required: false content: @@ -97742,9 +97784,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *392 examples: - default: *657 + default: *658 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97760,9 +97802,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *446 - - *447 - - *658 + - *448 + - *449 + - *659 responses: '204': description: Response @@ -97783,9 +97825,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: - - *446 - - *447 - - *658 + - *448 + - *449 + - *659 - *17 - *19 responses: @@ -97797,7 +97839,7 @@ paths: type: array items: *211 examples: - default: *638 + default: *639 headers: Link: *45 x-github: @@ -97816,12 +97858,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: - - *446 - - *447 - - *659 + - *448 + - *449 - *660 - - *218 - *661 + - *218 + - *662 - *17 - *19 responses: @@ -97833,7 +97875,7 @@ paths: type: array items: *238 examples: - default: *662 + default: *663 headers: Link: *45 x-github: @@ -97857,8 +97899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -97916,14 +97958,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: &663 + schema: &664 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -98067,7 +98109,7 @@ paths: - custom_404 - public examples: - default: &664 + default: &665 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -98108,8 +98150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -98164,9 +98206,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: - default: *664 + default: *665 '422': *15 '409': *116 x-github: @@ -98189,8 +98231,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -98298,8 +98340,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -98325,8 +98367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -98336,7 +98378,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Page Build description: Page Build type: object @@ -98428,8 +98470,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *446 - - *447 + - *448 + - *449 responses: '201': description: Response @@ -98476,16 +98518,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: &666 + default: &667 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -98533,8 +98575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *446 - - *447 + - *448 + - *449 - name: build_id in: path required: true @@ -98545,9 +98587,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: *666 + default: *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98567,8 +98609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -98676,9 +98718,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: - - *446 - - *447 - - &667 + - *448 + - *449 + - &668 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -98736,9 +98778,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *446 - - *447 - - *667 + - *448 + - *449 + - *668 responses: '204': *148 '404': *6 @@ -98765,8 +98807,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -99061,8 +99103,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Private vulnerability reporting status @@ -99099,8 +99141,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: - - *446 - - *447 + - *448 + - *449 responses: '204': *148 '422': *14 @@ -99121,8 +99163,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: - - *446 - - *447 + - *448 + - *449 responses: '204': *148 '422': *14 @@ -99144,8 +99186,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -99155,7 +99197,7 @@ paths: type: array items: *149 examples: - default: *668 + default: *669 '403': *27 '404': *6 x-github: @@ -99177,8 +99219,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -99194,7 +99236,7 @@ paths: required: - properties examples: - default: *669 + default: *670 responses: '204': description: No Content when custom property values are successfully created @@ -99232,8 +99274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -99293,9 +99335,9 @@ paths: application/json: schema: type: array - items: *559 + items: *561 examples: - default: *670 + default: *671 headers: Link: *45 '304': *35 @@ -99327,8 +99369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -99395,7 +99437,7 @@ paths: description: Response content: application/json: - schema: &674 + schema: &675 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -99524,7 +99566,7 @@ paths: milestone: anyOf: - type: 'null' - - *390 + - *392 active_lock_reason: type: - string @@ -99579,7 +99621,7 @@ paths: type: - array - 'null' - items: *369 + items: *371 head: type: object properties: @@ -99617,14 +99659,14 @@ paths: _links: type: object properties: - comments: *391 - commits: *391 - statuses: *391 - html: *391 - issue: *391 - review_comments: *391 - review_comment: *391 - self: *391 + comments: *393 + commits: *393 + statuses: *393 + html: *393 + issue: *393 + review_comments: *393 + review_comment: *393 + self: *393 required: - comments - commits @@ -99635,7 +99677,7 @@ paths: - review_comment - self author_association: *213 - auto_merge: *671 + auto_merge: *672 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -99737,7 +99779,7 @@ paths: - merged_by - review_comments examples: - default: &675 + default: &676 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -100264,8 +100306,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - name: sort in: query required: false @@ -100294,9 +100336,9 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: - default: &677 + default: &678 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100373,17 +100415,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: - - *446 - - *447 + - *448 + - *449 - *227 responses: '200': description: Response content: application/json: - schema: *672 + schema: *673 examples: - default: &673 + default: &674 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100458,8 +100500,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -100482,9 +100524,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: - default: *673 + default: *674 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100500,8 +100542,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *227 responses: '204': @@ -100523,8 +100565,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *227 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -100551,9 +100593,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 '404': *6 @@ -100574,8 +100616,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -100608,16 +100650,16 @@ paths: description: Reaction exists content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Reaction created content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '422': *15 x-github: githubCloudOnly: false @@ -100639,10 +100681,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *446 - - *447 + - *448 + - *449 - *227 - - *440 + - *442 responses: '204': description: Response @@ -100685,9 +100727,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *446 - - *447 - - &676 + - *448 + - *449 + - &677 name: pull_number description: The number that identifies the pull request. in: path @@ -100700,9 +100742,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '304': *35 '404': *6 '406': @@ -100737,9 +100779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: false content: @@ -100781,9 +100823,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '422': *15 '403': *27 x-github: @@ -100805,9 +100847,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: true content: @@ -100868,17 +100910,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '401': *23 '403': *27 '404': *6 @@ -100908,9 +100950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 - *235 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -100931,9 +100973,9 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: - default: *677 + default: *678 headers: Link: *45 x-github: @@ -100966,9 +101008,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: true content: @@ -101074,7 +101116,7 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: example-for-a-multi-line-comment: value: @@ -101162,9 +101204,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 - *227 requestBody: required: true @@ -101187,7 +101229,7 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: default: value: @@ -101273,9 +101315,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 - *17 - *19 responses: @@ -101285,9 +101327,9 @@ paths: application/json: schema: type: array - items: *555 + items: *557 examples: - default: *678 + default: *679 headers: Link: *45 x-github: @@ -101317,9 +101359,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 - *17 - *19 responses: @@ -101329,7 +101371,7 @@ paths: application/json: schema: type: array - items: *566 + items: *568 examples: default: value: @@ -101367,9 +101409,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 responses: '204': description: Response if pull request has been merged @@ -101392,9 +101434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: false content: @@ -101506,9 +101548,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 responses: '200': description: Response @@ -101583,9 +101625,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: false content: @@ -101622,7 +101664,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *561 examples: default: value: @@ -102158,9 +102200,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: true content: @@ -102194,7 +102236,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *561 examples: default: value: @@ -102699,9 +102741,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 - *17 - *19 responses: @@ -102711,7 +102753,7 @@ paths: application/json: schema: type: array - items: &679 + items: &680 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -102867,9 +102909,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: false content: @@ -102959,9 +103001,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: &681 + default: &682 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103024,10 +103066,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: - - *446 - - *447 - - *676 - - &680 + - *448 + - *449 + - *677 + - &681 name: review_id description: The unique identifier of the review. in: path @@ -103039,9 +103081,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: &682 + default: &683 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103100,10 +103142,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: - - *446 - - *447 - - *676 - - *680 + - *448 + - *449 + - *677 + - *681 requestBody: required: true content: @@ -103126,7 +103168,7 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: default: value: @@ -103188,18 +103230,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: - - *446 - - *447 - - *676 - - *680 + - *448 + - *449 + - *677 + - *681 responses: '200': description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: *681 + default: *682 '422': *7 '404': *6 x-github: @@ -103226,10 +103268,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: - - *446 - - *447 - - *676 - - *680 + - *448 + - *449 + - *677 + - *681 - *17 - *19 responses: @@ -103327,9 +103369,9 @@ paths: _links: type: object properties: - self: *391 - html: *391 - pull_request: *391 + self: *393 + html: *393 + pull_request: *393 required: - self - html @@ -103487,10 +103529,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: - - *446 - - *447 - - *676 - - *680 + - *448 + - *449 + - *677 + - *681 requestBody: required: true content: @@ -103519,7 +103561,7 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: default: value: @@ -103582,10 +103624,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: - - *446 - - *447 - - *676 - - *680 + - *448 + - *449 + - *677 + - *681 requestBody: required: true content: @@ -103620,9 +103662,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: *682 + default: *683 '404': *6 '422': *7 '403': *27 @@ -103644,9 +103686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: false content: @@ -103710,8 +103752,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *446 - - *447 + - *448 + - *449 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -103724,9 +103766,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: &684 + default: &685 value: type: file encoding: base64 @@ -103768,8 +103810,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: - - *446 - - *447 + - *448 + - *449 - name: dir description: The alternate path to look for a README file in: path @@ -103789,9 +103831,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: *684 + default: *685 '404': *6 '422': *15 x-github: @@ -103813,8 +103855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -103824,7 +103866,7 @@ paths: application/json: schema: type: array - items: *685 + items: *686 examples: default: value: @@ -103918,8 +103960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -103995,9 +104037,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: &689 + default: &690 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -104102,9 +104144,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *446 - - *447 - - &687 + - *448 + - *449 + - &688 name: asset_id description: The unique identifier of the asset. in: path @@ -104116,9 +104158,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: &688 + default: &689 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 @@ -104153,7 +104195,7 @@ paths: type: User site_admin: false '404': *6 - '302': *568 + '302': *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104169,9 +104211,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *446 - - *447 - - *687 + - *448 + - *449 + - *688 requestBody: required: false content: @@ -104200,9 +104242,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: *688 + default: *689 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104218,9 +104260,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *446 - - *447 - - *687 + - *448 + - *449 + - *688 responses: '204': description: Response @@ -104244,8 +104286,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -104331,16 +104373,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: *689 + default: *690 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104357,8 +104399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *446 - - *447 + - *448 + - *449 - name: tag description: tag parameter in: path @@ -104371,9 +104413,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: *689 + default: *690 '404': *6 x-github: githubCloudOnly: false @@ -104395,9 +104437,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *446 - - *447 - - &690 + - *448 + - *449 + - &691 name: release_id description: The unique identifier of the release. in: path @@ -104411,9 +104453,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: *685 + schema: *686 examples: - default: *689 + default: *690 '401': description: Unauthorized x-github: @@ -104431,9 +104473,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 requestBody: required: false content: @@ -104497,9 +104539,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: *689 + default: *690 '404': description: Not Found if the discussion category name is invalid content: @@ -104520,9 +104562,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 responses: '204': description: Response @@ -104542,9 +104584,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 - *17 - *19 responses: @@ -104554,7 +104596,7 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: default: value: @@ -104636,9 +104678,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: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 - name: name in: query required: true @@ -104664,7 +104706,7 @@ paths: description: Response for successful upload content: application/json: - schema: *686 + schema: *687 examples: response-for-successful-upload: value: @@ -104719,9 +104761,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 - 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. @@ -104745,9 +104787,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 '404': *6 @@ -104768,9 +104810,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 requestBody: required: true content: @@ -104800,16 +104842,16 @@ paths: description: Reaction exists content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Reaction created content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '422': *15 x-github: githubCloudOnly: false @@ -104831,10 +104873,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *446 - - *447 - - *690 - - *440 + - *448 + - *449 + - *691 + - *442 responses: '204': description: Response @@ -104858,9 +104900,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 - *17 - *19 responses: @@ -104877,7 +104919,7 @@ paths: oneOf: - allOf: - *163 - - &691 + - &692 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -104898,67 +104940,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *164 - - *691 + - *692 - allOf: - *165 - - *691 + - *692 - allOf: - *166 - - *691 + - *692 - allOf: + - *693 - *692 - - *691 - allOf: - *167 - - *691 + - *692 - allOf: - *168 - - *691 + - *692 - allOf: - *169 - - *691 + - *692 - allOf: - *170 - - *691 + - *692 - allOf: - *171 - - *691 + - *692 - allOf: - *172 - - *691 + - *692 - allOf: - *173 - - *691 + - *692 - allOf: - *174 - - *691 + - *692 - allOf: - *175 - - *691 + - *692 - allOf: - *176 - - *691 + - *692 - allOf: - *177 - - *691 + - *692 - allOf: - *178 - - *691 + - *692 - allOf: - *179 - - *691 + - *692 - allOf: - *180 - - *691 + - *692 - allOf: - *181 - - *691 + - *692 - allOf: - *182 - - *691 + - *692 - allOf: - *183 - - *691 + - *692 examples: default: value: @@ -104997,8 +105039,8 @@ paths: category: repos subcategory: rules parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 - name: includes_parents @@ -105009,7 +105051,7 @@ paths: schema: type: boolean default: true - - *693 + - *694 responses: '200': description: Response @@ -105064,8 +105106,8 @@ paths: category: repos subcategory: rules parameters: - - *446 - - *447 + - *448 + - *449 requestBody: description: Request body required: true @@ -105094,7 +105136,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *694 + items: *695 required: - name - enforcement @@ -105127,7 +105169,7 @@ paths: application/json: schema: *184 examples: - default: &703 + default: &704 value: id: 42 name: super cool ruleset @@ -105174,12 +105216,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *446 - - *447 - - *695 - - *103 + - *448 + - *449 - *696 + - *103 - *697 + - *698 - *17 - *19 responses: @@ -105187,9 +105229,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: *699 + default: *700 '404': *6 '500': *38 x-github: @@ -105210,17 +105252,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *446 - - *447 - - *700 + - *448 + - *449 + - *701 responses: '200': description: Response content: application/json: - schema: *701 + schema: *702 examples: - default: *702 + default: *703 '404': *6 '500': *38 x-github: @@ -105248,8 +105290,8 @@ paths: category: repos subcategory: rules parameters: - - *446 - - *447 + - *448 + - *449 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105271,7 +105313,7 @@ paths: application/json: schema: *184 examples: - default: *703 + default: *704 '404': *6 '500': *38 put: @@ -105289,8 +105331,8 @@ paths: category: repos subcategory: rules parameters: - - *446 - - *447 + - *448 + - *449 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105324,7 +105366,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *694 + items: *695 examples: default: value: @@ -105354,7 +105396,7 @@ paths: application/json: schema: *184 examples: - default: *703 + default: *704 '404': *6 '500': *38 delete: @@ -105372,8 +105414,8 @@ paths: category: repos subcategory: rules parameters: - - *446 - - *447 + - *448 + - *449 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105396,8 +105438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 - name: ruleset_id @@ -105415,7 +105457,7 @@ paths: type: array items: *188 examples: - default: *406 + default: *408 '404': *6 '500': *38 x-github: @@ -105434,8 +105476,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *446 - - *447 + - *448 + - *449 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105453,7 +105495,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *409 examples: default: value: @@ -105508,22 +105550,22 @@ 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: - - *446 - - *447 - - *408 - - *409 + - *448 + - *449 - *410 - *411 - *412 + - *413 + - *414 - *108 - *19 - *17 - - *704 - *705 - - *413 - - *414 + - *706 - *415 - *416 + - *417 + - *418 responses: '200': description: Response @@ -105531,7 +105573,7 @@ paths: application/json: schema: type: array - items: &709 + items: &710 type: object properties: number: *123 @@ -105547,8 +105589,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *706 - resolution: *707 + state: *707 + resolution: *708 resolved_at: type: - string @@ -105642,7 +105684,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *708 + - *709 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -105787,16 +105829,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: - - *446 - - *447 - - *526 - - *416 + - *448 + - *449 + - *528 + - *418 responses: '200': description: Response content: application/json: - schema: *709 + schema: *710 examples: default: value: @@ -105850,9 +105892,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 requestBody: required: true content: @@ -105860,8 +105902,8 @@ paths: schema: type: object properties: - state: *706 - resolution: *707 + state: *707 + resolution: *708 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -105897,7 +105939,7 @@ paths: description: Response content: application/json: - schema: *709 + schema: *710 examples: default: value: @@ -105992,9 +106034,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 - *19 - *17 responses: @@ -106005,7 +106047,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &891 + items: &892 type: object properties: type: @@ -106032,7 +106074,6 @@ paths: - commit details: oneOf: - - *710 - *711 - *712 - *713 @@ -106045,6 +106086,7 @@ paths: - *720 - *721 - *722 + - *723 examples: default: value: @@ -106130,8 +106172,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -106139,14 +106181,14 @@ paths: schema: type: object properties: - reason: &724 + reason: &725 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *723 + placeholder_id: *724 required: - reason - placeholder_id @@ -106163,7 +106205,7 @@ paths: schema: type: object properties: - reason: *724 + reason: *725 expire_at: type: - string @@ -106210,8 +106252,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: - - *446 - - *447 + - *448 + - *449 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -106226,7 +106268,7 @@ paths: properties: incremental_scans: type: array - items: &725 + items: &726 description: Information on a single scan performed by secret scanning on the repository type: object @@ -106254,15 +106296,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *725 + items: *726 backfill_scans: type: array - items: *725 + items: *726 custom_pattern_backfill_scans: type: array items: allOf: - - *725 + - *726 - type: object properties: pattern_name: @@ -106332,8 +106374,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *446 - - *447 + - *448 + - *449 - *108 - name: sort description: The property to sort the results by. @@ -106377,9 +106419,9 @@ paths: application/json: schema: type: array - items: *726 + items: *727 examples: - default: *727 + default: *728 '400': *14 '404': *6 x-github: @@ -106402,8 +106444,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -106483,7 +106525,7 @@ paths: login: type: string description: The username of the user credited. - type: *421 + type: *423 required: - login - type @@ -106573,9 +106615,9 @@ paths: description: Response content: application/json: - schema: *726 + schema: *727 examples: - default: &729 + default: &730 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -106808,8 +106850,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -106922,7 +106964,7 @@ paths: description: Response content: application/json: - schema: *726 + schema: *727 examples: default: value: @@ -107069,17 +107111,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: - - *446 - - *447 - - *728 + - *448 + - *449 + - *729 responses: '200': description: Response content: application/json: - schema: *726 + schema: *727 examples: - default: *729 + default: *730 '403': *27 '404': *6 x-github: @@ -107103,9 +107145,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: - - *446 - - *447 - - *728 + - *448 + - *449 + - *729 requestBody: required: true content: @@ -107185,7 +107227,7 @@ paths: login: type: string description: The username of the user credited. - type: *421 + type: *423 required: - login - type @@ -107276,10 +107318,10 @@ paths: description: Response content: application/json: - schema: *726 + schema: *727 examples: - default: *729 - add_credit: *729 + default: *730 + add_credit: *730 '403': *27 '404': *6 '422': @@ -107317,9 +107359,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: - - *446 - - *447 - - *728 + - *448 + - *449 + - *729 responses: '202': *37 '400': *14 @@ -107346,17 +107388,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: - - *446 - - *447 - - *728 + - *448 + - *449 + - *729 responses: '202': description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *453 + default: *455 '400': *14 '422': *15 '403': *27 @@ -107382,8 +107424,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -107479,8 +107521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -107489,7 +107531,7 @@ paths: application/json: schema: type: array - items: &730 + items: &731 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -107522,8 +107564,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -107601,8 +107643,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -107696,8 +107738,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -107851,8 +107893,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -107862,7 +107904,7 @@ paths: application/json: schema: type: array - items: *730 + items: *731 examples: default: value: @@ -107895,8 +107937,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *446 - - *447 + - *448 + - *449 - name: sha in: path required: true @@ -107952,7 +107994,7 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: default: value: @@ -108006,8 +108048,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -108039,14 +108081,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &732 + schema: &733 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -108119,8 +108161,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -108146,7 +108188,7 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: default: value: @@ -108173,8 +108215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -108194,8 +108236,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -108277,8 +108319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -108286,7 +108328,7 @@ paths: application/json: schema: type: array - items: &733 + items: &734 title: Tag protection description: Tag protection type: object @@ -108343,8 +108385,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -108367,7 +108409,7 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: default: value: @@ -108398,8 +108440,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -108436,8 +108478,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *446 - - *447 + - *448 + - *449 - name: ref in: path required: true @@ -108473,8 +108515,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -108486,7 +108528,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 headers: Link: *45 '404': *6 @@ -108506,8 +108548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *446 - - *447 + - *448 + - *449 - *19 - *17 responses: @@ -108515,7 +108557,7 @@ paths: description: Response content: application/json: - schema: &734 + schema: &735 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -108527,7 +108569,7 @@ paths: required: - names examples: - default: &735 + default: &736 value: names: - octocat @@ -108550,8 +108592,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -108582,9 +108624,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *735 + default: *736 '404': *6 '422': *7 x-github: @@ -108605,9 +108647,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *446 - - *447 - - &736 + - *448 + - *449 + - &737 name: per description: The time frame to display results for. in: query @@ -108638,7 +108680,7 @@ paths: - 128 clones: type: array - items: &737 + items: &738 title: Traffic type: object properties: @@ -108725,8 +108767,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -108820,8 +108862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -108884,9 +108926,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *446 - - *447 - - *736 + - *448 + - *449 + - *737 responses: '200': description: Response @@ -108907,7 +108949,7 @@ paths: - 3782 views: type: array - items: *737 + items: *738 required: - uniques - count @@ -108984,8 +109026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -109259,8 +109301,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -109283,8 +109325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -109306,8 +109348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -109333,8 +109375,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *446 - - *447 + - *448 + - *449 - name: ref in: path required: true @@ -109426,9 +109468,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *453 + default: *455 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109579,7 +109621,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &745 + - &746 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -109589,7 +109631,7 @@ paths: type: string examples: - members - - &750 + - &751 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -109601,7 +109643,7 @@ paths: format: int32 examples: - 1 - - &751 + - &752 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -109645,7 +109687,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &740 + items: &741 allOf: - type: object required: @@ -109727,7 +109769,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: &752 + meta: &753 type: object description: The metadata associated with the creation/updates to the user. @@ -109792,30 +109834,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &741 + '400': &742 description: Bad request content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 - '401': *739 - '403': &742 + schema: *739 + '401': *740 + '403': &743 description: Permission denied - '429': &743 + '429': &744 description: Too many requests content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 - '500': &744 + schema: *739 + '500': &745 description: Internal server error content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 + schema: *739 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109839,7 +109881,7 @@ paths: required: true content: application/json: - schema: &748 + schema: &749 type: object required: - schemas @@ -109903,9 +109945,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *740 + schema: *741 examples: - group: &746 + group: &747 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -109924,13 +109966,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': *741 - '401': *739 - '403': *742 - '409': &749 + '400': *742 + '401': *740 + '403': *743 + '409': &750 description: Duplicate record detected - '429': *743 - '500': *744 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109947,7 +109989,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: - - &747 + - &748 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -109956,22 +109998,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *745 + - *746 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *740 + schema: *741 examples: - default: *746 - '400': *741 - '401': *739 - '403': *742 + default: *747 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '429': *743 - '500': *744 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109990,13 +110032,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: - - *747 + - *748 - *39 requestBody: required: true content: application/json: - schema: *748 + schema: *749 examples: group: summary: Group @@ -110022,17 +110064,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *740 + schema: *741 examples: - group: *746 - groupWithMembers: *746 - '400': *741 - '401': *739 - '403': *742 + group: *747 + groupWithMembers: *747 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '409': *749 - '429': *743 - '500': *744 + '409': *750 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110056,13 +110098,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: - - *747 + - *748 - *39 requestBody: required: true content: application/json: - schema: &759 + schema: &760 type: object required: - Operations @@ -110122,17 +110164,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *740 + schema: *741 examples: - updateGroup: *746 - addMembers: *746 - '400': *741 - '401': *739 - '403': *742 + updateGroup: *747 + addMembers: *747 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '409': *749 - '429': *743 - '500': *744 + '409': *750 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110148,17 +110190,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: - - *747 + - *748 - *39 responses: '204': description: Group was deleted, no content - '400': *741 - '401': *739 - '403': *742 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '429': *743 - '500': *744 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110192,8 +110234,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *750 - *751 + - *752 - *39 responses: '200': @@ -110227,7 +110269,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &754 + items: &755 allOf: - type: object required: @@ -110319,7 +110361,7 @@ paths: address. examples: - true - roles: &753 + roles: &754 type: array description: The roles assigned to the user. items: @@ -110378,7 +110420,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *752 + meta: *753 startIndex: type: integer description: A starting index for the returned page @@ -110417,11 +110459,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *741 - '401': *739 - '403': *742 - '429': *743 - '500': *744 + '400': *742 + '401': *740 + '403': *743 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110445,7 +110487,7 @@ paths: required: true content: application/json: - schema: &757 + schema: &758 type: object required: - schemas @@ -110538,9 +110580,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *753 + roles: *754 examples: - user: &758 + user: &759 summary: User value: schemas: @@ -110587,9 +110629,9 @@ paths: description: User has been created content: application/scim+json: - schema: *754 + schema: *755 examples: - user: &755 + user: &756 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110615,13 +110657,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: *755 - '400': *741 - '401': *739 - '403': *742 - '409': *749 - '429': *743 - '500': *744 + enterpriseOwner: *756 + '400': *742 + '401': *740 + '403': *743 + '409': *750 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110638,7 +110680,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: - - &756 + - &757 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -110651,15 +110693,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *754 + schema: *755 examples: - default: *755 - '400': *741 - '401': *739 - '403': *742 + default: *756 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '429': *743 - '500': *744 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110681,30 +110723,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: - - *756 + - *757 - *39 requestBody: required: true content: application/json: - schema: *757 + schema: *758 examples: - user: *758 + user: *759 responses: '200': description: User was updated content: application/scim+json: - schema: *754 + schema: *755 examples: - user: *755 - '400': *741 - '401': *739 - '403': *742 + user: *756 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '409': *749 - '429': *743 - '500': *744 + '409': *750 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110739,13 +110781,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: - - *756 + - *757 - *39 requestBody: required: true content: application/json: - schema: *759 + schema: *760 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -110785,18 +110827,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *754 + schema: *755 examples: - userMultiValuedProperties: *755 - userSingleValuedProperties: *755 - disableUser: *755 - '400': *741 - '401': *739 - '403': *742 + userMultiValuedProperties: *756 + userSingleValuedProperties: *756 + disableUser: *756 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '409': *749 - '429': *743 - '500': *744 + '409': *750 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110816,17 +110858,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: - - *756 + - *757 - *39 responses: '204': description: User was deleted, no content - '400': *741 - '401': *739 - '403': *742 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '429': *743 - '500': *744 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110917,7 +110959,7 @@ paths: - 1 Resources: type: array - items: &760 + items: &761 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -111164,22 +111206,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &761 + '404': &762 description: Resource not found content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 - '403': &762 + schema: *739 + '403': &763 description: Forbidden content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 - '400': *741 - '429': *743 + schema: *739 + '400': *742 + '429': *744 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -111205,9 +111247,9 @@ paths: description: Response content: application/scim+json: - schema: *760 + schema: *761 examples: - default: &763 + default: &764 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -111230,17 +111272,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *761 - '403': *762 - '500': *744 + '404': *762 + '403': *763 + '500': *745 '409': description: Conflict content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 - '400': *741 + schema: *739 + '400': *742 requestBody: required: true content: @@ -111340,17 +111382,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *85 - - *756 + - *757 responses: '200': description: Response content: application/scim+json: - schema: *760 + schema: *761 examples: - default: *763 - '404': *761 - '403': *762 + default: *764 + '404': *762 + '403': *763 '304': *35 x-github: githubCloudOnly: true @@ -111374,18 +111416,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *85 - - *756 + - *757 responses: '200': description: Response content: application/scim+json: - schema: *760 + schema: *761 examples: - default: *763 + default: *764 '304': *35 - '404': *761 - '403': *762 + '404': *762 + '403': *763 requestBody: required: true content: @@ -111500,19 +111542,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *85 - - *756 + - *757 responses: '200': description: Response content: application/scim+json: - schema: *760 + schema: *761 examples: - default: *763 + default: *764 '304': *35 - '404': *761 - '403': *762 - '400': *741 + '404': *762 + '403': *763 + '400': *742 '429': description: Response content: @@ -111608,12 +111650,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *85 - - *756 + - *757 responses: '204': description: Response - '404': *761 - '403': *762 + '404': *762 + '403': *763 '304': *35 x-github: githubCloudOnly: true @@ -111747,7 +111789,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &764 + text_matches: &765 title: Search Result Text Matches type: array items: @@ -111911,7 +111953,7 @@ paths: enum: - author-date - committer-date - - &765 + - &766 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 @@ -111980,7 +112022,7 @@ paths: committer: anyOf: - type: 'null' - - *497 + - *499 comment_count: type: integer message: @@ -111999,7 +112041,7 @@ paths: url: type: string format: uri - verification: *616 + verification: *617 required: - author - committer @@ -112014,7 +112056,7 @@ paths: committer: anyOf: - type: 'null' - - *497 + - *499 parents: type: array items: @@ -112031,7 +112073,7 @@ paths: type: number node_id: type: string - text_matches: *764 + text_matches: *765 required: - sha - node_id @@ -112224,7 +112266,7 @@ paths: - interactions - created - updated - - *765 + - *766 - *17 - *19 - name: advanced_search @@ -112321,11 +112363,11 @@ paths: type: - string - 'null' - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: type: string state_reason: @@ -112339,7 +112381,7 @@ paths: milestone: anyOf: - type: 'null' - - *390 + - *392 comments: type: integer created_at: @@ -112353,7 +112395,7 @@ paths: - string - 'null' format: date-time - text_matches: *764 + text_matches: *765 pull_request: type: object properties: @@ -112402,7 +112444,7 @@ paths: timeline_url: type: string format: uri - type: *356 + type: *358 performed_via_github_app: anyOf: - type: 'null' @@ -112576,7 +112618,7 @@ paths: enum: - created - updated - - *765 + - *766 - *17 - *19 responses: @@ -112621,7 +112663,7 @@ paths: - 'null' score: type: number - text_matches: *764 + text_matches: *765 required: - id - node_id @@ -112707,7 +112749,7 @@ paths: - forks - help-wanted-issues - updated - - *765 + - *766 - *17 - *19 responses: @@ -112944,7 +112986,7 @@ paths: - admin - pull - push - text_matches: *764 + text_matches: *765 temp_clone_token: type: string allow_merge_commit: @@ -113253,7 +113295,7 @@ paths: - string - 'null' format: uri - text_matches: *764 + text_matches: *765 related: type: - array @@ -113448,7 +113490,7 @@ paths: - followers - repositories - joined - - *765 + - *766 - *17 - *19 responses: @@ -113558,7 +113600,7 @@ paths: type: - boolean - 'null' - text_matches: *764 + text_matches: *765 blog: type: - string @@ -113640,7 +113682,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &769 + - &770 name: team_id description: The unique identifier of the team. in: path @@ -113652,9 +113694,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '404': *6 x-github: githubCloudOnly: false @@ -113681,7 +113723,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *769 + - *770 requestBody: required: true content: @@ -113745,16 +113787,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '201': description: Response content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '404': *6 '422': *15 '403': *27 @@ -113782,7 +113824,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *769 + - *770 responses: '204': description: Response @@ -113813,7 +113855,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *769 + - *770 - *108 - *17 - *19 @@ -113824,9 +113866,9 @@ paths: application/json: schema: type: array - items: *431 + items: *433 examples: - default: *770 + default: *771 headers: Link: *45 x-github: @@ -113855,7 +113897,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *769 + - *770 requestBody: required: true content: @@ -113889,9 +113931,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 x-github: triggersNotification: true githubCloudOnly: false @@ -113918,16 +113960,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *769 - - *433 + - *770 + - *435 responses: '200': description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113952,8 +113994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *769 - - *433 + - *770 + - *435 requestBody: required: false content: @@ -113976,9 +114018,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *771 + default: *772 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114003,8 +114045,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *769 - - *433 + - *770 + - *435 responses: '204': description: Response @@ -114033,8 +114075,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *769 - - *433 + - *770 + - *435 - *108 - *17 - *19 @@ -114045,9 +114087,9 @@ paths: application/json: schema: type: array - items: *434 + items: *436 examples: - default: *772 + default: *773 headers: Link: *45 x-github: @@ -114076,8 +114118,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *769 - - *433 + - *770 + - *435 requestBody: required: true content: @@ -114099,9 +114141,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: *435 + default: *437 x-github: triggersNotification: true githubCloudOnly: false @@ -114128,17 +114170,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *769 - - *433 - - *436 + - *770 + - *435 + - *438 responses: '200': description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: *435 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114163,9 +114205,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *769 - - *433 - - *436 + - *770 + - *435 + - *438 requestBody: required: true content: @@ -114187,9 +114229,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: *773 + default: *774 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114214,9 +114256,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *769 - - *433 - - *436 + - *770 + - *435 + - *438 responses: '204': description: Response @@ -114245,9 +114287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *769 - - *433 - - *436 + - *770 + - *435 + - *438 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -114273,9 +114315,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 x-github: @@ -114304,9 +114346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *769 - - *433 - - *436 + - *770 + - *435 + - *438 requestBody: required: true content: @@ -114338,9 +114380,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114366,8 +114408,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *769 - - *433 + - *770 + - *435 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -114393,9 +114435,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 x-github: @@ -114424,8 +114466,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *769 - - *433 + - *770 + - *435 requestBody: required: true content: @@ -114457,9 +114499,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -114483,7 +114525,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *769 + - *770 - *17 - *19 responses: @@ -114493,9 +114535,9 @@ paths: application/json: schema: type: array - items: *353 + items: *355 examples: - default: *354 + default: *356 headers: Link: *45 x-github: @@ -114521,7 +114563,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *769 + - *770 - name: role description: Filters members returned by their role in the team. in: query @@ -114572,7 +114614,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *769 + - *770 - *136 responses: '204': @@ -114609,7 +114651,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *769 + - *770 - *136 responses: '204': @@ -114649,7 +114691,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *769 + - *770 - *136 responses: '204': @@ -114686,16 +114728,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: - - *769 + - *770 - *136 responses: '200': description: Response content: application/json: - schema: *445 + schema: *447 examples: - response-if-user-is-a-team-maintainer: *774 + response-if-user-is-a-team-maintainer: *775 '404': *6 x-github: githubCloudOnly: false @@ -114728,7 +114770,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: - - *769 + - *770 - *136 requestBody: required: false @@ -114754,9 +114796,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: - response-if-users-membership-with-team-is-now-pending: *775 + response-if-users-membership-with-team-is-now-pending: *776 '403': description: Forbidden if team synchronization is set up '422': @@ -114790,7 +114832,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: - - *769 + - *770 - *136 responses: '204': @@ -114818,7 +114860,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *769 + - *770 - *17 - *19 responses: @@ -114830,7 +114872,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 '404': *6 @@ -114860,15 +114902,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: - - *769 - - *446 - - *447 + - *770 + - *448 + - *449 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *776 + schema: *777 examples: alternative-response-with-extra-repository-information: value: @@ -115019,9 +115061,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: - - *769 - - *446 - - *447 + - *770 + - *448 + - *449 requestBody: required: false content: @@ -115071,9 +115113,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: - - *769 - - *446 - - *447 + - *770 + - *448 + - *449 responses: '204': description: Response @@ -115102,15 +115144,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: - - *769 + - *770 responses: '200': description: Response content: application/json: - schema: *448 + schema: *450 examples: - default: *449 + default: *451 '403': *27 '404': *6 x-github: @@ -115137,7 +115179,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: - - *769 + - *770 requestBody: required: true content: @@ -115198,7 +115240,7 @@ paths: description: Response content: application/json: - schema: *448 + schema: *450 examples: default: value: @@ -115229,7 +115271,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *769 + - *770 - *17 - *19 responses: @@ -115241,7 +115283,7 @@ paths: type: array items: *301 examples: - response-if-child-teams-exist: *777 + response-if-child-teams-exist: *778 headers: Link: *45 '404': *6 @@ -115274,7 +115316,7 @@ paths: application/json: schema: oneOf: - - &779 + - &780 title: Private User description: Private User type: object @@ -115524,7 +115566,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *778 + - *779 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -115684,7 +115726,7 @@ paths: description: Response content: application/json: - schema: *779 + schema: *780 examples: default: value: @@ -115887,9 +115929,9 @@ paths: type: integer codespaces: type: array - items: *361 + items: *363 examples: - default: *362 + default: *364 '304': *35 '500': *38 '401': *23 @@ -116028,17 +116070,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '401': *23 '403': *27 '404': *6 @@ -116082,7 +116124,7 @@ paths: type: integer secrets: type: array - items: &780 + items: &781 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -116124,7 +116166,7 @@ paths: - visibility - selected_repositories_url examples: - default: *548 + default: *550 headers: Link: *45 x-github: @@ -116202,7 +116244,7 @@ paths: description: Response content: application/json: - schema: *780 + schema: *781 examples: default: value: @@ -116348,7 +116390,7 @@ paths: type: array items: *272 examples: - default: *781 + default: *782 '401': *23 '403': *27 '404': *6 @@ -116492,15 +116534,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: - - *363 + - *365 responses: '200': description: Response content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '304': *35 '500': *38 '401': *23 @@ -116526,7 +116568,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: - - *363 + - *365 requestBody: required: false content: @@ -116556,9 +116598,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '401': *23 '403': *27 '404': *6 @@ -116580,7 +116622,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: - - *363 + - *365 responses: '202': *37 '304': *35 @@ -116609,13 +116651,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: - - *363 + - *365 responses: '202': description: Response content: application/json: - schema: &782 + schema: &783 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -116668,7 +116710,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &783 + default: &784 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -116700,7 +116742,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *363 + - *365 - name: export_id in: path required: true @@ -116713,9 +116755,9 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: *783 + default: *784 '404': *6 x-github: githubCloudOnly: false @@ -116736,7 +116778,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *363 + - *365 responses: '200': description: Response @@ -116752,9 +116794,9 @@ paths: type: integer machines: type: array - items: *547 + items: *549 examples: - default: *784 + default: *785 '304': *35 '500': *38 '401': *23 @@ -116783,7 +116825,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: - - *363 + - *365 requestBody: required: true content: @@ -116839,11 +116881,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *451 + repository: *453 machine: anyOf: - type: 'null' - - *547 + - *549 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -117640,15 +117682,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: - - *363 + - *365 responses: '200': description: Response content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '304': *35 '500': *38 '400': *14 @@ -117680,15 +117722,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: - - *363 + - *365 responses: '200': description: Response content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '500': *38 '401': *23 '403': *27 @@ -117718,9 +117760,9 @@ paths: application/json: schema: type: array - items: *371 + items: *373 examples: - default: &795 + default: &796 value: - id: 197 name: hello_docker @@ -117821,7 +117863,7 @@ paths: application/json: schema: type: array - items: &785 + items: &786 title: Email description: Email type: object @@ -117891,9 +117933,9 @@ paths: application/json: schema: type: array - items: *785 + items: *786 examples: - default: &797 + default: &798 value: - email: octocat@github.com verified: true @@ -117970,7 +118012,7 @@ paths: application/json: schema: type: array - items: *785 + items: *786 examples: default: value: @@ -118228,7 +118270,7 @@ paths: application/json: schema: type: array - items: &786 + items: &787 title: GPG Key description: A unique encryption key type: object @@ -118373,7 +118415,7 @@ paths: - subkeys - revoked examples: - default: &811 + default: &812 value: - id: 3 name: Octocat's GPG Key @@ -118458,9 +118500,9 @@ paths: description: Response content: application/json: - schema: *786 + schema: *787 examples: - default: &787 + default: &788 value: id: 3 name: Octocat's GPG Key @@ -118517,7 +118559,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: - - &788 + - &789 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -118529,9 +118571,9 @@ paths: description: Response content: application/json: - schema: *786 + schema: *787 examples: - default: *787 + default: *788 '404': *6 '304': *35 '403': *27 @@ -118554,7 +118596,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: - - *788 + - *789 responses: '204': description: Response @@ -118830,12 +118872,12 @@ paths: application/json: schema: anyOf: - - *351 + - *353 - type: object properties: {} additionalProperties: false examples: - default: *352 + default: *354 '204': description: Response when there are no restrictions x-github: @@ -118859,7 +118901,7 @@ paths: required: true content: application/json: - schema: *627 + schema: *628 examples: default: value: @@ -118870,7 +118912,7 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: default: value: @@ -118951,7 +118993,7 @@ paths: - closed - all default: open - - *359 + - *361 - name: sort description: What to sort results by. in: query @@ -118976,7 +119018,7 @@ paths: type: array items: *212 examples: - default: *360 + default: *362 headers: Link: *45 '404': *6 @@ -119009,7 +119051,7 @@ paths: application/json: schema: type: array - items: &789 + items: &790 title: Key description: Key type: object @@ -119112,9 +119154,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *790 examples: - default: &790 + default: &791 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -119147,15 +119189,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: - - *654 + - *655 responses: '200': description: Response content: application/json: - schema: *789 + schema: *790 examples: - default: *790 + default: *791 '404': *6 '304': *35 '403': *27 @@ -119178,7 +119220,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: - - *654 + - *655 responses: '204': description: Response @@ -119211,7 +119253,7 @@ paths: application/json: schema: type: array - items: &791 + items: &792 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -119290,7 +119332,7 @@ paths: - account - plan examples: - default: &792 + default: &793 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -119352,9 +119394,9 @@ paths: application/json: schema: type: array - items: *791 + items: *792 examples: - default: *792 + default: *793 headers: Link: *45 '304': *35 @@ -119394,7 +119436,7 @@ paths: application/json: schema: type: array - items: *364 + items: *366 examples: default: value: @@ -119502,7 +119544,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *366 examples: default: value: @@ -119585,7 +119627,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *366 examples: default: value: @@ -119653,7 +119695,7 @@ paths: application/json: schema: type: array - items: *366 + items: *368 examples: default: value: @@ -119915,7 +119957,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *368 examples: default: value: @@ -120095,7 +120137,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *367 + - *369 - name: exclude in: query required: false @@ -120108,7 +120150,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *368 examples: default: value: @@ -120302,7 +120344,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *367 + - *369 responses: '302': description: Response @@ -120328,7 +120370,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *367 + - *369 responses: '204': description: Response @@ -120357,8 +120399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *367 - - *793 + - *369 + - *794 responses: '204': description: Response @@ -120382,7 +120424,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *367 + - *369 - *17 - *19 responses: @@ -120394,7 +120436,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 '404': *6 @@ -120473,7 +120515,7 @@ paths: - docker - nuget - container - - *794 + - *795 - *19 - *17 responses: @@ -120483,10 +120525,10 @@ paths: application/json: schema: type: array - items: *371 + items: *373 examples: - default: *795 - '400': *796 + default: *796 + '400': *797 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120506,16 +120548,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: - - *373 - - *374 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *371 + schema: *373 examples: - default: &812 + default: &813 value: id: 40201 name: octo-name @@ -120628,8 +120670,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: - - *373 - - *374 + - *375 + - *376 responses: '204': description: Response @@ -120659,8 +120701,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: - - *373 - - *374 + - *375 + - *376 - name: token description: package token schema: @@ -120692,8 +120734,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: - - *373 - - *374 + - *375 + - *376 - *19 - *17 - name: state @@ -120713,7 +120755,7 @@ paths: application/json: schema: type: array - items: *375 + items: *377 examples: default: value: @@ -120762,15 +120804,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: - - *373 - - *374 + - *375 - *376 + - *378 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: default: value: @@ -120806,9 +120848,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: - - *373 - - *374 + - *375 - *376 + - *378 responses: '204': description: Response @@ -120838,9 +120880,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: - - *373 - - *374 + - *375 - *376 + - *378 responses: '204': description: Response @@ -120877,9 +120919,9 @@ paths: application/json: schema: type: array - items: *785 + items: *786 examples: - default: *797 + default: *798 headers: Link: *45 '304': *35 @@ -120992,7 +121034,7 @@ paths: type: array items: *76 examples: - default: &804 + default: &805 summary: Default response value: - id: 1296269 @@ -121310,9 +121352,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *453 + default: *455 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -121350,9 +121392,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: *798 + default: *799 headers: Link: *45 '304': *35 @@ -121375,7 +121417,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *355 + - *357 responses: '204': description: Response @@ -121398,7 +121440,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *355 + - *357 responses: '204': description: Response @@ -121431,7 +121473,7 @@ paths: application/json: schema: type: array - items: &799 + items: &800 title: Social account description: Social media account type: object @@ -121448,7 +121490,7 @@ paths: - provider - url examples: - default: &800 + default: &801 value: - provider: twitter url: https://twitter.com/github @@ -121511,9 +121553,9 @@ paths: application/json: schema: type: array - items: *799 + items: *800 examples: - default: *800 + default: *801 '422': *15 '304': *35 '404': *6 @@ -121601,7 +121643,7 @@ paths: application/json: schema: type: array - items: &801 + items: &802 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -121621,7 +121663,7 @@ paths: - title - created_at examples: - default: &825 + default: &826 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -121686,9 +121728,9 @@ paths: description: Response content: application/json: - schema: *801 + schema: *802 examples: - default: &802 + default: &803 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -121718,7 +121760,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: - - &803 + - &804 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -121730,9 +121772,9 @@ paths: description: Response content: application/json: - schema: *801 + schema: *802 examples: - default: *802 + default: *803 '404': *6 '304': *35 '403': *27 @@ -121755,7 +121797,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: - - *803 + - *804 responses: '204': description: Response @@ -121784,7 +121826,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: - - &826 + - &827 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 @@ -121809,11 +121851,11 @@ paths: type: array items: *76 examples: - default-response: *804 + default-response: *805 application/vnd.github.v3.star+json: schema: type: array - items: &827 + items: &828 title: Starred Repository description: Starred Repository type: object @@ -121969,8 +122011,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response if this repository is starred by you @@ -121998,8 +122040,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -122023,8 +122065,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -122059,7 +122101,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 '304': *35 @@ -122096,7 +122138,7 @@ paths: application/json: schema: type: array - items: *429 + items: *431 examples: default: value: @@ -122182,10 +122224,10 @@ paths: application/json: schema: oneOf: + - *780 - *779 - - *778 examples: - default-response: &806 + default-response: &807 summary: Default response value: login: octocat @@ -122220,7 +122262,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &807 + response-with-git-hub-plan-information: &808 summary: Response with GitHub plan information value: login: octocat @@ -122283,7 +122325,7 @@ paths: required: true schema: type: string - - *389 + - *391 requestBody: required: true description: Details of the draft item to create in the project. @@ -122317,9 +122359,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *396 examples: - draft_issue: *395 + draft_issue: *397 '304': *35 '403': *27 '401': *23 @@ -122342,7 +122384,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *805 + - *806 - *17 responses: '200': @@ -122391,11 +122433,11 @@ paths: application/json: schema: oneOf: + - *780 - *779 - - *778 examples: - default-response: *806 - response-with-git-hub-plan-information: *807 + default-response: *807 + response-with-git-hub-plan-information: *808 '404': *6 x-github: githubCloudOnly: false @@ -122445,8 +122487,8 @@ paths: required: - subject_digests examples: - default: *808 - withPredicateType: *809 + default: *809 + withPredicateType: *810 responses: '200': description: Response @@ -122500,7 +122542,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *810 + default: *811 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -122705,7 +122747,7 @@ paths: initiator: type: string examples: - default: *493 + default: *495 '201': description: Response content: @@ -122744,9 +122786,9 @@ paths: application/json: schema: type: array - items: *371 + items: *373 examples: - default: *795 + default: *796 '403': *27 '401': *23 x-github: @@ -123130,9 +123172,9 @@ paths: application/json: schema: type: array - items: *786 + items: *787 examples: - default: *811 + default: *812 headers: Link: *45 x-github: @@ -123236,7 +123278,7 @@ paths: application/json: schema: *20 examples: - default: *626 + default: *627 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123361,7 +123403,7 @@ paths: - docker - nuget - container - - *794 + - *795 - *136 - *19 - *17 @@ -123372,12 +123414,12 @@ paths: application/json: schema: type: array - items: *371 + items: *373 examples: - default: *795 + default: *796 '403': *27 '401': *23 - '400': *796 + '400': *797 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123397,17 +123439,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *373 - - *374 + - *375 + - *376 - *136 responses: '200': description: Response content: application/json: - schema: *371 + schema: *373 examples: - default: *812 + default: *813 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123428,8 +123470,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *373 - - *374 + - *375 + - *376 - *136 responses: '204': @@ -123462,8 +123504,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *373 - - *374 + - *375 + - *376 - *136 - name: token description: package token @@ -123496,8 +123538,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: - - *373 - - *374 + - *375 + - *376 - *136 responses: '200': @@ -123506,7 +123548,7 @@ paths: application/json: schema: type: array - items: *375 + items: *377 examples: default: value: @@ -123564,16 +123606,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: - - *373 - - *374 + - *375 - *376 + - *378 - *136 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: default: value: @@ -123608,10 +123650,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *373 - - *374 - - *136 + - *375 - *376 + - *136 + - *378 responses: '204': description: Response @@ -123643,10 +123685,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *373 - - *374 - - *136 + - *375 - *376 + - *136 + - *378 responses: '204': description: Response @@ -123687,9 +123729,9 @@ paths: application/json: schema: type: array - items: *387 + items: *389 examples: - default: *388 + default: *390 headers: Link: *45 '304': *35 @@ -123711,16 +123753,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *389 + - *391 - *136 responses: '200': description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: *388 + default: *390 headers: Link: *45 '304': *35 @@ -123742,7 +123784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *389 + - *391 - *136 - *17 - *106 @@ -123754,9 +123796,9 @@ paths: application/json: schema: type: array - items: *392 + items: *394 examples: - default: *813 + default: *814 headers: Link: *45 '304': *35 @@ -123778,7 +123820,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#add-field-to-user-owned-project parameters: - *136 - - *389 + - *391 requestBody: required: true content: @@ -123816,7 +123858,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *814 + items: *815 required: - name - data_type @@ -123832,7 +123874,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *815 + iteration_configuration: *816 required: - name - data_type @@ -123854,20 +123896,20 @@ paths: value: name: Due date data_type: date - single_select_field: *816 - iteration_field: *817 + single_select_field: *817 + iteration_field: *818 responses: '201': description: Response content: application/json: - schema: *392 + schema: *394 examples: - text_field: *818 - number_field: *819 - date_field: *820 - single_select_field: *821 - iteration_field: *822 + text_field: *819 + number_field: *820 + date_field: *821 + single_select_field: *822 + iteration_field: *823 '304': *35 '403': *27 '401': *23 @@ -123888,17 +123930,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *389 - - *823 + - *391 + - *824 - *136 responses: '200': description: Response content: application/json: - schema: *392 + schema: *394 examples: - default: *824 + default: *825 headers: Link: *45 '304': *35 @@ -123921,7 +123963,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: - - *389 + - *391 - *136 - *106 - *107 @@ -123954,9 +123996,9 @@ paths: application/json: schema: type: array - items: *396 + items: *398 examples: - default: *397 + default: *399 headers: Link: *45 '304': *35 @@ -123978,7 +124020,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - *136 - - *389 + - *391 requestBody: required: true description: Details of the item to add to the project. @@ -124015,10 +124057,10 @@ paths: description: Response content: application/json: - schema: *394 + schema: *396 examples: - issue: *395 - pull_request: *395 + issue: *397 + pull_request: *397 '304': *35 '403': *27 '401': *23 @@ -124038,9 +124080,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: - - *389 + - *391 - *136 - - *398 + - *400 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -124060,9 +124102,9 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: - default: *397 + default: *399 headers: Link: *45 '304': *35 @@ -124083,9 +124125,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *389 + - *391 - *136 - - *398 + - *400 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -124158,13 +124200,13 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: - text_field: *397 - number_field: *397 - date_field: *397 - single_select_field: *397 - iteration_field: *397 + text_field: *399 + number_field: *399 + date_field: *399 + single_select_field: *399 + iteration_field: *399 '401': *23 '403': *27 '404': *6 @@ -124184,9 +124226,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *389 + - *391 - *136 - - *398 + - *400 responses: '204': description: Response @@ -124406,7 +124448,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -124436,9 +124478,9 @@ paths: application/json: schema: type: array - items: *799 + items: *800 examples: - default: *800 + default: *801 headers: Link: *45 x-github: @@ -124468,9 +124510,9 @@ paths: application/json: schema: type: array - items: *801 + items: *802 examples: - default: *825 + default: *826 headers: Link: *45 x-github: @@ -124495,7 +124537,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *136 - - *826 + - *827 - *108 - *17 - *19 @@ -124507,11 +124549,11 @@ paths: schema: anyOf: - type: array - items: *827 + items: *828 - type: array items: *76 examples: - default-response: *804 + default-response: *805 headers: Link: *45 x-github: @@ -124542,7 +124584,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -124671,7 +124713,7 @@ webhooks: type: string enum: - disabled - enterprise: &828 + enterprise: &829 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -124740,7 +124782,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &829 + installation: &830 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -124761,7 +124803,7 @@ webhooks: required: - id - node_id - organization: &830 + organization: &831 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -124834,7 +124876,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &831 + repository: &832 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -125747,10 +125789,10 @@ webhooks: type: string enum: - enabled - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -125826,11 +125868,11 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - rule: &832 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + rule: &833 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) @@ -126053,11 +126095,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - rule: *832 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + rule: *833 sender: *4 required: - action @@ -126245,11 +126287,11 @@ webhooks: - everyone required: - from - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - rule: *832 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + rule: *833 sender: *4 required: - action @@ -126322,7 +126364,7 @@ webhooks: required: true content: application/json: - schema: &852 + schema: &853 title: Exemption request cancellation event type: object properties: @@ -126330,11 +126372,11 @@ webhooks: type: string enum: - cancelled - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - exemption_request: &833 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + exemption_request: &834 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -126608,7 +126650,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &834 + items: &835 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -126720,7 +126762,7 @@ webhooks: required: true content: application/json: - schema: &853 + schema: &854 title: Exemption request completed event type: object properties: @@ -126728,11 +126770,11 @@ webhooks: type: string enum: - completed - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - exemption_request: *833 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + exemption_request: *834 sender: *4 required: - action @@ -126804,7 +126846,7 @@ webhooks: required: true content: application/json: - schema: &850 + schema: &851 title: Exemption request created event type: object properties: @@ -126812,11 +126854,11 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - exemption_request: *833 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + exemption_request: *834 sender: *4 required: - action @@ -126888,7 +126930,7 @@ webhooks: required: true content: application/json: - schema: &854 + schema: &855 title: Exemption response dismissed event type: object properties: @@ -126896,12 +126938,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - exemption_request: *833 - exemption_response: *834 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + exemption_request: *834 + exemption_response: *835 sender: *4 required: - action @@ -126975,7 +127017,7 @@ webhooks: required: true content: application/json: - schema: &851 + schema: &852 title: Exemption response submitted event type: object properties: @@ -126983,12 +127025,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - exemption_request: *833 - exemption_response: *834 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + exemption_request: *834 + exemption_response: *835 sender: *4 required: - action @@ -127072,7 +127114,7 @@ webhooks: type: string enum: - completed - check_run: &836 + check_run: &837 title: CheckRun description: A check performed on the code of a given code change type: object @@ -127182,7 +127224,7 @@ webhooks: - examples: - neutral - deployment: *835 + deployment: *836 details_url: type: string examples: @@ -127280,10 +127322,10 @@ webhooks: - output - app - pull_requests - installation: *829 - enterprise: *828 - organization: *830 - repository: *831 + installation: *830 + enterprise: *829 + organization: *831 + repository: *832 sender: *4 required: - check_run @@ -127676,11 +127718,11 @@ webhooks: type: string enum: - created - check_run: *836 - installation: *829 - enterprise: *828 - organization: *830 - repository: *831 + check_run: *837 + installation: *830 + enterprise: *829 + organization: *831 + repository: *832 sender: *4 required: - check_run @@ -128076,11 +128118,11 @@ webhooks: type: string enum: - requested_action - check_run: *836 - installation: *829 - enterprise: *828 - organization: *830 - repository: *831 + check_run: *837 + installation: *830 + enterprise: *829 + organization: *831 + repository: *832 requested_action: description: The action requested by the user. type: object @@ -128485,11 +128527,11 @@ webhooks: type: string enum: - rerequested - check_run: *836 - installation: *829 - enterprise: *828 - organization: *830 - repository: *831 + check_run: *837 + installation: *830 + enterprise: *829 + organization: *831 + repository: *832 sender: *4 required: - check_run @@ -129481,10 +129523,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -130193,10 +130235,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -130899,10 +130941,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -131071,7 +131113,7 @@ webhooks: required: - login - id - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131223,20 +131265,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &837 + commit_oid: &838 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: *828 - installation: *829 - organization: *830 - ref: &838 + enterprise: *829 + installation: *830 + organization: *831 + ref: &839 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: *831 + repository: *832 sender: *4 required: - action @@ -131403,7 +131445,7 @@ webhooks: required: - login - id - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131644,12 +131686,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *837 - enterprise: *828 - installation: *829 - organization: *830 - ref: *838 - repository: *831 + commit_oid: *838 + enterprise: *829 + installation: *830 + organization: *831 + ref: *839 + repository: *832 sender: *4 required: - action @@ -131747,7 +131789,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131932,12 +131974,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *837 - enterprise: *828 - installation: *829 - organization: *830 - ref: *838 - repository: *831 + commit_oid: *838 + enterprise: *829 + installation: *830 + organization: *831 + ref: *839 + repository: *832 sender: *4 required: - action @@ -132106,7 +132148,7 @@ webhooks: required: - login - id - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132283,12 +132325,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *837 - enterprise: *828 - installation: *829 - organization: *830 - ref: *838 - repository: *831 + commit_oid: *838 + enterprise: *829 + installation: *830 + organization: *831 + ref: *839 + repository: *832 sender: *4 required: - action @@ -132389,7 +132431,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132578,9 +132620,9 @@ webhooks: type: - string - 'null' - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -132588,7 +132630,7 @@ webhooks: type: - string - 'null' - repository: *831 + repository: *832 sender: *4 required: - action @@ -132687,7 +132729,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132834,12 +132876,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *837 - enterprise: *828 - installation: *829 - organization: *830 - ref: *838 - repository: *831 + commit_oid: *838 + enterprise: *829 + installation: *830 + organization: *831 + ref: *839 + repository: *832 sender: *4 required: - action @@ -133101,10 +133143,10 @@ webhooks: - updated_at - author_association - body - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -133185,18 +133227,18 @@ webhooks: type: - string - 'null' - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *830 - pusher_type: &839 + organization: *831 + pusher_type: &840 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &840 + ref: &841 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -133206,7 +133248,7 @@ webhooks: enum: - tag - branch - repository: *831 + repository: *832 sender: *4 required: - ref @@ -133289,9 +133331,9 @@ webhooks: enum: - created definition: *150 - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 required: - action @@ -133376,9 +133418,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 required: - action @@ -133456,9 +133498,9 @@ webhooks: enum: - promote_to_enterprise definition: *150 - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 required: - action @@ -133536,9 +133578,9 @@ webhooks: enum: - updated definition: *150 - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 required: - action @@ -133615,10 +133657,10 @@ webhooks: type: string enum: - updated - enterprise: *828 - installation: *829 - repository: *831 - organization: *830 + enterprise: *829 + installation: *830 + repository: *832 + organization: *831 sender: *4 new_property_values: type: array @@ -133703,18 +133745,18 @@ webhooks: title: delete event type: object properties: - enterprise: *828 - installation: *829 - organization: *830 - pusher_type: *839 - ref: *840 + enterprise: *829 + installation: *830 + organization: *831 + pusher_type: *840 + ref: *841 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *831 + repository: *832 sender: *4 required: - ref @@ -133798,11 +133840,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -133886,11 +133928,11 @@ webhooks: type: string enum: - auto_reopened - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -133974,11 +134016,11 @@ webhooks: type: string enum: - created - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -134060,11 +134102,11 @@ webhooks: type: string enum: - dismissed - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -134146,11 +134188,11 @@ webhooks: type: string enum: - fixed - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -134233,11 +134275,11 @@ webhooks: type: string enum: - reintroduced - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -134319,11 +134361,11 @@ webhooks: type: string enum: - reopened - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -134400,9 +134442,9 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - key: &841 + enterprise: *829 + installation: *830 + key: &842 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -134440,8 +134482,8 @@ webhooks: - verified - created_at - read_only - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -134518,11 +134560,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - key: *841 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + key: *842 + organization: *831 + repository: *832 sender: *4 required: - action @@ -135094,12 +135136,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - workflow: &845 + workflow: &846 title: Workflow type: - object @@ -135837,13 +135879,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *580 + deployment: *582 pull_requests: type: array - items: *674 - repository: *831 - organization: *830 - installation: *829 + items: *675 + repository: *832 + organization: *831 + installation: *830 sender: *4 responses: '200': @@ -135914,7 +135956,7 @@ webhooks: type: string enum: - approved - approver: &842 + approver: &843 type: object properties: avatar_url: @@ -135957,11 +135999,11 @@ webhooks: type: string comment: type: string - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - reviewers: &843 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + reviewers: &844 type: array items: type: object @@ -136042,7 +136084,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &844 + workflow_job_run: &845 type: object properties: conclusion: @@ -136788,18 +136830,18 @@ webhooks: type: string enum: - rejected - approver: *842 + approver: *843 comment: type: string - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - reviewers: *843 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + reviewers: *844 sender: *4 since: type: string - workflow_job_run: *844 + workflow_job_run: *845 workflow_job_runs: type: array items: @@ -137516,13 +137558,13 @@ webhooks: type: string enum: - requested - enterprise: *828 + enterprise: *829 environment: type: string - installation: *829 - organization: *830 - repository: *831 - requestor: &855 + installation: *830 + organization: *831 + repository: *832 + requestor: &856 title: User type: - object @@ -139465,12 +139507,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - workflow: *845 + workflow: *846 workflow_run: title: Deployment Workflow Run type: @@ -140161,7 +140203,7 @@ webhooks: type: string enum: - answered - answer: &848 + answer: &849 type: object properties: author_association: @@ -140321,11 +140363,11 @@ webhooks: - created_at - updated_at - body - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -140452,11 +140494,11 @@ webhooks: - from required: - category - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -140539,11 +140581,11 @@ webhooks: type: string enum: - closed - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -140625,7 +140667,7 @@ webhooks: type: string enum: - created - comment: &847 + comment: &848 type: object properties: author_association: @@ -140785,11 +140827,11 @@ webhooks: - updated_at - body - reactions - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -140872,12 +140914,12 @@ webhooks: type: string enum: - deleted - comment: *847 - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + comment: *848 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -140972,12 +141014,12 @@ webhooks: - from required: - body - comment: *847 - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + comment: *848 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141061,11 +141103,11 @@ webhooks: type: string enum: - created - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141147,11 +141189,11 @@ webhooks: type: string enum: - deleted - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141251,11 +141293,11 @@ webhooks: type: string required: - from - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141337,10 +141379,10 @@ webhooks: type: string enum: - labeled - discussion: *846 - enterprise: *828 - installation: *829 - label: &849 + discussion: *847 + enterprise: *829 + installation: *830 + label: &850 title: Label type: object properties: @@ -141373,8 +141415,8 @@ webhooks: - color - default - description - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141457,11 +141499,11 @@ webhooks: type: string enum: - locked - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141543,11 +141585,11 @@ webhooks: type: string enum: - pinned - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141629,11 +141671,11 @@ webhooks: type: string enum: - reopened - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141718,16 +141760,16 @@ webhooks: changes: type: object properties: - new_discussion: *846 - new_repository: *831 + new_discussion: *847 + new_repository: *832 required: - new_discussion - new_repository - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141810,10 +141852,10 @@ webhooks: type: string enum: - unanswered - discussion: *846 - old_answer: *848 - organization: *830 - repository: *831 + discussion: *847 + old_answer: *849 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141895,12 +141937,12 @@ webhooks: type: string enum: - unlabeled - discussion: *846 - enterprise: *828 - installation: *829 - label: *849 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141983,11 +142025,11 @@ webhooks: type: string enum: - unlocked - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -142069,11 +142111,11 @@ webhooks: type: string enum: - unpinned - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -142142,7 +142184,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142205,7 +142247,7 @@ webhooks: required: true content: application/json: - schema: *851 + schema: *852 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142268,7 +142310,7 @@ webhooks: required: true content: application/json: - schema: *852 + schema: *853 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142331,7 +142373,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142394,7 +142436,7 @@ webhooks: required: true content: application/json: - schema: *851 + schema: *852 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142460,7 +142502,7 @@ webhooks: required: true content: application/json: - schema: *852 + schema: *853 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142526,7 +142568,7 @@ webhooks: required: true content: application/json: - schema: *853 + schema: *854 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142592,7 +142634,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142658,7 +142700,7 @@ webhooks: required: true content: application/json: - schema: *854 + schema: *855 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142724,7 +142766,7 @@ webhooks: required: true content: application/json: - schema: *851 + schema: *852 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142789,7 +142831,7 @@ webhooks: required: true content: application/json: - schema: *852 + schema: *853 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142854,7 +142896,7 @@ webhooks: required: true content: application/json: - schema: *853 + schema: *854 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142919,7 +142961,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142984,7 +143026,7 @@ webhooks: required: true content: application/json: - schema: *854 + schema: *855 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143050,7 +143092,7 @@ webhooks: required: true content: application/json: - schema: *851 + schema: *852 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143117,7 +143159,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *828 + enterprise: *829 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -143795,9 +143837,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - forkee @@ -143943,9 +143985,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pages: description: The pages that were updated. type: array @@ -143983,7 +144025,7 @@ webhooks: - action - sha - html_url - repository: *831 + repository: *832 sender: *4 required: - pages @@ -144059,10 +144101,10 @@ webhooks: type: string enum: - created - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories: &856 + organization: *831 + repositories: &857 description: An array of repository objects that the installation can access. type: array @@ -144088,8 +144130,8 @@ webhooks: - name - full_name - private - repository: *831 - requester: *855 + repository: *832 + requester: *856 sender: *4 required: - action @@ -144164,11 +144206,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories: *856 - repository: *831 + organization: *831 + repositories: *857 + repository: *832 requester: type: - 'null' @@ -144245,11 +144287,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories: *856 - repository: *831 + organization: *831 + repositories: *857 + repository: *832 requester: type: - 'null' @@ -144326,10 +144368,10 @@ webhooks: type: string enum: - added - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories_added: &857 + organization: *831 + repositories_added: &858 description: An array of repository objects, which were added to the installation. type: array @@ -144375,15 +144417,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *831 - repository_selection: &858 + repository: *832 + repository_selection: &859 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *855 + requester: *856 sender: *4 required: - action @@ -144462,10 +144504,10 @@ webhooks: type: string enum: - removed - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories_added: *857 + organization: *831 + repositories_added: *858 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -144492,9 +144534,9 @@ webhooks: - name - full_name - private - repository: *831 - repository_selection: *858 - requester: *855 + repository: *832 + repository_selection: *859 + requester: *856 sender: *4 required: - action @@ -144573,11 +144615,11 @@ webhooks: type: string enum: - suspend - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories: *856 - repository: *831 + organization: *831 + repositories: *857 + repository: *832 requester: type: - 'null' @@ -144760,10 +144802,10 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 target_type: type: string @@ -144842,11 +144884,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories: *856 - repository: *831 + organization: *831 + repositories: *857 + repository: *832 requester: type: - 'null' @@ -145094,8 +145136,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -145912,8 +145954,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145930,7 +145972,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -146274,8 +146316,8 @@ webhooks: - state - locked - assignee - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -146355,7 +146397,7 @@ webhooks: type: string enum: - deleted - comment: &859 + comment: &860 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -146522,8 +146564,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147336,8 +147378,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147354,7 +147396,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -147700,8 +147742,8 @@ webhooks: - state - locked - assignee - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -147781,7 +147823,7 @@ webhooks: type: string enum: - edited - changes: &883 + changes: &884 description: The changes to the comment. type: object properties: @@ -147793,9 +147835,9 @@ webhooks: type: string required: - from - comment: *859 - enterprise: *828 - installation: *829 + comment: *860 + enterprise: *829 + installation: *830 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148611,8 +148653,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148629,7 +148671,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -148973,8 +149015,8 @@ webhooks: - state - locked - assignee - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -149064,9 +149106,9 @@ webhooks: type: number blocking_issue: *212 blocking_issue_repo: *76 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -149155,9 +149197,9 @@ webhooks: type: number blocking_issue: *212 blocking_issue_repo: *76 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -149245,9 +149287,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -149336,9 +149378,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -149418,10 +149460,10 @@ webhooks: type: string enum: - assigned - assignee: *855 - enterprise: *828 - installation: *829 - issue: &862 + assignee: *856 + enterprise: *829 + installation: *830 + issue: &863 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -150233,11 +150275,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150254,7 +150296,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -150357,8 +150399,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -150438,8 +150480,8 @@ webhooks: type: string enum: - closed - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -151256,11 +151298,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151277,7 +151319,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -151523,8 +151565,8 @@ webhooks: required: - state - closed_at - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -151603,8 +151645,8 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152412,11 +152454,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152433,7 +152475,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -152535,8 +152577,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -152615,8 +152657,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153447,11 +153489,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153468,7 +153510,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -153549,7 +153591,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &860 + milestone: &861 title: Milestone description: A collection of related issues and pull requests. type: object @@ -153692,8 +153734,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -153792,8 +153834,8 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154605,11 +154647,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154623,7 +154665,7 @@ webhooks: timeline_url: type: string format: uri - type: *356 + type: *358 title: description: Title of the issue type: string @@ -154729,9 +154771,9 @@ webhooks: - active_lock_reason - body - reactions - label: *849 - organization: *830 - repository: *831 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -154811,8 +154853,8 @@ webhooks: type: string enum: - labeled - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155623,11 +155665,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155641,7 +155683,7 @@ webhooks: timeline_url: type: string format: uri - type: *356 + type: *358 title: description: Title of the issue type: string @@ -155747,9 +155789,9 @@ webhooks: - active_lock_reason - body - reactions - label: *849 - organization: *830 - repository: *831 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -155829,8 +155871,8 @@ webhooks: type: string enum: - locked - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156666,11 +156708,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156684,7 +156726,7 @@ webhooks: timeline_url: type: string format: uri - type: *356 + type: *358 title: description: Title of the issue type: string @@ -156767,8 +156809,8 @@ webhooks: format: uri user_view_type: type: string - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -156847,8 +156889,8 @@ webhooks: type: string enum: - milestoned - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157678,11 +157720,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157699,7 +157741,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -157779,9 +157821,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *860 - organization: *830 - repository: *831 + milestone: *861 + organization: *831 + repository: *832 sender: *4 required: - action @@ -158673,11 +158715,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158773,7 +158815,7 @@ webhooks: required: - login - id - type: *356 + type: *358 required: - id - number @@ -159254,8 +159296,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160067,11 +160109,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160088,7 +160130,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -160190,8 +160232,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -160271,9 +160313,9 @@ webhooks: type: string enum: - pinned - enterprise: *828 - installation: *829 - issue: &861 + enterprise: *829 + installation: *830 + issue: &862 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -161079,11 +161121,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161100,7 +161142,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -161202,8 +161244,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -161282,8 +161324,8 @@ webhooks: type: string enum: - reopened - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162117,11 +162159,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162218,9 +162260,9 @@ webhooks: format: uri user_view_type: type: string - type: *356 - organization: *830 - repository: *831 + type: *358 + organization: *831 + repository: *832 sender: *4 required: - action @@ -163109,11 +163151,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163130,7 +163172,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -163712,11 +163754,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *828 - installation: *829 - issue: *861 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *862 + organization: *831 + repository: *832 sender: *4 required: - action @@ -163796,12 +163838,12 @@ webhooks: type: string enum: - typed - enterprise: *828 - installation: *829 - issue: *862 - type: *356 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *863 + type: *358 + organization: *831 + repository: *832 sender: *4 required: - action @@ -163882,7 +163924,7 @@ webhooks: type: string enum: - unassigned - assignee: &886 + assignee: &887 title: User type: - object @@ -163954,11 +163996,11 @@ webhooks: required: - login - id - enterprise: *828 - installation: *829 - issue: *862 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *863 + organization: *831 + repository: *832 sender: *4 required: - action @@ -164037,12 +164079,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *828 - installation: *829 - issue: *862 - label: *849 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *863 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -164122,8 +164164,8 @@ webhooks: type: string enum: - unlocked - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -164957,11 +164999,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164978,7 +165020,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -165058,8 +165100,8 @@ webhooks: format: uri user_view_type: type: string - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165139,11 +165181,11 @@ webhooks: type: string enum: - unpinned - enterprise: *828 - installation: *829 - issue: *861 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *862 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165222,12 +165264,12 @@ webhooks: type: string enum: - untyped - enterprise: *828 - installation: *829 - issue: *862 - type: *356 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *863 + type: *358 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165307,11 +165349,11 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - label: *849 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165389,11 +165431,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - label: *849 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165503,11 +165545,11 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - label: *849 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165589,9 +165631,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *828 - installation: *829 - marketplace_purchase: &863 + enterprise: *829 + installation: *830 + marketplace_purchase: &864 title: Marketplace Purchase type: object required: @@ -165679,8 +165721,8 @@ webhooks: type: integer unit_count: type: integer - organization: *830 - previous_marketplace_purchase: &864 + organization: *831 + previous_marketplace_purchase: &865 title: Marketplace Purchase type: object properties: @@ -165764,7 +165806,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *831 + repository: *832 sender: *4 required: - action @@ -165844,10 +165886,10 @@ webhooks: - changed effective_date: type: string - enterprise: *828 - installation: *829 - marketplace_purchase: *863 - organization: *830 + enterprise: *829 + installation: *830 + marketplace_purchase: *864 + organization: *831 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165935,7 +165977,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *831 + repository: *832 sender: *4 required: - action @@ -166017,10 +166059,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *828 - installation: *829 - marketplace_purchase: *863 - organization: *830 + enterprise: *829 + installation: *830 + marketplace_purchase: *864 + organization: *831 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -166106,7 +166148,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *831 + repository: *832 sender: *4 required: - action @@ -166187,8 +166229,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 marketplace_purchase: title: Marketplace Purchase type: object @@ -166274,9 +166316,9 @@ webhooks: type: integer unit_count: type: integer - organization: *830 - previous_marketplace_purchase: *864 - repository: *831 + organization: *831 + previous_marketplace_purchase: *865 + repository: *832 sender: *4 required: - action @@ -166356,12 +166398,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *828 - installation: *829 - marketplace_purchase: *863 - organization: *830 - previous_marketplace_purchase: *864 - repository: *831 + enterprise: *829 + installation: *830 + marketplace_purchase: *864 + organization: *831 + previous_marketplace_purchase: *865 + repository: *832 sender: *4 required: - action @@ -166463,11 +166505,11 @@ webhooks: type: string required: - to - enterprise: *828 - installation: *829 - member: *855 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + member: *856 + organization: *831 + repository: *832 sender: *4 required: - action @@ -166569,11 +166611,11 @@ webhooks: type: - string - 'null' - enterprise: *828 - installation: *829 - member: *855 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + member: *856 + organization: *831 + repository: *832 sender: *4 required: - action @@ -166652,11 +166694,11 @@ webhooks: type: string enum: - removed - enterprise: *828 - installation: *829 - member: *855 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + member: *856 + organization: *831 + repository: *832 sender: *4 required: - action @@ -166734,11 +166776,11 @@ webhooks: type: string enum: - added - enterprise: *828 - installation: *829 - member: *855 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + member: *856 + organization: *831 + repository: *832 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166816,7 +166858,7 @@ webhooks: required: - login - id - team: &865 + team: &866 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -167046,11 +167088,11 @@ webhooks: type: string enum: - removed - enterprise: *828 - installation: *829 - member: *855 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + member: *856 + organization: *831 + repository: *832 scope: description: The scope of the membership. Currently, can only be `team`. @@ -167129,7 +167171,7 @@ webhooks: required: - login - id - team: *865 + team: *866 required: - action - scope @@ -167211,8 +167253,8 @@ webhooks: type: string enum: - checks_requested - installation: *829 - merge_group: &866 + installation: *830 + merge_group: &867 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -167231,15 +167273,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *513 + head_commit: *515 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -167325,10 +167367,10 @@ webhooks: - merged - invalidated - dequeued - installation: *829 - merge_group: *866 - organization: *830 - repository: *831 + installation: *830 + merge_group: *867 + organization: *831 + repository: *832 sender: *4 required: - action @@ -167401,7 +167443,7 @@ webhooks: type: string enum: - deleted - enterprise: *828 + enterprise: *829 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -167510,12 +167552,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *829 - organization: *830 + installation: *830 + organization: *831 repository: anyOf: - type: 'null' - - *831 + - *832 sender: *4 required: - action @@ -167595,11 +167637,11 @@ webhooks: type: string enum: - closed - enterprise: *828 - installation: *829 - milestone: *860 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + milestone: *861 + organization: *831 + repository: *832 sender: *4 required: - action @@ -167678,9 +167720,9 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - milestone: &867 + enterprise: *829 + installation: *830 + milestone: &868 title: Milestone description: A collection of related issues and pull requests. type: object @@ -167822,8 +167864,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -167902,11 +167944,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - milestone: *860 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + milestone: *861 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168016,11 +168058,11 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - milestone: *860 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + milestone: *861 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168100,11 +168142,11 @@ webhooks: type: string enum: - opened - enterprise: *828 - installation: *829 - milestone: *867 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + milestone: *868 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168183,11 +168225,11 @@ webhooks: type: string enum: - blocked - blocked_user: *855 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + blocked_user: *856 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168266,11 +168308,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *855 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + blocked_user: *856 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168346,7 +168388,7 @@ webhooks: enum: - created definition: *144 - enterprise: *828 + enterprise: *829 sender: *4 required: - action @@ -168426,8 +168468,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 sender: *4 required: - action @@ -168500,8 +168542,8 @@ webhooks: enum: - updated definition: *144 - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 sender: *4 required: - action @@ -168573,9 +168615,9 @@ webhooks: type: string enum: - updated - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 new_property_values: type: array @@ -168663,9 +168705,9 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - membership: &868 + enterprise: *829 + installation: *830 + membership: &869 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -168775,8 +168817,8 @@ webhooks: - role - organization_url - user - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168854,11 +168896,11 @@ webhooks: type: string enum: - member_added - enterprise: *828 - installation: *829 - membership: *868 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + membership: *869 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168937,8 +168979,8 @@ webhooks: type: string enum: - member_invited - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -169060,10 +169102,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 - user: *855 + user: *856 required: - action - invitation @@ -169141,11 +169183,11 @@ webhooks: type: string enum: - member_removed - enterprise: *828 - installation: *829 - membership: *868 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + membership: *869 + organization: *831 + repository: *832 sender: *4 required: - action @@ -169232,11 +169274,11 @@ webhooks: properties: from: type: string - enterprise: *828 - installation: *829 - membership: *868 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + membership: *869 + organization: *831 + repository: *832 sender: *4 required: - action @@ -169312,9 +169354,9 @@ webhooks: type: string enum: - published - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 package: description: Information about the package. type: object @@ -169837,7 +169879,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &869 + items: &870 title: Ruby Gems metadata type: object properties: @@ -169934,7 +169976,7 @@ webhooks: - owner - package_version - registry - repository: *831 + repository: *832 sender: *4 required: - action @@ -170010,9 +170052,9 @@ webhooks: type: string enum: - updated - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 package: description: Information about the package. type: object @@ -170374,7 +170416,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *869 + items: *870 source_url: type: string format: uri @@ -170445,7 +170487,7 @@ webhooks: - owner - package_version - registry - repository: *831 + repository: *832 sender: *4 required: - action @@ -170626,12 +170668,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *828 + enterprise: *829 id: type: integer - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - id @@ -170708,7 +170750,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &870 + personal_access_token_request: &871 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -170858,10 +170900,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *828 - organization: *830 + enterprise: *829 + organization: *831 sender: *4 - installation: *829 + installation: *830 required: - action - personal_access_token_request @@ -170938,11 +170980,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *870 - enterprise: *828 - organization: *830 + personal_access_token_request: *871 + enterprise: *829 + organization: *831 sender: *4 - installation: *829 + installation: *830 required: - action - personal_access_token_request @@ -171018,11 +171060,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *870 - enterprise: *828 - organization: *830 + personal_access_token_request: *871 + enterprise: *829 + organization: *831 sender: *4 - installation: *829 + installation: *830 required: - action - personal_access_token_request @@ -171097,11 +171139,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *870 - organization: *830 - enterprise: *828 + personal_access_token_request: *871 + organization: *831 + enterprise: *829 sender: *4 - installation: *829 + installation: *830 required: - action - personal_access_token_request @@ -171206,7 +171248,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *871 + last_response: *872 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -171238,8 +171280,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 zen: description: Random string of GitHub zen. @@ -171484,10 +171526,10 @@ webhooks: - from required: - note - enterprise: *828 - installation: *829 - organization: *830 - project_card: &872 + enterprise: *829 + installation: *830 + organization: *831 + project_card: &873 title: Project Card type: object properties: @@ -171610,7 +171652,7 @@ webhooks: - creator - created_at - updated_at - repository: *831 + repository: *832 sender: *4 required: - action @@ -171691,11 +171733,11 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - project_card: *872 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project_card: *873 + repository: *832 sender: *4 required: - action @@ -171775,9 +171817,9 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 project_card: title: Project Card type: object @@ -171907,7 +171949,7 @@ webhooks: repository: anyOf: - type: 'null' - - *831 + - *832 sender: *4 required: - action @@ -172001,11 +172043,11 @@ webhooks: - from required: - note - enterprise: *828 - installation: *829 - organization: *830 - project_card: *872 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project_card: *873 + repository: *832 sender: *4 required: - action @@ -172099,9 +172141,9 @@ webhooks: - from required: - column_id - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 project_card: allOf: - title: Project Card @@ -172298,7 +172340,7 @@ webhooks: type: string required: - after_id - repository: *831 + repository: *832 sender: *4 required: - action @@ -172378,10 +172420,10 @@ webhooks: type: string enum: - closed - enterprise: *828 - installation: *829 - organization: *830 - project: &874 + enterprise: *829 + installation: *830 + organization: *831 + project: &875 title: Project type: object properties: @@ -172508,7 +172550,7 @@ webhooks: - creator - created_at - updated_at - repository: *831 + repository: *832 sender: *4 required: - action @@ -172588,10 +172630,10 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - project_column: &873 + enterprise: *829 + installation: *830 + organization: *831 + project_column: &874 title: Project Column type: object properties: @@ -172631,7 +172673,7 @@ webhooks: - name - created_at - updated_at - repository: *831 + repository: *832 sender: *4 required: - action @@ -172710,14 +172752,14 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - project_column: *873 + enterprise: *829 + installation: *830 + organization: *831 + project_column: *874 repository: anyOf: - type: 'null' - - *831 + - *832 sender: *4 required: - action @@ -172806,11 +172848,11 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - organization: *830 - project_column: *873 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project_column: *874 + repository: *832 sender: *4 required: - action @@ -172890,11 +172932,11 @@ webhooks: type: string enum: - moved - enterprise: *828 - installation: *829 - organization: *830 - project_column: *873 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project_column: *874 + repository: *832 sender: *4 required: - action @@ -172974,11 +173016,11 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - project: *874 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project: *875 + repository: *832 sender: *4 required: - action @@ -173058,14 +173100,14 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - project: *874 + enterprise: *829 + installation: *830 + organization: *831 + project: *875 repository: anyOf: - type: 'null' - - *831 + - *832 sender: *4 required: - action @@ -173166,11 +173208,11 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - organization: *830 - project: *874 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project: *875 + repository: *832 sender: *4 required: - action @@ -173249,11 +173291,11 @@ webhooks: type: string enum: - reopened - enterprise: *828 - installation: *829 - organization: *830 - project: *874 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project: *875 + repository: *832 sender: *4 required: - action @@ -173334,9 +173376,9 @@ webhooks: type: string enum: - closed - installation: *829 - organization: *830 - projects_v2: *387 + installation: *830 + organization: *831 + projects_v2: *389 sender: *4 required: - action @@ -173417,9 +173459,9 @@ webhooks: type: string enum: - created - installation: *829 - organization: *830 - projects_v2: *387 + installation: *830 + organization: *831 + projects_v2: *389 sender: *4 required: - action @@ -173500,9 +173542,9 @@ webhooks: type: string enum: - deleted - installation: *829 - organization: *830 - projects_v2: *387 + installation: *830 + organization: *831 + projects_v2: *389 sender: *4 required: - action @@ -173623,9 +173665,9 @@ webhooks: type: string to: type: string - installation: *829 - organization: *830 - projects_v2: *387 + installation: *830 + organization: *831 + projects_v2: *389 sender: *4 required: - action @@ -173708,7 +173750,7 @@ webhooks: type: string enum: - archived - changes: &878 + changes: &879 type: object properties: archived_at: @@ -173724,9 +173766,9 @@ webhooks: - string - 'null' format: date-time - installation: *829 - organization: *830 - projects_v2_item: &875 + installation: *830 + organization: *831 + projects_v2_item: &876 title: Projects v2 Item description: An item belonging to a project type: object @@ -173744,7 +173786,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *393 + content_type: *395 creator: *4 created_at: type: string @@ -173866,9 +173908,9 @@ webhooks: - 'null' to: type: string - installation: *829 - organization: *830 - projects_v2_item: *875 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -173950,9 +173992,9 @@ webhooks: type: string enum: - created - installation: *829 - organization: *830 - projects_v2_item: *875 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -174033,9 +174075,9 @@ webhooks: type: string enum: - deleted - installation: *829 - organization: *830 - projects_v2_item: *875 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -174140,7 +174182,7 @@ webhooks: oneOf: - type: string - type: integer - - &876 + - &877 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -174164,7 +174206,7 @@ webhooks: required: - id - name - - &877 + - &878 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -174204,8 +174246,8 @@ webhooks: oneOf: - type: string - type: integer - - *876 - *877 + - *878 type: - 'null' - string @@ -174228,9 +174270,9 @@ webhooks: - 'null' required: - body - installation: *829 - organization: *830 - projects_v2_item: *875 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -174327,9 +174369,9 @@ webhooks: type: - string - 'null' - installation: *829 - organization: *830 - projects_v2_item: *875 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -174412,10 +174454,10 @@ webhooks: type: string enum: - restored - changes: *878 - installation: *829 - organization: *830 - projects_v2_item: *875 + changes: *879 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -174497,9 +174539,9 @@ webhooks: type: string enum: - reopened - installation: *829 - organization: *830 - projects_v2: *387 + installation: *830 + organization: *831 + projects_v2: *389 sender: *4 required: - action @@ -174580,9 +174622,9 @@ webhooks: type: string enum: - created - installation: *829 - organization: *830 - projects_v2_status_update: *879 + installation: *830 + organization: *831 + projects_v2_status_update: *880 sender: *4 required: - action @@ -174663,9 +174705,9 @@ webhooks: type: string enum: - deleted - installation: *829 - organization: *830 - projects_v2_status_update: *879 + installation: *830 + organization: *831 + projects_v2_status_update: *880 sender: *4 required: - action @@ -174811,9 +174853,9 @@ webhooks: - string - 'null' format: date - installation: *829 - organization: *830 - projects_v2_status_update: *879 + installation: *830 + organization: *831 + projects_v2_status_update: *880 sender: *4 required: - action @@ -174884,10 +174926,10 @@ webhooks: title: public event type: object properties: - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - repository @@ -174964,13 +175006,13 @@ webhooks: type: string enum: - assigned - assignee: *855 - enterprise: *828 - installation: *829 - number: &880 + assignee: *856 + enterprise: *829 + installation: *830 + number: &881 description: The pull request number. type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -177319,7 +177361,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -177401,11 +177443,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -179747,7 +179789,7 @@ webhooks: - draft reason: type: string - repository: *831 + repository: *832 sender: *4 required: - action @@ -179829,11 +179871,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -182175,7 +182217,7 @@ webhooks: - draft reason: type: string - repository: *831 + repository: *832 sender: *4 required: - action @@ -182257,13 +182299,13 @@ webhooks: type: string enum: - closed - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: &881 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: &882 allOf: - - *674 + - *675 - type: object properties: allow_auto_merge: @@ -182325,7 +182367,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *831 + repository: *832 sender: *4 required: - action @@ -182406,12 +182448,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: *881 - repository: *831 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: *882 + repository: *832 sender: *4 required: - action @@ -182491,11 +182533,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *828 - milestone: *390 - number: *880 - organization: *830 - pull_request: &882 + enterprise: *829 + milestone: *392 + number: *881 + organization: *831 + pull_request: &883 title: Pull Request type: object properties: @@ -184822,7 +184864,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -184901,11 +184943,11 @@ webhooks: type: string enum: - dequeued - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -187251,7 +187293,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *831 + repository: *832 sender: *4 required: - action @@ -187375,12 +187417,12 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: *881 - repository: *831 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: *882 + repository: *832 sender: *4 required: - action @@ -187460,11 +187502,11 @@ webhooks: type: string enum: - enqueued - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -189795,7 +189837,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -189875,11 +189917,11 @@ webhooks: type: string enum: - labeled - enterprise: *828 - installation: *829 - label: *849 - number: *880 - organization: *830 + enterprise: *829 + installation: *830 + label: *850 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -192227,7 +192269,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -192308,10 +192350,10 @@ webhooks: type: string enum: - locked - enterprise: *828 - installation: *829 - number: *880 - organization: *830 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -194657,7 +194699,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -194737,12 +194779,12 @@ webhooks: type: string enum: - milestoned - enterprise: *828 - milestone: *390 - number: *880 - organization: *830 - pull_request: *882 - repository: *831 + enterprise: *829 + milestone: *392 + number: *881 + organization: *831 + pull_request: *883 + repository: *832 sender: *4 required: - action @@ -194821,12 +194863,12 @@ webhooks: type: string enum: - opened - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: *881 - repository: *831 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: *882 + repository: *832 sender: *4 required: - action @@ -194907,12 +194949,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: *881 - repository: *831 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: *882 + repository: *832 sender: *4 required: - action @@ -194992,12 +195034,12 @@ webhooks: type: string enum: - reopened - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: *881 - repository: *831 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: *882 + repository: *832 sender: *4 required: - action @@ -195372,9 +195414,9 @@ webhooks: - start_side - side - reactions - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: type: object properties: @@ -197604,7 +197646,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *831 + repository: *832 sender: *4 required: - action @@ -197684,7 +197726,7 @@ webhooks: type: string enum: - deleted - comment: &884 + comment: &885 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. @@ -197977,9 +198019,9 @@ webhooks: - start_side - side - reactions - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: type: object properties: @@ -200197,7 +200239,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *831 + repository: *832 sender: *4 required: - action @@ -200277,11 +200319,11 @@ webhooks: type: string enum: - edited - changes: *883 - comment: *884 - enterprise: *828 - installation: *829 - organization: *830 + changes: *884 + comment: *885 + enterprise: *829 + installation: *830 + organization: *831 pull_request: type: object properties: @@ -202502,7 +202544,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *831 + repository: *832 sender: *4 required: - action @@ -202583,9 +202625,9 @@ webhooks: type: string enum: - dismissed - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: title: Simple Pull Request type: object @@ -204818,7 +204860,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *831 + repository: *832 review: description: The review that was affected. type: object @@ -205069,9 +205111,9 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: title: Simple Pull Request type: object @@ -207185,8 +207227,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *831 - review: &885 + repository: *832 + review: &886 description: The review that was affected. type: object properties: @@ -207424,12 +207466,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: description: The pull request number. type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -209776,7 +209818,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 requested_reviewer: title: User type: @@ -209862,12 +209904,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: description: The pull request number. type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -212221,7 +212263,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 requested_team: title: Team description: Groups of organization members that gives permissions @@ -212416,12 +212458,12 @@ webhooks: type: string enum: - review_requested - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: description: The pull request number. type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -214770,7 +214812,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 requested_reviewer: title: User type: @@ -214857,12 +214899,12 @@ webhooks: type: string enum: - review_requested - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: description: The pull request number. type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -217202,7 +217244,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 requested_team: title: Team description: Groups of organization members that gives permissions @@ -217386,9 +217428,9 @@ webhooks: type: string enum: - submitted - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: title: Simple Pull Request type: object @@ -219624,8 +219666,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *831 - review: *885 + repository: *832 + review: *886 sender: *4 required: - action @@ -219705,9 +219747,9 @@ webhooks: type: string enum: - resolved - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: title: Simple Pull Request type: object @@ -221838,7 +221880,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *831 + repository: *832 sender: *4 thread: type: object @@ -222235,9 +222277,9 @@ webhooks: type: string enum: - unresolved - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: title: Simple Pull Request type: object @@ -224351,7 +224393,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *831 + repository: *832 sender: *4 thread: type: object @@ -224750,10 +224792,10 @@ webhooks: type: string before: type: string - enterprise: *828 - installation: *829 - number: *880 - organization: *830 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -227088,7 +227130,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -227170,11 +227212,11 @@ webhooks: type: string enum: - unassigned - assignee: *886 - enterprise: *828 - installation: *829 - number: *880 - organization: *830 + assignee: *887 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -229524,7 +229566,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -229603,11 +229645,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *828 - installation: *829 - label: *849 - number: *880 - organization: *830 + enterprise: *829 + installation: *830 + label: *850 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -231946,7 +231988,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -232027,10 +232069,10 @@ webhooks: type: string enum: - unlocked - enterprise: *828 - installation: *829 - number: *880 - organization: *830 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -234359,7 +234401,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -234562,7 +234604,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *828 + enterprise: *829 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -234657,8 +234699,8 @@ webhooks: - url - author - committer - installation: *829 - organization: *830 + installation: *830 + organization: *831 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -235246,9 +235288,9 @@ webhooks: type: string enum: - published - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 registry_package: type: object properties: @@ -235725,7 +235767,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *869 + items: *870 summary: type: string tag_name: @@ -235781,7 +235823,7 @@ webhooks: - owner - package_version - registry - repository: *831 + repository: *832 sender: *4 required: - action @@ -235859,9 +235901,9 @@ webhooks: type: string enum: - updated - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 registry_package: type: object properties: @@ -236173,7 +236215,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *869 + items: *870 summary: type: string tag_name: @@ -236223,7 +236265,7 @@ webhooks: - owner - package_version - registry - repository: *831 + repository: *832 sender: *4 required: - action @@ -236300,10 +236342,10 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - release: &887 + enterprise: *829 + installation: *830 + organization: *831 + release: &888 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -236634,7 +236676,7 @@ webhooks: - updated_at - zipball_url - body - repository: *831 + repository: *832 sender: *4 required: - action @@ -236711,11 +236753,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - release: *887 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + release: *888 + repository: *832 sender: *4 required: - action @@ -236832,11 +236874,11 @@ webhooks: type: boolean required: - to - enterprise: *828 - installation: *829 - organization: *830 - release: *887 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + release: *888 + repository: *832 sender: *4 required: - action @@ -236914,9 +236956,9 @@ webhooks: type: string enum: - prereleased - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -237252,7 +237294,7 @@ webhooks: - string - 'null' format: uri - repository: *831 + repository: *832 sender: *4 required: - action @@ -237328,10 +237370,10 @@ webhooks: type: string enum: - published - enterprise: *828 - installation: *829 - organization: *830 - release: &888 + enterprise: *829 + installation: *830 + organization: *831 + release: &889 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -237664,7 +237706,7 @@ webhooks: - string - 'null' format: uri - repository: *831 + repository: *832 sender: *4 required: - action @@ -237740,11 +237782,11 @@ webhooks: type: string enum: - released - enterprise: *828 - installation: *829 - organization: *830 - release: *887 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + release: *888 + repository: *832 sender: *4 required: - action @@ -237820,11 +237862,11 @@ webhooks: type: string enum: - unpublished - enterprise: *828 - installation: *829 - organization: *830 - release: *888 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + release: *889 + repository: *832 sender: *4 required: - action @@ -237900,11 +237942,11 @@ webhooks: type: string enum: - published - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - repository_advisory: *726 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + repository_advisory: *727 sender: *4 required: - action @@ -237980,11 +238022,11 @@ webhooks: type: string enum: - reported - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - repository_advisory: *726 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + repository_advisory: *727 sender: *4 required: - action @@ -238060,10 +238102,10 @@ webhooks: type: string enum: - archived - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238140,10 +238182,10 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238221,10 +238263,10 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238309,10 +238351,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238427,10 +238469,10 @@ webhooks: - 'null' items: type: string - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238502,10 +238544,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 status: type: string @@ -238586,10 +238628,10 @@ webhooks: type: string enum: - privatized - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238666,10 +238708,10 @@ webhooks: type: string enum: - publicized - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238763,10 +238805,10 @@ webhooks: - name required: - repository - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238846,10 +238888,10 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 repository_ruleset: *184 sender: *4 required: @@ -238928,10 +238970,10 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 repository_ruleset: *184 sender: *4 required: @@ -239010,10 +239052,10 @@ webhooks: type: string enum: - edited - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 repository_ruleset: *184 changes: type: object @@ -239075,16 +239117,16 @@ webhooks: properties: added: type: array - items: *694 + items: *695 deleted: type: array - items: *694 + items: *695 updated: type: array items: type: object properties: - rule: *694 + rule: *695 changes: type: object properties: @@ -239321,10 +239363,10 @@ webhooks: - from required: - owner - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -239402,10 +239444,10 @@ webhooks: type: string enum: - unarchived - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -239483,7 +239525,7 @@ webhooks: type: string enum: - create - alert: &889 + alert: &890 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -239607,10 +239649,10 @@ webhooks: type: string enum: - open - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -239820,10 +239862,10 @@ webhooks: type: string enum: - dismissed - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -239901,11 +239943,11 @@ webhooks: type: string enum: - reopen - alert: *889 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *890 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240107,10 +240149,10 @@ webhooks: enum: - fixed - open - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240188,7 +240230,7 @@ webhooks: type: string enum: - assigned - alert: &890 + alert: &891 type: object properties: number: *123 @@ -240303,10 +240345,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240384,11 +240426,11 @@ webhooks: type: string enum: - created - alert: *890 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *891 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240469,11 +240511,11 @@ webhooks: type: string enum: - created - alert: *890 - installation: *829 - location: *891 - organization: *830 - repository: *831 + alert: *891 + installation: *830 + location: *892 + organization: *831 + repository: *832 sender: *4 required: - location @@ -240711,11 +240753,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *890 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *891 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240793,11 +240835,11 @@ webhooks: type: string enum: - reopened - alert: *890 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *891 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240875,11 +240917,11 @@ webhooks: type: string enum: - resolved - alert: *890 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *891 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240957,12 +240999,12 @@ webhooks: type: string enum: - unassigned - alert: *890 + alert: *891 assignee: *4 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -241040,11 +241082,11 @@ webhooks: type: string enum: - validated - alert: *890 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *891 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -241174,10 +241216,10 @@ webhooks: - organization - enterprise - - repository: *831 - enterprise: *828 - installation: *829 - organization: *830 + repository: *832 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 required: - action @@ -241255,11 +241297,11 @@ webhooks: type: string enum: - published - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - security_advisory: &892 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + security_advisory: &893 description: The details of the security advisory, including summary, description, and severity. type: object @@ -241445,11 +241487,11 @@ webhooks: type: string enum: - updated - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - security_advisory: *892 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + security_advisory: *893 sender: *4 required: - action @@ -241522,10 +241564,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -241711,11 +241753,11 @@ webhooks: from: type: object properties: - security_and_analysis: *400 - enterprise: *828 - installation: *829 - organization: *830 - repository: *451 + security_and_analysis: *402 + enterprise: *829 + installation: *830 + organization: *831 + repository: *453 sender: *4 required: - changes @@ -241793,12 +241835,12 @@ webhooks: type: string enum: - cancelled - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: &893 + sponsorship: &894 type: object properties: created_at: @@ -242103,12 +242145,12 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: *893 + sponsorship: *894 required: - action - sponsorship @@ -242196,12 +242238,12 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: *893 + sponsorship: *894 required: - action - changes @@ -242278,17 +242320,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &894 + effective_date: &895 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: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: *893 + sponsorship: *894 required: - action - sponsorship @@ -242362,7 +242404,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &895 + changes: &896 type: object properties: tier: @@ -242406,13 +242448,13 @@ webhooks: - from required: - tier - effective_date: *894 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + effective_date: *895 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: *893 + sponsorship: *894 required: - action - changes @@ -242489,13 +242531,13 @@ webhooks: type: string enum: - tier_changed - changes: *895 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + changes: *896 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: *893 + sponsorship: *894 required: - action - changes @@ -242569,10 +242611,10 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242656,10 +242698,10 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -243093,15 +243135,15 @@ webhooks: type: - string - 'null' - enterprise: *828 + enterprise: *829 id: description: The unique identifier of the status. type: integer - installation: *829 + installation: *830 name: type: string - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 sha: description: The Commit SHA. @@ -243217,9 +243259,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -243309,9 +243351,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -243401,9 +243443,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -243493,9 +243535,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -243572,12 +243614,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - team: &896 + team: &897 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -243807,9 +243849,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 repository: title: Repository description: A git repository @@ -244279,7 +244321,7 @@ webhooks: - topics - visibility sender: *4 - team: *896 + team: *897 required: - action - team @@ -244355,9 +244397,9 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 repository: title: Repository description: A git repository @@ -244827,7 +244869,7 @@ webhooks: - topics - visibility sender: *4 - team: *896 + team: *897 required: - action - team @@ -244904,9 +244946,9 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 repository: title: Repository description: A git repository @@ -245376,7 +245418,7 @@ webhooks: - topics - visibility sender: *4 - team: *896 + team: *897 required: - action - team @@ -245520,9 +245562,9 @@ webhooks: - from required: - permissions - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 repository: title: Repository description: A git repository @@ -245992,7 +246034,7 @@ webhooks: - topics - visibility sender: *4 - team: *896 + team: *897 required: - action - changes @@ -246070,9 +246112,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 repository: title: Repository description: A git repository @@ -246542,7 +246584,7 @@ webhooks: - topics - visibility sender: *4 - team: *896 + team: *897 required: - action - team @@ -246618,10 +246660,10 @@ webhooks: type: string enum: - started - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -246694,17 +246736,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *828 + enterprise: *829 inputs: type: - object - 'null' additionalProperties: true - installation: *829 - organization: *830 + installation: *830 + organization: *831 ref: type: string - repository: *831 + repository: *832 sender: *4 workflow: type: string @@ -246786,10 +246828,10 @@ webhooks: type: string enum: - completed - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 workflow_job: allOf: @@ -247045,7 +247087,7 @@ webhooks: type: string required: - conclusion - deployment: *580 + deployment: *582 required: - action - repository @@ -247124,10 +247166,10 @@ webhooks: type: string enum: - in_progress - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 workflow_job: allOf: @@ -247409,7 +247451,7 @@ webhooks: required: - status - steps - deployment: *580 + deployment: *582 required: - action - repository @@ -247488,10 +247530,10 @@ webhooks: type: string enum: - queued - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 workflow_job: type: object @@ -247637,7 +247679,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *580 + deployment: *582 required: - action - repository @@ -247716,10 +247758,10 @@ webhooks: type: string enum: - waiting - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 workflow_job: type: object @@ -247866,7 +247908,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *580 + deployment: *582 required: - action - repository @@ -247946,12 +247988,12 @@ webhooks: type: string enum: - completed - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - workflow: *845 + workflow: *846 workflow_run: title: Workflow Run type: object @@ -248970,12 +249012,12 @@ webhooks: type: string enum: - in_progress - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - workflow: *845 + workflow: *846 workflow_run: title: Workflow Run type: object @@ -249979,12 +250021,12 @@ webhooks: type: string enum: - requested - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - workflow: *845 + workflow: *846 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.json b/descriptions-next/ghec/dereferenced/ghec.deref.json index 3dd1b8d4c..c116763e1 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -174300,6 +174300,496 @@ } } }, + "/orgs/{org}/dismissal-requests/dependabot": { + "get": { + "summary": "List dismissal requests for Dependabot alerts for an organization", + "description": "Lists dismissal requests for Dependabot alerts in an organization.\n\nDelegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager,\nor have the appropriate permission to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/list-dismissal-requests-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "dependabot", + "subcategory": "alert-dismissal-requests" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repository_name", + "description": "The name of the repository to filter on.", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "reviewer", + "description": "Filter bypass requests by the handle of the GitHub user who reviewed the bypass request.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "requester", + "description": "Filter bypass requests by the handle of the GitHub user who requested the bypass.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "time_period", + "description": "The time period to filter by.\n\nFor example, `day` will filter for rule suites that occurred in the past 24 hours, and `week` will filter for rule suites that occurred in the past 7 days (168 hours).", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "hour", + "day", + "week", + "month" + ], + "default": "day" + } + }, + { + "name": "request_status", + "description": "The status of the dismissal request to filter on. When specified, only requests with this status will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "completed", + "cancelled", + "approved", + "expired", + "denied", + "open", + "all" + ], + "default": "all" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "A list of alert dismissal requests.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Dependabot alert dismissal request", + "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The unique identifier of the dismissal request." + }, + "number": { + "type": "integer", + "format": "int64", + "description": "The number uniquely identifying the dismissal request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the repository the dismissal request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the dismissal request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the dismissal request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who requested the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the dismissal request." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the dismissal request metadata.", + "items": { + "type": "object", + "properties": { + "reason": { + "type": "string", + "description": "The reason for the dismissal request." + }, + "alert_number": { + "type": "string", + "description": "The alert number." + }, + "alert_title": { + "type": "string", + "description": "The title of the alert." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the dismissal request.", + "examples": [ + "123" + ] + }, + "status": { + "type": "string", + "description": "The status of the dismissal request.", + "enum": [ + "pending", + "denied", + "approved", + "expired" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the dismissal request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the dismissal request.", + "items": { + "title": "Dismissal request response", + "description": "A response made by a requester to dismiss the request.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the response to the dismissal request." + }, + "reviewer": { + "type": "object", + "description": "The user who reviewed the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who reviewed the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who reviewed the dismissal request." + } + } + }, + "message": { + "type": [ + "string", + "null" + ], + "description": "The response comment of the reviewer." + }, + "status": { + "type": "string", + "description": "The response status to the dismissal request until dismissed.", + "enum": [ + "approved", + "denied", + "dismissed" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the response to the dismissal request was created." + } + } + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the dismissal request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/security/dependabot/1" + ] + } + } + } + }, + "examples": { + "default": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "no_bandwidth", + "alert_number": "1", + "alert_title": "lodash - GHSA-1234-abcd-5678" + } + ], + "resource_identifier": "1", + "status": "denied", + "requester_comment": "No bandwidth to fix this right now", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", + "html_url": "https://github.com/octo-org/smile/security/dependabot/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "tolerable_risk", + "alert_number": "2", + "alert_title": "axios - GHSA-5678-efgh-9012" + } + ], + "resource_identifier": "2", + "status": "approved", + "requester_comment": "Risk is acceptable for this internal tool", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 43, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "approved", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", + "html_url": "https://github.com/octo-org/smile/security/dependabot/2" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + } + } + }, "/orgs/{org}/dismissal-requests/secret-scanning": { "get": { "summary": "List alert dismissal requests for secret scanning for an org", diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index 2c2746371..fdad85cf9 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.deref.yaml @@ -913,7 +913,7 @@ paths: - subscriptions_url - type - url - type: &421 + type: &423 type: string description: The type of credit the user is receiving. enum: @@ -1079,7 +1079,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: - - &728 + - &729 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1664,7 +1664,7 @@ paths: schema: type: integer default: 30 - - &334 + - &336 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 @@ -1680,7 +1680,7 @@ paths: application/json: schema: type: array - items: &335 + items: &337 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1776,7 +1776,7 @@ paths: - installation_id - repository_id examples: - default: &336 + default: &338 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1808,7 +1808,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &738 + schema: &739 title: Scim Error description: Scim Error type: object @@ -1911,7 +1911,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &339 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2046,7 +2046,7 @@ paths: - request - response examples: - default: &338 + default: &340 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -9260,7 +9260,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &739 + '401': &740 description: Authorization failure '404': *6 x-github: @@ -13525,7 +13525,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &519 + instances_url: &521 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -13561,7 +13561,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &520 + dismissed_reason: &522 type: - string - 'null' @@ -13572,14 +13572,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &521 + dismissed_comment: &523 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &522 + rule: &524 type: object properties: id: @@ -13640,7 +13640,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &523 + tool: &525 type: object properties: name: *109 @@ -13651,15 +13651,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *110 - most_recent_instance: &524 + most_recent_instance: &526 type: object properties: - ref: &517 + ref: &519 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &534 + analysis_key: &536 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -13670,7 +13670,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &535 + category: &537 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16075,7 +16075,7 @@ paths: parent: anyOf: - type: 'null' - - &369 + - &371 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -17468,7 +17468,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 - - &570 + - &572 name: has in: query description: |- @@ -17585,7 +17585,7 @@ paths: - direct - transitive - - security_advisory: &571 + security_advisory: &573 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17821,7 +17821,7 @@ paths: dismissal. maxLength: 280 fixed_at: *133 - auto_dismissed_at: &572 + auto_dismissed_at: &574 type: - string - 'null' @@ -17829,7 +17829,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &573 + dismissal_request: &575 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -19005,7 +19005,7 @@ paths: - name - created_on examples: - default: &425 + default: &427 value: total_count: 2 network_configurations: @@ -19228,7 +19228,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *39 - - &426 + - &428 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -19240,7 +19240,7 @@ paths: description: Response content: application/json: - schema: &427 + schema: &429 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -19279,7 +19279,7 @@ paths: - subnet_id - region examples: - default: &428 + default: &430 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -20125,7 +20125,7 @@ paths: required: true content: application/json: - schema: &399 + schema: &401 title: Custom Property Set Payload description: Custom property set payload type: object @@ -21319,7 +21319,7 @@ paths: conditions: anyOf: - *155 - - &403 + - &405 title: Organization ruleset conditions type: object description: |- @@ -21369,7 +21369,7 @@ paths: - object rules: type: array - items: &694 + items: &695 title: Repository Rule type: object description: A repository rule. @@ -21378,7 +21378,7 @@ paths: - *164 - *165 - *166 - - &692 + - &693 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -21706,7 +21706,7 @@ paths: type: string format: date-time examples: - default: &406 + default: &408 value: - version_id: 3 actor: @@ -21759,7 +21759,7 @@ paths: description: Response content: application/json: - schema: &407 + schema: &409 allOf: - *188 - type: object @@ -21814,7 +21814,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &408 + - &410 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -21825,7 +21825,7 @@ paths: enum: - open - resolved - - &409 + - &411 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -21835,7 +21835,7 @@ paths: required: false schema: type: string - - &410 + - &412 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -21844,7 +21844,7 @@ paths: required: false schema: type: string - - &411 + - &413 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -21863,7 +21863,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &412 + - &414 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. @@ -21879,7 +21879,7 @@ paths: - *17 - *106 - *107 - - &413 + - &415 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -21888,7 +21888,7 @@ paths: required: false schema: type: string - - &414 + - &416 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -21897,7 +21897,7 @@ paths: schema: type: boolean default: false - - &415 + - &417 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -21906,7 +21906,7 @@ paths: schema: type: boolean default: false - - &416 + - &418 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -21922,7 +21922,7 @@ paths: application/json: schema: type: array - items: &417 + items: &419 type: object properties: number: *123 @@ -21938,14 +21938,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &706 + state: &707 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: &707 + resolution: &708 type: - string - 'null' @@ -22052,14 +22052,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &708 + - &709 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &710 + - &711 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -22116,7 +22116,7 @@ paths: - blob_url - commit_sha - commit_url - - &711 + - &712 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. @@ -22177,7 +22177,7 @@ paths: - page_url - commit_sha - commit_url - - &712 + - &713 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -22192,7 +22192,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &713 + - &714 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -22207,7 +22207,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &714 + - &715 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -22222,7 +22222,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &715 + - &716 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22237,7 +22237,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &716 + - &717 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22252,7 +22252,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &717 + - &718 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22267,7 +22267,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &718 + - &719 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. @@ -22282,7 +22282,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &719 + - &720 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. @@ -22297,7 +22297,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &720 + - &721 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. @@ -22312,7 +22312,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &721 + - &722 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. @@ -22327,7 +22327,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &722 + - &723 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 @@ -22352,7 +22352,7 @@ paths: - type: 'null' - *4 examples: - default: &418 + default: &420 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -22561,7 +22561,7 @@ paths: description: Response content: application/json: - schema: &419 + schema: &421 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -22648,7 +22648,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *190 examples: - default: &420 + default: &422 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -22784,7 +22784,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &422 + - &424 name: advanced_security_product in: query description: | @@ -22804,7 +22804,7 @@ paths: description: Success content: application/json: - schema: &423 + schema: &425 type: object properties: total_advanced_security_committers: @@ -22867,7 +22867,7 @@ paths: required: - repositories examples: - default: &424 + default: &426 value: total_advanced_security_committers: 2 total_count: 2 @@ -25669,7 +25669,7 @@ paths: properties: action: type: string - discussion: &846 + discussion: &847 title: Discussion description: A Discussion in a repository. type: object @@ -26172,7 +26172,7 @@ paths: milestone: anyOf: - type: 'null' - - &390 + - &392 title: Milestone description: A collection of related issues and pull requests. @@ -26344,7 +26344,7 @@ paths: timeline_url: type: string format: uri - type: &356 + type: &358 title: Issue Type description: The type of issue. type: @@ -26455,7 +26455,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &766 + sub_issues_summary: &767 title: Sub-issues Summary type: object properties: @@ -26476,7 +26476,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &767 + issue_dependencies_summary: &768 title: Issue Dependencies Summary type: object properties: @@ -26495,7 +26495,7 @@ paths: - total_blocking issue_field_values: type: array - items: &768 + items: &769 title: Issue Field Value description: A value assigned to an issue field type: object @@ -26608,7 +26608,7 @@ paths: action: type: string issue: *212 - comment: &631 + comment: &632 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -27331,7 +27331,7 @@ paths: type: string release: allOf: - - &685 + - &686 title: Release description: A release. type: object @@ -27413,7 +27413,7 @@ paths: author: *4 assets: type: array - items: &686 + items: &687 title: Release Asset description: Data related to a release. type: object @@ -28004,7 +28004,7 @@ paths: url: type: string format: uri - user: &778 + user: &779 title: Public User description: Public User type: object @@ -29899,7 +29899,7 @@ paths: - closed - all default: open - - &359 + - &361 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -29950,7 +29950,7 @@ paths: type: array items: *212 examples: - default: &360 + default: &362 value: - id: 1 node_id: MDU6SXNzdWUx @@ -31361,14 +31361,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: - - &446 + - &448 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &447 + - &449 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -31430,7 +31430,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &452 + '301': &454 description: Moved permanently content: application/json: @@ -31452,7 +31452,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &659 + - &660 name: all description: If `true`, show notifications marked as read. in: query @@ -31460,7 +31460,7 @@ paths: schema: type: boolean default: false - - &660 + - &661 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -31470,7 +31470,7 @@ paths: type: boolean default: false - *218 - - &661 + - &662 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -31841,7 +31841,7 @@ paths: type: boolean examples: - false - security_and_analysis: &400 + security_and_analysis: &402 type: - object - 'null' @@ -32014,7 +32014,7 @@ paths: - url - subscription_url examples: - default: &662 + default: &663 value: - id: '1' repository: @@ -33143,7 +33143,7 @@ paths: type: array items: *149 examples: - default: &668 + default: &669 value: - property_name: environment value: production @@ -33193,7 +33193,7 @@ paths: required: - properties examples: - default: &669 + default: &670 value: properties: - property_name: environment @@ -34084,7 +34084,7 @@ paths: type: integer repository_cache_usages: type: array - items: &459 + items: &461 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -36207,7 +36207,7 @@ paths: type: array items: *272 examples: - default: &781 + default: &782 value: total_count: 1 repositories: @@ -37251,7 +37251,7 @@ paths: description: Response content: application/json: - schema: &479 + schema: &481 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -37286,7 +37286,7 @@ paths: - key_id - key examples: - default: &480 + default: &482 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -37699,7 +37699,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *85 - - &464 + - &466 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)." @@ -38922,12 +38922,12 @@ paths: required: - subject_digests examples: - default: &808 + default: &809 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &809 + withPredicateType: &810 value: subject_digests: - sha256:abc123 @@ -38986,7 +38986,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &810 + default: &811 value: attestations_subject_digests: - sha256:abc: @@ -39335,7 +39335,7 @@ paths: initiator: type: string examples: - default: &493 + default: &495 value: attestations: - bundle: @@ -40257,7 +40257,7 @@ paths: be returned. in: query required: false - schema: &518 + schema: &520 type: string description: Severity of a code scanning alert. enum: @@ -41273,7 +41273,7 @@ paths: type: integer codespaces: type: array - items: &361 + items: &363 type: object title: Codespace description: A codespace. @@ -41308,7 +41308,7 @@ paths: machine: anyOf: - type: 'null' - - &547 + - &549 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -41595,7 +41595,7 @@ paths: - pulls_url - recent_folders examples: - default: &362 + default: &364 value: total_count: 3 codespaces: @@ -42260,7 +42260,7 @@ paths: - updated_at - visibility examples: - default: &548 + default: &550 value: total_count: 2 secrets: @@ -42298,7 +42298,7 @@ paths: description: Response content: application/json: - schema: &549 + schema: &551 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -42333,7 +42333,7 @@ paths: - key_id - key examples: - default: &550 + default: &552 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -42365,7 +42365,7 @@ paths: application/json: schema: *316 examples: - default: &552 + default: &554 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -44094,7 +44094,7 @@ paths: description: Response content: application/json: - schema: &576 + schema: &578 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -44113,7 +44113,7 @@ paths: - key_id - key examples: - default: &577 + default: &579 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -44443,7 +44443,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *85 - - &585 + - &587 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -44451,7 +44451,7 @@ paths: required: false schema: type: string - - &586 + - &588 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -44459,7 +44459,7 @@ paths: required: false schema: type: string - - &587 + - &589 name: time_period description: |- The time period to filter by. @@ -44475,7 +44475,7 @@ paths: - week - month default: month - - &588 + - &590 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -44500,7 +44500,7 @@ paths: application/json: schema: type: array - items: &589 + items: &591 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -44610,7 +44610,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: &591 + items: &331 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -44663,7 +44663,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &590 + default: &592 value: - id: 21 number: 42 @@ -44729,24 +44729,25 @@ paths: '403': *27 '422': *15 '500': *38 - "/orgs/{org}/dismissal-requests/secret-scanning": + "/orgs/{org}/dismissal-requests/dependabot": get: - summary: List alert dismissal requests for secret scanning for an org + summary: List dismissal requests for Dependabot alerts for an organization description: |- - Lists requests to dismiss secret scanning alerts in an org. + Lists dismissal requests for Dependabot alerts in an organization. Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, - or have the "Review and manage secret scanning alert dismissal requests" permission to access this endpoint. + or have the appropriate permission to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. tags: - - secret-scanning - operationId: secret-scanning/list-org-dismissal-requests + - dependabot + operationId: dependabot/list-dismissal-requests-for-org externalDocs: description: API method documentation - url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/alert-dismissal-requests#list-alert-dismissal-requests-for-secret-scanning-for-an-org + url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization x-github: githubCloudOnly: true enabledForGitHubApps: true - category: secret-scanning + category: dependabot subcategory: alert-dismissal-requests parameters: - *85 @@ -44754,7 +44755,7 @@ paths: - *101 - *102 - *103 - - &593 + - &332 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -44773,6 +44774,231 @@ paths: default: all - *17 - *19 + responses: + '200': + description: A list of alert dismissal requests. + content: + application/json: + schema: + type: array + items: &593 + title: Dependabot alert dismissal request + description: Alert dismissal request made by a user asking to dismiss + a Dependabot alert. + type: object + properties: + id: + type: integer + format: int64 + description: The unique identifier of the dismissal request. + number: + type: integer + format: int64 + description: The number uniquely identifying the dismissal request + within its repository. + repository: + type: object + description: The repository the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the repository the dismissal request + is for. + name: + type: string + description: The name of the repository the dismissal request + is for. + full_name: + type: string + description: The full name of the repository the dismissal + request is for. + organization: + type: object + description: The organization associated with the repository + the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the dismissal request. + properties: + actor_id: + type: integer + format: int64 + description: The ID of the GitHub user who requested the + dismissal request. + actor_name: + type: string + description: The name of the GitHub user who requested the + dismissal request. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the dismissal request metadata. + items: + type: object + properties: + reason: + type: string + description: The reason for the dismissal request. + alert_number: + type: string + description: The alert number. + alert_title: + type: string + description: The title of the alert. + resource_identifier: + type: string + description: The unique identifier for the request type of the + dismissal request. + examples: + - '123' + status: + type: string + description: The status of the dismissal request. + enum: + - pending + - denied + - approved + - expired + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating + the dismissal request. + expires_at: + type: string + format: date-time + description: The date and time the dismissal request will expire. + created_at: + type: string + format: date-time + description: The date and time the dismissal request was created. + responses: + type: + - array + - 'null' + description: The responses to the dismissal request. + items: *331 + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: + type: string + description: The URL to view the dismissal request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/security/dependabot/1 + examples: + default: &594 + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: no_bandwidth + alert_number: '1' + alert_title: lodash - GHSA-1234-abcd-5678 + resource_identifier: '1' + status: denied + requester_comment: No bandwidth to fix this right now + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: https://github.com/octo-org/smile/security/dependabot/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: tolerable_risk + alert_number: '2' + alert_title: axios - GHSA-5678-efgh-9012 + resource_identifier: '2' + status: approved + requester_comment: Risk is acceptable for this internal tool + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 43 + reviewer: + actor_id: 4 + actor_name: octocat + status: approved + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 + html_url: https://github.com/octo-org/smile/security/dependabot/2 + '404': *6 + '403': *27 + '500': *38 + "/orgs/{org}/dismissal-requests/secret-scanning": + get: + summary: List alert dismissal requests for secret scanning for an org + description: |- + Lists requests to dismiss secret scanning alerts in an org. + + Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, + or have the "Review and manage secret scanning alert dismissal requests" permission to access this endpoint. + tags: + - secret-scanning + operationId: secret-scanning/list-org-dismissal-requests + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/alert-dismissal-requests#list-alert-dismissal-requests-for-secret-scanning-for-an-org + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: secret-scanning + subcategory: alert-dismissal-requests + parameters: + - *85 + - *298 + - *101 + - *102 + - *103 + - *332 + - *17 + - *19 responses: '200': description: A list of the alert dismissal requests. @@ -44780,7 +45006,7 @@ paths: application/json: schema: type: array - items: &594 + items: &595 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -44907,7 +45133,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &595 + default: &596 value: - id: 21 number: 42 @@ -44995,7 +45221,7 @@ paths: application/json: schema: type: array - items: &371 + items: &373 title: Package description: A software package type: object @@ -45066,7 +45292,7 @@ paths: - created_at - updated_at examples: - default: &372 + default: &374 value: - id: 197 name: hello_docker @@ -45253,7 +45479,7 @@ paths: description: Response content: application/json: - schema: &443 + schema: &445 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -45343,7 +45569,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &444 + default: &446 value: group_id: '123' group_name: Octocat admins @@ -45398,7 +45624,7 @@ paths: description: Response content: application/json: - schema: &441 + schema: &443 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -45438,7 +45664,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &442 + default: &444 value: groups: - group_id: '123' @@ -45482,7 +45708,7 @@ paths: application/json: schema: type: array - items: &353 + items: &355 title: Organization Invitation description: Organization Invitation type: object @@ -45536,7 +45762,7 @@ paths: - invitation_teams_url - node_id examples: - default: &354 + default: &356 value: - id: 1 login: monalisa @@ -45603,7 +45829,7 @@ paths: application/json: schema: type: array - items: &401 + items: &403 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -45617,7 +45843,7 @@ paths: - name - description examples: - default: &402 + default: &404 value: - name: add_assignee description: Assign or remove a user @@ -45658,7 +45884,7 @@ paths: application/json: schema: type: array - items: &331 + items: &333 title: Org Hook description: Org Hook type: object @@ -45841,9 +46067,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: &332 + default: &334 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -45888,7 +46114,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *85 - - &333 + - &335 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. @@ -45901,9 +46127,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *332 + default: *334 '404': *6 x-github: githubCloudOnly: false @@ -45925,7 +46151,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *85 - - *333 + - *335 requestBody: required: false content: @@ -45971,7 +46197,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: default: value: @@ -46011,7 +46237,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *85 - - *333 + - *335 responses: '204': description: Response @@ -46037,7 +46263,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *85 - - *333 + - *335 responses: '200': description: Response @@ -46066,7 +46292,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *85 - - *333 + - *335 requestBody: required: false content: @@ -46115,9 +46341,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *85 - - *333 + - *335 - *17 - - *334 + - *336 responses: '200': description: Response @@ -46125,9 +46351,9 @@ paths: application/json: schema: type: array - items: *335 + items: *337 examples: - default: *336 + default: *338 '400': *14 '422': *15 x-github: @@ -46151,16 +46377,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *85 - - *333 + - *335 - *16 responses: '200': description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '400': *14 '422': *15 x-github: @@ -46184,7 +46410,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *85 - - *333 + - *335 - *16 responses: '202': *37 @@ -46211,7 +46437,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *85 - - *333 + - *335 responses: '204': description: Response @@ -46234,7 +46460,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *85 - - &343 + - &345 name: actor_type in: path description: The type of the actor @@ -46247,14 +46473,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &344 + - &346 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &339 + - &341 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`.' @@ -46262,7 +46488,7 @@ paths: required: true schema: type: string - - &340 + - &342 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) @@ -46357,12 +46583,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *85 - - *339 - - *340 + - *341 + - *342 - *19 - *17 - *108 - - &349 + - &351 name: sort description: The property to sort the results by. in: query @@ -46442,14 +46668,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *85 - - *339 - - *340 + - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &341 + schema: &343 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -46465,7 +46691,7 @@ paths: type: integer format: int64 examples: - default: &342 + default: &344 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -46486,23 +46712,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *85 - - &345 + - &347 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *339 - - *340 + - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *341 + schema: *343 examples: - default: *342 + default: *344 x-github: enabledForGitHubApps: true category: orgs @@ -46521,18 +46747,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *85 - - *339 - - *340 - - *343 - - *344 + - *341 + - *342 + - *345 + - *346 responses: '200': description: Response content: application/json: - schema: *341 + schema: *343 examples: - default: *342 + default: *344 x-github: enabledForGitHubApps: true category: orgs @@ -46550,9 +46776,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *85 - - *339 - - *340 - - &346 + - *341 + - *342 + - &348 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -46565,7 +46791,7 @@ paths: description: Response content: application/json: - schema: &347 + schema: &349 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -46581,7 +46807,7 @@ paths: type: integer format: int64 examples: - default: &348 + default: &350 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -46618,18 +46844,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *85 - - *345 - - *339 - - *340 - - *346 + - *347 + - *341 + - *342 + - *348 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 x-github: enabledForGitHubApps: true category: orgs @@ -46647,19 +46873,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *85 - - *343 - - *344 - - *339 - - *340 + - *345 - *346 + - *341 + - *342 + - *348 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *348 + default: *350 x-github: enabledForGitHubApps: true category: orgs @@ -46677,13 +46903,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *85 - - *345 - - *339 - - *340 + - *347 + - *341 + - *342 - *19 - *17 - *108 - - *349 + - *351 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -46767,7 +46993,7 @@ paths: application/json: schema: *20 examples: - default: &626 + default: &627 value: id: 1 account: @@ -46933,12 +47159,12 @@ paths: application/json: schema: anyOf: - - &351 + - &353 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &350 + limit: &352 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -46966,7 +47192,7 @@ paths: properties: {} additionalProperties: false examples: - default: &352 + default: &354 value: limit: collaborators_only origin: organization @@ -46995,13 +47221,13 @@ paths: required: true content: application/json: - schema: &627 + schema: &628 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *350 + limit: *352 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -47026,9 +47252,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 '422': *15 x-github: githubCloudOnly: false @@ -47106,9 +47332,9 @@ paths: application/json: schema: type: array - items: *353 + items: *355 examples: - default: *354 + default: *356 headers: Link: *45 '404': *6 @@ -47186,7 +47412,7 @@ paths: description: Response content: application/json: - schema: *353 + schema: *355 examples: default: value: @@ -47243,7 +47469,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *85 - - &355 + - &357 name: invitation_id description: The unique identifier of the invitation. in: path @@ -47277,7 +47503,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *85 - - *355 + - *357 - *17 - *19 responses: @@ -47289,7 +47515,7 @@ paths: type: array items: *301 examples: - default: &370 + default: &372 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -47332,7 +47558,7 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: default: value: @@ -47420,9 +47646,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *358 examples: - default: &357 + default: &359 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -47455,7 +47681,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *85 - - &358 + - &360 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -47511,9 +47737,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *358 examples: - default: *357 + default: *359 '404': *6 '422': *7 x-github: @@ -47538,7 +47764,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *85 - - *358 + - *360 responses: '204': description: Response @@ -47601,7 +47827,7 @@ paths: - closed - all default: open - - *359 + - *361 - name: type description: Can be the name of an issue type. in: query @@ -47632,7 +47858,7 @@ paths: type: array items: *212 examples: - default: *360 + default: *362 headers: Link: *45 '404': *6 @@ -47791,9 +48017,9 @@ paths: type: integer codespaces: type: array - items: *361 + items: *363 examples: - default: *362 + default: *364 '304': *35 '500': *38 '401': *23 @@ -47820,7 +48046,7 @@ paths: parameters: - *85 - *136 - - &363 + - &365 name: codespace_name in: path required: true @@ -47855,15 +48081,15 @@ paths: parameters: - *85 - *136 - - *363 + - *365 responses: '200': description: Response content: application/json: - schema: *361 + schema: *363 examples: - default: &546 + default: &548 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -48119,7 +48345,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &366 title: Org Membership description: Org Membership type: object @@ -48188,7 +48414,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &365 + response-if-user-has-an-active-admin-membership-with-organization: &367 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -48285,9 +48511,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *366 examples: - response-if-user-already-had-membership-with-organization: *365 + response-if-user-already-had-membership-with-organization: *367 '422': *15 '403': *27 x-github: @@ -48359,7 +48585,7 @@ paths: application/json: schema: type: array - items: &366 + items: &368 title: Migration description: A migration. type: object @@ -48697,7 +48923,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *368 examples: default: value: @@ -48876,7 +49102,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *85 - - &367 + - &369 name: migration_id description: The unique identifier of the migration. in: path @@ -48904,7 +49130,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *366 + schema: *368 examples: default: value: @@ -49074,7 +49300,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *85 - - *367 + - *369 responses: '302': description: Response @@ -49096,7 +49322,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *85 - - *367 + - *369 responses: '204': description: Response @@ -49120,8 +49346,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *85 - - *367 - - &793 + - *369 + - &794 name: repo_name description: repo_name parameter in: path @@ -49149,7 +49375,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *85 - - *367 + - *369 - *17 - *19 responses: @@ -49161,7 +49387,7 @@ paths: type: array items: *272 examples: - default: &377 + default: &379 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -49370,7 +49596,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &368 + items: &370 title: Organization Role description: Organization roles type: object @@ -49579,7 +49805,7 @@ paths: description: Response content: application/json: - schema: *368 + schema: *370 examples: default: value: @@ -49809,7 +50035,7 @@ paths: description: Response content: application/json: - schema: *368 + schema: *370 examples: default: value: @@ -49906,7 +50132,7 @@ paths: description: Response content: application/json: - schema: *368 + schema: *370 examples: default: value: @@ -50065,7 +50291,7 @@ paths: parent: anyOf: - type: 'null' - - *369 + - *371 type: description: The ownership type of the team type: string @@ -50098,7 +50324,7 @@ paths: - type - parent examples: - default: *370 + default: *372 headers: Link: *45 '404': @@ -50157,7 +50383,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *369 + items: *371 name: type: - string @@ -50467,7 +50693,7 @@ paths: - nuget - container - *85 - - &794 + - &795 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -50503,12 +50729,12 @@ paths: application/json: schema: type: array - items: *371 + items: *373 examples: - default: *372 + default: *374 '403': *27 '401': *23 - '400': &796 + '400': &797 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -50530,7 +50756,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &373 + - &375 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 @@ -50548,7 +50774,7 @@ paths: - docker - nuget - container - - &374 + - &376 name: package_name description: The name of the package. in: path @@ -50561,7 +50787,7 @@ paths: description: Response content: application/json: - schema: *371 + schema: *373 examples: default: value: @@ -50613,8 +50839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *373 - - *374 + - *375 + - *376 - *85 responses: '204': @@ -50647,8 +50873,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *373 - - *374 + - *375 + - *376 - *85 - name: token description: package token @@ -50681,8 +50907,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: - - *373 - - *374 + - *375 + - *376 - *85 - *19 - *17 @@ -50703,7 +50929,7 @@ paths: application/json: schema: type: array - items: &375 + items: &377 title: Package Version description: A version of a software package type: object @@ -50838,10 +51064,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: - - *373 - - *374 + - *375 + - *376 - *85 - - &376 + - &378 name: package_version_id description: Unique identifier of the package version. in: path @@ -50853,7 +51079,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *377 examples: default: value: @@ -50889,10 +51115,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *373 - - *374 - - *85 + - *375 - *376 + - *85 + - *378 responses: '204': description: Response @@ -50924,10 +51150,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *373 - - *374 - - *85 + - *375 - *376 + - *85 + - *378 responses: '204': description: Response @@ -50957,7 +51183,7 @@ paths: - *85 - *17 - *19 - - &378 + - &380 name: sort description: The property by which to sort the results. in: query @@ -50968,7 +51194,7 @@ paths: - created_at default: created_at - *108 - - &379 + - &381 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -50980,7 +51206,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &380 + - &382 name: repository description: The name of the repository to use to filter the results. in: query @@ -50989,7 +51215,7 @@ paths: type: string examples: - Hello-World - - &381 + - &383 name: permission description: The permission to use to filter the results. in: query @@ -50998,7 +51224,7 @@ paths: type: string examples: - issues_read - - &382 + - &384 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) @@ -51008,7 +51234,7 @@ paths: schema: type: string format: date-time - - &383 + - &385 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) @@ -51018,7 +51244,7 @@ paths: schema: type: string format: date-time - - &384 + - &386 name: token_id description: The ID of the token in: query @@ -51337,7 +51563,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -51363,14 +51589,14 @@ paths: - *85 - *17 - *19 - - *378 - - *108 - - *379 - *380 + - *108 - *381 - *382 - *383 - *384 + - *385 + - *386 responses: '500': *38 '422': *15 @@ -51654,7 +51880,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -51696,7 +51922,7 @@ paths: type: integer configurations: type: array - items: &385 + items: &387 title: Organization private registry description: Private registry configuration for an organization type: object @@ -51992,7 +52218,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &386 + org-private-registry-with-selected-visibility: &388 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -52090,9 +52316,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *385 + schema: *387 examples: - default: *386 + default: *388 '404': *6 x-github: githubCloudOnly: false @@ -52260,7 +52486,7 @@ paths: application/json: schema: type: array - items: &387 + items: &389 title: Projects v2 Project description: A projects v2 project type: object @@ -52334,7 +52560,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &879 + - &880 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -52419,7 +52645,7 @@ paths: - deleted_at - deleted_by examples: - default: &388 + default: &390 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -52522,7 +52748,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &389 + - &391 name: project_number description: The project's number. in: path @@ -52535,9 +52761,9 @@ paths: description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: *388 + default: *390 headers: Link: *45 '304': *35 @@ -52560,7 +52786,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *85 - - *389 + - *391 requestBody: required: true description: Details of the draft item to create in the project. @@ -52594,7 +52820,7 @@ paths: description: Response content: application/json: - schema: &394 + schema: &396 title: Projects v2 Item description: An item belonging to a project type: object @@ -52608,7 +52834,7 @@ paths: content: oneOf: - *212 - - &559 + - &561 title: Pull Request Simple description: Pull Request Simple type: object @@ -52728,7 +52954,7 @@ paths: milestone: anyOf: - type: 'null' - - *390 + - *392 active_lock_reason: type: - string @@ -52827,7 +53053,7 @@ paths: _links: type: object properties: - comments: &391 + comments: &393 title: Link description: Hypermedia Link type: object @@ -52836,13 +53062,13 @@ paths: type: string required: - href - commits: *391 - statuses: *391 - html: *391 - issue: *391 - review_comments: *391 - review_comment: *391 - self: *391 + commits: *393 + statuses: *393 + html: *393 + issue: *393 + review_comments: *393 + review_comment: *393 + self: *393 required: - comments - commits @@ -52853,7 +53079,7 @@ paths: - review_comment - self author_association: *213 - auto_merge: &671 + auto_merge: &672 title: Auto merge description: The status of auto merging a pull request. type: @@ -52955,7 +53181,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &393 + content_type: &395 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -52999,7 +53225,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &395 + draft_issue: &397 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -53073,7 +53299,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *389 + - *391 - *85 - *17 - *106 @@ -53085,7 +53311,7 @@ paths: application/json: schema: type: array - items: &392 + items: &394 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -53235,7 +53461,7 @@ paths: - updated_at - project_url examples: - default: &813 + default: &814 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53365,7 +53591,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: - - *389 + - *391 - *85 requestBody: required: true @@ -53412,7 +53638,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &814 + items: &815 type: object properties: name: @@ -53448,7 +53674,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &815 + iteration_configuration: &816 type: object description: The configuration for iteration fields. properties: @@ -53497,7 +53723,7 @@ paths: value: name: Due date data_type: date - single_select_field: &816 + single_select_field: &817 summary: Create a single select field value: name: Priority @@ -53524,7 +53750,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &817 + iteration_field: &818 summary: Create an iteration field value: name: Sprint @@ -53548,9 +53774,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *392 + schema: *394 examples: - text_field: &818 + text_field: &819 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -53559,7 +53785,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: &819 + number_field: &820 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -53568,7 +53794,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: &820 + date_field: &821 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -53577,7 +53803,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: &821 + single_select_field: &822 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53611,7 +53837,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &822 + iteration_field: &823 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -53656,8 +53882,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *389 - - &823 + - *391 + - &824 name: field_id description: The unique identifier of the field. in: path @@ -53670,9 +53896,9 @@ paths: description: Response content: application/json: - schema: *392 + schema: *394 examples: - default: &824 + default: &825 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53728,7 +53954,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: - - *389 + - *391 - *85 - 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) @@ -53761,7 +53987,7 @@ paths: application/json: schema: type: array - items: &396 + items: &398 title: Projects v2 Item description: An item belonging to a project type: object @@ -53778,7 +54004,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *393 + content_type: *395 content: type: - object @@ -53828,7 +54054,7 @@ paths: - updated_at - archived_at examples: - default: &397 + default: &399 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -54525,7 +54751,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - *85 - - *389 + - *391 requestBody: required: true description: Details of the item to add to the project. @@ -54562,10 +54788,10 @@ paths: description: Response content: application/json: - schema: *394 + schema: *396 examples: - issue: *395 - pull_request: *395 + issue: *397 + pull_request: *397 '304': *35 '403': *27 '401': *23 @@ -54585,9 +54811,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: - - *389 + - *391 - *85 - - &398 + - &400 name: item_id description: The unique identifier of the project item. in: path @@ -54613,9 +54839,9 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: - default: *397 + default: *399 headers: Link: *45 '304': *35 @@ -54636,9 +54862,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *389 + - *391 - *85 - - *398 + - *400 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -54711,13 +54937,13 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: - text_field: *397 - number_field: *397 - date_field: *397 - single_select_field: *397 - iteration_field: *397 + text_field: *399 + number_field: *399 + date_field: *399 + single_select_field: *399 + iteration_field: *399 '401': *23 '403': *27 '404': *6 @@ -54737,9 +54963,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *389 + - *391 - *85 - - *398 + - *400 responses: '204': description: Response @@ -54902,7 +55128,7 @@ paths: required: true content: application/json: - schema: *399 + schema: *401 examples: default: value: @@ -55270,7 +55496,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -55474,7 +55700,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &453 title: Full Repository description: Full Repository type: object @@ -55939,7 +56165,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &564 + code_of_conduct: &566 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -55969,7 +56195,7 @@ paths: - key - name - html_url - security_and_analysis: *400 + security_and_analysis: *402 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -56053,7 +56279,7 @@ paths: - network_count - subscribers_count examples: - default: &453 + default: &455 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -56579,9 +56805,9 @@ paths: application/json: schema: type: array - items: *401 + items: *403 examples: - default: *402 + default: *404 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -56606,7 +56832,7 @@ paths: - *85 - *17 - *19 - - &693 + - &694 name: targets description: | A comma-separated list of rule targets to filter by. @@ -56698,11 +56924,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *162 - conditions: *403 + conditions: *405 rules: type: array description: An array of rules within the ruleset. - items: &405 + items: &407 title: Repository Rule type: object description: A repository rule. @@ -56767,7 +56993,7 @@ paths: application/json: schema: *184 examples: - default: &404 + default: &406 value: id: 21 name: super cool ruleset @@ -56822,7 +57048,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *85 - - &695 + - &696 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 @@ -56834,14 +57060,14 @@ paths: x-multi-segment: true - *298 - *103 - - &696 + - &697 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 - - &697 + - &698 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -56861,7 +57087,7 @@ paths: description: Response content: application/json: - schema: &698 + schema: &699 title: Rule Suites description: Response type: array @@ -56917,7 +57143,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &699 + default: &700 value: - id: 21 actor_id: 12 @@ -56961,7 +57187,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *85 - - &700 + - &701 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -56977,7 +57203,7 @@ paths: description: Response content: application/json: - schema: &701 + schema: &702 title: Rule Suite description: Response type: object @@ -57084,7 +57310,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &702 + default: &703 value: id: 21 actor_id: 12 @@ -57159,7 +57385,7 @@ paths: application/json: schema: *184 examples: - default: *404 + default: *406 '404': *6 '500': *38 put: @@ -57208,11 +57434,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *162 - conditions: *403 + conditions: *405 rules: description: An array of rules within the ruleset. type: array - items: *405 + items: *407 examples: default: value: @@ -57249,7 +57475,7 @@ paths: application/json: schema: *184 examples: - default: *404 + default: *406 '404': *6 '500': *38 delete: @@ -57308,7 +57534,7 @@ paths: type: array items: *188 examples: - default: *406 + default: *408 '404': *6 '500': *38 x-github: @@ -57345,7 +57571,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *409 examples: default: value: @@ -57408,15 +57634,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *85 - - *408 - - *409 - *410 - *411 - *412 + - *413 + - *414 - *108 - *19 - *17 - - &704 + - &705 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 @@ -57426,7 +57652,7 @@ paths: required: false schema: type: string - - &705 + - &706 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 @@ -57436,10 +57662,10 @@ paths: required: false schema: type: string - - *413 - - *414 - *415 - *416 + - *417 + - *418 responses: '200': description: Response @@ -57447,9 +57673,9 @@ paths: application/json: schema: type: array - items: *417 + items: *419 examples: - default: *418 + default: *420 headers: Link: *45 '404': *6 @@ -57484,9 +57710,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *421 examples: - default: *420 + default: *422 '403': *27 '404': *6 patch: @@ -57639,7 +57865,7 @@ paths: application/json: schema: type: array - items: &726 + items: &727 description: A repository security advisory. type: object properties: @@ -57883,7 +58109,7 @@ paths: login: type: string description: The username of the user credited. - type: *421 + type: *423 credits_detailed: type: - array @@ -57894,7 +58120,7 @@ paths: type: object properties: user: *4 - type: *421 + type: *423 state: type: string description: The state of the user's acceptance of the @@ -57958,7 +58184,7 @@ paths: - private_fork additionalProperties: false examples: - default: &727 + default: &728 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -58345,9 +58571,9 @@ paths: application/json: schema: type: array - items: *369 + items: *371 examples: - default: *370 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58429,7 +58655,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *85 - - *422 + - *424 - *17 - *19 responses: @@ -58437,9 +58663,9 @@ paths: description: Success content: application/json: - schema: *423 + schema: *425 examples: - default: *424 + default: *426 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -58722,7 +58948,7 @@ paths: type: array items: *141 examples: - default: *425 + default: *427 headers: Link: *45 x-github: @@ -58923,15 +59149,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: - *85 - - *426 + - *428 responses: '200': description: Response content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 headers: Link: *45 x-github: @@ -58969,7 +59195,7 @@ paths: description: Response content: application/json: - schema: &448 + schema: &450 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -59021,7 +59247,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &449 + default: &451 value: groups: - group_id: '123' @@ -59135,7 +59361,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 headers: Link: *45 '403': *27 @@ -59229,7 +59455,7 @@ paths: description: Response content: application/json: - schema: &429 + schema: &431 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -59303,7 +59529,7 @@ paths: parent: anyOf: - type: 'null' - - *369 + - *371 members_count: type: integer examples: @@ -59628,7 +59854,7 @@ paths: - repos_count - organization examples: - default: &430 + default: &432 value: id: 1 node_id: MDQ6VGVhbTE= @@ -59705,9 +59931,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '404': *6 x-github: githubCloudOnly: false @@ -59792,16 +60018,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '201': description: Response content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '404': *6 '422': *15 '403': *27 @@ -59871,7 +60097,7 @@ paths: application/json: schema: type: array - items: &431 + items: &433 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -59982,7 +60208,7 @@ paths: - updated_at - url examples: - default: &770 + default: &771 value: - author: login: octocat @@ -60091,9 +60317,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: &432 + default: &434 value: author: login: octocat @@ -60167,7 +60393,7 @@ paths: parameters: - *85 - *209 - - &433 + - &435 name: discussion_number description: The number that identifies the discussion. in: path @@ -60179,9 +60405,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60205,7 +60431,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 requestBody: required: false content: @@ -60228,9 +60454,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: &771 + default: &772 value: author: login: octocat @@ -60302,7 +60528,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 responses: '204': description: Response @@ -60330,7 +60556,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 - *108 - *17 - *19 @@ -60341,7 +60567,7 @@ paths: application/json: schema: type: array - items: &434 + items: &436 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -60421,7 +60647,7 @@ paths: - updated_at - url examples: - default: &772 + default: &773 value: - author: login: octocat @@ -60491,7 +60717,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 requestBody: required: true content: @@ -60513,9 +60739,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: &435 + default: &437 value: author: login: octocat @@ -60583,8 +60809,8 @@ paths: parameters: - *85 - *209 - - *433 - - &436 + - *435 + - &438 name: comment_number description: The number that identifies the comment. in: path @@ -60596,9 +60822,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: *435 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60622,8 +60848,8 @@ paths: parameters: - *85 - *209 - - *433 - - *436 + - *435 + - *438 requestBody: required: true content: @@ -60645,9 +60871,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: &773 + default: &774 value: author: login: octocat @@ -60713,8 +60939,8 @@ paths: parameters: - *85 - *209 - - *433 - - *436 + - *435 + - *438 responses: '204': description: Response @@ -60742,8 +60968,8 @@ paths: parameters: - *85 - *209 - - *433 - - *436 + - *435 + - *438 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -60769,7 +60995,7 @@ paths: application/json: schema: type: array - items: &437 + items: &439 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -60813,7 +61039,7 @@ paths: - content - created_at examples: - default: &439 + default: &441 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -60865,8 +61091,8 @@ paths: parameters: - *85 - *209 - - *433 - - *436 + - *435 + - *438 requestBody: required: true content: @@ -60899,9 +61125,9 @@ paths: team discussion comment content: application/json: - schema: *437 + schema: *439 examples: - default: &438 + default: &440 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -60930,9 +61156,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60957,9 +61183,9 @@ paths: parameters: - *85 - *209 - - *433 - - *436 - - &440 + - *435 + - *438 + - &442 name: reaction_id description: The unique identifier of the reaction. in: path @@ -60993,7 +61219,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -61019,9 +61245,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 x-github: @@ -61049,7 +61275,7 @@ paths: parameters: - *85 - *209 - - *433 + - *435 requestBody: required: true content: @@ -61081,16 +61307,16 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -61115,8 +61341,8 @@ paths: parameters: - *85 - *209 - - *433 - - *440 + - *435 + - *442 responses: '204': description: Response @@ -61146,9 +61372,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -61192,9 +61418,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *445 examples: - default: *444 + default: *446 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -61249,9 +61475,9 @@ paths: application/json: schema: type: array - items: *353 + items: *355 examples: - default: *354 + default: *356 headers: Link: *45 x-github: @@ -61335,7 +61561,7 @@ paths: description: Response content: application/json: - schema: &445 + schema: &447 title: Team Membership description: Team Membership type: object @@ -61363,7 +61589,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &774 + response-if-user-is-a-team-maintainer: &775 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -61426,9 +61652,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: - response-if-users-membership-with-team-is-now-pending: &775 + response-if-users-membership-with-team-is-now-pending: &776 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -61504,7 +61730,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -61535,14 +61761,14 @@ paths: parameters: - *85 - *209 - - *446 - - *447 + - *448 + - *449 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &776 + schema: &777 title: Team Repository description: A team's access to a repository. type: object @@ -62185,8 +62411,8 @@ paths: parameters: - *85 - *209 - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -62233,8 +62459,8 @@ paths: parameters: - *85 - *209 - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -62267,9 +62493,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *450 examples: - default: *449 + default: *451 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -62335,7 +62561,7 @@ paths: description: Response content: application/json: - schema: *448 + schema: *450 examples: default: value: @@ -62380,7 +62606,7 @@ paths: type: array items: *301 examples: - response-if-child-teams-exist: &777 + response-if-child-teams-exist: &778 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -62534,7 +62760,7 @@ paths: resources: type: object properties: - core: &450 + core: &452 title: Rate Limit type: object properties: @@ -62551,21 +62777,21 @@ paths: - remaining - reset - used - graphql: *450 - search: *450 - code_search: *450 - source_import: *450 - integration_manifest: *450 - code_scanning_upload: *450 - actions_runner_registration: *450 - scim: *450 - dependency_snapshots: *450 - dependency_sbom: *450 - code_scanning_autofix: *450 + graphql: *452 + search: *452 + code_search: *452 + source_import: *452 + integration_manifest: *452 + code_scanning_upload: *452 + actions_runner_registration: *452 + scim: *452 + dependency_snapshots: *452 + dependency_sbom: *452 + code_scanning_autofix: *452 required: - core - search - rate: *450 + rate: *452 required: - rate - resources @@ -62670,14 +62896,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *451 + schema: *453 examples: default-response: summary: Default response @@ -63182,7 +63408,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *452 + '301': *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63200,8 +63426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -63459,10 +63685,10 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *453 - '307': &454 + default: *455 + '307': &456 description: Temporary Redirect content: application/json: @@ -63491,8 +63717,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -63514,7 +63740,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': *454 + '307': *456 '404': *6 '409': *116 x-github: @@ -63538,11 +63764,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 - - &471 + - &473 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -63565,7 +63791,7 @@ paths: type: integer artifacts: type: array - items: &455 + items: &457 title: Artifact description: An artifact type: object @@ -63660,7 +63886,7 @@ paths: - expires_at - updated_at examples: - default: &472 + default: &474 value: total_count: 2 artifacts: @@ -63721,9 +63947,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *446 - - *447 - - &456 + - *448 + - *449 + - &458 name: artifact_id description: The unique identifier of the artifact. in: path @@ -63735,7 +63961,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -63773,9 +63999,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *446 - - *447 - - *456 + - *448 + - *449 + - *458 responses: '204': description: Response @@ -63799,9 +64025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *446 - - *447 - - *456 + - *448 + - *449 + - *458 - name: archive_format in: path required: true @@ -63815,7 +64041,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &630 + '410': &631 description: Gone content: application/json: @@ -63840,14 +64066,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: &457 + schema: &459 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -63881,13 +64107,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: application/json: - schema: *457 + schema: *459 examples: selected_actions: *42 responses: @@ -63916,14 +64142,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: &458 + schema: &460 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -63957,13 +64183,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: application/json: - schema: *458 + schema: *460 examples: selected_actions: *44 responses: @@ -63994,14 +64220,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *459 + schema: *461 examples: default: value: @@ -64027,11 +64253,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: - - *446 - - *447 + - *448 + - *449 - *17 - *19 - - &460 + - &462 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 @@ -64065,7 +64291,7 @@ paths: description: Response content: application/json: - schema: &461 + schema: &463 title: Repository actions caches description: Repository actions caches type: object @@ -64115,7 +64341,7 @@ paths: - total_count - actions_caches examples: - default: &462 + default: &464 value: total_count: 1 actions_caches: @@ -64147,23 +64373,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: - - *446 - - *447 + - *448 + - *449 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *460 + - *462 responses: '200': description: Response content: application/json: - schema: *461 + schema: *463 examples: - default: *462 + default: *464 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64183,8 +64409,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: - - *446 - - *447 + - *448 + - *449 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -64215,9 +64441,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: - - *446 - - *447 - - &463 + - *448 + - *449 + - &465 name: job_id description: The unique identifier of the job. in: path @@ -64229,7 +64455,7 @@ paths: description: Response content: application/json: - schema: &475 + schema: &477 title: Job description: Information of a job execution in a workflow run type: object @@ -64576,9 +64802,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: - - *446 - - *447 - - *463 + - *448 + - *449 + - *465 responses: '302': description: Response @@ -64606,9 +64832,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: - - *446 - - *447 - - *463 + - *448 + - *449 + - *465 requestBody: required: false content: @@ -64654,8 +64880,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Status response @@ -64705,8 +64931,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -64769,8 +64995,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -64788,7 +65014,7 @@ paths: type: integer secrets: type: array - items: &477 + items: &479 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -64809,7 +65035,7 @@ paths: - created_at - updated_at examples: - default: &478 + default: &480 value: total_count: 2 secrets: @@ -64842,9 +65068,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *446 - - *447 - - *464 + - *448 + - *449 + - *466 - *19 responses: '200': @@ -64861,7 +65087,7 @@ paths: type: integer variables: type: array - items: &481 + items: &483 title: Actions Variable type: object properties: @@ -64895,7 +65121,7 @@ paths: - created_at - updated_at examples: - default: &482 + default: &484 value: total_count: 2 variables: @@ -64928,8 +65154,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -64938,7 +65164,7 @@ paths: schema: type: object properties: - enabled: &465 + enabled: &467 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *58 @@ -64973,8 +65199,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -64985,7 +65211,7 @@ paths: schema: type: object properties: - enabled: *465 + enabled: *467 allowed_actions: *58 sha_pinning_required: *59 required: @@ -65018,14 +65244,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: &466 + schema: &468 type: object properties: access_level: @@ -65043,7 +65269,7 @@ paths: required: - access_level examples: - default: &467 + default: &469 value: access_level: organization x-github: @@ -65068,15 +65294,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: application/json: - schema: *466 + schema: *468 examples: - default: *467 + default: *469 responses: '204': description: Response @@ -65100,8 +65326,8 @@ 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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65131,8 +65357,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Empty response for successful settings update @@ -65166,8 +65392,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65194,8 +65420,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -65229,8 +65455,8 @@ 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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65258,8 +65484,8 @@ 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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -65290,8 +65516,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65322,8 +65548,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -65355,8 +65581,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65385,8 +65611,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Success response @@ -65426,8 +65652,8 @@ paths: in: query schema: type: string - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -65471,8 +65697,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -65504,8 +65730,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -65579,8 +65805,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: - - *446 - - *447 + - *448 + - *449 responses: '201': description: Response @@ -65616,8 +65842,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: - - *446 - - *447 + - *448 + - *449 responses: '201': description: Response @@ -65647,8 +65873,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: - - *446 - - *447 + - *448 + - *449 - *73 responses: '200': @@ -65678,8 +65904,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: - - *446 - - *447 + - *448 + - *449 - *73 responses: '204': @@ -65706,8 +65932,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: - - *446 - - *447 + - *448 + - *449 - *73 responses: '200': *79 @@ -65732,8 +65958,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: - - *446 - - *447 + - *448 + - *449 - *73 requestBody: required: true @@ -65782,8 +66008,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: - - *446 - - *447 + - *448 + - *449 - *73 requestBody: required: true @@ -65833,8 +66059,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *73 responses: '200': *279 @@ -65864,8 +66090,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *73 - *280 responses: @@ -65895,9 +66121,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: - - *446 - - *447 - - &485 + - *448 + - *449 + - &487 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. @@ -65905,7 +66131,7 @@ paths: required: false schema: type: string - - &486 + - &488 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -65913,7 +66139,7 @@ paths: required: false schema: type: string - - &487 + - &489 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -65922,7 +66148,7 @@ paths: required: false schema: type: string - - &488 + - &490 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 @@ -65949,7 +66175,7 @@ paths: - pending - *17 - *19 - - &489 + - &491 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)." @@ -65958,7 +66184,7 @@ paths: schema: type: string format: date-time - - &468 + - &470 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -65967,13 +66193,13 @@ paths: schema: type: boolean default: false - - &490 + - &492 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &491 + - &493 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -65996,7 +66222,7 @@ paths: type: integer workflow_runs: type: array - items: &469 + items: &471 title: Workflow Run description: An invocation of a workflow type: object @@ -66174,7 +66400,7 @@ paths: head_commit: anyOf: - type: 'null' - - &513 + - &515 title: Simple Commit description: A commit. type: object @@ -66289,7 +66515,7 @@ paths: - workflow_url - pull_requests examples: - default: &492 + default: &494 value: total_count: 1 workflow_runs: @@ -66525,24 +66751,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *446 - - *447 - - &470 + - *448 + - *449 + - &472 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *468 + - *470 responses: '200': description: Response content: application/json: - schema: *469 + schema: *471 examples: - default: &473 + default: &475 value: id: 30433642 name: Build @@ -66783,9 +67009,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '204': description: Response @@ -66808,9 +67034,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '200': description: Response @@ -66938,9 +67164,9 @@ 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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '201': description: Response @@ -66973,12 +67199,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 - *17 - *19 - - *471 + - *473 responses: '200': description: Response @@ -66994,9 +67220,9 @@ paths: type: integer artifacts: type: array - items: *455 + items: *457 examples: - default: *472 + default: *474 headers: Link: *45 x-github: @@ -67020,25 +67246,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *446 - - *447 - - *470 - - &474 + - *448 + - *449 + - *472 + - &476 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *468 + - *470 responses: '200': description: Response content: application/json: - schema: *469 + schema: *471 examples: - default: *473 + default: *475 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67061,10 +67287,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: - - *446 - - *447 - - *470 - - *474 + - *448 + - *449 + - *472 + - *476 - *17 - *19 responses: @@ -67082,9 +67308,9 @@ paths: type: integer jobs: type: array - items: *475 + items: *477 examples: - default: &476 + default: &478 value: total_count: 1 jobs: @@ -67197,10 +67423,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *446 - - *447 - - *470 - - *474 + - *448 + - *449 + - *472 + - *476 responses: '302': description: Response @@ -67228,9 +67454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '202': description: Response @@ -67263,9 +67489,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 requestBody: required: true content: @@ -67332,9 +67558,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '202': description: Response @@ -67367,9 +67593,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 - 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 @@ -67399,9 +67625,9 @@ paths: type: integer jobs: type: array - items: *475 + items: *477 examples: - default: *476 + default: *478 headers: Link: *45 x-github: @@ -67426,9 +67652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '302': description: Response @@ -67455,9 +67681,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '204': description: Response @@ -67484,9 +67710,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '200': description: Response @@ -67555,7 +67781,7 @@ paths: items: type: object properties: - type: &596 + type: &597 type: string description: The type of reviewer. enum: @@ -67641,9 +67867,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 requestBody: required: true content: @@ -67693,7 +67919,7 @@ paths: application/json: schema: type: array - items: &580 + items: &582 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -67805,7 +68031,7 @@ paths: - created_at - updated_at examples: - default: &581 + default: &583 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -67861,9 +68087,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 requestBody: required: false content: @@ -67908,9 +68134,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: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 requestBody: required: false content: @@ -67965,9 +68191,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *446 - - *447 - - *470 + - *448 + - *449 + - *472 responses: '200': description: Response @@ -68104,8 +68330,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -68123,9 +68349,9 @@ paths: type: integer secrets: type: array - items: *477 + items: *479 examples: - default: *478 + default: *480 headers: Link: *45 x-github: @@ -68150,16 +68376,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *479 + schema: *481 examples: - default: *480 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68181,17 +68407,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '200': description: Response content: application/json: - schema: *477 + schema: *479 examples: - default: &609 + default: &610 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -68217,8 +68443,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 requestBody: required: true @@ -68276,8 +68502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '204': @@ -68303,9 +68529,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *446 - - *447 - - *464 + - *448 + - *449 + - *466 - *19 responses: '200': @@ -68322,9 +68548,9 @@ paths: type: integer variables: type: array - items: *481 + items: *483 examples: - default: *482 + default: *484 headers: Link: *45 x-github: @@ -68347,8 +68573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -68400,17 +68626,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *446 - - *447 + - *448 + - *449 - *285 responses: '200': description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: &610 + default: &611 value: name: USERNAME value: octocat @@ -68436,8 +68662,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *446 - - *447 + - *448 + - *449 - *285 requestBody: required: true @@ -68480,8 +68706,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *446 - - *447 + - *448 + - *449 - *285 responses: '204': @@ -68507,8 +68733,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -68526,7 +68752,7 @@ paths: type: integer workflows: type: array - items: &483 + items: &485 title: Workflow description: A GitHub Actions workflow type: object @@ -68644,9 +68870,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *446 - - *447 - - &484 + - *448 + - *449 + - &486 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -68661,7 +68887,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *485 examples: default: value: @@ -68694,9 +68920,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *446 - - *447 - - *484 + - *448 + - *449 + - *486 responses: '204': description: Response @@ -68721,9 +68947,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *446 - - *447 - - *484 + - *448 + - *449 + - *486 responses: '204': description: Response @@ -68774,9 +69000,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *446 - - *447 - - *484 + - *448 + - *449 + - *486 responses: '204': description: Response @@ -68803,19 +69029,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: - - *446 - - *447 - - *484 - - *485 + - *448 + - *449 - *486 - *487 - *488 - - *17 - - *19 - *489 - - *468 - *490 + - *17 + - *19 - *491 + - *470 + - *492 + - *493 responses: '200': description: Response @@ -68831,9 +69057,9 @@ paths: type: integer workflow_runs: type: array - items: *469 + items: *471 examples: - default: *492 + default: *494 headers: Link: *45 x-github: @@ -68866,9 +69092,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *446 - - *447 - - *484 + - *448 + - *449 + - *486 responses: '200': description: Response @@ -68929,8 +69155,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *446 - - *447 + - *448 + - *449 - *108 - *17 - *106 @@ -69098,8 +69324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -69136,8 +69362,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: - - *446 - - *447 + - *448 + - *449 - name: assignee in: path required: true @@ -69173,8 +69399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#create-an-attestation parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -69286,8 +69512,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#list-attestations parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *106 - *107 @@ -69344,7 +69570,7 @@ paths: initiator: type: string examples: - default: *493 + default: *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69364,8 +69590,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -69373,7 +69599,7 @@ paths: application/json: schema: type: array - items: &494 + items: &496 title: Autolink reference description: An autolink reference. type: object @@ -69432,8 +69658,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -69472,9 +69698,9 @@ paths: description: response content: application/json: - schema: *494 + schema: *496 examples: - default: &495 + default: &497 value: id: 1 key_prefix: TICKET- @@ -69505,9 +69731,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: - - *446 - - *447 - - &496 + - *448 + - *449 + - &498 name: autolink_id description: The unique identifier of the autolink. in: path @@ -69519,9 +69745,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: - default: *495 + default: *497 '404': *6 x-github: githubCloudOnly: false @@ -69541,9 +69767,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: - - *446 - - *447 - - *496 + - *448 + - *449 + - *498 responses: '204': description: Response @@ -69567,8 +69793,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response if Dependabot is enabled @@ -69618,8 +69844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -69640,8 +69866,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -69661,8 +69887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *446 - - *447 + - *448 + - *449 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -69700,7 +69926,7 @@ paths: - url protected: type: boolean - protection: &498 + protection: &500 title: Branch Protection description: Branch Protection type: object @@ -69743,7 +69969,7 @@ paths: required: - contexts - checks - enforce_admins: &501 + enforce_admins: &503 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -69760,7 +69986,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &503 + required_pull_request_reviews: &505 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -69844,7 +70070,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &500 + restrictions: &502 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -70137,9 +70363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *446 - - *447 - - &499 + - *448 + - *449 + - &501 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). @@ -70153,14 +70379,14 @@ paths: description: Response content: application/json: - schema: &509 + schema: &511 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &555 + commit: &557 title: Commit description: Commit type: object @@ -70199,7 +70425,7 @@ paths: author: anyOf: - type: 'null' - - &497 + - &499 title: Git User description: Metaproperties for Git author/committer information. @@ -70221,7 +70447,7 @@ paths: committer: anyOf: - type: 'null' - - *497 + - *499 message: type: string examples: @@ -70245,7 +70471,7 @@ paths: required: - sha - url - verification: &616 + verification: &617 title: Verification type: object properties: @@ -70325,7 +70551,7 @@ paths: type: integer files: type: array - items: &566 + items: &568 title: Diff Entry description: Diff Entry type: object @@ -70421,7 +70647,7 @@ paths: - self protected: type: boolean - protection: *498 + protection: *500 protection_url: type: string format: uri @@ -70530,7 +70756,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *452 + '301': *454 '404': *6 x-github: githubCloudOnly: false @@ -70552,15 +70778,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *498 + schema: *500 examples: default: value: @@ -70754,9 +70980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -71016,7 +71242,7 @@ paths: url: type: string format: uri - required_status_checks: &506 + required_status_checks: &508 title: Status Check Policy description: Status Check Policy type: object @@ -71175,7 +71401,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *500 + restrictions: *502 required_conversation_resolution: type: object properties: @@ -71287,9 +71513,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -71314,17 +71540,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: &502 + default: &504 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -71346,17 +71572,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *502 + default: *504 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71375,9 +71601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -71402,17 +71628,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *503 + schema: *505 examples: - default: &504 + default: &506 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -71508,9 +71734,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -71608,9 +71834,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *505 examples: - default: *504 + default: *506 '422': *15 x-github: githubCloudOnly: false @@ -71631,9 +71857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -71660,17 +71886,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: &505 + default: &507 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -71693,17 +71919,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *505 + default: *507 '404': *6 x-github: githubCloudOnly: false @@ -71723,9 +71949,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -71750,17 +71976,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *506 + schema: *508 examples: - default: &507 + default: &509 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -71786,9 +72012,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -71840,9 +72066,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *508 examples: - default: *507 + default: *509 '404': *6 '422': *15 x-github: @@ -71864,9 +72090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -71890,9 +72116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response @@ -71926,9 +72152,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -71995,9 +72221,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -72061,9 +72287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: content: application/json: @@ -72129,15 +72355,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response content: application/json: - schema: *500 + schema: *502 examples: default: value: @@ -72228,9 +72454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '204': description: Response @@ -72253,9 +72479,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: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response @@ -72265,7 +72491,7 @@ paths: type: array items: *5 examples: - default: &508 + default: &510 value: - id: 1 slug: octoapp @@ -72322,9 +72548,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72358,7 +72584,7 @@ paths: type: array items: *5 examples: - default: *508 + default: *510 '422': *15 x-github: githubCloudOnly: false @@ -72379,9 +72605,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72415,7 +72641,7 @@ paths: type: array items: *5 examples: - default: *508 + default: *510 '422': *15 x-github: githubCloudOnly: false @@ -72436,9 +72662,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72472,7 +72698,7 @@ paths: type: array items: *5 examples: - default: *508 + default: *510 '422': *15 x-github: githubCloudOnly: false @@ -72494,9 +72720,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: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response @@ -72506,7 +72732,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 '404': *6 x-github: githubCloudOnly: false @@ -72526,9 +72752,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -72566,7 +72792,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 '422': *15 x-github: githubCloudOnly: false @@ -72587,9 +72813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: false content: @@ -72627,7 +72853,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 '422': *15 x-github: githubCloudOnly: false @@ -72648,9 +72874,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: content: application/json: @@ -72687,7 +72913,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 '422': *15 x-github: githubCloudOnly: false @@ -72709,9 +72935,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: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 responses: '200': description: Response @@ -72745,9 +72971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72805,9 +73031,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72865,9 +73091,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72927,9 +73153,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 requestBody: required: true content: @@ -72951,7 +73177,7 @@ paths: description: Response content: application/json: - schema: *509 + schema: *511 examples: default: value: @@ -73065,8 +73291,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *446 - - *447 + - *448 + - *449 - *101 - *102 - *103 @@ -73102,8 +73328,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: bypass_request_number in: path required: true @@ -73176,8 +73402,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *446 - - *447 + - *448 + - *449 - *101 - *102 - *103 @@ -73217,8 +73443,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *446 - - *447 + - *448 + - *449 - name: bypass_request_number in: path required: true @@ -73288,8 +73514,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *446 - - *447 + - *448 + - *449 - name: bypass_request_number in: path required: true @@ -73360,8 +73586,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *446 - - *447 + - *448 + - *449 - name: bypass_response_id in: path required: true @@ -73394,8 +73620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -73674,7 +73900,7 @@ paths: description: Response content: application/json: - schema: &510 + schema: &512 title: CheckRun description: A check performed on the code of a given code change type: object @@ -73810,7 +74036,7 @@ paths: check. type: array items: *216 - deployment: &835 + deployment: &836 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -74097,9 +74323,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *446 - - *447 - - &511 + - *448 + - *449 + - &513 name: check_run_id description: The unique identifier of the check run. in: path @@ -74111,9 +74337,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *512 examples: - default: &512 + default: &514 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -74213,9 +74439,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *446 - - *447 - - *511 + - *448 + - *449 + - *513 requestBody: required: true content: @@ -74455,9 +74681,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *512 examples: - default: *512 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74477,9 +74703,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *446 - - *447 - - *511 + - *448 + - *449 + - *513 - *17 - *19 responses: @@ -74589,9 +74815,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *446 - - *447 - - *511 + - *448 + - *449 + - *513 responses: '201': description: Response @@ -74635,8 +74861,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -74658,7 +74884,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &514 + schema: &516 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -74756,7 +74982,7 @@ paths: - string - 'null' format: date-time - head_commit: *513 + head_commit: *515 latest_check_runs_count: type: integer check_runs_url: @@ -74784,7 +75010,7 @@ paths: - check_runs_url - pull_requests examples: - default: &515 + default: &517 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -75075,9 +75301,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *514 + schema: *516 examples: - default: *515 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75096,8 +75322,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -75406,9 +75632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *446 - - *447 - - &516 + - *448 + - *449 + - &518 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -75420,9 +75646,9 @@ paths: description: Response content: application/json: - schema: *514 + schema: *516 examples: - default: *515 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75445,17 +75671,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: - - *446 - - *447 - - *516 - - &561 + - *448 + - *449 + - *518 + - &563 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &562 + - &564 name: status description: Returns check runs with the specified `status`. in: query @@ -75494,9 +75720,9 @@ paths: type: integer check_runs: type: array - items: *510 + items: *512 examples: - default: &563 + default: &565 value: total_count: 1 check_runs: @@ -75598,9 +75824,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *446 - - *447 - - *516 + - *448 + - *449 + - *518 responses: '201': description: Response @@ -75633,21 +75859,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: - - *446 - - *447 + - *448 + - *449 - *305 - *306 - *19 - *17 - - &532 + - &534 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: *517 - - &533 + schema: *519 + - &535 name: pr description: The number of the pull request for the results you want to list. in: query @@ -75678,7 +75904,7 @@ paths: be returned. in: query required: false - schema: *518 + schema: *520 responses: '200': description: Response @@ -75694,7 +75920,7 @@ paths: updated_at: *131 url: *128 html_url: *129 - instances_url: *519 + instances_url: *521 state: *111 fixed_at: *133 dismissed_by: @@ -75702,11 +75928,11 @@ paths: - type: 'null' - *4 dismissed_at: *132 - dismissed_reason: *520 - dismissed_comment: *521 - rule: *522 - tool: *523 - most_recent_instance: *524 + dismissed_reason: *522 + dismissed_comment: *523 + rule: *524 + tool: *525 + most_recent_instance: *526 dismissal_approved_by: anyOf: - type: 'null' @@ -75829,7 +76055,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &525 + '403': &527 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -75856,9 +76082,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: - - *446 - - *447 - - &526 + - *448 + - *449 + - &528 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -75872,7 +76098,7 @@ paths: description: Response content: application/json: - schema: &527 + schema: &529 type: object properties: number: *123 @@ -75880,7 +76106,7 @@ paths: updated_at: *131 url: *128 html_url: *129 - instances_url: *519 + instances_url: *521 state: *111 fixed_at: *133 dismissed_by: @@ -75888,8 +76114,8 @@ paths: - type: 'null' - *4 dismissed_at: *132 - dismissed_reason: *520 - dismissed_comment: *521 + dismissed_reason: *522 + dismissed_comment: *523 rule: type: object properties: @@ -75951,8 +76177,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *523 - most_recent_instance: *524 + tool: *525 + most_recent_instance: *526 dismissal_approved_by: anyOf: - type: 'null' @@ -76048,7 +76274,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -76068,9 +76294,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 requestBody: required: true content: @@ -76085,8 +76311,8 @@ paths: enum: - open - dismissed - dismissed_reason: *520 - dismissed_comment: *521 + dismissed_reason: *522 + dismissed_comment: *523 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -76106,7 +76332,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *529 examples: default: value: @@ -76182,7 +76408,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &531 + '403': &533 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -76209,15 +76435,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 responses: '200': description: Response content: application/json: - schema: &528 + schema: &530 type: object properties: status: @@ -76244,13 +76470,13 @@ paths: - description - started_at examples: - default: &529 + default: &531 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &530 + '400': &532 description: Bad Request content: application/json: @@ -76261,7 +76487,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': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -76286,29 +76512,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 responses: '200': description: OK content: application/json: - schema: *528 + schema: *530 examples: - default: *529 + default: *531 '202': description: Accepted content: application/json: - schema: *528 + schema: *530 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *530 + '400': *532 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -76340,9 +76566,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 requestBody: required: false content: @@ -76388,8 +76614,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *530 - '403': *531 + '400': *532 + '403': *533 '404': *6 '422': description: Unprocessable Entity @@ -76413,13 +76639,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 - *19 - *17 - - *532 - - *533 + - *534 + - *535 responses: '200': description: Response @@ -76427,7 +76653,7 @@ paths: application/json: schema: type: array - items: *524 + items: *526 examples: default: value: @@ -76466,7 +76692,7 @@ paths: end_column: 50 classifications: - source - '403': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -76500,25 +76726,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: - - *446 - - *447 + - *448 + - *449 - *305 - *306 - *19 - *17 - - *533 + - *535 - 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: *517 + schema: *519 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &536 + schema: &538 type: string description: An identifier for the upload. examples: @@ -76540,23 +76766,23 @@ paths: application/json: schema: type: array - items: &537 + items: &539 type: object properties: - ref: *517 - commit_sha: &545 + ref: *519 + commit_sha: &547 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *534 + analysis_key: *536 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *535 + category: *537 error: type: string examples: @@ -76581,8 +76807,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *536 - tool: *523 + sarif_id: *538 + tool: *525 deletable: type: boolean warning: @@ -76644,7 +76870,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -76680,8 +76906,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: - - *446 - - *447 + - *448 + - *449 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76694,7 +76920,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: response: summary: application/json response @@ -76748,7 +76974,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *525 + '403': *527 '404': *6 '422': description: Response if analysis could not be processed @@ -76835,8 +77061,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: - - *446 - - *447 + - *448 + - *449 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76892,7 +77118,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': *531 + '403': *533 '404': *6 '503': *189 x-github: @@ -76914,8 +77140,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -76923,7 +77149,7 @@ paths: application/json: schema: type: array - items: &538 + items: &540 title: CodeQL Database description: A CodeQL database. type: object @@ -77035,7 +77261,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': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -77064,8 +77290,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: - - *446 - - *447 + - *448 + - *449 - name: language in: path description: The language of the CodeQL database. @@ -77077,7 +77303,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *540 examples: default: value: @@ -77109,9 +77335,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': &568 + '302': &570 description: Found - '403': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -77133,8 +77359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *446 - - *447 + - *448 + - *449 - name: language in: path description: The language of the CodeQL database. @@ -77144,7 +77370,7 @@ paths: responses: '204': description: Response - '403': *531 + '403': *533 '404': *6 '503': *189 x-github: @@ -77172,8 +77398,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -77182,7 +77408,7 @@ paths: type: object additionalProperties: false properties: - language: &539 + language: &541 type: string description: The language targeted by the CodeQL query enum: @@ -77262,7 +77488,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &543 + schema: &545 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -77272,7 +77498,7 @@ paths: description: The ID of the variant analysis. controller_repo: *117 actor: *4 - query_language: *539 + query_language: *541 query_pack_url: type: string description: The download url for the query pack. @@ -77320,7 +77546,7 @@ paths: items: type: object properties: - repository: &540 + repository: &542 title: Repository Identifier description: Repository Identifier type: object @@ -77362,7 +77588,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &544 + analysis_status: &546 type: string description: The new status of the CodeQL variant analysis repository task. @@ -77394,7 +77620,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &541 + access_mismatch_repos: &543 type: object properties: repository_count: @@ -77409,7 +77635,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: *540 + items: *542 required: - repository_count - repositories @@ -77432,8 +77658,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *541 - over_limit_repos: *541 + no_codeql_db_repos: *543 + over_limit_repos: *543 required: - access_mismatch_repos - not_found_repos @@ -77449,7 +77675,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &542 + value: &544 summary: Default response value: id: 1 @@ -77601,10 +77827,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *542 + value: *544 repository_lists: summary: Response for a successful variant analysis submission - value: *542 + value: *544 '404': *6 '422': description: Unable to process variant analysis submission @@ -77632,8 +77858,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: - - *446 - - *447 + - *448 + - *449 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -77645,9 +77871,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *545 examples: - default: *542 + default: *544 '404': *6 '503': *189 x-github: @@ -77670,7 +77896,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: - - *446 + - *448 - name: repo in: path description: The name of the controller repository. @@ -77705,7 +77931,7 @@ paths: type: object properties: repository: *117 - analysis_status: *544 + analysis_status: *546 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -77830,8 +78056,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -77924,7 +78150,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *525 + '403': *527 '404': *6 '503': *189 x-github: @@ -77945,8 +78171,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -78040,7 +78266,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *531 + '403': *533 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -78111,8 +78337,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -78120,7 +78346,7 @@ paths: schema: type: object properties: - commit_sha: *545 + commit_sha: *547 ref: type: string description: |- @@ -78180,7 +78406,7 @@ paths: schema: type: object properties: - id: *536 + id: *538 url: type: string description: The REST API URL for checking the status of the upload. @@ -78194,7 +78420,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': *531 + '403': *533 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -78217,8 +78443,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: - - *446 - - *447 + - *448 + - *449 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -78266,7 +78492,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': *525 + '403': *527 '404': description: Not Found if the sarif id does not match any upload '503': *189 @@ -78291,8 +78517,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -78373,8 +78599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *446 - - *447 + - *448 + - *449 - 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 @@ -78502,8 +78728,8 @@ paths: parameters: - *17 - *19 - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -78519,7 +78745,7 @@ paths: type: integer codespaces: type: array - items: *361 + items: *363 examples: default: value: @@ -78817,8 +79043,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -78882,17 +79108,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '400': *14 '401': *23 '403': *27 @@ -78921,8 +79147,8 @@ paths: parameters: - *17 - *19 - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -78986,8 +79212,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: - - *446 - - *447 + - *448 + - *449 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -79024,9 +79250,9 @@ paths: type: integer machines: type: array - items: *547 + items: *549 examples: - default: &784 + default: &785 value: total_count: 2 machines: @@ -79066,8 +79292,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *446 - - *447 + - *448 + - *449 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -79154,8 +79380,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: - - *446 - - *447 + - *448 + - *449 - 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 @@ -79224,8 +79450,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -79243,7 +79469,7 @@ paths: type: integer secrets: type: array - items: &551 + items: &553 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -79264,7 +79490,7 @@ paths: - created_at - updated_at examples: - default: *548 + default: *550 headers: Link: *45 x-github: @@ -79287,16 +79513,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *549 + schema: *551 examples: - default: *550 + default: *552 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -79316,17 +79542,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '200': description: Response content: application/json: - schema: *551 + schema: *553 examples: - default: *552 + default: *554 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79346,8 +79572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 requestBody: required: true @@ -79400,8 +79626,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '204': @@ -79430,8 +79656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *446 - - *447 + - *448 + - *449 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -79469,7 +79695,7 @@ paths: application/json: schema: type: array - items: &553 + items: &555 title: Collaborator description: Collaborator type: object @@ -79662,8 +79888,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: - - *446 - - *447 + - *448 + - *449 - *136 responses: '204': @@ -79710,8 +79936,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *446 - - *447 + - *448 + - *449 - *136 requestBody: required: false @@ -79738,7 +79964,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &629 + schema: &630 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -79966,8 +80192,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *446 - - *447 + - *448 + - *449 - *136 responses: '204': @@ -79999,8 +80225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *446 - - *447 + - *448 + - *449 - *136 responses: '200': @@ -80021,7 +80247,7 @@ paths: user: anyOf: - type: 'null' - - *553 + - *555 required: - permission - role_name @@ -80075,8 +80301,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -80086,7 +80312,7 @@ paths: application/json: schema: type: array - items: &554 + items: &556 title: Commit Comment description: Commit Comment type: object @@ -80144,7 +80370,7 @@ paths: - created_at - updated_at examples: - default: &557 + default: &559 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80203,17 +80429,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 responses: '200': description: Response content: application/json: - schema: *554 + schema: *556 examples: - default: &558 + default: &560 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80270,8 +80496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -80294,7 +80520,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: default: value: @@ -80345,8 +80571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 responses: '204': @@ -80368,8 +80594,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -80396,9 +80622,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 '404': *6 @@ -80419,8 +80645,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -80453,16 +80679,16 @@ paths: description: Reaction exists content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Reaction created content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '422': *15 x-github: githubCloudOnly: false @@ -80484,10 +80710,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *446 - - *447 + - *448 + - *449 - *227 - - *440 + - *442 responses: '204': description: Response @@ -80536,8 +80762,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *446 - - *447 + - *448 + - *449 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -80593,9 +80819,9 @@ paths: application/json: schema: type: array - items: *555 + items: *557 examples: - default: &678 + default: &679 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -80689,9 +80915,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *446 - - *447 - - &556 + - *448 + - *449 + - &558 name: commit_sha description: The SHA of the commit. in: path @@ -80763,9 +80989,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *446 - - *447 - - *556 + - *448 + - *449 + - *558 - *17 - *19 responses: @@ -80775,9 +81001,9 @@ paths: application/json: schema: type: array - items: *554 + items: *556 examples: - default: *557 + default: *559 headers: Link: *45 x-github: @@ -80805,9 +81031,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *446 - - *447 - - *556 + - *448 + - *449 + - *558 requestBody: required: true content: @@ -80842,9 +81068,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: - default: *558 + default: *560 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80872,9 +81098,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: - - *446 - - *447 - - *556 + - *448 + - *449 + - *558 - *17 - *19 responses: @@ -80884,9 +81110,9 @@ paths: application/json: schema: type: array - items: *559 + items: *561 examples: - default: &670 + default: &671 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -81423,11 +81649,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *446 - - *447 + - *448 + - *449 - *19 - *17 - - &560 + - &562 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)" @@ -81442,9 +81668,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *557 examples: - default: &656 + default: &657 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -81557,11 +81783,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: - - *446 - - *447 - - *560 - - *561 + - *448 + - *449 - *562 + - *563 + - *564 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -81595,9 +81821,9 @@ paths: type: integer check_runs: type: array - items: *510 + items: *512 examples: - default: *563 + default: *565 headers: Link: *45 x-github: @@ -81622,9 +81848,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: - - *446 - - *447 - - *560 + - *448 + - *449 + - *562 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -81632,7 +81858,7 @@ paths: schema: type: integer example: 1 - - *561 + - *563 - *17 - *19 responses: @@ -81650,7 +81876,7 @@ paths: type: integer check_suites: type: array - items: *514 + items: *516 examples: default: value: @@ -81850,9 +82076,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: - - *446 - - *447 - - *560 + - *448 + - *449 + - *562 - *17 - *19 responses: @@ -82054,9 +82280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *446 - - *447 - - *560 + - *448 + - *449 + - *562 - *17 - *19 responses: @@ -82066,7 +82292,7 @@ paths: application/json: schema: type: array - items: &731 + items: &732 title: Status description: The status of a commit. type: object @@ -82147,7 +82373,7 @@ paths: site_admin: false headers: Link: *45 - '301': *452 + '301': *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82175,8 +82401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -82209,11 +82435,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *564 + - *566 code_of_conduct_file: anyOf: - type: 'null' - - &565 + - &567 title: Community Health File type: object properties: @@ -82233,19 +82459,19 @@ paths: contributing: anyOf: - type: 'null' - - *565 + - *567 readme: anyOf: - type: 'null' - - *565 + - *567 issue_template: anyOf: - type: 'null' - - *565 + - *567 pull_request_template: anyOf: - type: 'null' - - *565 + - *567 required: - code_of_conduct - code_of_conduct_file @@ -82374,8 +82600,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *446 - - *447 + - *448 + - *449 - *19 - *17 - name: basehead @@ -82423,8 +82649,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *555 - merge_base_commit: *555 + base_commit: *557 + merge_base_commit: *557 status: type: string enum: @@ -82448,10 +82674,10 @@ paths: - 6 commits: type: array - items: *555 + items: *557 files: type: array - items: *566 + items: *568 required: - url - html_url @@ -82737,8 +82963,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *446 - - *447 + - *448 + - *449 - name: path description: path parameter in: path @@ -82891,7 +83117,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &567 + response-if-content-is-a-file: &569 summary: Response if content is a file value: type: file @@ -83028,7 +83254,7 @@ paths: - size - type - url - - &683 + - &684 title: Content File description: Content File type: object @@ -83246,7 +83472,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *567 + response-if-content-is-a-file: *569 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -83315,7 +83541,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *568 + '302': *570 '304': *35 x-github: githubCloudOnly: false @@ -83338,8 +83564,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *446 - - *447 + - *448 + - *449 - name: path description: path parameter in: path @@ -83434,7 +83660,7 @@ paths: description: Response content: application/json: - schema: &569 + schema: &571 title: File Commit description: File Commit type: object @@ -83590,7 +83816,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *571 examples: example-for-creating-a-file: value: @@ -83644,7 +83870,7 @@ paths: schema: oneOf: - *3 - - &611 + - &612 description: Repository rule violation was detected type: object properties: @@ -83665,7 +83891,7 @@ paths: items: type: object properties: - placeholder_id: &723 + placeholder_id: &724 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -83697,8 +83923,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *446 - - *447 + - *448 + - *449 - name: path description: path parameter in: path @@ -83759,7 +83985,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *571 examples: default: value: @@ -83814,8 +84040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *446 - - *447 + - *448 + - *449 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -83939,8 +84165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *321 - *322 - *323 @@ -83952,7 +84178,7 @@ paths: schema: type: string - *325 - - *570 + - *572 - *326 - *327 - *108 @@ -83973,7 +84199,7 @@ paths: application/json: schema: type: array - items: &574 + items: &576 type: object description: A Dependabot alert. properties: @@ -84023,7 +84249,7 @@ paths: - direct - transitive - - security_advisory: *571 + security_advisory: *573 security_vulnerability: *127 url: *128 html_url: *129 @@ -84054,8 +84280,8 @@ paths: dismissal. maxLength: 280 fixed_at: *133 - auto_dismissed_at: *572 - dismissal_request: *573 + auto_dismissed_at: *574 + dismissal_request: *575 required: - number - state @@ -84285,9 +84511,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *446 - - *447 - - &575 + - *448 + - *449 + - &577 name: alert_number in: path description: |- @@ -84302,7 +84528,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: default: value: @@ -84415,9 +84641,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *446 - - *447 - - *575 + - *448 + - *449 + - *577 requestBody: required: true content: @@ -84462,7 +84688,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: default: value: @@ -84591,8 +84817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -84610,7 +84836,7 @@ paths: type: integer secrets: type: array - items: &578 + items: &580 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -84664,16 +84890,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *576 + schema: *578 examples: - default: *577 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84693,15 +84919,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '200': description: Response content: application/json: - schema: *578 + schema: *580 examples: default: value: @@ -84727,8 +84953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 requestBody: required: true @@ -84781,8 +85007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *446 - - *447 + - *448 + - *449 - *282 responses: '204': @@ -84805,8 +85031,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: - - *446 - - *447 + - *448 + - *449 - 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 @@ -84980,8 +85206,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -85241,8 +85467,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -85325,7 +85551,7 @@ paths: - version - url additionalProperties: false - metadata: &579 + metadata: &581 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -85364,7 +85590,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *579 + metadata: *581 resolved: type: object description: A collection of resolved package dependencies. @@ -85378,7 +85604,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *579 + metadata: *581 relationship: type: string description: A notation of whether a dependency is requested @@ -85511,8 +85737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *446 - - *447 + - *448 + - *449 - name: sha description: The SHA recorded at creation time. in: query @@ -85553,9 +85779,9 @@ paths: application/json: schema: type: array - items: *580 + items: *582 examples: - default: *581 + default: *583 headers: Link: *45 x-github: @@ -85621,8 +85847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -85704,7 +85930,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: simple-example: summary: Simple example @@ -85777,9 +86003,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *446 - - *447 - - &582 + - *448 + - *449 + - &584 name: deployment_id description: deployment_id parameter in: path @@ -85791,7 +86017,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: default: value: @@ -85856,9 +86082,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *446 - - *447 - - *582 + - *448 + - *449 + - *584 responses: '204': description: Response @@ -85880,9 +86106,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *446 - - *447 - - *582 + - *448 + - *449 + - *584 - *17 - *19 responses: @@ -85892,7 +86118,7 @@ paths: application/json: schema: type: array - items: &583 + items: &585 title: Deployment Status description: The status of a deployment. type: object @@ -86056,9 +86282,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *446 - - *447 - - *582 + - *448 + - *449 + - *584 requestBody: required: true content: @@ -86133,9 +86359,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: - default: &584 + default: &586 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -86191,9 +86417,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *446 - - *447 - - *582 + - *448 + - *449 + - *584 - name: status_id in: path required: true @@ -86204,9 +86430,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: - default: *584 + default: *586 '404': *6 x-github: githubCloudOnly: false @@ -86233,12 +86459,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 - - *585 - - *586 + - *448 + - *449 - *587 - *588 + - *589 + - *590 - *17 - *19 responses: @@ -86248,9 +86474,9 @@ paths: application/json: schema: type: array - items: *589 + items: *591 examples: - default: *590 + default: *592 '404': *6 '403': *27 '500': *38 @@ -86274,8 +86500,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86287,7 +86513,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *589 + schema: *591 examples: default: value: @@ -86343,8 +86569,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86403,12 +86629,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *446 - - *447 - - *585 - - *586 + - *448 + - *449 - *587 - *588 + - *589 + - *590 - *17 - *19 responses: @@ -86418,193 +86644,9 @@ paths: application/json: schema: type: array - items: &592 - title: Dependabot alert dismissal request - description: Alert dismissal request made by a user asking to dismiss - a Dependabot alert. - type: object - properties: - id: - type: integer - format: int64 - description: The unique identifier of the dismissal request. - number: - type: integer - format: int64 - description: The number uniquely identifying the dismissal request - within its repository. - repository: - type: object - description: The repository the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the repository the dismissal request - is for. - name: - type: string - description: The name of the repository the dismissal request - is for. - full_name: - type: string - description: The full name of the repository the dismissal - request is for. - organization: - type: object - description: The organization associated with the repository - the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the dismissal request. - properties: - actor_id: - type: integer - format: int64 - description: The ID of the GitHub user who requested the - dismissal request. - actor_name: - type: string - description: The name of the GitHub user who requested the - dismissal request. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the dismissal request metadata. - items: - type: object - properties: - reason: - type: string - description: The reason for the dismissal request. - alert_number: - type: string - description: The alert number. - alert_title: - type: string - description: The title of the alert. - resource_identifier: - type: string - description: The unique identifier for the request type of the - dismissal request. - examples: - - '123' - status: - type: string - description: The status of the dismissal request. - enum: - - pending - - denied - - approved - - expired - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating - the dismissal request. - expires_at: - type: string - format: date-time - description: The date and time the dismissal request will expire. - created_at: - type: string - format: date-time - description: The date and time the dismissal request was created. - responses: - type: - - array - - 'null' - description: The responses to the dismissal request. - items: *591 - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: - type: string - description: The URL to view the dismissal request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/security/dependabot/1 + items: *593 examples: - default: - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: no_bandwidth - alert_number: '1' - alert_title: lodash - GHSA-1234-abcd-5678 - resource_identifier: '1' - status: denied - requester_comment: No bandwidth to fix this right now - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: https://github.com/octo-org/smile/security/dependabot/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: tolerable_risk - alert_number: '2' - alert_title: axios - GHSA-5678-efgh-9012 - resource_identifier: '2' - status: approved - requester_comment: Risk is acceptable for this internal tool - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 43 - reviewer: - actor_id: 4 - actor_name: octocat - status: approved - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 - html_url: https://github.com/octo-org/smile/security/dependabot/2 + default: *594 '404': *6 '403': *27 '500': *38 @@ -86628,8 +86670,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86641,7 +86683,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *592 + schema: *593 examples: default: value: @@ -86692,8 +86734,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86764,12 +86806,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - *101 - *102 - *103 - - *593 + - *332 - *17 - *19 responses: @@ -86779,9 +86821,9 @@ paths: application/json: schema: type: array - items: *594 + items: *595 examples: - default: *595 + default: *596 '404': *6 '403': *27 '500': *38 @@ -86806,8 +86848,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86819,7 +86861,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *594 + schema: *595 examples: default: value: @@ -86877,8 +86919,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: alert_number in: path required: true @@ -86947,8 +86989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -87005,8 +87047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -87024,7 +87066,7 @@ paths: - 5 environments: type: array - items: &597 + items: &598 title: Environment description: Details of a deployment environment type: object @@ -87086,7 +87128,7 @@ paths: type: string examples: - wait_timer - wait_timer: &599 + wait_timer: &600 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -87128,7 +87170,7 @@ paths: items: type: object properties: - type: *596 + type: *597 reviewer: anyOf: - *4 @@ -87155,7 +87197,7 @@ paths: - id - node_id - type - deployment_branch_policy: &600 + deployment_branch_policy: &601 type: - object - 'null' @@ -87272,9 +87314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *446 - - *447 - - &598 + - *448 + - *449 + - &599 name: environment_name in: path required: true @@ -87287,9 +87329,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: &601 + default: &602 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -87373,9 +87415,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 requestBody: required: false content: @@ -87385,7 +87427,7 @@ paths: - object - 'null' properties: - wait_timer: *599 + wait_timer: *600 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -87404,14 +87446,14 @@ paths: items: type: object properties: - type: *596 + type: *597 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *600 + deployment_branch_policy: *601 additionalProperties: false examples: default: @@ -87431,9 +87473,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: *601 + default: *602 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -87457,9 +87499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 responses: '204': description: Default response @@ -87484,9 +87526,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *17 - *19 responses: @@ -87505,7 +87547,7 @@ paths: - 2 branch_policies: type: array - items: &602 + items: &603 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -87566,9 +87608,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 requestBody: required: true content: @@ -87616,9 +87658,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - example-wildcard: &603 + example-wildcard: &604 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -87660,10 +87702,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *446 - - *447 - - *598 - - &604 + - *448 + - *449 + - *599 + - &605 name: branch_policy_id in: path required: true @@ -87675,9 +87717,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87696,10 +87738,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *446 - - *447 - - *598 - - *604 + - *448 + - *449 + - *599 + - *605 requestBody: required: true content: @@ -87728,9 +87770,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87749,10 +87791,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *446 - - *447 - - *598 - - *604 + - *448 + - *449 + - *599 + - *605 responses: '204': description: Response @@ -87777,9 +87819,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: - - *598 - - *447 - - *446 + - *599 + - *449 + - *448 responses: '200': description: List of deployment protection rules @@ -87796,7 +87838,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &605 + items: &606 title: Deployment protection rule description: Deployment protection rule type: object @@ -87818,7 +87860,7 @@ paths: for the environment. examples: - true - app: &606 + app: &607 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -87921,9 +87963,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: - - *598 - - *447 - - *446 + - *599 + - *449 + - *448 requestBody: content: application/json: @@ -87944,9 +87986,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *605 + schema: *606 examples: - default: &607 + default: &608 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -87981,9 +88023,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: - - *598 - - *447 - - *446 + - *599 + - *449 + - *448 - *19 - *17 responses: @@ -88003,7 +88045,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *606 + items: *607 examples: default: value: @@ -88038,10 +88080,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: - - *446 - - *447 - - *598 - - &608 + - *448 + - *449 + - *599 + - &609 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -88053,9 +88095,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *607 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88076,10 +88118,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: - - *598 - - *447 - - *446 - - *608 + - *599 + - *449 + - *448 + - *609 responses: '204': description: Response @@ -88105,9 +88147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *17 - *19 responses: @@ -88125,9 +88167,9 @@ paths: type: integer secrets: type: array - items: *477 + items: *479 examples: - default: *478 + default: *480 headers: Link: *45 x-github: @@ -88152,17 +88194,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 responses: '200': description: Response content: application/json: - schema: *479 + schema: *481 examples: - default: *480 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88184,18 +88226,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *282 responses: '200': description: Response content: application/json: - schema: *477 + schema: *479 examples: - default: *609 + default: *610 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88217,9 +88259,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *282 requestBody: required: true @@ -88277,9 +88319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *282 responses: '204': @@ -88305,10 +88347,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *446 - - *447 - - *598 - - *464 + - *448 + - *449 + - *599 + - *466 - *19 responses: '200': @@ -88325,9 +88367,9 @@ paths: type: integer variables: type: array - items: *481 + items: *483 examples: - default: *482 + default: *484 headers: Link: *45 x-github: @@ -88350,9 +88392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 requestBody: required: true content: @@ -88404,18 +88446,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *446 - - *447 - - *598 + - *448 + - *449 + - *599 - *285 responses: '200': description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: *610 + default: *611 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88436,10 +88478,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *446 - - *447 + - *448 + - *449 - *285 - - *598 + - *599 requestBody: required: true content: @@ -88481,10 +88523,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *446 - - *447 + - *448 + - *449 - *285 - - *598 + - *599 responses: '204': description: Response @@ -88506,8 +88548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -88575,8 +88617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *446 - - *447 + - *448 + - *449 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -88735,8 +88777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -88769,9 +88811,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *453 + default: *455 '400': *14 '422': *15 '403': *27 @@ -88792,8 +88834,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -88853,7 +88895,7 @@ paths: schema: oneOf: - *247 - - *611 + - *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88878,8 +88920,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *446 - - *447 + - *448 + - *449 - name: file_sha in: path required: true @@ -88979,8 +89021,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -89089,7 +89131,7 @@ paths: description: Response content: application/json: - schema: &612 + schema: &613 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -89316,15 +89358,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *446 - - *447 - - *556 + - *448 + - *449 + - *558 responses: '200': description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -89380,9 +89422,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *446 - - *447 - - &613 + - *448 + - *449 + - &614 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. @@ -89399,7 +89441,7 @@ paths: application/json: schema: type: array - items: &614 + items: &615 title: Git Reference description: Git references within a repository type: object @@ -89475,17 +89517,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *446 - - *447 - - *613 + - *448 + - *449 + - *614 responses: '200': description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: &615 + default: &616 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -89514,8 +89556,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -89544,9 +89586,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -89572,9 +89614,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *446 - - *447 - - *613 + - *448 + - *449 + - *614 requestBody: required: true content: @@ -89603,9 +89645,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 '422': *15 '409': *116 x-github: @@ -89623,9 +89665,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *446 - - *447 - - *613 + - *448 + - *449 + - *614 responses: '204': description: Response @@ -89680,8 +89722,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -89748,7 +89790,7 @@ paths: description: Response content: application/json: - schema: &617 + schema: &618 title: Git Tag description: Metadata for a Git tag type: object @@ -89804,7 +89846,7 @@ paths: - sha - type - url - verification: *616 + verification: *617 required: - sha - url @@ -89814,7 +89856,7 @@ paths: - tag - message examples: - default: &618 + default: &619 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -89887,8 +89929,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *446 - - *447 + - *448 + - *449 - name: tag_sha in: path required: true @@ -89899,9 +89941,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: *618 + default: *619 '404': *6 '409': *116 x-github: @@ -89925,8 +89967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -90000,7 +90042,7 @@ paths: description: Response content: application/json: - schema: &619 + schema: &620 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -90102,8 +90144,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *446 - - *447 + - *448 + - *449 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -90126,7 +90168,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: default-response: summary: Default response @@ -90185,8 +90227,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -90196,7 +90238,7 @@ paths: application/json: schema: type: array - items: &620 + items: &621 title: Webhook description: Webhooks for repositories. type: object @@ -90259,7 +90301,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &871 + last_response: &872 title: Hook Response type: object properties: @@ -90336,8 +90378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -90390,9 +90432,9 @@ paths: description: Response content: application/json: - schema: *620 + schema: *621 examples: - default: &621 + default: &622 value: type: Repository id: 12345678 @@ -90440,17 +90482,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 responses: '200': description: Response content: application/json: - schema: *620 + schema: *621 examples: - default: *621 + default: *622 '404': *6 x-github: githubCloudOnly: false @@ -90470,9 +90512,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 requestBody: required: true content: @@ -90517,9 +90559,9 @@ paths: description: Response content: application/json: - schema: *620 + schema: *621 examples: - default: *621 + default: *622 '422': *15 '404': *6 x-github: @@ -90540,9 +90582,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 responses: '204': description: Response @@ -90566,9 +90608,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: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 responses: '200': description: Response @@ -90595,9 +90637,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: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 requestBody: required: false content: @@ -90641,11 +90683,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 - *17 - - *334 + - *336 responses: '200': description: Response @@ -90653,9 +90695,9 @@ paths: application/json: schema: type: array - items: *335 + items: *337 examples: - default: *336 + default: *338 '400': *14 '422': *15 x-github: @@ -90674,18 +90716,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: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 - *16 responses: '200': description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '400': *14 '422': *15 x-github: @@ -90704,9 +90746,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: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 - *16 responses: '202': *37 @@ -90729,9 +90771,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 responses: '204': description: Response @@ -90756,9 +90798,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *446 - - *447 - - *333 + - *448 + - *449 + - *335 responses: '204': description: Response @@ -90781,8 +90823,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response if immutable releases are enabled @@ -90830,8 +90872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': *148 '409': *116 @@ -90851,8 +90893,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': *148 '409': *116 @@ -90909,14 +90951,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: &622 + schema: &623 title: Import description: A repository import from an external source. type: object @@ -91023,7 +91065,7 @@ paths: - html_url - authors_url examples: - default: &625 + default: &626 value: vcs: subversion use_lfs: true @@ -91039,7 +91081,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': &623 + '503': &624 description: Unavailable due to service under maintenance. content: application/json: @@ -91068,8 +91110,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -91117,7 +91159,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *623 examples: default: value: @@ -91142,7 +91184,7 @@ paths: type: string '422': *15 '404': *6 - '503': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91170,8 +91212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -91223,7 +91265,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *623 examples: example-1: summary: Example 1 @@ -91271,7 +91313,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': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91294,12 +91336,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response - '503': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91325,9 +91367,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *446 - - *447 - - &805 + - *448 + - *449 + - &806 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -91341,7 +91383,7 @@ paths: application/json: schema: type: array - items: &624 + items: &625 title: Porter Author description: Porter Author type: object @@ -91395,7 +91437,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': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91420,8 +91462,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *446 - - *447 + - *448 + - *449 - name: author_id in: path required: true @@ -91451,7 +91493,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *625 examples: default: value: @@ -91464,7 +91506,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91488,8 +91530,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -91530,7 +91572,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91558,8 +91600,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -91586,11 +91628,11 @@ paths: description: Response content: application/json: - schema: *622 + schema: *623 examples: - default: *625 + default: *626 '422': *15 - '503': *623 + '503': *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91613,8 +91655,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -91622,8 +91664,8 @@ paths: application/json: schema: *20 examples: - default: *626 - '301': *452 + default: *627 + '301': *454 '404': *6 x-github: githubCloudOnly: false @@ -91643,8 +91685,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -91652,12 +91694,12 @@ paths: application/json: schema: anyOf: - - *351 + - *353 - type: object properties: {} additionalProperties: false examples: - default: &628 + default: &629 value: limit: collaborators_only origin: repository @@ -91682,13 +91724,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: application/json: - schema: *627 + schema: *628 examples: default: summary: Example request body @@ -91700,9 +91742,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *628 + default: *629 '409': description: Response x-github: @@ -91724,8 +91766,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -91748,8 +91790,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -91759,9 +91801,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: &798 + default: &799 value: - id: 1 repository: @@ -91892,9 +91934,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *446 - - *447 - - *355 + - *448 + - *449 + - *357 requestBody: required: false content: @@ -91923,7 +91965,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: default: value: @@ -92054,9 +92096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *446 - - *447 - - *355 + - *448 + - *449 + - *357 responses: '204': description: Response @@ -92087,8 +92129,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *446 - - *447 + - *448 + - *449 - 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 @@ -92136,7 +92178,7 @@ paths: required: false schema: type: string - - *359 + - *361 - name: sort description: What to sort results by. in: query @@ -92161,7 +92203,7 @@ paths: type: array items: *212 examples: - default: &637 + default: &638 value: - id: 1 node_id: MDU6SXNzdWUx @@ -92309,7 +92351,7 @@ paths: state_reason: completed headers: Link: *45 - '301': *452 + '301': *454 '422': *15 '404': *6 x-github: @@ -92338,8 +92380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -92431,7 +92473,7 @@ paths: application/json: schema: *212 examples: - default: &634 + default: &635 value: id: 1 node_id: MDU6SXNzdWUx @@ -92587,7 +92629,7 @@ paths: '422': *15 '503': *189 '404': *6 - '410': *630 + '410': *631 x-github: triggersNotification: true githubCloudOnly: false @@ -92615,8 +92657,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *235 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -92637,9 +92679,9 @@ paths: application/json: schema: type: array - items: *631 + items: *632 examples: - default: &636 + default: &637 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92697,17 +92739,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 responses: '200': description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: &632 + default: &633 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92761,8 +92803,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -92785,9 +92827,9 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 '422': *15 x-github: githubCloudOnly: false @@ -92805,8 +92847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 responses: '204': @@ -92827,8 +92869,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -92855,9 +92897,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 '404': *6 @@ -92878,8 +92920,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -92912,16 +92954,16 @@ paths: description: Reaction exists content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Reaction created content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '422': *15 x-github: githubCloudOnly: false @@ -92943,10 +92985,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *446 - - *447 + - *448 + - *449 - *227 - - *440 + - *442 responses: '204': description: Response @@ -92966,8 +93008,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -92977,7 +93019,7 @@ paths: application/json: schema: type: array - items: &633 + items: &634 title: Issue Event description: Issue Event type: object @@ -93316,8 +93358,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *446 - - *447 + - *448 + - *449 - name: event_id in: path required: true @@ -93328,7 +93370,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *634 examples: default: value: @@ -93520,7 +93562,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *630 + '410': *631 '403': *27 x-github: githubCloudOnly: false @@ -93554,9 +93596,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *446 - - *447 - - &635 + - *448 + - *449 + - &636 name: issue_number description: The number that identifies the issue. in: path @@ -93570,10 +93612,10 @@ paths: application/json: schema: *212 examples: - default: *634 - '301': *452 + default: *635 + '301': *454 '404': *6 - '410': *630 + '410': *631 '304': *35 x-github: githubCloudOnly: false @@ -93598,9 +93640,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: false content: @@ -93721,13 +93763,13 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 '422': *15 '503': *189 '403': *27 - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93745,9 +93787,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: false content: @@ -93775,7 +93817,7 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93791,9 +93833,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: content: application/json: @@ -93820,7 +93862,7 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93842,9 +93884,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: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - name: assignee in: path required: true @@ -93884,9 +93926,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *218 - *17 - *19 @@ -93897,13 +93939,13 @@ paths: application/json: schema: type: array - items: *631 + items: *632 examples: - default: *636 + default: *637 headers: Link: *45 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93932,9 +93974,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -93956,16 +93998,16 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *630 + '410': *631 '422': *15 '404': *6 x-github: @@ -93993,9 +94035,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: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -94007,12 +94049,12 @@ paths: type: array items: *212 examples: - default: *637 + default: *638 headers: Link: *45 - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94040,9 +94082,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: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -94066,15 +94108,15 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *452 + '301': *454 '403': *27 - '410': *630 + '410': *631 '422': *15 '404': *6 x-github: @@ -94105,9 +94147,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: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -94121,13 +94163,13 @@ paths: application/json: schema: *212 examples: - default: *634 - '301': *452 + default: *635 + '301': *454 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *630 + '410': *631 x-github: triggersNotification: true githubCloudOnly: false @@ -94153,9 +94195,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: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -94167,12 +94209,12 @@ paths: type: array items: *212 examples: - default: *637 + default: *638 headers: Link: *45 - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94189,9 +94231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -94205,7 +94247,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &639 + - &640 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -94254,7 +94296,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &640 + - &641 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -94382,7 +94424,7 @@ paths: - performed_via_github_app - assignee - assigner - - &641 + - &642 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -94428,7 +94470,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &642 + - &643 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -94474,7 +94516,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &643 + - &644 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -94523,7 +94565,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &644 + - &645 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -94565,7 +94607,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &645 + - &646 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -94607,7 +94649,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &646 + - &647 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -94663,7 +94705,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &647 + - &648 title: Locked Issue Event description: Locked Issue Event type: object @@ -94708,7 +94750,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &648 + - &649 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -94769,7 +94811,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &649 + - &650 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -94830,7 +94872,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &650 + - &651 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -94891,7 +94933,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &651 + - &652 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -94984,7 +95026,7 @@ paths: color: red headers: Link: *45 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95001,9 +95043,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -95015,7 +95057,7 @@ paths: type: array items: *211 examples: - default: &638 + default: &639 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -95033,9 +95075,9 @@ paths: default: false headers: Link: *45 - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95052,9 +95094,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: false content: @@ -95115,10 +95157,10 @@ paths: type: array items: *211 examples: - default: *638 - '301': *452 + default: *639 + '301': *454 '404': *6 - '410': *630 + '410': *631 '422': *15 x-github: githubCloudOnly: false @@ -95135,9 +95177,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: false content: @@ -95199,10 +95241,10 @@ paths: type: array items: *211 examples: - default: *638 - '301': *452 + default: *639 + '301': *454 '404': *6 - '410': *630 + '410': *631 '422': *15 x-github: githubCloudOnly: false @@ -95219,15 +95261,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 responses: '204': description: Response - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95246,9 +95288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - name: name in: path required: true @@ -95272,9 +95314,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *452 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95294,9 +95336,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: false content: @@ -95325,7 +95367,7 @@ paths: '204': description: Response '403': *27 - '410': *630 + '410': *631 '404': *6 '422': *15 x-github: @@ -95343,9 +95385,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 responses: '204': description: Response @@ -95375,9 +95417,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 responses: '200': description: Response @@ -95385,10 +95427,10 @@ paths: application/json: schema: *212 examples: - default: *634 - '301': *452 + default: *635 + '301': *454 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95405,9 +95447,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - 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. @@ -95433,13 +95475,13 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95457,9 +95499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -95491,16 +95533,16 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '422': *15 x-github: githubCloudOnly: false @@ -95522,10 +95564,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *446 - - *447 - - *635 - - *440 + - *448 + - *449 + - *636 + - *442 responses: '204': description: Response @@ -95554,9 +95596,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -95580,7 +95622,7 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -95613,9 +95655,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -95627,11 +95669,11 @@ paths: type: array items: *212 examples: - default: *637 + default: *638 headers: Link: *45 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95659,9 +95701,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -95690,14 +95732,14 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *630 + '410': *631 '422': *15 '404': *6 x-github: @@ -95717,9 +95759,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 requestBody: required: true content: @@ -95752,7 +95794,7 @@ paths: application/json: schema: *212 examples: - default: *634 + default: *635 '403': *27 '404': *6 '422': *7 @@ -95774,9 +95816,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *446 - - *447 - - *635 + - *448 + - *449 + - *636 - *17 - *19 responses: @@ -95791,7 +95833,6 @@ paths: description: Timeline Event type: object anyOf: - - *639 - *640 - *641 - *642 @@ -95804,6 +95845,7 @@ paths: - *649 - *650 - *651 + - *652 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -96132,7 +96174,7 @@ paths: type: string comments: type: array - items: &672 + items: &673 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -96370,7 +96412,7 @@ paths: type: string comments: type: array - items: *554 + items: *556 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -96645,7 +96687,7 @@ paths: headers: Link: *45 '404': *6 - '410': *630 + '410': *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96662,8 +96704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -96673,7 +96715,7 @@ paths: application/json: schema: type: array - items: &652 + items: &653 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -96741,8 +96783,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -96778,9 +96820,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: &653 + default: &654 value: id: 1 key: ssh-rsa AAA... @@ -96814,9 +96856,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *446 - - *447 - - &654 + - *448 + - *449 + - &655 name: key_id description: The unique identifier of the key. in: path @@ -96828,9 +96870,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *653 + default: *654 '404': *6 x-github: githubCloudOnly: false @@ -96848,9 +96890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *446 - - *447 - - *654 + - *448 + - *449 + - *655 responses: '204': description: Response @@ -96870,8 +96912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -96883,7 +96925,7 @@ paths: type: array items: *211 examples: - default: *638 + default: *639 headers: Link: *45 '404': *6 @@ -96904,8 +96946,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -96943,7 +96985,7 @@ paths: application/json: schema: *211 examples: - default: &655 + default: &656 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96975,8 +97017,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *446 - - *447 + - *448 + - *449 - name: name in: path required: true @@ -96989,7 +97031,7 @@ paths: application/json: schema: *211 examples: - default: *655 + default: *656 '404': *6 x-github: githubCloudOnly: false @@ -97006,8 +97048,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *446 - - *447 + - *448 + - *449 - name: name in: path required: true @@ -97072,8 +97114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *446 - - *447 + - *448 + - *449 - name: name in: path required: true @@ -97099,8 +97141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -97136,8 +97178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '202': *37 '403': @@ -97165,8 +97207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -97192,9 +97234,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *446 - - *447 - - *532 + - *448 + - *449 + - *534 responses: '200': description: Response @@ -97341,8 +97383,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -97407,8 +97449,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -97442,9 +97484,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *555 + schema: *557 examples: - default: *656 + default: *657 '204': description: Response when already merged '404': @@ -97469,8 +97511,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *446 - - *447 + - *448 + - *449 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -97511,7 +97553,7 @@ paths: application/json: schema: type: array - items: *390 + items: *392 examples: default: value: @@ -97567,8 +97609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -97608,9 +97650,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *392 examples: - default: &657 + default: &658 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -97669,9 +97711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *446 - - *447 - - &658 + - *448 + - *449 + - &659 name: milestone_number description: The number that identifies the milestone. in: path @@ -97683,9 +97725,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *392 examples: - default: *657 + default: *658 '404': *6 x-github: githubCloudOnly: false @@ -97702,9 +97744,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *446 - - *447 - - *658 + - *448 + - *449 + - *659 requestBody: required: false content: @@ -97742,9 +97784,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *392 examples: - default: *657 + default: *658 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97760,9 +97802,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *446 - - *447 - - *658 + - *448 + - *449 + - *659 responses: '204': description: Response @@ -97783,9 +97825,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: - - *446 - - *447 - - *658 + - *448 + - *449 + - *659 - *17 - *19 responses: @@ -97797,7 +97839,7 @@ paths: type: array items: *211 examples: - default: *638 + default: *639 headers: Link: *45 x-github: @@ -97816,12 +97858,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: - - *446 - - *447 - - *659 + - *448 + - *449 - *660 - - *218 - *661 + - *218 + - *662 - *17 - *19 responses: @@ -97833,7 +97875,7 @@ paths: type: array items: *238 examples: - default: *662 + default: *663 headers: Link: *45 x-github: @@ -97857,8 +97899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -97916,14 +97958,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: &663 + schema: &664 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -98067,7 +98109,7 @@ paths: - custom_404 - public examples: - default: &664 + default: &665 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -98108,8 +98150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -98164,9 +98206,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: - default: *664 + default: *665 '422': *15 '409': *116 x-github: @@ -98189,8 +98231,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -98298,8 +98340,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -98325,8 +98367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -98336,7 +98378,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Page Build description: Page Build type: object @@ -98428,8 +98470,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *446 - - *447 + - *448 + - *449 responses: '201': description: Response @@ -98476,16 +98518,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: &666 + default: &667 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -98533,8 +98575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *446 - - *447 + - *448 + - *449 - name: build_id in: path required: true @@ -98545,9 +98587,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: *666 + default: *667 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98567,8 +98609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -98676,9 +98718,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: - - *446 - - *447 - - &667 + - *448 + - *449 + - &668 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -98736,9 +98778,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *446 - - *447 - - *667 + - *448 + - *449 + - *668 responses: '204': *148 '404': *6 @@ -98765,8 +98807,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -99061,8 +99103,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Private vulnerability reporting status @@ -99099,8 +99141,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: - - *446 - - *447 + - *448 + - *449 responses: '204': *148 '422': *14 @@ -99121,8 +99163,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: - - *446 - - *447 + - *448 + - *449 responses: '204': *148 '422': *14 @@ -99144,8 +99186,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -99155,7 +99197,7 @@ paths: type: array items: *149 examples: - default: *668 + default: *669 '403': *27 '404': *6 x-github: @@ -99177,8 +99219,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -99194,7 +99236,7 @@ paths: required: - properties examples: - default: *669 + default: *670 responses: '204': description: No Content when custom property values are successfully created @@ -99232,8 +99274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *446 - - *447 + - *448 + - *449 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -99293,9 +99335,9 @@ paths: application/json: schema: type: array - items: *559 + items: *561 examples: - default: *670 + default: *671 headers: Link: *45 '304': *35 @@ -99327,8 +99369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -99395,7 +99437,7 @@ paths: description: Response content: application/json: - schema: &674 + schema: &675 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -99524,7 +99566,7 @@ paths: milestone: anyOf: - type: 'null' - - *390 + - *392 active_lock_reason: type: - string @@ -99579,7 +99621,7 @@ paths: type: - array - 'null' - items: *369 + items: *371 head: type: object properties: @@ -99617,14 +99659,14 @@ paths: _links: type: object properties: - comments: *391 - commits: *391 - statuses: *391 - html: *391 - issue: *391 - review_comments: *391 - review_comment: *391 - self: *391 + comments: *393 + commits: *393 + statuses: *393 + html: *393 + issue: *393 + review_comments: *393 + review_comment: *393 + self: *393 required: - comments - commits @@ -99635,7 +99677,7 @@ paths: - review_comment - self author_association: *213 - auto_merge: *671 + auto_merge: *672 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -99737,7 +99779,7 @@ paths: - merged_by - review_comments examples: - default: &675 + default: &676 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -100264,8 +100306,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - name: sort in: query required: false @@ -100294,9 +100336,9 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: - default: &677 + default: &678 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100373,17 +100415,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: - - *446 - - *447 + - *448 + - *449 - *227 responses: '200': description: Response content: application/json: - schema: *672 + schema: *673 examples: - default: &673 + default: &674 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100458,8 +100500,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -100482,9 +100524,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: - default: *673 + default: *674 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100500,8 +100542,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *227 responses: '204': @@ -100523,8 +100565,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *227 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -100551,9 +100593,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 '404': *6 @@ -100574,8 +100616,8 @@ 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: - - *446 - - *447 + - *448 + - *449 - *227 requestBody: required: true @@ -100608,16 +100650,16 @@ paths: description: Reaction exists content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Reaction created content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '422': *15 x-github: githubCloudOnly: false @@ -100639,10 +100681,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *446 - - *447 + - *448 + - *449 - *227 - - *440 + - *442 responses: '204': description: Response @@ -100685,9 +100727,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *446 - - *447 - - &676 + - *448 + - *449 + - &677 name: pull_number description: The number that identifies the pull request. in: path @@ -100700,9 +100742,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '304': *35 '404': *6 '406': @@ -100737,9 +100779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: false content: @@ -100781,9 +100823,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '422': *15 '403': *27 x-github: @@ -100805,9 +100847,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: true content: @@ -100868,17 +100910,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '401': *23 '403': *27 '404': *6 @@ -100908,9 +100950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 - *235 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -100931,9 +100973,9 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: - default: *677 + default: *678 headers: Link: *45 x-github: @@ -100966,9 +101008,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: true content: @@ -101074,7 +101116,7 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: example-for-a-multi-line-comment: value: @@ -101162,9 +101204,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 - *227 requestBody: required: true @@ -101187,7 +101229,7 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: default: value: @@ -101273,9 +101315,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 - *17 - *19 responses: @@ -101285,9 +101327,9 @@ paths: application/json: schema: type: array - items: *555 + items: *557 examples: - default: *678 + default: *679 headers: Link: *45 x-github: @@ -101317,9 +101359,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 - *17 - *19 responses: @@ -101329,7 +101371,7 @@ paths: application/json: schema: type: array - items: *566 + items: *568 examples: default: value: @@ -101367,9 +101409,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 responses: '204': description: Response if pull request has been merged @@ -101392,9 +101434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: false content: @@ -101506,9 +101548,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 responses: '200': description: Response @@ -101583,9 +101625,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: false content: @@ -101622,7 +101664,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *561 examples: default: value: @@ -102158,9 +102200,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: true content: @@ -102194,7 +102236,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *561 examples: default: value: @@ -102699,9 +102741,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 - *17 - *19 responses: @@ -102711,7 +102753,7 @@ paths: application/json: schema: type: array - items: &679 + items: &680 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -102867,9 +102909,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: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: false content: @@ -102959,9 +103001,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: &681 + default: &682 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103024,10 +103066,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: - - *446 - - *447 - - *676 - - &680 + - *448 + - *449 + - *677 + - &681 name: review_id description: The unique identifier of the review. in: path @@ -103039,9 +103081,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: &682 + default: &683 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103100,10 +103142,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: - - *446 - - *447 - - *676 - - *680 + - *448 + - *449 + - *677 + - *681 requestBody: required: true content: @@ -103126,7 +103168,7 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: default: value: @@ -103188,18 +103230,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: - - *446 - - *447 - - *676 - - *680 + - *448 + - *449 + - *677 + - *681 responses: '200': description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: *681 + default: *682 '422': *7 '404': *6 x-github: @@ -103226,10 +103268,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: - - *446 - - *447 - - *676 - - *680 + - *448 + - *449 + - *677 + - *681 - *17 - *19 responses: @@ -103327,9 +103369,9 @@ paths: _links: type: object properties: - self: *391 - html: *391 - pull_request: *391 + self: *393 + html: *393 + pull_request: *393 required: - self - html @@ -103487,10 +103529,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: - - *446 - - *447 - - *676 - - *680 + - *448 + - *449 + - *677 + - *681 requestBody: required: true content: @@ -103519,7 +103561,7 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: default: value: @@ -103582,10 +103624,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: - - *446 - - *447 - - *676 - - *680 + - *448 + - *449 + - *677 + - *681 requestBody: required: true content: @@ -103620,9 +103662,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: *682 + default: *683 '404': *6 '422': *7 '403': *27 @@ -103644,9 +103686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *446 - - *447 - - *676 + - *448 + - *449 + - *677 requestBody: required: false content: @@ -103710,8 +103752,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *446 - - *447 + - *448 + - *449 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -103724,9 +103766,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: &684 + default: &685 value: type: file encoding: base64 @@ -103768,8 +103810,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: - - *446 - - *447 + - *448 + - *449 - name: dir description: The alternate path to look for a README file in: path @@ -103789,9 +103831,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: *684 + default: *685 '404': *6 '422': *15 x-github: @@ -103813,8 +103855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -103824,7 +103866,7 @@ paths: application/json: schema: type: array - items: *685 + items: *686 examples: default: value: @@ -103918,8 +103960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -103995,9 +104037,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: &689 + default: &690 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -104102,9 +104144,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *446 - - *447 - - &687 + - *448 + - *449 + - &688 name: asset_id description: The unique identifier of the asset. in: path @@ -104116,9 +104158,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: &688 + default: &689 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 @@ -104153,7 +104195,7 @@ paths: type: User site_admin: false '404': *6 - '302': *568 + '302': *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104169,9 +104211,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *446 - - *447 - - *687 + - *448 + - *449 + - *688 requestBody: required: false content: @@ -104200,9 +104242,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: *688 + default: *689 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104218,9 +104260,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *446 - - *447 - - *687 + - *448 + - *449 + - *688 responses: '204': description: Response @@ -104244,8 +104286,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -104331,16 +104373,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: *689 + default: *690 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104357,8 +104399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *446 - - *447 + - *448 + - *449 - name: tag description: tag parameter in: path @@ -104371,9 +104413,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: *689 + default: *690 '404': *6 x-github: githubCloudOnly: false @@ -104395,9 +104437,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *446 - - *447 - - &690 + - *448 + - *449 + - &691 name: release_id description: The unique identifier of the release. in: path @@ -104411,9 +104453,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: *685 + schema: *686 examples: - default: *689 + default: *690 '401': description: Unauthorized x-github: @@ -104431,9 +104473,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 requestBody: required: false content: @@ -104497,9 +104539,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: *689 + default: *690 '404': description: Not Found if the discussion category name is invalid content: @@ -104520,9 +104562,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 responses: '204': description: Response @@ -104542,9 +104584,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 - *17 - *19 responses: @@ -104554,7 +104596,7 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: default: value: @@ -104636,9 +104678,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: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 - name: name in: query required: true @@ -104664,7 +104706,7 @@ paths: description: Response for successful upload content: application/json: - schema: *686 + schema: *687 examples: response-for-successful-upload: value: @@ -104719,9 +104761,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 - 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. @@ -104745,9 +104787,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 '404': *6 @@ -104768,9 +104810,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *446 - - *447 - - *690 + - *448 + - *449 + - *691 requestBody: required: true content: @@ -104800,16 +104842,16 @@ paths: description: Reaction exists content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '201': description: Reaction created content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 '422': *15 x-github: githubCloudOnly: false @@ -104831,10 +104873,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *446 - - *447 - - *690 - - *440 + - *448 + - *449 + - *691 + - *442 responses: '204': description: Response @@ -104858,9 +104900,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *446 - - *447 - - *499 + - *448 + - *449 + - *501 - *17 - *19 responses: @@ -104877,7 +104919,7 @@ paths: oneOf: - allOf: - *163 - - &691 + - &692 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -104898,67 +104940,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *164 - - *691 + - *692 - allOf: - *165 - - *691 + - *692 - allOf: - *166 - - *691 + - *692 - allOf: + - *693 - *692 - - *691 - allOf: - *167 - - *691 + - *692 - allOf: - *168 - - *691 + - *692 - allOf: - *169 - - *691 + - *692 - allOf: - *170 - - *691 + - *692 - allOf: - *171 - - *691 + - *692 - allOf: - *172 - - *691 + - *692 - allOf: - *173 - - *691 + - *692 - allOf: - *174 - - *691 + - *692 - allOf: - *175 - - *691 + - *692 - allOf: - *176 - - *691 + - *692 - allOf: - *177 - - *691 + - *692 - allOf: - *178 - - *691 + - *692 - allOf: - *179 - - *691 + - *692 - allOf: - *180 - - *691 + - *692 - allOf: - *181 - - *691 + - *692 - allOf: - *182 - - *691 + - *692 - allOf: - *183 - - *691 + - *692 examples: default: value: @@ -104997,8 +105039,8 @@ paths: category: repos subcategory: rules parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 - name: includes_parents @@ -105009,7 +105051,7 @@ paths: schema: type: boolean default: true - - *693 + - *694 responses: '200': description: Response @@ -105064,8 +105106,8 @@ paths: category: repos subcategory: rules parameters: - - *446 - - *447 + - *448 + - *449 requestBody: description: Request body required: true @@ -105094,7 +105136,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *694 + items: *695 required: - name - enforcement @@ -105127,7 +105169,7 @@ paths: application/json: schema: *184 examples: - default: &703 + default: &704 value: id: 42 name: super cool ruleset @@ -105174,12 +105216,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *446 - - *447 - - *695 - - *103 + - *448 + - *449 - *696 + - *103 - *697 + - *698 - *17 - *19 responses: @@ -105187,9 +105229,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: *699 + default: *700 '404': *6 '500': *38 x-github: @@ -105210,17 +105252,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *446 - - *447 - - *700 + - *448 + - *449 + - *701 responses: '200': description: Response content: application/json: - schema: *701 + schema: *702 examples: - default: *702 + default: *703 '404': *6 '500': *38 x-github: @@ -105248,8 +105290,8 @@ paths: category: repos subcategory: rules parameters: - - *446 - - *447 + - *448 + - *449 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105271,7 +105313,7 @@ paths: application/json: schema: *184 examples: - default: *703 + default: *704 '404': *6 '500': *38 put: @@ -105289,8 +105331,8 @@ paths: category: repos subcategory: rules parameters: - - *446 - - *447 + - *448 + - *449 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105324,7 +105366,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *694 + items: *695 examples: default: value: @@ -105354,7 +105396,7 @@ paths: application/json: schema: *184 examples: - default: *703 + default: *704 '404': *6 '500': *38 delete: @@ -105372,8 +105414,8 @@ paths: category: repos subcategory: rules parameters: - - *446 - - *447 + - *448 + - *449 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105396,8 +105438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 - name: ruleset_id @@ -105415,7 +105457,7 @@ paths: type: array items: *188 examples: - default: *406 + default: *408 '404': *6 '500': *38 x-github: @@ -105434,8 +105476,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *446 - - *447 + - *448 + - *449 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105453,7 +105495,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *409 examples: default: value: @@ -105508,22 +105550,22 @@ 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: - - *446 - - *447 - - *408 - - *409 + - *448 + - *449 - *410 - *411 - *412 + - *413 + - *414 - *108 - *19 - *17 - - *704 - *705 - - *413 - - *414 + - *706 - *415 - *416 + - *417 + - *418 responses: '200': description: Response @@ -105531,7 +105573,7 @@ paths: application/json: schema: type: array - items: &709 + items: &710 type: object properties: number: *123 @@ -105547,8 +105589,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *706 - resolution: *707 + state: *707 + resolution: *708 resolved_at: type: - string @@ -105642,7 +105684,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *708 + - *709 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -105787,16 +105829,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: - - *446 - - *447 - - *526 - - *416 + - *448 + - *449 + - *528 + - *418 responses: '200': description: Response content: application/json: - schema: *709 + schema: *710 examples: default: value: @@ -105850,9 +105892,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 requestBody: required: true content: @@ -105860,8 +105902,8 @@ paths: schema: type: object properties: - state: *706 - resolution: *707 + state: *707 + resolution: *708 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -105897,7 +105939,7 @@ paths: description: Response content: application/json: - schema: *709 + schema: *710 examples: default: value: @@ -105992,9 +106034,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: - - *446 - - *447 - - *526 + - *448 + - *449 + - *528 - *19 - *17 responses: @@ -106005,7 +106047,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &891 + items: &892 type: object properties: type: @@ -106032,7 +106074,6 @@ paths: - commit details: oneOf: - - *710 - *711 - *712 - *713 @@ -106045,6 +106086,7 @@ paths: - *720 - *721 - *722 + - *723 examples: default: value: @@ -106130,8 +106172,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -106139,14 +106181,14 @@ paths: schema: type: object properties: - reason: &724 + reason: &725 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *723 + placeholder_id: *724 required: - reason - placeholder_id @@ -106163,7 +106205,7 @@ paths: schema: type: object properties: - reason: *724 + reason: *725 expire_at: type: - string @@ -106210,8 +106252,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: - - *446 - - *447 + - *448 + - *449 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -106226,7 +106268,7 @@ paths: properties: incremental_scans: type: array - items: &725 + items: &726 description: Information on a single scan performed by secret scanning on the repository type: object @@ -106254,15 +106296,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *725 + items: *726 backfill_scans: type: array - items: *725 + items: *726 custom_pattern_backfill_scans: type: array items: allOf: - - *725 + - *726 - type: object properties: pattern_name: @@ -106332,8 +106374,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *446 - - *447 + - *448 + - *449 - *108 - name: sort description: The property to sort the results by. @@ -106377,9 +106419,9 @@ paths: application/json: schema: type: array - items: *726 + items: *727 examples: - default: *727 + default: *728 '400': *14 '404': *6 x-github: @@ -106402,8 +106444,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -106483,7 +106525,7 @@ paths: login: type: string description: The username of the user credited. - type: *421 + type: *423 required: - login - type @@ -106573,9 +106615,9 @@ paths: description: Response content: application/json: - schema: *726 + schema: *727 examples: - default: &729 + default: &730 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -106808,8 +106850,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: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -106922,7 +106964,7 @@ paths: description: Response content: application/json: - schema: *726 + schema: *727 examples: default: value: @@ -107069,17 +107111,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: - - *446 - - *447 - - *728 + - *448 + - *449 + - *729 responses: '200': description: Response content: application/json: - schema: *726 + schema: *727 examples: - default: *729 + default: *730 '403': *27 '404': *6 x-github: @@ -107103,9 +107145,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: - - *446 - - *447 - - *728 + - *448 + - *449 + - *729 requestBody: required: true content: @@ -107185,7 +107227,7 @@ paths: login: type: string description: The username of the user credited. - type: *421 + type: *423 required: - login - type @@ -107276,10 +107318,10 @@ paths: description: Response content: application/json: - schema: *726 + schema: *727 examples: - default: *729 - add_credit: *729 + default: *730 + add_credit: *730 '403': *27 '404': *6 '422': @@ -107317,9 +107359,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: - - *446 - - *447 - - *728 + - *448 + - *449 + - *729 responses: '202': *37 '400': *14 @@ -107346,17 +107388,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: - - *446 - - *447 - - *728 + - *448 + - *449 + - *729 responses: '202': description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *453 + default: *455 '400': *14 '422': *15 '403': *27 @@ -107382,8 +107424,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -107479,8 +107521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -107489,7 +107531,7 @@ paths: application/json: schema: type: array - items: &730 + items: &731 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -107522,8 +107564,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -107601,8 +107643,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -107696,8 +107738,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -107851,8 +107893,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: - - *446 - - *447 + - *448 + - *449 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -107862,7 +107904,7 @@ paths: application/json: schema: type: array - items: *730 + items: *731 examples: default: value: @@ -107895,8 +107937,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *446 - - *447 + - *448 + - *449 - name: sha in: path required: true @@ -107952,7 +107994,7 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: default: value: @@ -108006,8 +108048,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -108039,14 +108081,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &732 + schema: &733 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -108119,8 +108161,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: false content: @@ -108146,7 +108188,7 @@ paths: description: Response content: application/json: - schema: *732 + schema: *733 examples: default: value: @@ -108173,8 +108215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -108194,8 +108236,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -108277,8 +108319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -108286,7 +108328,7 @@ paths: application/json: schema: type: array - items: &733 + items: &734 title: Tag protection description: Tag protection type: object @@ -108343,8 +108385,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -108367,7 +108409,7 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: default: value: @@ -108398,8 +108440,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *446 - - *447 + - *448 + - *449 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -108436,8 +108478,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *446 - - *447 + - *448 + - *449 - name: ref in: path required: true @@ -108473,8 +108515,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *446 - - *447 + - *448 + - *449 - *17 - *19 responses: @@ -108486,7 +108528,7 @@ paths: type: array items: *301 examples: - default: *370 + default: *372 headers: Link: *45 '404': *6 @@ -108506,8 +108548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *446 - - *447 + - *448 + - *449 - *19 - *17 responses: @@ -108515,7 +108557,7 @@ paths: description: Response content: application/json: - schema: &734 + schema: &735 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -108527,7 +108569,7 @@ paths: required: - names examples: - default: &735 + default: &736 value: names: - octocat @@ -108550,8 +108592,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -108582,9 +108624,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *735 + default: *736 '404': *6 '422': *7 x-github: @@ -108605,9 +108647,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *446 - - *447 - - &736 + - *448 + - *449 + - &737 name: per description: The time frame to display results for. in: query @@ -108638,7 +108680,7 @@ paths: - 128 clones: type: array - items: &737 + items: &738 title: Traffic type: object properties: @@ -108725,8 +108767,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -108820,8 +108862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *446 - - *447 + - *448 + - *449 responses: '200': description: Response @@ -108884,9 +108926,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *446 - - *447 - - *736 + - *448 + - *449 + - *737 responses: '200': description: Response @@ -108907,7 +108949,7 @@ paths: - 3782 views: type: array - items: *737 + items: *738 required: - uniques - count @@ -108984,8 +109026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *446 - - *447 + - *448 + - *449 requestBody: required: true content: @@ -109259,8 +109301,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -109283,8 +109325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -109306,8 +109348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -109333,8 +109375,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *446 - - *447 + - *448 + - *449 - name: ref in: path required: true @@ -109426,9 +109468,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *453 + default: *455 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109579,7 +109621,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &745 + - &746 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -109589,7 +109631,7 @@ paths: type: string examples: - members - - &750 + - &751 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -109601,7 +109643,7 @@ paths: format: int32 examples: - 1 - - &751 + - &752 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -109645,7 +109687,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &740 + items: &741 allOf: - type: object required: @@ -109727,7 +109769,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: &752 + meta: &753 type: object description: The metadata associated with the creation/updates to the user. @@ -109792,30 +109834,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &741 + '400': &742 description: Bad request content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 - '401': *739 - '403': &742 + schema: *739 + '401': *740 + '403': &743 description: Permission denied - '429': &743 + '429': &744 description: Too many requests content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 - '500': &744 + schema: *739 + '500': &745 description: Internal server error content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 + schema: *739 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109839,7 +109881,7 @@ paths: required: true content: application/json: - schema: &748 + schema: &749 type: object required: - schemas @@ -109903,9 +109945,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *740 + schema: *741 examples: - group: &746 + group: &747 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -109924,13 +109966,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': *741 - '401': *739 - '403': *742 - '409': &749 + '400': *742 + '401': *740 + '403': *743 + '409': &750 description: Duplicate record detected - '429': *743 - '500': *744 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109947,7 +109989,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: - - &747 + - &748 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -109956,22 +109998,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *745 + - *746 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *740 + schema: *741 examples: - default: *746 - '400': *741 - '401': *739 - '403': *742 + default: *747 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '429': *743 - '500': *744 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109990,13 +110032,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: - - *747 + - *748 - *39 requestBody: required: true content: application/json: - schema: *748 + schema: *749 examples: group: summary: Group @@ -110022,17 +110064,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *740 + schema: *741 examples: - group: *746 - groupWithMembers: *746 - '400': *741 - '401': *739 - '403': *742 + group: *747 + groupWithMembers: *747 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '409': *749 - '429': *743 - '500': *744 + '409': *750 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110056,13 +110098,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: - - *747 + - *748 - *39 requestBody: required: true content: application/json: - schema: &759 + schema: &760 type: object required: - Operations @@ -110122,17 +110164,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *740 + schema: *741 examples: - updateGroup: *746 - addMembers: *746 - '400': *741 - '401': *739 - '403': *742 + updateGroup: *747 + addMembers: *747 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '409': *749 - '429': *743 - '500': *744 + '409': *750 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110148,17 +110190,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: - - *747 + - *748 - *39 responses: '204': description: Group was deleted, no content - '400': *741 - '401': *739 - '403': *742 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '429': *743 - '500': *744 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110192,8 +110234,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *750 - *751 + - *752 - *39 responses: '200': @@ -110227,7 +110269,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &754 + items: &755 allOf: - type: object required: @@ -110319,7 +110361,7 @@ paths: address. examples: - true - roles: &753 + roles: &754 type: array description: The roles assigned to the user. items: @@ -110378,7 +110420,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *752 + meta: *753 startIndex: type: integer description: A starting index for the returned page @@ -110417,11 +110459,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *741 - '401': *739 - '403': *742 - '429': *743 - '500': *744 + '400': *742 + '401': *740 + '403': *743 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110445,7 +110487,7 @@ paths: required: true content: application/json: - schema: &757 + schema: &758 type: object required: - schemas @@ -110538,9 +110580,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *753 + roles: *754 examples: - user: &758 + user: &759 summary: User value: schemas: @@ -110587,9 +110629,9 @@ paths: description: User has been created content: application/scim+json: - schema: *754 + schema: *755 examples: - user: &755 + user: &756 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110615,13 +110657,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: *755 - '400': *741 - '401': *739 - '403': *742 - '409': *749 - '429': *743 - '500': *744 + enterpriseOwner: *756 + '400': *742 + '401': *740 + '403': *743 + '409': *750 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110638,7 +110680,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: - - &756 + - &757 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -110651,15 +110693,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *754 + schema: *755 examples: - default: *755 - '400': *741 - '401': *739 - '403': *742 + default: *756 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '429': *743 - '500': *744 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110681,30 +110723,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: - - *756 + - *757 - *39 requestBody: required: true content: application/json: - schema: *757 + schema: *758 examples: - user: *758 + user: *759 responses: '200': description: User was updated content: application/scim+json: - schema: *754 + schema: *755 examples: - user: *755 - '400': *741 - '401': *739 - '403': *742 + user: *756 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '409': *749 - '429': *743 - '500': *744 + '409': *750 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110739,13 +110781,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: - - *756 + - *757 - *39 requestBody: required: true content: application/json: - schema: *759 + schema: *760 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -110785,18 +110827,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *754 + schema: *755 examples: - userMultiValuedProperties: *755 - userSingleValuedProperties: *755 - disableUser: *755 - '400': *741 - '401': *739 - '403': *742 + userMultiValuedProperties: *756 + userSingleValuedProperties: *756 + disableUser: *756 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '409': *749 - '429': *743 - '500': *744 + '409': *750 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110816,17 +110858,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: - - *756 + - *757 - *39 responses: '204': description: User was deleted, no content - '400': *741 - '401': *739 - '403': *742 + '400': *742 + '401': *740 + '403': *743 '404': *6 - '429': *743 - '500': *744 + '429': *744 + '500': *745 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110917,7 +110959,7 @@ paths: - 1 Resources: type: array - items: &760 + items: &761 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -111164,22 +111206,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &761 + '404': &762 description: Resource not found content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 - '403': &762 + schema: *739 + '403': &763 description: Forbidden content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 - '400': *741 - '429': *743 + schema: *739 + '400': *742 + '429': *744 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -111205,9 +111247,9 @@ paths: description: Response content: application/scim+json: - schema: *760 + schema: *761 examples: - default: &763 + default: &764 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -111230,17 +111272,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *761 - '403': *762 - '500': *744 + '404': *762 + '403': *763 + '500': *745 '409': description: Conflict content: application/json: - schema: *738 + schema: *739 application/scim+json: - schema: *738 - '400': *741 + schema: *739 + '400': *742 requestBody: required: true content: @@ -111340,17 +111382,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *85 - - *756 + - *757 responses: '200': description: Response content: application/scim+json: - schema: *760 + schema: *761 examples: - default: *763 - '404': *761 - '403': *762 + default: *764 + '404': *762 + '403': *763 '304': *35 x-github: githubCloudOnly: true @@ -111374,18 +111416,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *85 - - *756 + - *757 responses: '200': description: Response content: application/scim+json: - schema: *760 + schema: *761 examples: - default: *763 + default: *764 '304': *35 - '404': *761 - '403': *762 + '404': *762 + '403': *763 requestBody: required: true content: @@ -111500,19 +111542,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *85 - - *756 + - *757 responses: '200': description: Response content: application/scim+json: - schema: *760 + schema: *761 examples: - default: *763 + default: *764 '304': *35 - '404': *761 - '403': *762 - '400': *741 + '404': *762 + '403': *763 + '400': *742 '429': description: Response content: @@ -111608,12 +111650,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *85 - - *756 + - *757 responses: '204': description: Response - '404': *761 - '403': *762 + '404': *762 + '403': *763 '304': *35 x-github: githubCloudOnly: true @@ -111747,7 +111789,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &764 + text_matches: &765 title: Search Result Text Matches type: array items: @@ -111911,7 +111953,7 @@ paths: enum: - author-date - committer-date - - &765 + - &766 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 @@ -111980,7 +112022,7 @@ paths: committer: anyOf: - type: 'null' - - *497 + - *499 comment_count: type: integer message: @@ -111999,7 +112041,7 @@ paths: url: type: string format: uri - verification: *616 + verification: *617 required: - author - committer @@ -112014,7 +112056,7 @@ paths: committer: anyOf: - type: 'null' - - *497 + - *499 parents: type: array items: @@ -112031,7 +112073,7 @@ paths: type: number node_id: type: string - text_matches: *764 + text_matches: *765 required: - sha - node_id @@ -112224,7 +112266,7 @@ paths: - interactions - created - updated - - *765 + - *766 - *17 - *19 - name: advanced_search @@ -112321,11 +112363,11 @@ paths: type: - string - 'null' - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: type: string state_reason: @@ -112339,7 +112381,7 @@ paths: milestone: anyOf: - type: 'null' - - *390 + - *392 comments: type: integer created_at: @@ -112353,7 +112395,7 @@ paths: - string - 'null' format: date-time - text_matches: *764 + text_matches: *765 pull_request: type: object properties: @@ -112402,7 +112444,7 @@ paths: timeline_url: type: string format: uri - type: *356 + type: *358 performed_via_github_app: anyOf: - type: 'null' @@ -112576,7 +112618,7 @@ paths: enum: - created - updated - - *765 + - *766 - *17 - *19 responses: @@ -112621,7 +112663,7 @@ paths: - 'null' score: type: number - text_matches: *764 + text_matches: *765 required: - id - node_id @@ -112707,7 +112749,7 @@ paths: - forks - help-wanted-issues - updated - - *765 + - *766 - *17 - *19 responses: @@ -112944,7 +112986,7 @@ paths: - admin - pull - push - text_matches: *764 + text_matches: *765 temp_clone_token: type: string allow_merge_commit: @@ -113253,7 +113295,7 @@ paths: - string - 'null' format: uri - text_matches: *764 + text_matches: *765 related: type: - array @@ -113448,7 +113490,7 @@ paths: - followers - repositories - joined - - *765 + - *766 - *17 - *19 responses: @@ -113558,7 +113600,7 @@ paths: type: - boolean - 'null' - text_matches: *764 + text_matches: *765 blog: type: - string @@ -113640,7 +113682,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &769 + - &770 name: team_id description: The unique identifier of the team. in: path @@ -113652,9 +113694,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '404': *6 x-github: githubCloudOnly: false @@ -113681,7 +113723,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *769 + - *770 requestBody: required: true content: @@ -113745,16 +113787,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '201': description: Response content: application/json: - schema: *429 + schema: *431 examples: - default: *430 + default: *432 '404': *6 '422': *15 '403': *27 @@ -113782,7 +113824,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *769 + - *770 responses: '204': description: Response @@ -113813,7 +113855,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *769 + - *770 - *108 - *17 - *19 @@ -113824,9 +113866,9 @@ paths: application/json: schema: type: array - items: *431 + items: *433 examples: - default: *770 + default: *771 headers: Link: *45 x-github: @@ -113855,7 +113897,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *769 + - *770 requestBody: required: true content: @@ -113889,9 +113931,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 x-github: triggersNotification: true githubCloudOnly: false @@ -113918,16 +113960,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *769 - - *433 + - *770 + - *435 responses: '200': description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113952,8 +113994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *769 - - *433 + - *770 + - *435 requestBody: required: false content: @@ -113976,9 +114018,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *771 + default: *772 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114003,8 +114045,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *769 - - *433 + - *770 + - *435 responses: '204': description: Response @@ -114033,8 +114075,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *769 - - *433 + - *770 + - *435 - *108 - *17 - *19 @@ -114045,9 +114087,9 @@ paths: application/json: schema: type: array - items: *434 + items: *436 examples: - default: *772 + default: *773 headers: Link: *45 x-github: @@ -114076,8 +114118,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *769 - - *433 + - *770 + - *435 requestBody: required: true content: @@ -114099,9 +114141,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: *435 + default: *437 x-github: triggersNotification: true githubCloudOnly: false @@ -114128,17 +114170,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *769 - - *433 - - *436 + - *770 + - *435 + - *438 responses: '200': description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: *435 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114163,9 +114205,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *769 - - *433 - - *436 + - *770 + - *435 + - *438 requestBody: required: true content: @@ -114187,9 +114229,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: *773 + default: *774 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114214,9 +114256,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *769 - - *433 - - *436 + - *770 + - *435 + - *438 responses: '204': description: Response @@ -114245,9 +114287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *769 - - *433 - - *436 + - *770 + - *435 + - *438 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -114273,9 +114315,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 x-github: @@ -114304,9 +114346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *769 - - *433 - - *436 + - *770 + - *435 + - *438 requestBody: required: true content: @@ -114338,9 +114380,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114366,8 +114408,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *769 - - *433 + - *770 + - *435 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -114393,9 +114435,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *439 + default: *441 headers: Link: *45 x-github: @@ -114424,8 +114466,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *769 - - *433 + - *770 + - *435 requestBody: required: true content: @@ -114457,9 +114499,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: *438 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -114483,7 +114525,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *769 + - *770 - *17 - *19 responses: @@ -114493,9 +114535,9 @@ paths: application/json: schema: type: array - items: *353 + items: *355 examples: - default: *354 + default: *356 headers: Link: *45 x-github: @@ -114521,7 +114563,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *769 + - *770 - name: role description: Filters members returned by their role in the team. in: query @@ -114572,7 +114614,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *769 + - *770 - *136 responses: '204': @@ -114609,7 +114651,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *769 + - *770 - *136 responses: '204': @@ -114649,7 +114691,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *769 + - *770 - *136 responses: '204': @@ -114686,16 +114728,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: - - *769 + - *770 - *136 responses: '200': description: Response content: application/json: - schema: *445 + schema: *447 examples: - response-if-user-is-a-team-maintainer: *774 + response-if-user-is-a-team-maintainer: *775 '404': *6 x-github: githubCloudOnly: false @@ -114728,7 +114770,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: - - *769 + - *770 - *136 requestBody: required: false @@ -114754,9 +114796,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: - response-if-users-membership-with-team-is-now-pending: *775 + response-if-users-membership-with-team-is-now-pending: *776 '403': description: Forbidden if team synchronization is set up '422': @@ -114790,7 +114832,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: - - *769 + - *770 - *136 responses: '204': @@ -114818,7 +114860,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *769 + - *770 - *17 - *19 responses: @@ -114830,7 +114872,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 '404': *6 @@ -114860,15 +114902,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: - - *769 - - *446 - - *447 + - *770 + - *448 + - *449 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *776 + schema: *777 examples: alternative-response-with-extra-repository-information: value: @@ -115019,9 +115061,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: - - *769 - - *446 - - *447 + - *770 + - *448 + - *449 requestBody: required: false content: @@ -115071,9 +115113,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: - - *769 - - *446 - - *447 + - *770 + - *448 + - *449 responses: '204': description: Response @@ -115102,15 +115144,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: - - *769 + - *770 responses: '200': description: Response content: application/json: - schema: *448 + schema: *450 examples: - default: *449 + default: *451 '403': *27 '404': *6 x-github: @@ -115137,7 +115179,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: - - *769 + - *770 requestBody: required: true content: @@ -115198,7 +115240,7 @@ paths: description: Response content: application/json: - schema: *448 + schema: *450 examples: default: value: @@ -115229,7 +115271,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *769 + - *770 - *17 - *19 responses: @@ -115241,7 +115283,7 @@ paths: type: array items: *301 examples: - response-if-child-teams-exist: *777 + response-if-child-teams-exist: *778 headers: Link: *45 '404': *6 @@ -115274,7 +115316,7 @@ paths: application/json: schema: oneOf: - - &779 + - &780 title: Private User description: Private User type: object @@ -115524,7 +115566,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *778 + - *779 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -115684,7 +115726,7 @@ paths: description: Response content: application/json: - schema: *779 + schema: *780 examples: default: value: @@ -115887,9 +115929,9 @@ paths: type: integer codespaces: type: array - items: *361 + items: *363 examples: - default: *362 + default: *364 '304': *35 '500': *38 '401': *23 @@ -116028,17 +116070,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '401': *23 '403': *27 '404': *6 @@ -116082,7 +116124,7 @@ paths: type: integer secrets: type: array - items: &780 + items: &781 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -116124,7 +116166,7 @@ paths: - visibility - selected_repositories_url examples: - default: *548 + default: *550 headers: Link: *45 x-github: @@ -116202,7 +116244,7 @@ paths: description: Response content: application/json: - schema: *780 + schema: *781 examples: default: value: @@ -116348,7 +116390,7 @@ paths: type: array items: *272 examples: - default: *781 + default: *782 '401': *23 '403': *27 '404': *6 @@ -116492,15 +116534,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: - - *363 + - *365 responses: '200': description: Response content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '304': *35 '500': *38 '401': *23 @@ -116526,7 +116568,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: - - *363 + - *365 requestBody: required: false content: @@ -116556,9 +116598,9 @@ paths: description: Response content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '401': *23 '403': *27 '404': *6 @@ -116580,7 +116622,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: - - *363 + - *365 responses: '202': *37 '304': *35 @@ -116609,13 +116651,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: - - *363 + - *365 responses: '202': description: Response content: application/json: - schema: &782 + schema: &783 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -116668,7 +116710,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &783 + default: &784 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -116700,7 +116742,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *363 + - *365 - name: export_id in: path required: true @@ -116713,9 +116755,9 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: *783 + default: *784 '404': *6 x-github: githubCloudOnly: false @@ -116736,7 +116778,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *363 + - *365 responses: '200': description: Response @@ -116752,9 +116794,9 @@ paths: type: integer machines: type: array - items: *547 + items: *549 examples: - default: *784 + default: *785 '304': *35 '500': *38 '401': *23 @@ -116783,7 +116825,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: - - *363 + - *365 requestBody: required: true content: @@ -116839,11 +116881,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *451 + repository: *453 machine: anyOf: - type: 'null' - - *547 + - *549 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -117640,15 +117682,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: - - *363 + - *365 responses: '200': description: Response content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '304': *35 '500': *38 '400': *14 @@ -117680,15 +117722,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: - - *363 + - *365 responses: '200': description: Response content: application/json: - schema: *361 + schema: *363 examples: - default: *546 + default: *548 '500': *38 '401': *23 '403': *27 @@ -117718,9 +117760,9 @@ paths: application/json: schema: type: array - items: *371 + items: *373 examples: - default: &795 + default: &796 value: - id: 197 name: hello_docker @@ -117821,7 +117863,7 @@ paths: application/json: schema: type: array - items: &785 + items: &786 title: Email description: Email type: object @@ -117891,9 +117933,9 @@ paths: application/json: schema: type: array - items: *785 + items: *786 examples: - default: &797 + default: &798 value: - email: octocat@github.com verified: true @@ -117970,7 +118012,7 @@ paths: application/json: schema: type: array - items: *785 + items: *786 examples: default: value: @@ -118228,7 +118270,7 @@ paths: application/json: schema: type: array - items: &786 + items: &787 title: GPG Key description: A unique encryption key type: object @@ -118373,7 +118415,7 @@ paths: - subkeys - revoked examples: - default: &811 + default: &812 value: - id: 3 name: Octocat's GPG Key @@ -118458,9 +118500,9 @@ paths: description: Response content: application/json: - schema: *786 + schema: *787 examples: - default: &787 + default: &788 value: id: 3 name: Octocat's GPG Key @@ -118517,7 +118559,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: - - &788 + - &789 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -118529,9 +118571,9 @@ paths: description: Response content: application/json: - schema: *786 + schema: *787 examples: - default: *787 + default: *788 '404': *6 '304': *35 '403': *27 @@ -118554,7 +118596,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: - - *788 + - *789 responses: '204': description: Response @@ -118830,12 +118872,12 @@ paths: application/json: schema: anyOf: - - *351 + - *353 - type: object properties: {} additionalProperties: false examples: - default: *352 + default: *354 '204': description: Response when there are no restrictions x-github: @@ -118859,7 +118901,7 @@ paths: required: true content: application/json: - schema: *627 + schema: *628 examples: default: value: @@ -118870,7 +118912,7 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: default: value: @@ -118951,7 +118993,7 @@ paths: - closed - all default: open - - *359 + - *361 - name: sort description: What to sort results by. in: query @@ -118976,7 +119018,7 @@ paths: type: array items: *212 examples: - default: *360 + default: *362 headers: Link: *45 '404': *6 @@ -119009,7 +119051,7 @@ paths: application/json: schema: type: array - items: &789 + items: &790 title: Key description: Key type: object @@ -119112,9 +119154,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *790 examples: - default: &790 + default: &791 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -119147,15 +119189,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: - - *654 + - *655 responses: '200': description: Response content: application/json: - schema: *789 + schema: *790 examples: - default: *790 + default: *791 '404': *6 '304': *35 '403': *27 @@ -119178,7 +119220,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: - - *654 + - *655 responses: '204': description: Response @@ -119211,7 +119253,7 @@ paths: application/json: schema: type: array - items: &791 + items: &792 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -119290,7 +119332,7 @@ paths: - account - plan examples: - default: &792 + default: &793 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -119352,9 +119394,9 @@ paths: application/json: schema: type: array - items: *791 + items: *792 examples: - default: *792 + default: *793 headers: Link: *45 '304': *35 @@ -119394,7 +119436,7 @@ paths: application/json: schema: type: array - items: *364 + items: *366 examples: default: value: @@ -119502,7 +119544,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *366 examples: default: value: @@ -119585,7 +119627,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *366 examples: default: value: @@ -119653,7 +119695,7 @@ paths: application/json: schema: type: array - items: *366 + items: *368 examples: default: value: @@ -119915,7 +119957,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *368 examples: default: value: @@ -120095,7 +120137,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *367 + - *369 - name: exclude in: query required: false @@ -120108,7 +120150,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *368 examples: default: value: @@ -120302,7 +120344,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *367 + - *369 responses: '302': description: Response @@ -120328,7 +120370,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *367 + - *369 responses: '204': description: Response @@ -120357,8 +120399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *367 - - *793 + - *369 + - *794 responses: '204': description: Response @@ -120382,7 +120424,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *367 + - *369 - *17 - *19 responses: @@ -120394,7 +120436,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 '404': *6 @@ -120473,7 +120515,7 @@ paths: - docker - nuget - container - - *794 + - *795 - *19 - *17 responses: @@ -120483,10 +120525,10 @@ paths: application/json: schema: type: array - items: *371 + items: *373 examples: - default: *795 - '400': *796 + default: *796 + '400': *797 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120506,16 +120548,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: - - *373 - - *374 + - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *371 + schema: *373 examples: - default: &812 + default: &813 value: id: 40201 name: octo-name @@ -120628,8 +120670,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: - - *373 - - *374 + - *375 + - *376 responses: '204': description: Response @@ -120659,8 +120701,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: - - *373 - - *374 + - *375 + - *376 - name: token description: package token schema: @@ -120692,8 +120734,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: - - *373 - - *374 + - *375 + - *376 - *19 - *17 - name: state @@ -120713,7 +120755,7 @@ paths: application/json: schema: type: array - items: *375 + items: *377 examples: default: value: @@ -120762,15 +120804,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: - - *373 - - *374 + - *375 - *376 + - *378 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: default: value: @@ -120806,9 +120848,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: - - *373 - - *374 + - *375 - *376 + - *378 responses: '204': description: Response @@ -120838,9 +120880,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: - - *373 - - *374 + - *375 - *376 + - *378 responses: '204': description: Response @@ -120877,9 +120919,9 @@ paths: application/json: schema: type: array - items: *785 + items: *786 examples: - default: *797 + default: *798 headers: Link: *45 '304': *35 @@ -120992,7 +121034,7 @@ paths: type: array items: *76 examples: - default: &804 + default: &805 summary: Default response value: - id: 1296269 @@ -121310,9 +121352,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *453 + default: *455 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -121350,9 +121392,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: *798 + default: *799 headers: Link: *45 '304': *35 @@ -121375,7 +121417,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *355 + - *357 responses: '204': description: Response @@ -121398,7 +121440,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *355 + - *357 responses: '204': description: Response @@ -121431,7 +121473,7 @@ paths: application/json: schema: type: array - items: &799 + items: &800 title: Social account description: Social media account type: object @@ -121448,7 +121490,7 @@ paths: - provider - url examples: - default: &800 + default: &801 value: - provider: twitter url: https://twitter.com/github @@ -121511,9 +121553,9 @@ paths: application/json: schema: type: array - items: *799 + items: *800 examples: - default: *800 + default: *801 '422': *15 '304': *35 '404': *6 @@ -121601,7 +121643,7 @@ paths: application/json: schema: type: array - items: &801 + items: &802 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -121621,7 +121663,7 @@ paths: - title - created_at examples: - default: &825 + default: &826 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -121686,9 +121728,9 @@ paths: description: Response content: application/json: - schema: *801 + schema: *802 examples: - default: &802 + default: &803 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -121718,7 +121760,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: - - &803 + - &804 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -121730,9 +121772,9 @@ paths: description: Response content: application/json: - schema: *801 + schema: *802 examples: - default: *802 + default: *803 '404': *6 '304': *35 '403': *27 @@ -121755,7 +121797,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: - - *803 + - *804 responses: '204': description: Response @@ -121784,7 +121826,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: - - &826 + - &827 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 @@ -121809,11 +121851,11 @@ paths: type: array items: *76 examples: - default-response: *804 + default-response: *805 application/vnd.github.v3.star+json: schema: type: array - items: &827 + items: &828 title: Starred Repository description: Starred Repository type: object @@ -121969,8 +122011,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response if this repository is starred by you @@ -121998,8 +122040,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -122023,8 +122065,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: - - *446 - - *447 + - *448 + - *449 responses: '204': description: Response @@ -122059,7 +122101,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 '304': *35 @@ -122096,7 +122138,7 @@ paths: application/json: schema: type: array - items: *429 + items: *431 examples: default: value: @@ -122182,10 +122224,10 @@ paths: application/json: schema: oneOf: + - *780 - *779 - - *778 examples: - default-response: &806 + default-response: &807 summary: Default response value: login: octocat @@ -122220,7 +122262,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &807 + response-with-git-hub-plan-information: &808 summary: Response with GitHub plan information value: login: octocat @@ -122283,7 +122325,7 @@ paths: required: true schema: type: string - - *389 + - *391 requestBody: required: true description: Details of the draft item to create in the project. @@ -122317,9 +122359,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *396 examples: - draft_issue: *395 + draft_issue: *397 '304': *35 '403': *27 '401': *23 @@ -122342,7 +122384,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *805 + - *806 - *17 responses: '200': @@ -122391,11 +122433,11 @@ paths: application/json: schema: oneOf: + - *780 - *779 - - *778 examples: - default-response: *806 - response-with-git-hub-plan-information: *807 + default-response: *807 + response-with-git-hub-plan-information: *808 '404': *6 x-github: githubCloudOnly: false @@ -122445,8 +122487,8 @@ paths: required: - subject_digests examples: - default: *808 - withPredicateType: *809 + default: *809 + withPredicateType: *810 responses: '200': description: Response @@ -122500,7 +122542,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *810 + default: *811 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -122705,7 +122747,7 @@ paths: initiator: type: string examples: - default: *493 + default: *495 '201': description: Response content: @@ -122744,9 +122786,9 @@ paths: application/json: schema: type: array - items: *371 + items: *373 examples: - default: *795 + default: *796 '403': *27 '401': *23 x-github: @@ -123130,9 +123172,9 @@ paths: application/json: schema: type: array - items: *786 + items: *787 examples: - default: *811 + default: *812 headers: Link: *45 x-github: @@ -123236,7 +123278,7 @@ paths: application/json: schema: *20 examples: - default: *626 + default: *627 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123361,7 +123403,7 @@ paths: - docker - nuget - container - - *794 + - *795 - *136 - *19 - *17 @@ -123372,12 +123414,12 @@ paths: application/json: schema: type: array - items: *371 + items: *373 examples: - default: *795 + default: *796 '403': *27 '401': *23 - '400': *796 + '400': *797 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123397,17 +123439,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *373 - - *374 + - *375 + - *376 - *136 responses: '200': description: Response content: application/json: - schema: *371 + schema: *373 examples: - default: *812 + default: *813 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123428,8 +123470,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *373 - - *374 + - *375 + - *376 - *136 responses: '204': @@ -123462,8 +123504,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *373 - - *374 + - *375 + - *376 - *136 - name: token description: package token @@ -123496,8 +123538,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: - - *373 - - *374 + - *375 + - *376 - *136 responses: '200': @@ -123506,7 +123548,7 @@ paths: application/json: schema: type: array - items: *375 + items: *377 examples: default: value: @@ -123564,16 +123606,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: - - *373 - - *374 + - *375 - *376 + - *378 - *136 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: default: value: @@ -123608,10 +123650,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *373 - - *374 - - *136 + - *375 - *376 + - *136 + - *378 responses: '204': description: Response @@ -123643,10 +123685,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *373 - - *374 - - *136 + - *375 - *376 + - *136 + - *378 responses: '204': description: Response @@ -123687,9 +123729,9 @@ paths: application/json: schema: type: array - items: *387 + items: *389 examples: - default: *388 + default: *390 headers: Link: *45 '304': *35 @@ -123711,16 +123753,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *389 + - *391 - *136 responses: '200': description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: *388 + default: *390 headers: Link: *45 '304': *35 @@ -123742,7 +123784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *389 + - *391 - *136 - *17 - *106 @@ -123754,9 +123796,9 @@ paths: application/json: schema: type: array - items: *392 + items: *394 examples: - default: *813 + default: *814 headers: Link: *45 '304': *35 @@ -123778,7 +123820,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#add-field-to-user-owned-project parameters: - *136 - - *389 + - *391 requestBody: required: true content: @@ -123816,7 +123858,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *814 + items: *815 required: - name - data_type @@ -123832,7 +123874,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *815 + iteration_configuration: *816 required: - name - data_type @@ -123854,20 +123896,20 @@ paths: value: name: Due date data_type: date - single_select_field: *816 - iteration_field: *817 + single_select_field: *817 + iteration_field: *818 responses: '201': description: Response content: application/json: - schema: *392 + schema: *394 examples: - text_field: *818 - number_field: *819 - date_field: *820 - single_select_field: *821 - iteration_field: *822 + text_field: *819 + number_field: *820 + date_field: *821 + single_select_field: *822 + iteration_field: *823 '304': *35 '403': *27 '401': *23 @@ -123888,17 +123930,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *389 - - *823 + - *391 + - *824 - *136 responses: '200': description: Response content: application/json: - schema: *392 + schema: *394 examples: - default: *824 + default: *825 headers: Link: *45 '304': *35 @@ -123921,7 +123963,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: - - *389 + - *391 - *136 - *106 - *107 @@ -123954,9 +123996,9 @@ paths: application/json: schema: type: array - items: *396 + items: *398 examples: - default: *397 + default: *399 headers: Link: *45 '304': *35 @@ -123978,7 +124020,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - *136 - - *389 + - *391 requestBody: required: true description: Details of the item to add to the project. @@ -124015,10 +124057,10 @@ paths: description: Response content: application/json: - schema: *394 + schema: *396 examples: - issue: *395 - pull_request: *395 + issue: *397 + pull_request: *397 '304': *35 '403': *27 '401': *23 @@ -124038,9 +124080,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: - - *389 + - *391 - *136 - - *398 + - *400 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -124060,9 +124102,9 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: - default: *397 + default: *399 headers: Link: *45 '304': *35 @@ -124083,9 +124125,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *389 + - *391 - *136 - - *398 + - *400 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -124158,13 +124200,13 @@ paths: description: Response content: application/json: - schema: *396 + schema: *398 examples: - text_field: *397 - number_field: *397 - date_field: *397 - single_select_field: *397 - iteration_field: *397 + text_field: *399 + number_field: *399 + date_field: *399 + single_select_field: *399 + iteration_field: *399 '401': *23 '403': *27 '404': *6 @@ -124184,9 +124226,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *389 + - *391 - *136 - - *398 + - *400 responses: '204': description: Response @@ -124406,7 +124448,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -124436,9 +124478,9 @@ paths: application/json: schema: type: array - items: *799 + items: *800 examples: - default: *800 + default: *801 headers: Link: *45 x-github: @@ -124468,9 +124510,9 @@ paths: application/json: schema: type: array - items: *801 + items: *802 examples: - default: *825 + default: *826 headers: Link: *45 x-github: @@ -124495,7 +124537,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *136 - - *826 + - *827 - *108 - *17 - *19 @@ -124507,11 +124549,11 @@ paths: schema: anyOf: - type: array - items: *827 + items: *828 - type: array items: *76 examples: - default-response: *804 + default-response: *805 headers: Link: *45 x-github: @@ -124542,7 +124584,7 @@ paths: type: array items: *272 examples: - default: *377 + default: *379 headers: Link: *45 x-github: @@ -124671,7 +124713,7 @@ webhooks: type: string enum: - disabled - enterprise: &828 + enterprise: &829 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -124740,7 +124782,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &829 + installation: &830 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -124761,7 +124803,7 @@ webhooks: required: - id - node_id - organization: &830 + organization: &831 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -124834,7 +124876,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &831 + repository: &832 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -125747,10 +125789,10 @@ webhooks: type: string enum: - enabled - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -125826,11 +125868,11 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - rule: &832 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + rule: &833 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) @@ -126053,11 +126095,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - rule: *832 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + rule: *833 sender: *4 required: - action @@ -126245,11 +126287,11 @@ webhooks: - everyone required: - from - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - rule: *832 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + rule: *833 sender: *4 required: - action @@ -126322,7 +126364,7 @@ webhooks: required: true content: application/json: - schema: &852 + schema: &853 title: Exemption request cancellation event type: object properties: @@ -126330,11 +126372,11 @@ webhooks: type: string enum: - cancelled - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - exemption_request: &833 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + exemption_request: &834 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -126608,7 +126650,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &834 + items: &835 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -126720,7 +126762,7 @@ webhooks: required: true content: application/json: - schema: &853 + schema: &854 title: Exemption request completed event type: object properties: @@ -126728,11 +126770,11 @@ webhooks: type: string enum: - completed - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - exemption_request: *833 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + exemption_request: *834 sender: *4 required: - action @@ -126804,7 +126846,7 @@ webhooks: required: true content: application/json: - schema: &850 + schema: &851 title: Exemption request created event type: object properties: @@ -126812,11 +126854,11 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - exemption_request: *833 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + exemption_request: *834 sender: *4 required: - action @@ -126888,7 +126930,7 @@ webhooks: required: true content: application/json: - schema: &854 + schema: &855 title: Exemption response dismissed event type: object properties: @@ -126896,12 +126938,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - exemption_request: *833 - exemption_response: *834 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + exemption_request: *834 + exemption_response: *835 sender: *4 required: - action @@ -126975,7 +127017,7 @@ webhooks: required: true content: application/json: - schema: &851 + schema: &852 title: Exemption response submitted event type: object properties: @@ -126983,12 +127025,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - exemption_request: *833 - exemption_response: *834 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + exemption_request: *834 + exemption_response: *835 sender: *4 required: - action @@ -127072,7 +127114,7 @@ webhooks: type: string enum: - completed - check_run: &836 + check_run: &837 title: CheckRun description: A check performed on the code of a given code change type: object @@ -127182,7 +127224,7 @@ webhooks: - examples: - neutral - deployment: *835 + deployment: *836 details_url: type: string examples: @@ -127280,10 +127322,10 @@ webhooks: - output - app - pull_requests - installation: *829 - enterprise: *828 - organization: *830 - repository: *831 + installation: *830 + enterprise: *829 + organization: *831 + repository: *832 sender: *4 required: - check_run @@ -127676,11 +127718,11 @@ webhooks: type: string enum: - created - check_run: *836 - installation: *829 - enterprise: *828 - organization: *830 - repository: *831 + check_run: *837 + installation: *830 + enterprise: *829 + organization: *831 + repository: *832 sender: *4 required: - check_run @@ -128076,11 +128118,11 @@ webhooks: type: string enum: - requested_action - check_run: *836 - installation: *829 - enterprise: *828 - organization: *830 - repository: *831 + check_run: *837 + installation: *830 + enterprise: *829 + organization: *831 + repository: *832 requested_action: description: The action requested by the user. type: object @@ -128485,11 +128527,11 @@ webhooks: type: string enum: - rerequested - check_run: *836 - installation: *829 - enterprise: *828 - organization: *830 - repository: *831 + check_run: *837 + installation: *830 + enterprise: *829 + organization: *831 + repository: *832 sender: *4 required: - check_run @@ -129481,10 +129523,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -130193,10 +130235,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -130899,10 +130941,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -131071,7 +131113,7 @@ webhooks: required: - login - id - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131223,20 +131265,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &837 + commit_oid: &838 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: *828 - installation: *829 - organization: *830 - ref: &838 + enterprise: *829 + installation: *830 + organization: *831 + ref: &839 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: *831 + repository: *832 sender: *4 required: - action @@ -131403,7 +131445,7 @@ webhooks: required: - login - id - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131644,12 +131686,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *837 - enterprise: *828 - installation: *829 - organization: *830 - ref: *838 - repository: *831 + commit_oid: *838 + enterprise: *829 + installation: *830 + organization: *831 + ref: *839 + repository: *832 sender: *4 required: - action @@ -131747,7 +131789,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131932,12 +131974,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *837 - enterprise: *828 - installation: *829 - organization: *830 - ref: *838 - repository: *831 + commit_oid: *838 + enterprise: *829 + installation: *830 + organization: *831 + ref: *839 + repository: *832 sender: *4 required: - action @@ -132106,7 +132148,7 @@ webhooks: required: - login - id - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132283,12 +132325,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *837 - enterprise: *828 - installation: *829 - organization: *830 - ref: *838 - repository: *831 + commit_oid: *838 + enterprise: *829 + installation: *830 + organization: *831 + ref: *839 + repository: *832 sender: *4 required: - action @@ -132389,7 +132431,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132578,9 +132620,9 @@ webhooks: type: - string - 'null' - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -132588,7 +132630,7 @@ webhooks: type: - string - 'null' - repository: *831 + repository: *832 sender: *4 required: - action @@ -132687,7 +132729,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *521 + dismissed_comment: *523 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132834,12 +132876,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *837 - enterprise: *828 - installation: *829 - organization: *830 - ref: *838 - repository: *831 + commit_oid: *838 + enterprise: *829 + installation: *830 + organization: *831 + ref: *839 + repository: *832 sender: *4 required: - action @@ -133101,10 +133143,10 @@ webhooks: - updated_at - author_association - body - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -133185,18 +133227,18 @@ webhooks: type: - string - 'null' - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *830 - pusher_type: &839 + organization: *831 + pusher_type: &840 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &840 + ref: &841 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -133206,7 +133248,7 @@ webhooks: enum: - tag - branch - repository: *831 + repository: *832 sender: *4 required: - ref @@ -133289,9 +133331,9 @@ webhooks: enum: - created definition: *150 - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 required: - action @@ -133376,9 +133418,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 required: - action @@ -133456,9 +133498,9 @@ webhooks: enum: - promote_to_enterprise definition: *150 - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 required: - action @@ -133536,9 +133578,9 @@ webhooks: enum: - updated definition: *150 - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 required: - action @@ -133615,10 +133657,10 @@ webhooks: type: string enum: - updated - enterprise: *828 - installation: *829 - repository: *831 - organization: *830 + enterprise: *829 + installation: *830 + repository: *832 + organization: *831 sender: *4 new_property_values: type: array @@ -133703,18 +133745,18 @@ webhooks: title: delete event type: object properties: - enterprise: *828 - installation: *829 - organization: *830 - pusher_type: *839 - ref: *840 + enterprise: *829 + installation: *830 + organization: *831 + pusher_type: *840 + ref: *841 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *831 + repository: *832 sender: *4 required: - ref @@ -133798,11 +133840,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -133886,11 +133928,11 @@ webhooks: type: string enum: - auto_reopened - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -133974,11 +134016,11 @@ webhooks: type: string enum: - created - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -134060,11 +134102,11 @@ webhooks: type: string enum: - dismissed - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -134146,11 +134188,11 @@ webhooks: type: string enum: - fixed - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -134233,11 +134275,11 @@ webhooks: type: string enum: - reintroduced - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -134319,11 +134361,11 @@ webhooks: type: string enum: - reopened - alert: *574 - installation: *829 - organization: *830 - enterprise: *828 - repository: *831 + alert: *576 + installation: *830 + organization: *831 + enterprise: *829 + repository: *832 sender: *4 required: - action @@ -134400,9 +134442,9 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - key: &841 + enterprise: *829 + installation: *830 + key: &842 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -134440,8 +134482,8 @@ webhooks: - verified - created_at - read_only - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -134518,11 +134560,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - key: *841 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + key: *842 + organization: *831 + repository: *832 sender: *4 required: - action @@ -135094,12 +135136,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - workflow: &845 + workflow: &846 title: Workflow type: - object @@ -135837,13 +135879,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *580 + deployment: *582 pull_requests: type: array - items: *674 - repository: *831 - organization: *830 - installation: *829 + items: *675 + repository: *832 + organization: *831 + installation: *830 sender: *4 responses: '200': @@ -135914,7 +135956,7 @@ webhooks: type: string enum: - approved - approver: &842 + approver: &843 type: object properties: avatar_url: @@ -135957,11 +135999,11 @@ webhooks: type: string comment: type: string - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - reviewers: &843 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + reviewers: &844 type: array items: type: object @@ -136042,7 +136084,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &844 + workflow_job_run: &845 type: object properties: conclusion: @@ -136788,18 +136830,18 @@ webhooks: type: string enum: - rejected - approver: *842 + approver: *843 comment: type: string - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - reviewers: *843 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + reviewers: *844 sender: *4 since: type: string - workflow_job_run: *844 + workflow_job_run: *845 workflow_job_runs: type: array items: @@ -137516,13 +137558,13 @@ webhooks: type: string enum: - requested - enterprise: *828 + enterprise: *829 environment: type: string - installation: *829 - organization: *830 - repository: *831 - requestor: &855 + installation: *830 + organization: *831 + repository: *832 + requestor: &856 title: User type: - object @@ -139465,12 +139507,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - workflow: *845 + workflow: *846 workflow_run: title: Deployment Workflow Run type: @@ -140161,7 +140203,7 @@ webhooks: type: string enum: - answered - answer: &848 + answer: &849 type: object properties: author_association: @@ -140321,11 +140363,11 @@ webhooks: - created_at - updated_at - body - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -140452,11 +140494,11 @@ webhooks: - from required: - category - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -140539,11 +140581,11 @@ webhooks: type: string enum: - closed - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -140625,7 +140667,7 @@ webhooks: type: string enum: - created - comment: &847 + comment: &848 type: object properties: author_association: @@ -140785,11 +140827,11 @@ webhooks: - updated_at - body - reactions - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -140872,12 +140914,12 @@ webhooks: type: string enum: - deleted - comment: *847 - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + comment: *848 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -140972,12 +141014,12 @@ webhooks: - from required: - body - comment: *847 - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + comment: *848 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141061,11 +141103,11 @@ webhooks: type: string enum: - created - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141147,11 +141189,11 @@ webhooks: type: string enum: - deleted - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141251,11 +141293,11 @@ webhooks: type: string required: - from - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141337,10 +141379,10 @@ webhooks: type: string enum: - labeled - discussion: *846 - enterprise: *828 - installation: *829 - label: &849 + discussion: *847 + enterprise: *829 + installation: *830 + label: &850 title: Label type: object properties: @@ -141373,8 +141415,8 @@ webhooks: - color - default - description - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141457,11 +141499,11 @@ webhooks: type: string enum: - locked - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141543,11 +141585,11 @@ webhooks: type: string enum: - pinned - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141629,11 +141671,11 @@ webhooks: type: string enum: - reopened - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141718,16 +141760,16 @@ webhooks: changes: type: object properties: - new_discussion: *846 - new_repository: *831 + new_discussion: *847 + new_repository: *832 required: - new_discussion - new_repository - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141810,10 +141852,10 @@ webhooks: type: string enum: - unanswered - discussion: *846 - old_answer: *848 - organization: *830 - repository: *831 + discussion: *847 + old_answer: *849 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141895,12 +141937,12 @@ webhooks: type: string enum: - unlabeled - discussion: *846 - enterprise: *828 - installation: *829 - label: *849 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -141983,11 +142025,11 @@ webhooks: type: string enum: - unlocked - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -142069,11 +142111,11 @@ webhooks: type: string enum: - unpinned - discussion: *846 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + discussion: *847 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -142142,7 +142184,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142205,7 +142247,7 @@ webhooks: required: true content: application/json: - schema: *851 + schema: *852 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142268,7 +142310,7 @@ webhooks: required: true content: application/json: - schema: *852 + schema: *853 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142331,7 +142373,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142394,7 +142436,7 @@ webhooks: required: true content: application/json: - schema: *851 + schema: *852 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142460,7 +142502,7 @@ webhooks: required: true content: application/json: - schema: *852 + schema: *853 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142526,7 +142568,7 @@ webhooks: required: true content: application/json: - schema: *853 + schema: *854 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142592,7 +142634,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142658,7 +142700,7 @@ webhooks: required: true content: application/json: - schema: *854 + schema: *855 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142724,7 +142766,7 @@ webhooks: required: true content: application/json: - schema: *851 + schema: *852 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142789,7 +142831,7 @@ webhooks: required: true content: application/json: - schema: *852 + schema: *853 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142854,7 +142896,7 @@ webhooks: required: true content: application/json: - schema: *853 + schema: *854 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142919,7 +142961,7 @@ webhooks: required: true content: application/json: - schema: *850 + schema: *851 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142984,7 +143026,7 @@ webhooks: required: true content: application/json: - schema: *854 + schema: *855 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143050,7 +143092,7 @@ webhooks: required: true content: application/json: - schema: *851 + schema: *852 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143117,7 +143159,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *828 + enterprise: *829 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -143795,9 +143837,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - forkee @@ -143943,9 +143985,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pages: description: The pages that were updated. type: array @@ -143983,7 +144025,7 @@ webhooks: - action - sha - html_url - repository: *831 + repository: *832 sender: *4 required: - pages @@ -144059,10 +144101,10 @@ webhooks: type: string enum: - created - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories: &856 + organization: *831 + repositories: &857 description: An array of repository objects that the installation can access. type: array @@ -144088,8 +144130,8 @@ webhooks: - name - full_name - private - repository: *831 - requester: *855 + repository: *832 + requester: *856 sender: *4 required: - action @@ -144164,11 +144206,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories: *856 - repository: *831 + organization: *831 + repositories: *857 + repository: *832 requester: type: - 'null' @@ -144245,11 +144287,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories: *856 - repository: *831 + organization: *831 + repositories: *857 + repository: *832 requester: type: - 'null' @@ -144326,10 +144368,10 @@ webhooks: type: string enum: - added - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories_added: &857 + organization: *831 + repositories_added: &858 description: An array of repository objects, which were added to the installation. type: array @@ -144375,15 +144417,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *831 - repository_selection: &858 + repository: *832 + repository_selection: &859 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *855 + requester: *856 sender: *4 required: - action @@ -144462,10 +144504,10 @@ webhooks: type: string enum: - removed - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories_added: *857 + organization: *831 + repositories_added: *858 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -144492,9 +144534,9 @@ webhooks: - name - full_name - private - repository: *831 - repository_selection: *858 - requester: *855 + repository: *832 + repository_selection: *859 + requester: *856 sender: *4 required: - action @@ -144573,11 +144615,11 @@ webhooks: type: string enum: - suspend - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories: *856 - repository: *831 + organization: *831 + repositories: *857 + repository: *832 requester: type: - 'null' @@ -144760,10 +144802,10 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 target_type: type: string @@ -144842,11 +144884,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *828 + enterprise: *829 installation: *20 - organization: *830 - repositories: *856 - repository: *831 + organization: *831 + repositories: *857 + repository: *832 requester: type: - 'null' @@ -145094,8 +145136,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -145912,8 +145954,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145930,7 +145972,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -146274,8 +146316,8 @@ webhooks: - state - locked - assignee - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -146355,7 +146397,7 @@ webhooks: type: string enum: - deleted - comment: &859 + comment: &860 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -146522,8 +146564,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147336,8 +147378,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147354,7 +147396,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -147700,8 +147742,8 @@ webhooks: - state - locked - assignee - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -147781,7 +147823,7 @@ webhooks: type: string enum: - edited - changes: &883 + changes: &884 description: The changes to the comment. type: object properties: @@ -147793,9 +147835,9 @@ webhooks: type: string required: - from - comment: *859 - enterprise: *828 - installation: *829 + comment: *860 + enterprise: *829 + installation: *830 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148611,8 +148653,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148629,7 +148671,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -148973,8 +149015,8 @@ webhooks: - state - locked - assignee - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -149064,9 +149106,9 @@ webhooks: type: number blocking_issue: *212 blocking_issue_repo: *76 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -149155,9 +149197,9 @@ webhooks: type: number blocking_issue: *212 blocking_issue_repo: *76 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -149245,9 +149287,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -149336,9 +149378,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -149418,10 +149460,10 @@ webhooks: type: string enum: - assigned - assignee: *855 - enterprise: *828 - installation: *829 - issue: &862 + assignee: *856 + enterprise: *829 + installation: *830 + issue: &863 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -150233,11 +150275,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150254,7 +150296,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -150357,8 +150399,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -150438,8 +150480,8 @@ webhooks: type: string enum: - closed - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -151256,11 +151298,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151277,7 +151319,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -151523,8 +151565,8 @@ webhooks: required: - state - closed_at - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -151603,8 +151645,8 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152412,11 +152454,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152433,7 +152475,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -152535,8 +152577,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -152615,8 +152657,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153447,11 +153489,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153468,7 +153510,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -153549,7 +153591,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &860 + milestone: &861 title: Milestone description: A collection of related issues and pull requests. type: object @@ -153692,8 +153734,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -153792,8 +153834,8 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154605,11 +154647,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154623,7 +154665,7 @@ webhooks: timeline_url: type: string format: uri - type: *356 + type: *358 title: description: Title of the issue type: string @@ -154729,9 +154771,9 @@ webhooks: - active_lock_reason - body - reactions - label: *849 - organization: *830 - repository: *831 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -154811,8 +154853,8 @@ webhooks: type: string enum: - labeled - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155623,11 +155665,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155641,7 +155683,7 @@ webhooks: timeline_url: type: string format: uri - type: *356 + type: *358 title: description: Title of the issue type: string @@ -155747,9 +155789,9 @@ webhooks: - active_lock_reason - body - reactions - label: *849 - organization: *830 - repository: *831 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -155829,8 +155871,8 @@ webhooks: type: string enum: - locked - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156666,11 +156708,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156684,7 +156726,7 @@ webhooks: timeline_url: type: string format: uri - type: *356 + type: *358 title: description: Title of the issue type: string @@ -156767,8 +156809,8 @@ webhooks: format: uri user_view_type: type: string - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -156847,8 +156889,8 @@ webhooks: type: string enum: - milestoned - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157678,11 +157720,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157699,7 +157741,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -157779,9 +157821,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *860 - organization: *830 - repository: *831 + milestone: *861 + organization: *831 + repository: *832 sender: *4 required: - action @@ -158673,11 +158715,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158773,7 +158815,7 @@ webhooks: required: - login - id - type: *356 + type: *358 required: - id - number @@ -159254,8 +159296,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160067,11 +160109,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160088,7 +160130,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -160190,8 +160232,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -160271,9 +160313,9 @@ webhooks: type: string enum: - pinned - enterprise: *828 - installation: *829 - issue: &861 + enterprise: *829 + installation: *830 + issue: &862 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -161079,11 +161121,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161100,7 +161142,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -161202,8 +161244,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -161282,8 +161324,8 @@ webhooks: type: string enum: - reopened - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162117,11 +162159,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162218,9 +162260,9 @@ webhooks: format: uri user_view_type: type: string - type: *356 - organization: *830 - repository: *831 + type: *358 + organization: *831 + repository: *832 sender: *4 required: - action @@ -163109,11 +163151,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163130,7 +163172,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -163712,11 +163754,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *828 - installation: *829 - issue: *861 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *862 + organization: *831 + repository: *832 sender: *4 required: - action @@ -163796,12 +163838,12 @@ webhooks: type: string enum: - typed - enterprise: *828 - installation: *829 - issue: *862 - type: *356 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *863 + type: *358 + organization: *831 + repository: *832 sender: *4 required: - action @@ -163882,7 +163924,7 @@ webhooks: type: string enum: - unassigned - assignee: &886 + assignee: &887 title: User type: - object @@ -163954,11 +163996,11 @@ webhooks: required: - login - id - enterprise: *828 - installation: *829 - issue: *862 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *863 + organization: *831 + repository: *832 sender: *4 required: - action @@ -164037,12 +164079,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *828 - installation: *829 - issue: *862 - label: *849 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *863 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -164122,8 +164164,8 @@ webhooks: type: string enum: - unlocked - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -164957,11 +164999,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *766 - issue_dependencies_summary: *767 + sub_issues_summary: *767 + issue_dependencies_summary: *768 issue_field_values: type: array - items: *768 + items: *769 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164978,7 +165020,7 @@ webhooks: title: description: Title of the issue type: string - type: *356 + type: *358 updated_at: type: string format: date-time @@ -165058,8 +165100,8 @@ webhooks: format: uri user_view_type: type: string - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165139,11 +165181,11 @@ webhooks: type: string enum: - unpinned - enterprise: *828 - installation: *829 - issue: *861 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *862 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165222,12 +165264,12 @@ webhooks: type: string enum: - untyped - enterprise: *828 - installation: *829 - issue: *862 - type: *356 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + issue: *863 + type: *358 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165307,11 +165349,11 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - label: *849 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165389,11 +165431,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - label: *849 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165503,11 +165545,11 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - label: *849 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + label: *850 + organization: *831 + repository: *832 sender: *4 required: - action @@ -165589,9 +165631,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *828 - installation: *829 - marketplace_purchase: &863 + enterprise: *829 + installation: *830 + marketplace_purchase: &864 title: Marketplace Purchase type: object required: @@ -165679,8 +165721,8 @@ webhooks: type: integer unit_count: type: integer - organization: *830 - previous_marketplace_purchase: &864 + organization: *831 + previous_marketplace_purchase: &865 title: Marketplace Purchase type: object properties: @@ -165764,7 +165806,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *831 + repository: *832 sender: *4 required: - action @@ -165844,10 +165886,10 @@ webhooks: - changed effective_date: type: string - enterprise: *828 - installation: *829 - marketplace_purchase: *863 - organization: *830 + enterprise: *829 + installation: *830 + marketplace_purchase: *864 + organization: *831 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165935,7 +165977,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *831 + repository: *832 sender: *4 required: - action @@ -166017,10 +166059,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *828 - installation: *829 - marketplace_purchase: *863 - organization: *830 + enterprise: *829 + installation: *830 + marketplace_purchase: *864 + organization: *831 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -166106,7 +166148,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *831 + repository: *832 sender: *4 required: - action @@ -166187,8 +166229,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 marketplace_purchase: title: Marketplace Purchase type: object @@ -166274,9 +166316,9 @@ webhooks: type: integer unit_count: type: integer - organization: *830 - previous_marketplace_purchase: *864 - repository: *831 + organization: *831 + previous_marketplace_purchase: *865 + repository: *832 sender: *4 required: - action @@ -166356,12 +166398,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *828 - installation: *829 - marketplace_purchase: *863 - organization: *830 - previous_marketplace_purchase: *864 - repository: *831 + enterprise: *829 + installation: *830 + marketplace_purchase: *864 + organization: *831 + previous_marketplace_purchase: *865 + repository: *832 sender: *4 required: - action @@ -166463,11 +166505,11 @@ webhooks: type: string required: - to - enterprise: *828 - installation: *829 - member: *855 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + member: *856 + organization: *831 + repository: *832 sender: *4 required: - action @@ -166569,11 +166611,11 @@ webhooks: type: - string - 'null' - enterprise: *828 - installation: *829 - member: *855 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + member: *856 + organization: *831 + repository: *832 sender: *4 required: - action @@ -166652,11 +166694,11 @@ webhooks: type: string enum: - removed - enterprise: *828 - installation: *829 - member: *855 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + member: *856 + organization: *831 + repository: *832 sender: *4 required: - action @@ -166734,11 +166776,11 @@ webhooks: type: string enum: - added - enterprise: *828 - installation: *829 - member: *855 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + member: *856 + organization: *831 + repository: *832 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166816,7 +166858,7 @@ webhooks: required: - login - id - team: &865 + team: &866 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -167046,11 +167088,11 @@ webhooks: type: string enum: - removed - enterprise: *828 - installation: *829 - member: *855 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + member: *856 + organization: *831 + repository: *832 scope: description: The scope of the membership. Currently, can only be `team`. @@ -167129,7 +167171,7 @@ webhooks: required: - login - id - team: *865 + team: *866 required: - action - scope @@ -167211,8 +167253,8 @@ webhooks: type: string enum: - checks_requested - installation: *829 - merge_group: &866 + installation: *830 + merge_group: &867 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -167231,15 +167273,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *513 + head_commit: *515 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -167325,10 +167367,10 @@ webhooks: - merged - invalidated - dequeued - installation: *829 - merge_group: *866 - organization: *830 - repository: *831 + installation: *830 + merge_group: *867 + organization: *831 + repository: *832 sender: *4 required: - action @@ -167401,7 +167443,7 @@ webhooks: type: string enum: - deleted - enterprise: *828 + enterprise: *829 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -167510,12 +167552,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *829 - organization: *830 + installation: *830 + organization: *831 repository: anyOf: - type: 'null' - - *831 + - *832 sender: *4 required: - action @@ -167595,11 +167637,11 @@ webhooks: type: string enum: - closed - enterprise: *828 - installation: *829 - milestone: *860 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + milestone: *861 + organization: *831 + repository: *832 sender: *4 required: - action @@ -167678,9 +167720,9 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - milestone: &867 + enterprise: *829 + installation: *830 + milestone: &868 title: Milestone description: A collection of related issues and pull requests. type: object @@ -167822,8 +167864,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -167902,11 +167944,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - milestone: *860 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + milestone: *861 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168016,11 +168058,11 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - milestone: *860 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + milestone: *861 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168100,11 +168142,11 @@ webhooks: type: string enum: - opened - enterprise: *828 - installation: *829 - milestone: *867 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + milestone: *868 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168183,11 +168225,11 @@ webhooks: type: string enum: - blocked - blocked_user: *855 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + blocked_user: *856 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168266,11 +168308,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *855 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + blocked_user: *856 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168346,7 +168388,7 @@ webhooks: enum: - created definition: *144 - enterprise: *828 + enterprise: *829 sender: *4 required: - action @@ -168426,8 +168468,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 sender: *4 required: - action @@ -168500,8 +168542,8 @@ webhooks: enum: - updated definition: *144 - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 sender: *4 required: - action @@ -168573,9 +168615,9 @@ webhooks: type: string enum: - updated - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 new_property_values: type: array @@ -168663,9 +168705,9 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - membership: &868 + enterprise: *829 + installation: *830 + membership: &869 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -168775,8 +168817,8 @@ webhooks: - role - organization_url - user - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168854,11 +168896,11 @@ webhooks: type: string enum: - member_added - enterprise: *828 - installation: *829 - membership: *868 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + membership: *869 + organization: *831 + repository: *832 sender: *4 required: - action @@ -168937,8 +168979,8 @@ webhooks: type: string enum: - member_invited - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -169060,10 +169102,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 - user: *855 + user: *856 required: - action - invitation @@ -169141,11 +169183,11 @@ webhooks: type: string enum: - member_removed - enterprise: *828 - installation: *829 - membership: *868 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + membership: *869 + organization: *831 + repository: *832 sender: *4 required: - action @@ -169232,11 +169274,11 @@ webhooks: properties: from: type: string - enterprise: *828 - installation: *829 - membership: *868 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + membership: *869 + organization: *831 + repository: *832 sender: *4 required: - action @@ -169312,9 +169354,9 @@ webhooks: type: string enum: - published - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 package: description: Information about the package. type: object @@ -169837,7 +169879,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &869 + items: &870 title: Ruby Gems metadata type: object properties: @@ -169934,7 +169976,7 @@ webhooks: - owner - package_version - registry - repository: *831 + repository: *832 sender: *4 required: - action @@ -170010,9 +170052,9 @@ webhooks: type: string enum: - updated - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 package: description: Information about the package. type: object @@ -170374,7 +170416,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *869 + items: *870 source_url: type: string format: uri @@ -170445,7 +170487,7 @@ webhooks: - owner - package_version - registry - repository: *831 + repository: *832 sender: *4 required: - action @@ -170626,12 +170668,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *828 + enterprise: *829 id: type: integer - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - id @@ -170708,7 +170750,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &870 + personal_access_token_request: &871 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -170858,10 +170900,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *828 - organization: *830 + enterprise: *829 + organization: *831 sender: *4 - installation: *829 + installation: *830 required: - action - personal_access_token_request @@ -170938,11 +170980,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *870 - enterprise: *828 - organization: *830 + personal_access_token_request: *871 + enterprise: *829 + organization: *831 sender: *4 - installation: *829 + installation: *830 required: - action - personal_access_token_request @@ -171018,11 +171060,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *870 - enterprise: *828 - organization: *830 + personal_access_token_request: *871 + enterprise: *829 + organization: *831 sender: *4 - installation: *829 + installation: *830 required: - action - personal_access_token_request @@ -171097,11 +171139,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *870 - organization: *830 - enterprise: *828 + personal_access_token_request: *871 + organization: *831 + enterprise: *829 sender: *4 - installation: *829 + installation: *830 required: - action - personal_access_token_request @@ -171206,7 +171248,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *871 + last_response: *872 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -171238,8 +171280,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 zen: description: Random string of GitHub zen. @@ -171484,10 +171526,10 @@ webhooks: - from required: - note - enterprise: *828 - installation: *829 - organization: *830 - project_card: &872 + enterprise: *829 + installation: *830 + organization: *831 + project_card: &873 title: Project Card type: object properties: @@ -171610,7 +171652,7 @@ webhooks: - creator - created_at - updated_at - repository: *831 + repository: *832 sender: *4 required: - action @@ -171691,11 +171733,11 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - project_card: *872 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project_card: *873 + repository: *832 sender: *4 required: - action @@ -171775,9 +171817,9 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 project_card: title: Project Card type: object @@ -171907,7 +171949,7 @@ webhooks: repository: anyOf: - type: 'null' - - *831 + - *832 sender: *4 required: - action @@ -172001,11 +172043,11 @@ webhooks: - from required: - note - enterprise: *828 - installation: *829 - organization: *830 - project_card: *872 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project_card: *873 + repository: *832 sender: *4 required: - action @@ -172099,9 +172141,9 @@ webhooks: - from required: - column_id - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 project_card: allOf: - title: Project Card @@ -172298,7 +172340,7 @@ webhooks: type: string required: - after_id - repository: *831 + repository: *832 sender: *4 required: - action @@ -172378,10 +172420,10 @@ webhooks: type: string enum: - closed - enterprise: *828 - installation: *829 - organization: *830 - project: &874 + enterprise: *829 + installation: *830 + organization: *831 + project: &875 title: Project type: object properties: @@ -172508,7 +172550,7 @@ webhooks: - creator - created_at - updated_at - repository: *831 + repository: *832 sender: *4 required: - action @@ -172588,10 +172630,10 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - project_column: &873 + enterprise: *829 + installation: *830 + organization: *831 + project_column: &874 title: Project Column type: object properties: @@ -172631,7 +172673,7 @@ webhooks: - name - created_at - updated_at - repository: *831 + repository: *832 sender: *4 required: - action @@ -172710,14 +172752,14 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - project_column: *873 + enterprise: *829 + installation: *830 + organization: *831 + project_column: *874 repository: anyOf: - type: 'null' - - *831 + - *832 sender: *4 required: - action @@ -172806,11 +172848,11 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - organization: *830 - project_column: *873 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project_column: *874 + repository: *832 sender: *4 required: - action @@ -172890,11 +172932,11 @@ webhooks: type: string enum: - moved - enterprise: *828 - installation: *829 - organization: *830 - project_column: *873 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project_column: *874 + repository: *832 sender: *4 required: - action @@ -172974,11 +173016,11 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - project: *874 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project: *875 + repository: *832 sender: *4 required: - action @@ -173058,14 +173100,14 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - project: *874 + enterprise: *829 + installation: *830 + organization: *831 + project: *875 repository: anyOf: - type: 'null' - - *831 + - *832 sender: *4 required: - action @@ -173166,11 +173208,11 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - organization: *830 - project: *874 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project: *875 + repository: *832 sender: *4 required: - action @@ -173249,11 +173291,11 @@ webhooks: type: string enum: - reopened - enterprise: *828 - installation: *829 - organization: *830 - project: *874 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + project: *875 + repository: *832 sender: *4 required: - action @@ -173334,9 +173376,9 @@ webhooks: type: string enum: - closed - installation: *829 - organization: *830 - projects_v2: *387 + installation: *830 + organization: *831 + projects_v2: *389 sender: *4 required: - action @@ -173417,9 +173459,9 @@ webhooks: type: string enum: - created - installation: *829 - organization: *830 - projects_v2: *387 + installation: *830 + organization: *831 + projects_v2: *389 sender: *4 required: - action @@ -173500,9 +173542,9 @@ webhooks: type: string enum: - deleted - installation: *829 - organization: *830 - projects_v2: *387 + installation: *830 + organization: *831 + projects_v2: *389 sender: *4 required: - action @@ -173623,9 +173665,9 @@ webhooks: type: string to: type: string - installation: *829 - organization: *830 - projects_v2: *387 + installation: *830 + organization: *831 + projects_v2: *389 sender: *4 required: - action @@ -173708,7 +173750,7 @@ webhooks: type: string enum: - archived - changes: &878 + changes: &879 type: object properties: archived_at: @@ -173724,9 +173766,9 @@ webhooks: - string - 'null' format: date-time - installation: *829 - organization: *830 - projects_v2_item: &875 + installation: *830 + organization: *831 + projects_v2_item: &876 title: Projects v2 Item description: An item belonging to a project type: object @@ -173744,7 +173786,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *393 + content_type: *395 creator: *4 created_at: type: string @@ -173866,9 +173908,9 @@ webhooks: - 'null' to: type: string - installation: *829 - organization: *830 - projects_v2_item: *875 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -173950,9 +173992,9 @@ webhooks: type: string enum: - created - installation: *829 - organization: *830 - projects_v2_item: *875 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -174033,9 +174075,9 @@ webhooks: type: string enum: - deleted - installation: *829 - organization: *830 - projects_v2_item: *875 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -174140,7 +174182,7 @@ webhooks: oneOf: - type: string - type: integer - - &876 + - &877 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -174164,7 +174206,7 @@ webhooks: required: - id - name - - &877 + - &878 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -174204,8 +174246,8 @@ webhooks: oneOf: - type: string - type: integer - - *876 - *877 + - *878 type: - 'null' - string @@ -174228,9 +174270,9 @@ webhooks: - 'null' required: - body - installation: *829 - organization: *830 - projects_v2_item: *875 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -174327,9 +174369,9 @@ webhooks: type: - string - 'null' - installation: *829 - organization: *830 - projects_v2_item: *875 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -174412,10 +174454,10 @@ webhooks: type: string enum: - restored - changes: *878 - installation: *829 - organization: *830 - projects_v2_item: *875 + changes: *879 + installation: *830 + organization: *831 + projects_v2_item: *876 sender: *4 required: - action @@ -174497,9 +174539,9 @@ webhooks: type: string enum: - reopened - installation: *829 - organization: *830 - projects_v2: *387 + installation: *830 + organization: *831 + projects_v2: *389 sender: *4 required: - action @@ -174580,9 +174622,9 @@ webhooks: type: string enum: - created - installation: *829 - organization: *830 - projects_v2_status_update: *879 + installation: *830 + organization: *831 + projects_v2_status_update: *880 sender: *4 required: - action @@ -174663,9 +174705,9 @@ webhooks: type: string enum: - deleted - installation: *829 - organization: *830 - projects_v2_status_update: *879 + installation: *830 + organization: *831 + projects_v2_status_update: *880 sender: *4 required: - action @@ -174811,9 +174853,9 @@ webhooks: - string - 'null' format: date - installation: *829 - organization: *830 - projects_v2_status_update: *879 + installation: *830 + organization: *831 + projects_v2_status_update: *880 sender: *4 required: - action @@ -174884,10 +174926,10 @@ webhooks: title: public event type: object properties: - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - repository @@ -174964,13 +175006,13 @@ webhooks: type: string enum: - assigned - assignee: *855 - enterprise: *828 - installation: *829 - number: &880 + assignee: *856 + enterprise: *829 + installation: *830 + number: &881 description: The pull request number. type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -177319,7 +177361,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -177401,11 +177443,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -179747,7 +179789,7 @@ webhooks: - draft reason: type: string - repository: *831 + repository: *832 sender: *4 required: - action @@ -179829,11 +179871,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -182175,7 +182217,7 @@ webhooks: - draft reason: type: string - repository: *831 + repository: *832 sender: *4 required: - action @@ -182257,13 +182299,13 @@ webhooks: type: string enum: - closed - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: &881 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: &882 allOf: - - *674 + - *675 - type: object properties: allow_auto_merge: @@ -182325,7 +182367,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *831 + repository: *832 sender: *4 required: - action @@ -182406,12 +182448,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: *881 - repository: *831 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: *882 + repository: *832 sender: *4 required: - action @@ -182491,11 +182533,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *828 - milestone: *390 - number: *880 - organization: *830 - pull_request: &882 + enterprise: *829 + milestone: *392 + number: *881 + organization: *831 + pull_request: &883 title: Pull Request type: object properties: @@ -184822,7 +184864,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -184901,11 +184943,11 @@ webhooks: type: string enum: - dequeued - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -187251,7 +187293,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *831 + repository: *832 sender: *4 required: - action @@ -187375,12 +187417,12 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: *881 - repository: *831 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: *882 + repository: *832 sender: *4 required: - action @@ -187460,11 +187502,11 @@ webhooks: type: string enum: - enqueued - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -189795,7 +189837,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -189875,11 +189917,11 @@ webhooks: type: string enum: - labeled - enterprise: *828 - installation: *829 - label: *849 - number: *880 - organization: *830 + enterprise: *829 + installation: *830 + label: *850 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -192227,7 +192269,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -192308,10 +192350,10 @@ webhooks: type: string enum: - locked - enterprise: *828 - installation: *829 - number: *880 - organization: *830 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -194657,7 +194699,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -194737,12 +194779,12 @@ webhooks: type: string enum: - milestoned - enterprise: *828 - milestone: *390 - number: *880 - organization: *830 - pull_request: *882 - repository: *831 + enterprise: *829 + milestone: *392 + number: *881 + organization: *831 + pull_request: *883 + repository: *832 sender: *4 required: - action @@ -194821,12 +194863,12 @@ webhooks: type: string enum: - opened - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: *881 - repository: *831 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: *882 + repository: *832 sender: *4 required: - action @@ -194907,12 +194949,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: *881 - repository: *831 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: *882 + repository: *832 sender: *4 required: - action @@ -194992,12 +195034,12 @@ webhooks: type: string enum: - reopened - enterprise: *828 - installation: *829 - number: *880 - organization: *830 - pull_request: *881 - repository: *831 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 + pull_request: *882 + repository: *832 sender: *4 required: - action @@ -195372,9 +195414,9 @@ webhooks: - start_side - side - reactions - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: type: object properties: @@ -197604,7 +197646,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *831 + repository: *832 sender: *4 required: - action @@ -197684,7 +197726,7 @@ webhooks: type: string enum: - deleted - comment: &884 + comment: &885 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. @@ -197977,9 +198019,9 @@ webhooks: - start_side - side - reactions - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: type: object properties: @@ -200197,7 +200239,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *831 + repository: *832 sender: *4 required: - action @@ -200277,11 +200319,11 @@ webhooks: type: string enum: - edited - changes: *883 - comment: *884 - enterprise: *828 - installation: *829 - organization: *830 + changes: *884 + comment: *885 + enterprise: *829 + installation: *830 + organization: *831 pull_request: type: object properties: @@ -202502,7 +202544,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *831 + repository: *832 sender: *4 required: - action @@ -202583,9 +202625,9 @@ webhooks: type: string enum: - dismissed - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: title: Simple Pull Request type: object @@ -204818,7 +204860,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *831 + repository: *832 review: description: The review that was affected. type: object @@ -205069,9 +205111,9 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: title: Simple Pull Request type: object @@ -207185,8 +207227,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *831 - review: &885 + repository: *832 + review: &886 description: The review that was affected. type: object properties: @@ -207424,12 +207466,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: description: The pull request number. type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -209776,7 +209818,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 requested_reviewer: title: User type: @@ -209862,12 +209904,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: description: The pull request number. type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -212221,7 +212263,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 requested_team: title: Team description: Groups of organization members that gives permissions @@ -212416,12 +212458,12 @@ webhooks: type: string enum: - review_requested - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: description: The pull request number. type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -214770,7 +214812,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 requested_reviewer: title: User type: @@ -214857,12 +214899,12 @@ webhooks: type: string enum: - review_requested - enterprise: *828 - installation: *829 + enterprise: *829 + installation: *830 number: description: The pull request number. type: integer - organization: *830 + organization: *831 pull_request: title: Pull Request type: object @@ -217202,7 +217244,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 requested_team: title: Team description: Groups of organization members that gives permissions @@ -217386,9 +217428,9 @@ webhooks: type: string enum: - submitted - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: title: Simple Pull Request type: object @@ -219624,8 +219666,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *831 - review: *885 + repository: *832 + review: *886 sender: *4 required: - action @@ -219705,9 +219747,9 @@ webhooks: type: string enum: - resolved - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: title: Simple Pull Request type: object @@ -221838,7 +221880,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *831 + repository: *832 sender: *4 thread: type: object @@ -222235,9 +222277,9 @@ webhooks: type: string enum: - unresolved - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 pull_request: title: Simple Pull Request type: object @@ -224351,7 +224393,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *831 + repository: *832 sender: *4 thread: type: object @@ -224750,10 +224792,10 @@ webhooks: type: string before: type: string - enterprise: *828 - installation: *829 - number: *880 - organization: *830 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -227088,7 +227130,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -227170,11 +227212,11 @@ webhooks: type: string enum: - unassigned - assignee: *886 - enterprise: *828 - installation: *829 - number: *880 - organization: *830 + assignee: *887 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -229524,7 +229566,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -229603,11 +229645,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *828 - installation: *829 - label: *849 - number: *880 - organization: *830 + enterprise: *829 + installation: *830 + label: *850 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -231946,7 +231988,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -232027,10 +232069,10 @@ webhooks: type: string enum: - unlocked - enterprise: *828 - installation: *829 - number: *880 - organization: *830 + enterprise: *829 + installation: *830 + number: *881 + organization: *831 pull_request: title: Pull Request type: object @@ -234359,7 +234401,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *831 + repository: *832 sender: *4 required: - action @@ -234562,7 +234604,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *828 + enterprise: *829 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -234657,8 +234699,8 @@ webhooks: - url - author - committer - installation: *829 - organization: *830 + installation: *830 + organization: *831 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -235246,9 +235288,9 @@ webhooks: type: string enum: - published - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 registry_package: type: object properties: @@ -235725,7 +235767,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *869 + items: *870 summary: type: string tag_name: @@ -235781,7 +235823,7 @@ webhooks: - owner - package_version - registry - repository: *831 + repository: *832 sender: *4 required: - action @@ -235859,9 +235901,9 @@ webhooks: type: string enum: - updated - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 registry_package: type: object properties: @@ -236173,7 +236215,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *869 + items: *870 summary: type: string tag_name: @@ -236223,7 +236265,7 @@ webhooks: - owner - package_version - registry - repository: *831 + repository: *832 sender: *4 required: - action @@ -236300,10 +236342,10 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - release: &887 + enterprise: *829 + installation: *830 + organization: *831 + release: &888 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -236634,7 +236676,7 @@ webhooks: - updated_at - zipball_url - body - repository: *831 + repository: *832 sender: *4 required: - action @@ -236711,11 +236753,11 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - release: *887 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + release: *888 + repository: *832 sender: *4 required: - action @@ -236832,11 +236874,11 @@ webhooks: type: boolean required: - to - enterprise: *828 - installation: *829 - organization: *830 - release: *887 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + release: *888 + repository: *832 sender: *4 required: - action @@ -236914,9 +236956,9 @@ webhooks: type: string enum: - prereleased - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -237252,7 +237294,7 @@ webhooks: - string - 'null' format: uri - repository: *831 + repository: *832 sender: *4 required: - action @@ -237328,10 +237370,10 @@ webhooks: type: string enum: - published - enterprise: *828 - installation: *829 - organization: *830 - release: &888 + enterprise: *829 + installation: *830 + organization: *831 + release: &889 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -237664,7 +237706,7 @@ webhooks: - string - 'null' format: uri - repository: *831 + repository: *832 sender: *4 required: - action @@ -237740,11 +237782,11 @@ webhooks: type: string enum: - released - enterprise: *828 - installation: *829 - organization: *830 - release: *887 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + release: *888 + repository: *832 sender: *4 required: - action @@ -237820,11 +237862,11 @@ webhooks: type: string enum: - unpublished - enterprise: *828 - installation: *829 - organization: *830 - release: *888 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + release: *889 + repository: *832 sender: *4 required: - action @@ -237900,11 +237942,11 @@ webhooks: type: string enum: - published - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - repository_advisory: *726 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + repository_advisory: *727 sender: *4 required: - action @@ -237980,11 +238022,11 @@ webhooks: type: string enum: - reported - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - repository_advisory: *726 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + repository_advisory: *727 sender: *4 required: - action @@ -238060,10 +238102,10 @@ webhooks: type: string enum: - archived - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238140,10 +238182,10 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238221,10 +238263,10 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238309,10 +238351,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238427,10 +238469,10 @@ webhooks: - 'null' items: type: string - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238502,10 +238544,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 status: type: string @@ -238586,10 +238628,10 @@ webhooks: type: string enum: - privatized - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238666,10 +238708,10 @@ webhooks: type: string enum: - publicized - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238763,10 +238805,10 @@ webhooks: - name required: - repository - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -238846,10 +238888,10 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 repository_ruleset: *184 sender: *4 required: @@ -238928,10 +238970,10 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 repository_ruleset: *184 sender: *4 required: @@ -239010,10 +239052,10 @@ webhooks: type: string enum: - edited - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 repository_ruleset: *184 changes: type: object @@ -239075,16 +239117,16 @@ webhooks: properties: added: type: array - items: *694 + items: *695 deleted: type: array - items: *694 + items: *695 updated: type: array items: type: object properties: - rule: *694 + rule: *695 changes: type: object properties: @@ -239321,10 +239363,10 @@ webhooks: - from required: - owner - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -239402,10 +239444,10 @@ webhooks: type: string enum: - unarchived - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -239483,7 +239525,7 @@ webhooks: type: string enum: - create - alert: &889 + alert: &890 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -239607,10 +239649,10 @@ webhooks: type: string enum: - open - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -239820,10 +239862,10 @@ webhooks: type: string enum: - dismissed - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -239901,11 +239943,11 @@ webhooks: type: string enum: - reopen - alert: *889 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *890 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240107,10 +240149,10 @@ webhooks: enum: - fixed - open - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240188,7 +240230,7 @@ webhooks: type: string enum: - assigned - alert: &890 + alert: &891 type: object properties: number: *123 @@ -240303,10 +240345,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240384,11 +240426,11 @@ webhooks: type: string enum: - created - alert: *890 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *891 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240469,11 +240511,11 @@ webhooks: type: string enum: - created - alert: *890 - installation: *829 - location: *891 - organization: *830 - repository: *831 + alert: *891 + installation: *830 + location: *892 + organization: *831 + repository: *832 sender: *4 required: - location @@ -240711,11 +240753,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *890 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *891 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240793,11 +240835,11 @@ webhooks: type: string enum: - reopened - alert: *890 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *891 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240875,11 +240917,11 @@ webhooks: type: string enum: - resolved - alert: *890 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *891 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -240957,12 +240999,12 @@ webhooks: type: string enum: - unassigned - alert: *890 + alert: *891 assignee: *4 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -241040,11 +241082,11 @@ webhooks: type: string enum: - validated - alert: *890 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + alert: *891 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -241174,10 +241216,10 @@ webhooks: - organization - enterprise - - repository: *831 - enterprise: *828 - installation: *829 - organization: *830 + repository: *832 + enterprise: *829 + installation: *830 + organization: *831 sender: *4 required: - action @@ -241255,11 +241297,11 @@ webhooks: type: string enum: - published - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - security_advisory: &892 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + security_advisory: &893 description: The details of the security advisory, including summary, description, and severity. type: object @@ -241445,11 +241487,11 @@ webhooks: type: string enum: - updated - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 - security_advisory: *892 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 + security_advisory: *893 sender: *4 required: - action @@ -241522,10 +241564,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -241711,11 +241753,11 @@ webhooks: from: type: object properties: - security_and_analysis: *400 - enterprise: *828 - installation: *829 - organization: *830 - repository: *451 + security_and_analysis: *402 + enterprise: *829 + installation: *830 + organization: *831 + repository: *453 sender: *4 required: - changes @@ -241793,12 +241835,12 @@ webhooks: type: string enum: - cancelled - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: &893 + sponsorship: &894 type: object properties: created_at: @@ -242103,12 +242145,12 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: *893 + sponsorship: *894 required: - action - sponsorship @@ -242196,12 +242238,12 @@ webhooks: type: string required: - from - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: *893 + sponsorship: *894 required: - action - changes @@ -242278,17 +242320,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &894 + effective_date: &895 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: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: *893 + sponsorship: *894 required: - action - sponsorship @@ -242362,7 +242404,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &895 + changes: &896 type: object properties: tier: @@ -242406,13 +242448,13 @@ webhooks: - from required: - tier - effective_date: *894 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + effective_date: *895 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: *893 + sponsorship: *894 required: - action - changes @@ -242489,13 +242531,13 @@ webhooks: type: string enum: - tier_changed - changes: *895 - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + changes: *896 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - sponsorship: *893 + sponsorship: *894 required: - action - changes @@ -242569,10 +242611,10 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242656,10 +242698,10 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -243093,15 +243135,15 @@ webhooks: type: - string - 'null' - enterprise: *828 + enterprise: *829 id: description: The unique identifier of the status. type: integer - installation: *829 + installation: *830 name: type: string - organization: *830 - repository: *831 + organization: *831 + repository: *832 sender: *4 sha: description: The Commit SHA. @@ -243217,9 +243259,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -243309,9 +243351,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -243401,9 +243443,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -243493,9 +243535,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *212 - installation: *829 - organization: *830 - repository: *831 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -243572,12 +243614,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - team: &896 + team: &897 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -243807,9 +243849,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 repository: title: Repository description: A git repository @@ -244279,7 +244321,7 @@ webhooks: - topics - visibility sender: *4 - team: *896 + team: *897 required: - action - team @@ -244355,9 +244397,9 @@ webhooks: type: string enum: - created - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 repository: title: Repository description: A git repository @@ -244827,7 +244869,7 @@ webhooks: - topics - visibility sender: *4 - team: *896 + team: *897 required: - action - team @@ -244904,9 +244946,9 @@ webhooks: type: string enum: - deleted - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 repository: title: Repository description: A git repository @@ -245376,7 +245418,7 @@ webhooks: - topics - visibility sender: *4 - team: *896 + team: *897 required: - action - team @@ -245520,9 +245562,9 @@ webhooks: - from required: - permissions - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 repository: title: Repository description: A git repository @@ -245992,7 +246034,7 @@ webhooks: - topics - visibility sender: *4 - team: *896 + team: *897 required: - action - changes @@ -246070,9 +246112,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *828 - installation: *829 - organization: *830 + enterprise: *829 + installation: *830 + organization: *831 repository: title: Repository description: A git repository @@ -246542,7 +246584,7 @@ webhooks: - topics - visibility sender: *4 - team: *896 + team: *897 required: - action - team @@ -246618,10 +246660,10 @@ webhooks: type: string enum: - started - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 required: - action @@ -246694,17 +246736,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *828 + enterprise: *829 inputs: type: - object - 'null' additionalProperties: true - installation: *829 - organization: *830 + installation: *830 + organization: *831 ref: type: string - repository: *831 + repository: *832 sender: *4 workflow: type: string @@ -246786,10 +246828,10 @@ webhooks: type: string enum: - completed - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 workflow_job: allOf: @@ -247045,7 +247087,7 @@ webhooks: type: string required: - conclusion - deployment: *580 + deployment: *582 required: - action - repository @@ -247124,10 +247166,10 @@ webhooks: type: string enum: - in_progress - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 workflow_job: allOf: @@ -247409,7 +247451,7 @@ webhooks: required: - status - steps - deployment: *580 + deployment: *582 required: - action - repository @@ -247488,10 +247530,10 @@ webhooks: type: string enum: - queued - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 workflow_job: type: object @@ -247637,7 +247679,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *580 + deployment: *582 required: - action - repository @@ -247716,10 +247758,10 @@ webhooks: type: string enum: - waiting - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 workflow_job: type: object @@ -247866,7 +247908,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *580 + deployment: *582 required: - action - repository @@ -247946,12 +247988,12 @@ webhooks: type: string enum: - completed - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - workflow: *845 + workflow: *846 workflow_run: title: Workflow Run type: object @@ -248970,12 +249012,12 @@ webhooks: type: string enum: - in_progress - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - workflow: *845 + workflow: *846 workflow_run: title: Workflow Run type: object @@ -249979,12 +250021,12 @@ webhooks: type: string enum: - requested - enterprise: *828 - installation: *829 - organization: *830 - repository: *831 + enterprise: *829 + installation: *830 + organization: *831 + repository: *832 sender: *4 - workflow: *845 + workflow: *846 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/ghec.2022-11-28.json b/descriptions-next/ghec/ghec.2022-11-28.json index 3a81c3b3e..52445449c 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -29700,6 +29700,81 @@ } } }, + "/orgs/{org}/dismissal-requests/dependabot": { + "get": { + "summary": "List dismissal requests for Dependabot alerts for an organization", + "description": "Lists dismissal requests for Dependabot alerts in an organization.\n\nDelegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager,\nor have the appropriate permission to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/list-dismissal-requests-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "dependabot", + "subcategory": "alert-dismissal-requests" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/repository-name-in-query" + }, + { + "$ref": "#/components/parameters/bypass-reviewer-name" + }, + { + "$ref": "#/components/parameters/bypass-requester-name" + }, + { + "$ref": "#/components/parameters/time-period" + }, + { + "$ref": "#/components/parameters/dismissal-request-status" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "A list of alert dismissal requests.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/dependabot-alert-dismissal-request" + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/dependabot-alert-dismissal-request-items" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "500": { + "$ref": "#/components/responses/internal_error" + } + } + } + }, "/orgs/{org}/dismissal-requests/secret-scanning": { "get": { "summary": "List alert dismissal requests for secret scanning for an org", @@ -137801,6 +137876,159 @@ } } }, + "dependabot-alert-dismissal-request": { + "title": "Dependabot alert dismissal request", + "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The unique identifier of the dismissal request." + }, + "number": { + "type": "integer", + "format": "int64", + "description": "The number uniquely identifying the dismissal request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the repository the dismissal request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the dismissal request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the dismissal request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who requested the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the dismissal request." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the dismissal request metadata.", + "items": { + "type": "object", + "properties": { + "reason": { + "type": "string", + "description": "The reason for the dismissal request." + }, + "alert_number": { + "type": "string", + "description": "The alert number." + }, + "alert_title": { + "type": "string", + "description": "The title of the alert." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the dismissal request.", + "examples": [ + "123" + ] + }, + "status": { + "type": "string", + "description": "The status of the dismissal request.", + "enum": [ + "pending", + "denied", + "approved", + "expired" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the dismissal request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the dismissal request.", + "items": { + "$ref": "#/components/schemas/dismissal-request-response" + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the dismissal request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/security/dependabot/1" + ] + } + } + }, "secret-scanning-dismissal-request": { "title": "Secret scanning alert dismissal request", "description": "A dismissal request made by a user asking to close a secret scanning alert in this repository.", @@ -152192,159 +152420,6 @@ "updated_at" ] }, - "dependabot-alert-dismissal-request": { - "title": "Dependabot alert dismissal request", - "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The unique identifier of the dismissal request." - }, - "number": { - "type": "integer", - "format": "int64", - "description": "The number uniquely identifying the dismissal request within its repository." - }, - "repository": { - "type": "object", - "description": "The repository the dismissal request is for.", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The ID of the repository the dismissal request is for." - }, - "name": { - "type": "string", - "description": "The name of the repository the dismissal request is for." - }, - "full_name": { - "type": "string", - "description": "The full name of the repository the dismissal request is for." - } - } - }, - "organization": { - "type": "object", - "description": "The organization associated with the repository the dismissal request is for.", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The ID of the organization." - }, - "name": { - "type": "string", - "description": "The name of the organization." - } - } - }, - "requester": { - "type": "object", - "description": "The user who requested the dismissal request.", - "properties": { - "actor_id": { - "type": "integer", - "format": "int64", - "description": "The ID of the GitHub user who requested the dismissal request." - }, - "actor_name": { - "type": "string", - "description": "The name of the GitHub user who requested the dismissal request." - } - } - }, - "request_type": { - "type": "string", - "description": "The type of request." - }, - "data": { - "type": [ - "array", - "null" - ], - "description": "Data describing the dismissal request metadata.", - "items": { - "type": "object", - "properties": { - "reason": { - "type": "string", - "description": "The reason for the dismissal request." - }, - "alert_number": { - "type": "string", - "description": "The alert number." - }, - "alert_title": { - "type": "string", - "description": "The title of the alert." - } - } - } - }, - "resource_identifier": { - "type": "string", - "description": "The unique identifier for the request type of the dismissal request.", - "examples": [ - "123" - ] - }, - "status": { - "type": "string", - "description": "The status of the dismissal request.", - "enum": [ - "pending", - "denied", - "approved", - "expired" - ] - }, - "requester_comment": { - "type": [ - "string", - "null" - ], - "description": "The comment the requester provided when creating the dismissal request." - }, - "expires_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the dismissal request will expire." - }, - "created_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the dismissal request was created." - }, - "responses": { - "type": [ - "array", - "null" - ], - "description": "The responses to the dismissal request.", - "items": { - "$ref": "#/components/schemas/dismissal-request-response" - } - }, - "url": { - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" - ] - }, - "html_url": { - "type": "string", - "description": "The URL to view the dismissal request in a browser.", - "format": "uri", - "examples": [ - "https://github.com/octo-org/smile/security/dependabot/1" - ] - } - } - }, "wait-timer": { "type": "integer", "description": "The amount of time to delay a job after the job is initially triggered. The time (in minutes) must be an integer between 0 and 43,200 (30 days).", @@ -318803,6 +318878,96 @@ } ] }, + "dependabot-alert-dismissal-request-items": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "no_bandwidth", + "alert_number": "1", + "alert_title": "lodash - GHSA-1234-abcd-5678" + } + ], + "resource_identifier": "1", + "status": "denied", + "requester_comment": "No bandwidth to fix this right now", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", + "html_url": "https://github.com/octo-org/smile/security/dependabot/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "tolerable_risk", + "alert_number": "2", + "alert_title": "axios - GHSA-5678-efgh-9012" + } + ], + "resource_identifier": "2", + "status": "approved", + "requester_comment": "Risk is acceptable for this internal tool", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 43, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "approved", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", + "html_url": "https://github.com/octo-org/smile/security/dependabot/2" + } + ] + }, "secret-scanning-dismissal-request-items": { "value": [ { @@ -331547,96 +331712,6 @@ "html_url": "https://github.com/octo-org/smile/code-scanning/alerts/1" } }, - "dependabot-alert-dismissal-request-items": { - "value": [ - { - "id": 21, - "number": 42, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "dependabot_alert_dismissal", - "data": [ - { - "reason": "no_bandwidth", - "alert_number": "1", - "alert_title": "lodash - GHSA-1234-abcd-5678" - } - ], - "resource_identifier": "1", - "status": "denied", - "requester_comment": "No bandwidth to fix this right now", - "expires_at": "2024-07-08T08:43:03Z", - "created_at": "2024-07-01T08:43:03Z", - "responses": [ - { - "id": 42, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "denied", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", - "html_url": "https://github.com/octo-org/smile/security/dependabot/1" - }, - { - "id": 12, - "number": 24, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "dependabot_alert_dismissal", - "data": [ - { - "reason": "tolerable_risk", - "alert_number": "2", - "alert_title": "axios - GHSA-5678-efgh-9012" - } - ], - "resource_identifier": "2", - "status": "approved", - "requester_comment": "Risk is acceptable for this internal tool", - "expires_at": "2024-07-08T07:43:03Z", - "created_at": "2024-07-01T07:43:03Z", - "responses": [ - { - "id": 43, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "approved", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", - "html_url": "https://github.com/octo-org/smile/security/dependabot/2" - } - ] - }, "dependabot-alert-dismissal-request-item": { "value": { "id": 21, diff --git a/descriptions-next/ghec/ghec.2022-11-28.yaml b/descriptions-next/ghec/ghec.2022-11-28.yaml index e4a43bb72..7063d3eda 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -21465,6 +21465,53 @@ paths: "$ref": "#/components/responses/validation_failed" '500': "$ref": "#/components/responses/internal_error" + "/orgs/{org}/dismissal-requests/dependabot": + get: + summary: List dismissal requests for Dependabot alerts for an organization + description: |- + Lists dismissal requests for Dependabot alerts in an organization. + + Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, + or have the appropriate permission to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. + tags: + - dependabot + operationId: dependabot/list-dismissal-requests-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: dependabot + subcategory: alert-dismissal-requests + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/repository-name-in-query" + - "$ref": "#/components/parameters/bypass-reviewer-name" + - "$ref": "#/components/parameters/bypass-requester-name" + - "$ref": "#/components/parameters/time-period" + - "$ref": "#/components/parameters/dismissal-request-status" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: A list of alert dismissal requests. + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/dependabot-alert-dismissal-request" + examples: + default: + "$ref": "#/components/examples/dependabot-alert-dismissal-request-items" + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + '500': + "$ref": "#/components/responses/internal_error" "/orgs/{org}/dismissal-requests/secret-scanning": get: summary: List alert dismissal requests for secret scanning for an org @@ -99772,6 +99819,126 @@ components: format: uri examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 + dependabot-alert-dismissal-request: + title: Dependabot alert dismissal request + description: Alert dismissal request made by a user asking to dismiss a Dependabot + alert. + type: object + properties: + id: + type: integer + format: int64 + description: The unique identifier of the dismissal request. + number: + type: integer + format: int64 + description: The number uniquely identifying the dismissal request within + its repository. + repository: + type: object + description: The repository the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the repository the dismissal request is for. + name: + type: string + description: The name of the repository the dismissal request is for. + full_name: + type: string + description: The full name of the repository the dismissal request is + for. + organization: + type: object + description: The organization associated with the repository the dismissal + request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the dismissal request. + properties: + actor_id: + type: integer + format: int64 + description: The ID of the GitHub user who requested the dismissal request. + actor_name: + type: string + description: The name of the GitHub user who requested the dismissal + request. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the dismissal request metadata. + items: + type: object + properties: + reason: + type: string + description: The reason for the dismissal request. + alert_number: + type: string + description: The alert number. + alert_title: + type: string + description: The title of the alert. + resource_identifier: + type: string + description: The unique identifier for the request type of the dismissal + request. + examples: + - '123' + status: + type: string + description: The status of the dismissal request. + enum: + - pending + - denied + - approved + - expired + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating the dismissal + request. + expires_at: + type: string + format: date-time + description: The date and time the dismissal request will expire. + created_at: + type: string + format: date-time + description: The date and time the dismissal request was created. + responses: + type: + - array + - 'null' + description: The responses to the dismissal request. + items: + "$ref": "#/components/schemas/dismissal-request-response" + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: + type: string + description: The URL to view the dismissal request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/security/dependabot/1 secret-scanning-dismissal-request: title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning @@ -110262,126 +110429,6 @@ components: - url - created_at - updated_at - dependabot-alert-dismissal-request: - title: Dependabot alert dismissal request - description: Alert dismissal request made by a user asking to dismiss a Dependabot - alert. - type: object - properties: - id: - type: integer - format: int64 - description: The unique identifier of the dismissal request. - number: - type: integer - format: int64 - description: The number uniquely identifying the dismissal request within - its repository. - repository: - type: object - description: The repository the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the repository the dismissal request is for. - name: - type: string - description: The name of the repository the dismissal request is for. - full_name: - type: string - description: The full name of the repository the dismissal request is - for. - organization: - type: object - description: The organization associated with the repository the dismissal - request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the dismissal request. - properties: - actor_id: - type: integer - format: int64 - description: The ID of the GitHub user who requested the dismissal request. - actor_name: - type: string - description: The name of the GitHub user who requested the dismissal - request. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the dismissal request metadata. - items: - type: object - properties: - reason: - type: string - description: The reason for the dismissal request. - alert_number: - type: string - description: The alert number. - alert_title: - type: string - description: The title of the alert. - resource_identifier: - type: string - description: The unique identifier for the request type of the dismissal - request. - examples: - - '123' - status: - type: string - description: The status of the dismissal request. - enum: - - pending - - denied - - approved - - expired - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating the dismissal - request. - expires_at: - type: string - format: date-time - description: The date and time the dismissal request will expire. - created_at: - type: string - format: date-time - description: The date and time the dismissal request was created. - responses: - type: - - array - - 'null' - description: The responses to the dismissal request. - items: - "$ref": "#/components/schemas/dismissal-request-response" - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: - type: string - description: The URL to view the dismissal request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/security/dependabot/1 wait-timer: type: integer description: The amount of time to delay a job after the job is initially triggered. @@ -234766,6 +234813,70 @@ components: created_at: '2024-07-02T08:43:04Z' url: https://api.github.com/repos/octo-org/smile/dismissal-requests/code-scanning/2 html_url: https://github.com/octo-org/smile/code-scanning/alerts/2 + dependabot-alert-dismissal-request-items: + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: no_bandwidth + alert_number: '1' + alert_title: lodash - GHSA-1234-abcd-5678 + resource_identifier: '1' + status: denied + requester_comment: No bandwidth to fix this right now + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: https://github.com/octo-org/smile/security/dependabot/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: tolerable_risk + alert_number: '2' + alert_title: axios - GHSA-5678-efgh-9012 + resource_identifier: '2' + status: approved + requester_comment: Risk is acceptable for this internal tool + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 43 + reviewer: + actor_id: 4 + actor_name: octocat + status: approved + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 + html_url: https://github.com/octo-org/smile/security/dependabot/2 secret-scanning-dismissal-request-items: value: - id: 21 @@ -245582,70 +245693,6 @@ components: created_at: '2024-07-02T08:43:04Z' url: https://api.github.com/repos/octo-org/smile/dismissal-requests/code-scanning/1 html_url: https://github.com/octo-org/smile/code-scanning/alerts/1 - dependabot-alert-dismissal-request-items: - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: no_bandwidth - alert_number: '1' - alert_title: lodash - GHSA-1234-abcd-5678 - resource_identifier: '1' - status: denied - requester_comment: No bandwidth to fix this right now - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: https://github.com/octo-org/smile/security/dependabot/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: tolerable_risk - alert_number: '2' - alert_title: axios - GHSA-5678-efgh-9012 - resource_identifier: '2' - status: approved - requester_comment: Risk is acceptable for this internal tool - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 43 - reviewer: - actor_id: 4 - actor_name: octocat - status: approved - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 - html_url: https://github.com/octo-org/smile/security/dependabot/2 dependabot-alert-dismissal-request-item: value: id: 21 diff --git a/descriptions-next/ghec/ghec.json b/descriptions-next/ghec/ghec.json index 3a81c3b3e..52445449c 100644 --- a/descriptions-next/ghec/ghec.json +++ b/descriptions-next/ghec/ghec.json @@ -29700,6 +29700,81 @@ } } }, + "/orgs/{org}/dismissal-requests/dependabot": { + "get": { + "summary": "List dismissal requests for Dependabot alerts for an organization", + "description": "Lists dismissal requests for Dependabot alerts in an organization.\n\nDelegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager,\nor have the appropriate permission to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/list-dismissal-requests-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "dependabot", + "subcategory": "alert-dismissal-requests" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/repository-name-in-query" + }, + { + "$ref": "#/components/parameters/bypass-reviewer-name" + }, + { + "$ref": "#/components/parameters/bypass-requester-name" + }, + { + "$ref": "#/components/parameters/time-period" + }, + { + "$ref": "#/components/parameters/dismissal-request-status" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "A list of alert dismissal requests.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/dependabot-alert-dismissal-request" + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/dependabot-alert-dismissal-request-items" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "500": { + "$ref": "#/components/responses/internal_error" + } + } + } + }, "/orgs/{org}/dismissal-requests/secret-scanning": { "get": { "summary": "List alert dismissal requests for secret scanning for an org", @@ -137801,6 +137876,159 @@ } } }, + "dependabot-alert-dismissal-request": { + "title": "Dependabot alert dismissal request", + "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The unique identifier of the dismissal request." + }, + "number": { + "type": "integer", + "format": "int64", + "description": "The number uniquely identifying the dismissal request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the repository the dismissal request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the dismissal request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the dismissal request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who requested the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the dismissal request." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the dismissal request metadata.", + "items": { + "type": "object", + "properties": { + "reason": { + "type": "string", + "description": "The reason for the dismissal request." + }, + "alert_number": { + "type": "string", + "description": "The alert number." + }, + "alert_title": { + "type": "string", + "description": "The title of the alert." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the dismissal request.", + "examples": [ + "123" + ] + }, + "status": { + "type": "string", + "description": "The status of the dismissal request.", + "enum": [ + "pending", + "denied", + "approved", + "expired" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the dismissal request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the dismissal request.", + "items": { + "$ref": "#/components/schemas/dismissal-request-response" + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the dismissal request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/security/dependabot/1" + ] + } + } + }, "secret-scanning-dismissal-request": { "title": "Secret scanning alert dismissal request", "description": "A dismissal request made by a user asking to close a secret scanning alert in this repository.", @@ -152192,159 +152420,6 @@ "updated_at" ] }, - "dependabot-alert-dismissal-request": { - "title": "Dependabot alert dismissal request", - "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The unique identifier of the dismissal request." - }, - "number": { - "type": "integer", - "format": "int64", - "description": "The number uniquely identifying the dismissal request within its repository." - }, - "repository": { - "type": "object", - "description": "The repository the dismissal request is for.", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The ID of the repository the dismissal request is for." - }, - "name": { - "type": "string", - "description": "The name of the repository the dismissal request is for." - }, - "full_name": { - "type": "string", - "description": "The full name of the repository the dismissal request is for." - } - } - }, - "organization": { - "type": "object", - "description": "The organization associated with the repository the dismissal request is for.", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The ID of the organization." - }, - "name": { - "type": "string", - "description": "The name of the organization." - } - } - }, - "requester": { - "type": "object", - "description": "The user who requested the dismissal request.", - "properties": { - "actor_id": { - "type": "integer", - "format": "int64", - "description": "The ID of the GitHub user who requested the dismissal request." - }, - "actor_name": { - "type": "string", - "description": "The name of the GitHub user who requested the dismissal request." - } - } - }, - "request_type": { - "type": "string", - "description": "The type of request." - }, - "data": { - "type": [ - "array", - "null" - ], - "description": "Data describing the dismissal request metadata.", - "items": { - "type": "object", - "properties": { - "reason": { - "type": "string", - "description": "The reason for the dismissal request." - }, - "alert_number": { - "type": "string", - "description": "The alert number." - }, - "alert_title": { - "type": "string", - "description": "The title of the alert." - } - } - } - }, - "resource_identifier": { - "type": "string", - "description": "The unique identifier for the request type of the dismissal request.", - "examples": [ - "123" - ] - }, - "status": { - "type": "string", - "description": "The status of the dismissal request.", - "enum": [ - "pending", - "denied", - "approved", - "expired" - ] - }, - "requester_comment": { - "type": [ - "string", - "null" - ], - "description": "The comment the requester provided when creating the dismissal request." - }, - "expires_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the dismissal request will expire." - }, - "created_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the dismissal request was created." - }, - "responses": { - "type": [ - "array", - "null" - ], - "description": "The responses to the dismissal request.", - "items": { - "$ref": "#/components/schemas/dismissal-request-response" - } - }, - "url": { - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" - ] - }, - "html_url": { - "type": "string", - "description": "The URL to view the dismissal request in a browser.", - "format": "uri", - "examples": [ - "https://github.com/octo-org/smile/security/dependabot/1" - ] - } - } - }, "wait-timer": { "type": "integer", "description": "The amount of time to delay a job after the job is initially triggered. The time (in minutes) must be an integer between 0 and 43,200 (30 days).", @@ -318803,6 +318878,96 @@ } ] }, + "dependabot-alert-dismissal-request-items": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "no_bandwidth", + "alert_number": "1", + "alert_title": "lodash - GHSA-1234-abcd-5678" + } + ], + "resource_identifier": "1", + "status": "denied", + "requester_comment": "No bandwidth to fix this right now", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", + "html_url": "https://github.com/octo-org/smile/security/dependabot/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "tolerable_risk", + "alert_number": "2", + "alert_title": "axios - GHSA-5678-efgh-9012" + } + ], + "resource_identifier": "2", + "status": "approved", + "requester_comment": "Risk is acceptable for this internal tool", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 43, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "approved", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", + "html_url": "https://github.com/octo-org/smile/security/dependabot/2" + } + ] + }, "secret-scanning-dismissal-request-items": { "value": [ { @@ -331547,96 +331712,6 @@ "html_url": "https://github.com/octo-org/smile/code-scanning/alerts/1" } }, - "dependabot-alert-dismissal-request-items": { - "value": [ - { - "id": 21, - "number": 42, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "dependabot_alert_dismissal", - "data": [ - { - "reason": "no_bandwidth", - "alert_number": "1", - "alert_title": "lodash - GHSA-1234-abcd-5678" - } - ], - "resource_identifier": "1", - "status": "denied", - "requester_comment": "No bandwidth to fix this right now", - "expires_at": "2024-07-08T08:43:03Z", - "created_at": "2024-07-01T08:43:03Z", - "responses": [ - { - "id": 42, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "denied", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", - "html_url": "https://github.com/octo-org/smile/security/dependabot/1" - }, - { - "id": 12, - "number": 24, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "dependabot_alert_dismissal", - "data": [ - { - "reason": "tolerable_risk", - "alert_number": "2", - "alert_title": "axios - GHSA-5678-efgh-9012" - } - ], - "resource_identifier": "2", - "status": "approved", - "requester_comment": "Risk is acceptable for this internal tool", - "expires_at": "2024-07-08T07:43:03Z", - "created_at": "2024-07-01T07:43:03Z", - "responses": [ - { - "id": 43, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "approved", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", - "html_url": "https://github.com/octo-org/smile/security/dependabot/2" - } - ] - }, "dependabot-alert-dismissal-request-item": { "value": { "id": 21, diff --git a/descriptions-next/ghec/ghec.yaml b/descriptions-next/ghec/ghec.yaml index e4a43bb72..7063d3eda 100644 --- a/descriptions-next/ghec/ghec.yaml +++ b/descriptions-next/ghec/ghec.yaml @@ -21465,6 +21465,53 @@ paths: "$ref": "#/components/responses/validation_failed" '500': "$ref": "#/components/responses/internal_error" + "/orgs/{org}/dismissal-requests/dependabot": + get: + summary: List dismissal requests for Dependabot alerts for an organization + description: |- + Lists dismissal requests for Dependabot alerts in an organization. + + Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, + or have the appropriate permission to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. + tags: + - dependabot + operationId: dependabot/list-dismissal-requests-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: dependabot + subcategory: alert-dismissal-requests + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/repository-name-in-query" + - "$ref": "#/components/parameters/bypass-reviewer-name" + - "$ref": "#/components/parameters/bypass-requester-name" + - "$ref": "#/components/parameters/time-period" + - "$ref": "#/components/parameters/dismissal-request-status" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: A list of alert dismissal requests. + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/dependabot-alert-dismissal-request" + examples: + default: + "$ref": "#/components/examples/dependabot-alert-dismissal-request-items" + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + '500': + "$ref": "#/components/responses/internal_error" "/orgs/{org}/dismissal-requests/secret-scanning": get: summary: List alert dismissal requests for secret scanning for an org @@ -99772,6 +99819,126 @@ components: format: uri examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 + dependabot-alert-dismissal-request: + title: Dependabot alert dismissal request + description: Alert dismissal request made by a user asking to dismiss a Dependabot + alert. + type: object + properties: + id: + type: integer + format: int64 + description: The unique identifier of the dismissal request. + number: + type: integer + format: int64 + description: The number uniquely identifying the dismissal request within + its repository. + repository: + type: object + description: The repository the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the repository the dismissal request is for. + name: + type: string + description: The name of the repository the dismissal request is for. + full_name: + type: string + description: The full name of the repository the dismissal request is + for. + organization: + type: object + description: The organization associated with the repository the dismissal + request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the dismissal request. + properties: + actor_id: + type: integer + format: int64 + description: The ID of the GitHub user who requested the dismissal request. + actor_name: + type: string + description: The name of the GitHub user who requested the dismissal + request. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the dismissal request metadata. + items: + type: object + properties: + reason: + type: string + description: The reason for the dismissal request. + alert_number: + type: string + description: The alert number. + alert_title: + type: string + description: The title of the alert. + resource_identifier: + type: string + description: The unique identifier for the request type of the dismissal + request. + examples: + - '123' + status: + type: string + description: The status of the dismissal request. + enum: + - pending + - denied + - approved + - expired + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating the dismissal + request. + expires_at: + type: string + format: date-time + description: The date and time the dismissal request will expire. + created_at: + type: string + format: date-time + description: The date and time the dismissal request was created. + responses: + type: + - array + - 'null' + description: The responses to the dismissal request. + items: + "$ref": "#/components/schemas/dismissal-request-response" + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: + type: string + description: The URL to view the dismissal request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/security/dependabot/1 secret-scanning-dismissal-request: title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning @@ -110262,126 +110429,6 @@ components: - url - created_at - updated_at - dependabot-alert-dismissal-request: - title: Dependabot alert dismissal request - description: Alert dismissal request made by a user asking to dismiss a Dependabot - alert. - type: object - properties: - id: - type: integer - format: int64 - description: The unique identifier of the dismissal request. - number: - type: integer - format: int64 - description: The number uniquely identifying the dismissal request within - its repository. - repository: - type: object - description: The repository the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the repository the dismissal request is for. - name: - type: string - description: The name of the repository the dismissal request is for. - full_name: - type: string - description: The full name of the repository the dismissal request is - for. - organization: - type: object - description: The organization associated with the repository the dismissal - request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the dismissal request. - properties: - actor_id: - type: integer - format: int64 - description: The ID of the GitHub user who requested the dismissal request. - actor_name: - type: string - description: The name of the GitHub user who requested the dismissal - request. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the dismissal request metadata. - items: - type: object - properties: - reason: - type: string - description: The reason for the dismissal request. - alert_number: - type: string - description: The alert number. - alert_title: - type: string - description: The title of the alert. - resource_identifier: - type: string - description: The unique identifier for the request type of the dismissal - request. - examples: - - '123' - status: - type: string - description: The status of the dismissal request. - enum: - - pending - - denied - - approved - - expired - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating the dismissal - request. - expires_at: - type: string - format: date-time - description: The date and time the dismissal request will expire. - created_at: - type: string - format: date-time - description: The date and time the dismissal request was created. - responses: - type: - - array - - 'null' - description: The responses to the dismissal request. - items: - "$ref": "#/components/schemas/dismissal-request-response" - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: - type: string - description: The URL to view the dismissal request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/security/dependabot/1 wait-timer: type: integer description: The amount of time to delay a job after the job is initially triggered. @@ -234766,6 +234813,70 @@ components: created_at: '2024-07-02T08:43:04Z' url: https://api.github.com/repos/octo-org/smile/dismissal-requests/code-scanning/2 html_url: https://github.com/octo-org/smile/code-scanning/alerts/2 + dependabot-alert-dismissal-request-items: + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: no_bandwidth + alert_number: '1' + alert_title: lodash - GHSA-1234-abcd-5678 + resource_identifier: '1' + status: denied + requester_comment: No bandwidth to fix this right now + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: https://github.com/octo-org/smile/security/dependabot/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: tolerable_risk + alert_number: '2' + alert_title: axios - GHSA-5678-efgh-9012 + resource_identifier: '2' + status: approved + requester_comment: Risk is acceptable for this internal tool + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 43 + reviewer: + actor_id: 4 + actor_name: octocat + status: approved + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 + html_url: https://github.com/octo-org/smile/security/dependabot/2 secret-scanning-dismissal-request-items: value: - id: 21 @@ -245582,70 +245693,6 @@ components: created_at: '2024-07-02T08:43:04Z' url: https://api.github.com/repos/octo-org/smile/dismissal-requests/code-scanning/1 html_url: https://github.com/octo-org/smile/code-scanning/alerts/1 - dependabot-alert-dismissal-request-items: - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: no_bandwidth - alert_number: '1' - alert_title: lodash - GHSA-1234-abcd-5678 - resource_identifier: '1' - status: denied - requester_comment: No bandwidth to fix this right now - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: https://github.com/octo-org/smile/security/dependabot/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: tolerable_risk - alert_number: '2' - alert_title: axios - GHSA-5678-efgh-9012 - resource_identifier: '2' - status: approved - requester_comment: Risk is acceptable for this internal tool - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 43 - reviewer: - actor_id: 4 - actor_name: octocat - status: approved - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 - html_url: https://github.com/octo-org/smile/security/dependabot/2 dependabot-alert-dismissal-request-item: value: id: 21 diff --git a/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.2022-11-28.deref.json b/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.2022-11-28.deref.json index f1982ca3c..c2cc940e0 100644 --- a/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.2022-11-28.deref.json +++ b/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.2022-11-28.deref.json @@ -166286,6 +166286,496 @@ } } }, + "/orgs/{org}/dismissal-requests/dependabot": { + "get": { + "summary": "List dismissal requests for Dependabot alerts for an organization", + "description": "Lists dismissal requests for Dependabot alerts in an organization.\n\nDelegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager,\nor have the appropriate permission to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/list-dismissal-requests-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-server@3.19/rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "dependabot", + "subcategory": "alert-dismissal-requests" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repository_name", + "description": "The name of the repository to filter on.", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "reviewer", + "description": "Filter bypass requests by the handle of the GitHub user who reviewed the bypass request.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "requester", + "description": "Filter bypass requests by the handle of the GitHub user who requested the bypass.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "time_period", + "description": "The time period to filter by.\n\nFor example, `day` will filter for rule suites that occurred in the past 24 hours, and `week` will filter for rule suites that occurred in the past 7 days (168 hours).", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "hour", + "day", + "week", + "month" + ], + "default": "day" + } + }, + { + "name": "request_status", + "description": "The status of the dismissal request to filter on. When specified, only requests with this status will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "completed", + "cancelled", + "approved", + "expired", + "denied", + "open", + "all" + ], + "default": "all" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.19/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-server@3.19/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "A list of alert dismissal requests.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Dependabot alert dismissal request", + "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The unique identifier of the dismissal request." + }, + "number": { + "type": "integer", + "format": "int64", + "description": "The number uniquely identifying the dismissal request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the repository the dismissal request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the dismissal request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the dismissal request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who requested the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the dismissal request." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the dismissal request metadata.", + "items": { + "type": "object", + "properties": { + "reason": { + "type": "string", + "description": "The reason for the dismissal request." + }, + "alert_number": { + "type": "string", + "description": "The alert number." + }, + "alert_title": { + "type": "string", + "description": "The title of the alert." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the dismissal request.", + "examples": [ + "123" + ] + }, + "status": { + "type": "string", + "description": "The status of the dismissal request.", + "enum": [ + "pending", + "denied", + "approved", + "expired" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the dismissal request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the dismissal request.", + "items": { + "title": "Dismissal request response", + "description": "A response made by a requester to dismiss the request.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the response to the dismissal request." + }, + "reviewer": { + "type": "object", + "description": "The user who reviewed the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who reviewed the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who reviewed the dismissal request." + } + } + }, + "message": { + "type": [ + "string", + "null" + ], + "description": "The response comment of the reviewer." + }, + "status": { + "type": "string", + "description": "The response status to the dismissal request until dismissed.", + "enum": [ + "approved", + "denied", + "dismissed" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the response to the dismissal request was created." + } + } + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the dismissal request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/security/dependabot/1" + ] + } + } + } + }, + "examples": { + "default": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "no_bandwidth", + "alert_number": "1", + "alert_title": "lodash - GHSA-1234-abcd-5678" + } + ], + "resource_identifier": "1", + "status": "denied", + "requester_comment": "No bandwidth to fix this right now", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", + "html_url": "https://github.com/octo-org/smile/security/dependabot/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "tolerable_risk", + "alert_number": "2", + "alert_title": "axios - GHSA-5678-efgh-9012" + } + ], + "resource_identifier": "2", + "status": "approved", + "requester_comment": "Risk is acceptable for this internal tool", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 43, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "approved", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", + "html_url": "https://github.com/octo-org/smile/security/dependabot/2" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + } + } + }, "/orgs/{org}/dismissal-requests/secret-scanning": { "get": { "summary": "List alert dismissal requests for secret scanning for an org", diff --git a/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.2022-11-28.deref.yaml b/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.2022-11-28.deref.yaml index 013c09160..0e39bbf1c 100644 --- a/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.2022-11-28.deref.yaml +++ b/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.2022-11-28.deref.yaml @@ -930,7 +930,7 @@ paths: schema: type: object properties: - ldap_dn: &336 + ldap_dn: &338 type: string description: The [distinguished name](https://www.ldap.com/ldap-dns-and-rdns) (DN) of the LDAP entry to map to a team. @@ -4580,7 +4580,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/apps/webhooks#list-deliveries-for-an-app-webhook parameters: - *4 - - &253 + - &255 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 @@ -4596,7 +4596,7 @@ paths: application/json: schema: type: array - items: &254 + items: &256 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4692,7 +4692,7 @@ paths: - installation_id - repository_id examples: - default: &255 + default: &257 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4724,7 +4724,7 @@ paths: application/json: schema: *22 application/scim+json: - schema: &615 + schema: &616 title: Scim Error description: Scim Error type: object @@ -4827,7 +4827,7 @@ paths: description: Response content: application/json: - schema: &256 + schema: &258 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4962,7 +4962,7 @@ paths: - request - response examples: - default: &257 + default: &259 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -7097,7 +7097,7 @@ paths: schema: type: string '422': *33 - '410': &364 + '410': &366 description: Gone content: application/json: @@ -10716,7 +10716,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &616 + '401': &617 description: Authorization failure '404': *24 x-github: @@ -14868,7 +14868,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &427 + instances_url: &429 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -14904,7 +14904,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &428 + dismissed_reason: &430 type: - string - 'null' @@ -14915,14 +14915,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &429 + dismissed_comment: &431 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &430 + rule: &432 type: object properties: id: @@ -14983,7 +14983,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &431 + tool: &433 type: object properties: name: *114 @@ -14994,15 +14994,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *115 - most_recent_instance: &432 + most_recent_instance: &434 type: object properties: - ref: &425 + ref: &427 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &438 + analysis_key: &440 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -15013,7 +15013,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &439 + category: &441 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -17067,7 +17067,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 - - &458 + - &460 name: has in: query description: |- @@ -17194,7 +17194,7 @@ paths: - development - runtime - - security_advisory: &459 + security_advisory: &461 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17430,7 +17430,7 @@ paths: dismissal. maxLength: 280 fixed_at: *133 - auto_dismissed_at: &460 + auto_dismissed_at: &462 type: - string - 'null' @@ -17438,7 +17438,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &461 + dismissal_request: &463 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -18114,7 +18114,7 @@ paths: required: true content: application/json: - schema: &286 + schema: &288 title: Custom Property Set Payload description: Custom property set payload type: object @@ -18270,7 +18270,7 @@ paths: type: string format: date-time examples: - default: &318 + default: &320 value: - version_id: 3 actor: @@ -18323,7 +18323,7 @@ paths: description: Response content: application/json: - schema: &319 + schema: &321 allOf: - *139 - type: object @@ -18378,7 +18378,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *64 - - &320 + - &322 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -18389,7 +18389,7 @@ paths: enum: - open - resolved - - &321 + - &323 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -18399,7 +18399,7 @@ paths: required: false schema: type: string - - &322 + - &324 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -18408,7 +18408,7 @@ paths: required: false schema: type: string - - &323 + - &325 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. @@ -18424,7 +18424,7 @@ paths: - *4 - *112 - *113 - - &324 + - &326 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -18433,7 +18433,7 @@ paths: required: false schema: type: string - - &325 + - &327 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -18442,7 +18442,7 @@ paths: schema: type: boolean default: false - - &326 + - &328 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -18451,7 +18451,7 @@ paths: schema: type: boolean default: false - - &327 + - &329 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -18467,7 +18467,7 @@ paths: application/json: schema: type: array - items: &328 + items: &330 type: object properties: number: *123 @@ -18483,14 +18483,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &589 + state: &590 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: &590 + resolution: &591 type: - string - 'null' @@ -18592,14 +18592,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &591 + - &592 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &593 + - &594 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -18656,7 +18656,7 @@ paths: - blob_url - commit_sha - commit_url - - &594 + - &595 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. @@ -18717,7 +18717,7 @@ paths: - page_url - commit_sha - commit_url - - &595 + - &596 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -18732,7 +18732,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &596 + - &597 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -18747,7 +18747,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &597 + - &598 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -18762,7 +18762,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &598 + - &599 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -18777,7 +18777,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &599 + - &600 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -18792,7 +18792,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &600 + - &601 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -18807,7 +18807,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &601 + - &602 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. @@ -18822,7 +18822,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &602 + - &603 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. @@ -18837,7 +18837,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &603 + - &604 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. @@ -18852,7 +18852,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &604 + - &605 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. @@ -18867,7 +18867,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &605 + - &606 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 @@ -18892,7 +18892,7 @@ paths: - type: 'null' - *17 examples: - default: &329 + default: &331 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -19101,7 +19101,7 @@ paths: description: Response content: application/json: - schema: &330 + schema: &332 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -19188,7 +19188,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *141 examples: - default: &331 + default: &333 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -19324,7 +19324,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *64 - - &333 + - &335 name: advanced_security_product in: query description: | @@ -19344,7 +19344,7 @@ paths: description: Success content: application/json: - schema: &334 + schema: &336 type: object properties: total_advanced_security_committers: @@ -19407,7 +19407,7 @@ paths: required: - repositories examples: - default: &335 + default: &337 value: total_advanced_security_committers: 2 total_count: 2 @@ -19911,7 +19911,7 @@ paths: timeline_url: type: string format: uri - type: &642 + type: &643 title: Issue Type description: The type of issue. type: @@ -20022,7 +20022,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &639 + sub_issues_summary: &640 title: Sub-issues Summary type: object properties: @@ -20043,7 +20043,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &640 + issue_dependencies_summary: &641 title: Issue Dependencies Summary type: object properties: @@ -20062,7 +20062,7 @@ paths: - total_blocking issue_field_values: type: array - items: &641 + items: &642 title: Issue Field Value description: A value assigned to an issue field type: object @@ -20229,7 +20229,7 @@ paths: action: type: string issue: *145 - comment: &513 + comment: &514 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -20762,7 +20762,7 @@ paths: type: - array - 'null' - items: &266 + items: &268 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -20930,7 +20930,7 @@ paths: - review_comment - self author_association: *146 - auto_merge: &450 + auto_merge: &452 title: Auto merge description: The status of auto merging a pull request. type: @@ -21413,7 +21413,7 @@ paths: type: string release: allOf: - - &567 + - &568 title: Release description: A release. type: object @@ -21495,7 +21495,7 @@ paths: author: *17 assets: type: array - items: &568 + items: &569 title: Release Asset description: Data related to a release. type: object @@ -22089,7 +22089,7 @@ paths: url: type: string format: uri - user: &651 + user: &652 title: Public User description: Public User type: object @@ -23984,7 +23984,7 @@ paths: - closed - all default: open - - &258 + - &260 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -24035,7 +24035,7 @@ paths: type: array items: *145 examples: - default: &259 + default: &261 value: - id: 1 node_id: MDU6SXNzdWUx @@ -26791,14 +26791,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &354 + - &356 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &355 + - &357 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -26870,7 +26870,7 @@ paths: '404': *24 '403': *41 '304': *40 - '301': &359 + '301': &361 description: Moved permanently content: application/json: @@ -26892,7 +26892,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &541 + - &542 name: all description: If `true`, show notifications marked as read. in: query @@ -26900,7 +26900,7 @@ paths: schema: type: boolean default: false - - &542 + - &543 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -26910,7 +26910,7 @@ paths: type: boolean default: false - *153 - - &543 + - &544 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: @@ -27281,7 +27281,7 @@ paths: type: boolean examples: - false - security_and_analysis: &288 + security_and_analysis: &290 type: - object - 'null' @@ -27438,7 +27438,7 @@ paths: - url - subscription_url examples: - default: &544 + default: &545 value: - id: '1' repository: @@ -27991,7 +27991,7 @@ paths: type: array items: *72 examples: - default: &659 + default: &660 value: - login: github id: 1 @@ -29237,7 +29237,7 @@ paths: type: integer repository_cache_usages: type: array - items: &365 + items: &367 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -31724,7 +31724,7 @@ paths: description: Response content: application/json: - schema: &387 + schema: &389 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -31759,7 +31759,7 @@ paths: - key_id - key examples: - default: &388 + default: &390 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32172,7 +32172,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#list-organization-variables parameters: - *90 - - &372 + - &374 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-server@3.19/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -32908,7 +32908,7 @@ paths: be returned. in: query required: false - schema: &426 + schema: &428 type: string description: Severity of a code scanning alert. enum: @@ -34352,7 +34352,7 @@ paths: description: Response content: application/json: - schema: &464 + schema: &466 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34371,7 +34371,7 @@ paths: - key_id - key examples: - default: &465 + default: &467 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34701,7 +34701,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *90 - - &473 + - &475 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -34709,7 +34709,7 @@ paths: required: false schema: type: string - - &474 + - &476 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -34717,7 +34717,7 @@ paths: required: false schema: type: string - - &475 + - &477 name: time_period description: |- The time period to filter by. @@ -34733,7 +34733,7 @@ paths: - week - month default: month - - &476 + - &478 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -34758,7 +34758,7 @@ paths: application/json: schema: type: array - items: &477 + items: &479 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -34868,7 +34868,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: &479 + items: &251 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -34921,7 +34921,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &478 + default: &480 value: - id: 21 number: 42 @@ -34987,24 +34987,25 @@ paths: '403': *41 '422': *33 '500': *105 - "/orgs/{org}/dismissal-requests/secret-scanning": + "/orgs/{org}/dismissal-requests/dependabot": get: - summary: List alert dismissal requests for secret scanning for an org + summary: List dismissal requests for Dependabot alerts for an organization description: |- - Lists requests to dismiss secret scanning alerts in an org. + Lists dismissal requests for Dependabot alerts in an organization. Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, - or have the "Review and manage secret scanning alert dismissal requests" permission to access this endpoint. + or have the appropriate permission to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. tags: - - secret-scanning - operationId: secret-scanning/list-org-dismissal-requests + - dependabot + operationId: dependabot/list-dismissal-requests-for-org externalDocs: description: API method documentation - url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/alert-dismissal-requests#list-alert-dismissal-requests-for-secret-scanning-for-an-org + url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization x-github: githubCloudOnly: true enabledForGitHubApps: true - category: secret-scanning + category: dependabot subcategory: alert-dismissal-requests parameters: - *90 @@ -35012,7 +35013,7 @@ paths: - *107 - *108 - *109 - - &481 + - &252 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -35031,6 +35032,231 @@ paths: default: all - *4 - *5 + responses: + '200': + description: A list of alert dismissal requests. + content: + application/json: + schema: + type: array + items: &481 + title: Dependabot alert dismissal request + description: Alert dismissal request made by a user asking to dismiss + a Dependabot alert. + type: object + properties: + id: + type: integer + format: int64 + description: The unique identifier of the dismissal request. + number: + type: integer + format: int64 + description: The number uniquely identifying the dismissal request + within its repository. + repository: + type: object + description: The repository the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the repository the dismissal request + is for. + name: + type: string + description: The name of the repository the dismissal request + is for. + full_name: + type: string + description: The full name of the repository the dismissal + request is for. + organization: + type: object + description: The organization associated with the repository + the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the dismissal request. + properties: + actor_id: + type: integer + format: int64 + description: The ID of the GitHub user who requested the + dismissal request. + actor_name: + type: string + description: The name of the GitHub user who requested the + dismissal request. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the dismissal request metadata. + items: + type: object + properties: + reason: + type: string + description: The reason for the dismissal request. + alert_number: + type: string + description: The alert number. + alert_title: + type: string + description: The title of the alert. + resource_identifier: + type: string + description: The unique identifier for the request type of the + dismissal request. + examples: + - '123' + status: + type: string + description: The status of the dismissal request. + enum: + - pending + - denied + - approved + - expired + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating + the dismissal request. + expires_at: + type: string + format: date-time + description: The date and time the dismissal request will expire. + created_at: + type: string + format: date-time + description: The date and time the dismissal request was created. + responses: + type: + - array + - 'null' + description: The responses to the dismissal request. + items: *251 + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: + type: string + description: The URL to view the dismissal request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/security/dependabot/1 + examples: + default: &482 + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: no_bandwidth + alert_number: '1' + alert_title: lodash - GHSA-1234-abcd-5678 + resource_identifier: '1' + status: denied + requester_comment: No bandwidth to fix this right now + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: https://github.com/octo-org/smile/security/dependabot/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: tolerable_risk + alert_number: '2' + alert_title: axios - GHSA-5678-efgh-9012 + resource_identifier: '2' + status: approved + requester_comment: Risk is acceptable for this internal tool + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 43 + reviewer: + actor_id: 4 + actor_name: octocat + status: approved + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 + html_url: https://github.com/octo-org/smile/security/dependabot/2 + '404': *24 + '403': *41 + '500': *105 + "/orgs/{org}/dismissal-requests/secret-scanning": + get: + summary: List alert dismissal requests for secret scanning for an org + description: |- + Lists requests to dismiss secret scanning alerts in an org. + + Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, + or have the "Review and manage secret scanning alert dismissal requests" permission to access this endpoint. + tags: + - secret-scanning + operationId: secret-scanning/list-org-dismissal-requests + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/alert-dismissal-requests#list-alert-dismissal-requests-for-secret-scanning-for-an-org + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: secret-scanning + subcategory: alert-dismissal-requests + parameters: + - *90 + - *222 + - *107 + - *108 + - *109 + - *252 + - *4 + - *5 responses: '200': description: A list of the alert dismissal requests. @@ -35038,7 +35264,7 @@ paths: application/json: schema: type: array - items: &482 + items: &483 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -35165,7 +35391,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &483 + default: &484 value: - id: 21 number: 42 @@ -35253,7 +35479,7 @@ paths: application/json: schema: type: array - items: &268 + items: &270 title: Package description: A software package type: object @@ -35324,7 +35550,7 @@ paths: - created_at - updated_at examples: - default: &269 + default: &271 value: - id: 197 name: hello_docker @@ -35521,7 +35747,7 @@ paths: description: Response content: application/json: - schema: &351 + schema: &353 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -35611,7 +35837,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &352 + default: &354 value: group_id: '123' group_name: Octocat admins @@ -35666,7 +35892,7 @@ paths: description: Response content: application/json: - schema: &349 + schema: &351 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -35706,7 +35932,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &350 + default: &352 value: groups: - group_id: '123' @@ -35753,7 +35979,7 @@ paths: application/json: schema: type: array - items: &251 + items: &253 title: Org Hook description: Org Hook type: object @@ -35938,9 +36164,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: &252 + default: &254 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -35994,9 +36220,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: *252 + default: *254 '404': *24 x-github: githubCloudOnly: false @@ -36070,7 +36296,7 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: default: value: @@ -36224,7 +36450,7 @@ paths: - *90 - *3 - *4 - - *253 + - *255 responses: '200': description: Response @@ -36232,9 +36458,9 @@ paths: application/json: schema: type: array - items: *254 + items: *256 examples: - default: *255 + default: *257 '400': *32 '422': *33 x-github: @@ -36267,9 +36493,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *258 examples: - default: *257 + default: *259 '400': *32 '422': *33 x-github: @@ -36357,7 +36583,7 @@ paths: application/json: schema: *37 examples: - default: &510 + default: &511 value: id: 1 account: @@ -36554,7 +36780,7 @@ paths: - closed - all default: open - - *258 + - *260 - name: type description: Can be the name of an issue type. in: query @@ -36585,7 +36811,7 @@ paths: type: array items: *145 examples: - default: *259 + default: *261 headers: Link: *6 '404': *24 @@ -36645,7 +36871,7 @@ paths: type: array items: *17 examples: - default: &267 + default: &269 value: - login: octocat id: 1 @@ -36750,7 +36976,7 @@ paths: description: Response content: application/json: - schema: &260 + schema: &262 title: Org Membership description: Org Membership type: object @@ -36819,7 +37045,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &261 + response-if-user-has-an-active-admin-membership-with-organization: &263 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -36915,9 +37141,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *262 examples: - response-if-user-already-had-membership-with-organization: *261 + response-if-user-already-had-membership-with-organization: *263 '422': *33 '403': *41 x-github: @@ -36989,7 +37215,7 @@ paths: application/json: schema: type: array - items: &262 + items: &264 title: Migration description: A migration. type: object @@ -37330,7 +37556,7 @@ paths: description: Response content: application/json: - schema: *262 + schema: *264 examples: default: value: @@ -37509,7 +37735,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/migrations/orgs#get-an-organization-migration-status parameters: - *90 - - &263 + - &265 name: migration_id description: The unique identifier of the migration. in: path @@ -37537,7 +37763,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *262 + schema: *264 examples: default: value: @@ -37707,7 +37933,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *90 - - *263 + - *265 responses: '302': description: Response @@ -37729,7 +37955,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *90 - - *263 + - *265 responses: '204': description: Response @@ -37753,7 +37979,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/migrations/orgs#unlock-an-organization-repository parameters: - *90 - - *263 + - *265 - name: repo_name description: repo_name parameter in: path @@ -37781,7 +38007,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *90 - - *263 + - *265 - *4 - *5 responses: @@ -37793,7 +38019,7 @@ paths: type: array items: *195 examples: - default: &274 + default: &276 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -38002,7 +38228,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &264 + items: &266 title: Organization Role description: Organization roles type: object @@ -38211,7 +38437,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -38263,7 +38489,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *90 - - &265 + - &267 name: team_slug description: The slug of the team name. in: path @@ -38295,7 +38521,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *90 - - *265 + - *267 - *238 responses: '204': @@ -38326,7 +38552,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *90 - - *265 + - *267 - *238 responses: '204': @@ -38447,7 +38673,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -38544,7 +38770,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -38703,7 +38929,7 @@ paths: parent: anyOf: - type: 'null' - - *266 + - *268 type: description: The ownership type of the team type: string @@ -38736,7 +38962,7 @@ paths: - type - parent examples: - default: &332 + default: &334 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -38809,7 +39035,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *266 + items: *268 name: type: - string @@ -38926,7 +39152,7 @@ paths: - type - url examples: - default: *267 + default: *269 headers: Link: *6 '404': @@ -38977,7 +39203,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -39119,7 +39345,7 @@ paths: - nuget - container - *90 - - &660 + - &661 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -39155,12 +39381,12 @@ paths: application/json: schema: type: array - items: *268 + items: *270 examples: - default: *269 + default: *271 '403': *41 '401': *39 - '400': &662 + '400': &663 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -39182,7 +39408,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-for-an-organization parameters: - - &270 + - &272 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 @@ -39200,7 +39426,7 @@ paths: - docker - nuget - container - - &271 + - &273 name: package_name description: The name of the package. in: path @@ -39213,7 +39439,7 @@ paths: description: Response content: application/json: - schema: *268 + schema: *270 examples: default: value: @@ -39265,8 +39491,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *270 - - *271 + - *272 + - *273 - *90 responses: '204': @@ -39299,8 +39525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *270 - - *271 + - *272 + - *273 - *90 - name: token description: package token @@ -39333,8 +39559,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *270 - - *271 + - *272 + - *273 - *90 - *5 - *4 @@ -39355,7 +39581,7 @@ paths: application/json: schema: type: array - items: &272 + items: &274 title: Package Version description: A version of a software package type: object @@ -39490,10 +39716,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *270 - - *271 + - *272 + - *273 - *90 - - &273 + - &275 name: package_version_id description: Unique identifier of the package version. in: path @@ -39505,7 +39731,7 @@ paths: description: Response content: application/json: - schema: *272 + schema: *274 examples: default: value: @@ -39541,10 +39767,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *270 - - *271 - - *90 + - *272 - *273 + - *90 + - *275 responses: '204': description: Response @@ -39576,10 +39802,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *270 - - *271 - - *90 + - *272 - *273 + - *90 + - *275 responses: '204': description: Response @@ -39609,7 +39835,7 @@ paths: - *90 - *4 - *5 - - &275 + - &277 name: sort description: The property by which to sort the results. in: query @@ -39620,7 +39846,7 @@ paths: - created_at default: created_at - *9 - - &276 + - &278 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -39632,7 +39858,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &277 + - &279 name: repository description: The name of the repository to use to filter the results. in: query @@ -39641,7 +39867,7 @@ paths: type: string examples: - Hello-World - - &278 + - &280 name: permission description: The permission to use to filter the results. in: query @@ -39650,7 +39876,7 @@ paths: type: string examples: - issues_read - - &279 + - &281 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) @@ -39660,7 +39886,7 @@ paths: schema: type: string format: date-time - - &280 + - &282 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) @@ -39670,7 +39896,7 @@ paths: schema: type: string format: date-time - - &281 + - &283 name: token_id description: The ID of the token in: query @@ -39989,7 +40215,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -40015,14 +40241,14 @@ paths: - *90 - *4 - *5 - - *275 - - *9 - - *276 - *277 + - *9 - *278 - *279 - *280 - *281 + - *282 + - *283 responses: '500': *105 '422': *33 @@ -40306,7 +40532,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -40350,7 +40576,7 @@ paths: application/json: schema: type: array - items: &282 + items: &284 type: object properties: id: @@ -40394,9 +40620,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *284 examples: - default: &283 + default: &285 value: id: 42 name: Check Commits @@ -40426,7 +40652,7 @@ paths: description: Response content: application/json: - schema: *282 + schema: *284 examples: default: value: @@ -40475,9 +40701,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *284 examples: - default: *283 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40517,7 +40743,7 @@ paths: type: integer configurations: type: array - items: &284 + items: &286 title: Organization private registry description: Private registry configuration for an organization type: object @@ -40813,7 +41039,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &285 + org-private-registry-with-selected-visibility: &287 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -40911,9 +41137,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *284 + schema: *286 examples: - default: *285 + default: *287 '404': *24 x-github: githubCloudOnly: false @@ -41204,7 +41430,7 @@ paths: required: true content: application/json: - schema: *286 + schema: *288 examples: default: value: @@ -41311,7 +41537,7 @@ paths: - octocat/Hello-World properties: type: array - items: &287 + items: &289 title: Custom Property Value description: Custom property name and associated value type: object @@ -41401,7 +41627,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *287 + items: *289 required: - repository_names - properties @@ -41454,7 +41680,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -41595,7 +41821,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -41805,7 +42031,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &360 title: Full Repository description: Full Repository type: object @@ -42300,7 +42526,7 @@ paths: - key - name - html_url - security_and_analysis: *288 + security_and_analysis: *290 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42384,7 +42610,7 @@ paths: - network_count - subscribers_count examples: - default: &360 + default: &362 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42956,7 +43182,7 @@ paths: - *90 - *4 - *5 - - &576 + - &577 name: targets description: | A comma-separated list of rule targets to filter by. @@ -42975,7 +43201,7 @@ paths: application/json: schema: type: array - items: &315 + items: &317 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -43008,7 +43234,7 @@ paths: source: type: string description: The name of the source - enforcement: &291 + enforcement: &293 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -43021,7 +43247,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &292 + items: &294 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -43090,7 +43316,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &289 + - &291 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -43114,7 +43340,7 @@ paths: match. items: type: string - - &293 + - &295 title: Organization ruleset conditions type: object description: |- @@ -43127,7 +43353,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *289 + - *291 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -43161,7 +43387,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *289 + - *291 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -43183,7 +43409,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *289 + - *291 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -43196,7 +43422,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &290 + items: &292 title: Repository ruleset property targeting definition type: object @@ -43229,7 +43455,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *290 + items: *292 required: - repository_property type: @@ -43237,12 +43463,12 @@ paths: - object rules: type: array - items: &577 + items: &578 title: Repository Rule type: object description: A repository rule. oneOf: - - &294 + - &296 title: creation description: Only allow users with bypass permission to create matching refs. @@ -43254,7 +43480,7 @@ paths: type: string enum: - creation - - &295 + - &297 title: update description: Only allow users with bypass permission to update matching refs. @@ -43275,7 +43501,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &296 + - &298 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -43287,7 +43513,7 @@ paths: type: string enum: - deletion - - &297 + - &299 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -43299,7 +43525,7 @@ paths: type: string enum: - required_linear_history - - &575 + - &576 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -43377,7 +43603,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &298 + - &300 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -43401,7 +43627,7 @@ paths: type: string required: - required_deployment_environments - - &299 + - &301 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -43413,7 +43639,7 @@ paths: type: string enum: - required_signatures - - &300 + - &302 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -43519,7 +43745,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &301 + - &303 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -43567,7 +43793,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &302 + - &304 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -43579,7 +43805,7 @@ paths: type: string enum: - non_fast_forward - - &303 + - &305 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -43615,7 +43841,7 @@ paths: required: - operator - pattern - - &304 + - &306 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -43651,7 +43877,7 @@ paths: required: - operator - pattern - - &305 + - &307 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -43687,7 +43913,7 @@ paths: required: - operator - pattern - - &306 + - &308 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -43723,7 +43949,7 @@ paths: required: - operator - pattern - - &307 + - &309 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -43759,7 +43985,7 @@ paths: required: - operator - pattern - - &308 + - &310 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -43784,7 +44010,7 @@ paths: type: string required: - restricted_file_paths - - &309 + - &311 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -43808,7 +44034,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &310 + - &312 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -43831,7 +44057,7 @@ paths: type: string required: - restricted_file_extensions - - &311 + - &313 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -43856,7 +44082,7 @@ paths: maximum: 100 required: - max_file_size - - &312 + - &314 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -43906,7 +44132,7 @@ paths: - repository_id required: - workflows - - &313 + - &315 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -43967,7 +44193,7 @@ paths: - tool required: - code_scanning_tools - - &314 + - &316 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -44065,22 +44291,20 @@ paths: - tag - push default: branch - enforcement: *291 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *292 - conditions: *293 + items: *294 + conditions: *295 rules: type: array description: An array of rules within the ruleset. - items: &317 + items: &319 title: Repository Rule type: object description: A repository rule. oneOf: - - *294 - - *295 - *296 - *297 - *298 @@ -44100,6 +44324,8 @@ paths: - *312 - *313 - *314 + - *315 + - *316 source_type: type: string description: The type of the source of the ruleset @@ -44143,9 +44369,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: &316 + default: &318 value: id: 21 name: super cool ruleset @@ -44200,7 +44426,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *90 - - &578 + - &579 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 @@ -44212,14 +44438,14 @@ paths: x-multi-segment: true - *222 - *109 - - &579 + - &580 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 - - &580 + - &581 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -44239,7 +44465,7 @@ paths: description: Response content: application/json: - schema: &581 + schema: &582 title: Rule Suites description: Response type: array @@ -44295,7 +44521,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &582 + default: &583 value: - id: 21 actor_id: 12 @@ -44339,7 +44565,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *90 - - &583 + - &584 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44355,7 +44581,7 @@ paths: description: Response content: application/json: - schema: &584 + schema: &585 title: Rule Suite description: Response type: object @@ -44462,7 +44688,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &585 + default: &586 value: id: 21 actor_id: 12 @@ -44535,9 +44761,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *316 + default: *318 '404': *24 '500': *105 put: @@ -44580,16 +44806,16 @@ paths: - branch - tag - push - enforcement: *291 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *292 - conditions: *293 + items: *294 + conditions: *295 rules: description: An array of rules within the ruleset. type: array - items: *317 + items: *319 examples: default: value: @@ -44624,9 +44850,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *316 + default: *318 '404': *24 '500': *105 delete: @@ -44685,7 +44911,7 @@ paths: type: array items: *139 examples: - default: *318 + default: *320 '404': *24 '500': *105 x-github: @@ -44722,7 +44948,7 @@ paths: description: Response content: application/json: - schema: *319 + schema: *321 examples: default: value: @@ -44785,14 +45011,14 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *90 - - *320 - - *321 - *322 - *323 + - *324 + - *325 - *9 - *5 - *4 - - &587 + - &588 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.19/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -44802,7 +45028,7 @@ paths: required: false schema: type: string - - &588 + - &589 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.19/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -44812,10 +45038,10 @@ paths: required: false schema: type: string - - *324 - - *325 - *326 - *327 + - *328 + - *329 responses: '200': description: Response @@ -44823,9 +45049,9 @@ paths: application/json: schema: type: array - items: *328 + items: *330 examples: - default: *329 + default: *331 headers: Link: *6 '404': *24 @@ -44860,9 +45086,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *332 examples: - default: *331 + default: *333 '403': *41 '404': *24 patch: @@ -44976,9 +45202,9 @@ paths: application/json: schema: type: array - items: *266 + items: *268 examples: - default: *332 + default: *334 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45000,7 +45226,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/security-managers#add-a-security-manager-team parameters: - *90 - - *265 + - *267 responses: '204': description: Response @@ -45024,7 +45250,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *90 - - *265 + - *267 responses: '204': description: Response @@ -45054,7 +45280,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *90 - - *333 + - *335 - *4 - *5 responses: @@ -45062,9 +45288,9 @@ paths: description: Success content: application/json: - schema: *334 + schema: *336 examples: - default: *335 + default: *337 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45092,7 +45318,7 @@ paths: application/json: schema: type: array - items: &356 + items: &358 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -45169,7 +45395,7 @@ paths: parent: anyOf: - type: 'null' - - *266 + - *268 required: - id - node_id @@ -45184,7 +45410,7 @@ paths: - parent - type examples: - default: *332 + default: *334 headers: Link: *6 '403': *41 @@ -45286,7 +45512,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &339 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -45360,7 +45586,7 @@ paths: parent: anyOf: - type: 'null' - - *266 + - *268 members_count: type: integer examples: @@ -45643,7 +45869,7 @@ paths: - created_at - updated_at - archived_at - ldap_dn: *336 + ldap_dn: *338 type: description: The ownership type of the team type: string @@ -45680,7 +45906,7 @@ paths: - repos_count - organization examples: - default: &338 + default: &340 value: id: 1 node_id: MDQ6VGVhbTE= @@ -45750,15 +45976,15 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#get-a-team-by-name parameters: - *90 - - *265 + - *267 responses: '200': description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *24 x-github: githubCloudOnly: false @@ -45780,7 +46006,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#update-a-team parameters: - *90 - - *265 + - *267 requestBody: required: false content: @@ -45843,16 +46069,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '201': description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *24 '422': *33 '403': *41 @@ -45878,7 +46104,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#delete-a-team parameters: - *90 - - *265 + - *267 responses: '204': description: Response @@ -45905,7 +46131,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#list-discussions parameters: - *90 - - *265 + - *267 - *9 - *4 - *5 @@ -45922,7 +46148,7 @@ paths: application/json: schema: type: array - items: &339 + items: &341 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -46033,7 +46259,7 @@ paths: - updated_at - url examples: - default: &643 + default: &644 value: - author: login: octocat @@ -46108,7 +46334,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#create-a-discussion parameters: - *90 - - *265 + - *267 requestBody: required: true content: @@ -46142,9 +46368,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: &340 + default: &342 value: author: login: octocat @@ -46217,8 +46443,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#get-a-discussion parameters: - *90 - - *265 - - &341 + - *267 + - &343 name: discussion_number description: The number that identifies the discussion. in: path @@ -46230,9 +46456,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *340 + default: *342 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46255,8 +46481,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#update-a-discussion parameters: - *90 - - *265 - - *341 + - *267 + - *343 requestBody: required: false content: @@ -46279,9 +46505,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: &644 + default: &645 value: author: login: octocat @@ -46352,8 +46578,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#delete-a-discussion parameters: - *90 - - *265 - - *341 + - *267 + - *343 responses: '204': description: Response @@ -46380,8 +46606,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#list-discussion-comments parameters: - *90 - - *265 - - *341 + - *267 + - *343 - *9 - *4 - *5 @@ -46392,7 +46618,7 @@ paths: application/json: schema: type: array - items: &342 + items: &344 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -46472,7 +46698,7 @@ paths: - updated_at - url examples: - default: &645 + default: &646 value: - author: login: octocat @@ -46541,8 +46767,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *90 - - *265 - - *341 + - *267 + - *343 requestBody: required: true content: @@ -46564,9 +46790,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: &343 + default: &345 value: author: login: octocat @@ -46633,9 +46859,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *90 - - *265 - - *341 - - &344 + - *267 + - *343 + - &346 name: comment_number description: The number that identifies the comment. in: path @@ -46647,9 +46873,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: *343 + default: *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46672,9 +46898,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *90 - - *265 - - *341 - - *344 + - *267 + - *343 + - *346 requestBody: required: true content: @@ -46696,9 +46922,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: &646 + default: &647 value: author: login: octocat @@ -46763,9 +46989,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *90 - - *265 - - *341 - - *344 + - *267 + - *343 + - *346 responses: '204': description: Response @@ -46792,9 +47018,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *90 - - *265 - - *341 - - *344 + - *267 + - *343 + - *346 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -46820,7 +47046,7 @@ paths: application/json: schema: type: array - items: &345 + items: &347 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -46864,7 +47090,7 @@ paths: - content - created_at examples: - default: &347 + default: &349 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46915,9 +47141,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *90 - - *265 - - *341 - - *344 + - *267 + - *343 + - *346 requestBody: required: true content: @@ -46950,9 +47176,9 @@ paths: team discussion comment content: application/json: - schema: *345 + schema: *347 examples: - default: &346 + default: &348 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46981,9 +47207,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47007,10 +47233,10 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *90 - - *265 - - *341 - - *344 - - &348 + - *267 + - *343 + - *346 + - &350 name: reaction_id description: The unique identifier of the reaction. in: path @@ -47043,8 +47269,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *90 - - *265 - - *341 + - *267 + - *343 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -47070,9 +47296,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 x-github: @@ -47099,8 +47325,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *90 - - *265 - - *341 + - *267 + - *343 requestBody: required: true content: @@ -47132,16 +47358,16 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47165,9 +47391,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *90 - - *265 - - *341 - - *348 + - *267 + - *343 + - *350 responses: '204': description: Response @@ -47191,15 +47417,15 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *90 - - *265 + - *267 responses: '200': description: Response content: application/json: - schema: *349 + schema: *351 examples: - default: *350 + default: *352 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -47219,7 +47445,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *90 - - *265 + - *267 requestBody: required: true content: @@ -47243,9 +47469,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -47265,7 +47491,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *90 - - *265 + - *267 responses: '204': description: Response @@ -47289,7 +47515,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/members#list-team-members parameters: - *90 - - *265 + - *267 - name: role description: Filters members returned by their role in the team. in: query @@ -47312,7 +47538,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -47343,14 +47569,14 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/members#get-team-membership-for-a-user parameters: - *90 - - *265 + - *267 - *8 responses: '200': description: Response content: application/json: - schema: &353 + schema: &355 title: Team Membership description: Team Membership type: object @@ -47378,7 +47604,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &647 + response-if-user-is-a-team-maintainer: &648 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47415,7 +47641,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *90 - - *265 + - *267 - *8 requestBody: required: false @@ -47441,9 +47667,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *355 examples: - response-if-users-membership-with-team-is-now-pending: &648 + response-if-users-membership-with-team-is-now-pending: &649 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47479,7 +47705,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/members#remove-team-membership-for-a-user parameters: - *90 - - *265 + - *267 - *8 responses: '204': @@ -47507,7 +47733,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#list-team-repositories parameters: - *90 - - *265 + - *267 - *4 - *5 responses: @@ -47519,7 +47745,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -47549,15 +47775,15 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *90 - - *265 - - *354 - - *355 + - *267 + - *356 + - *357 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &649 + schema: &650 title: Team Repository description: A team's access to a repository. type: object @@ -48199,9 +48425,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *90 - - *265 - - *354 - - *355 + - *267 + - *356 + - *357 requestBody: required: false content: @@ -48247,9 +48473,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#remove-a-repository-from-a-team parameters: - *90 - - *265 - - *354 - - *355 + - *267 + - *356 + - *357 responses: '204': description: Response @@ -48274,7 +48500,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#list-child-teams parameters: - *90 - - *265 + - *267 - *4 - *5 responses: @@ -48284,9 +48510,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - response-if-child-teams-exist: &650 + response-if-child-teams-exist: &651 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48440,7 +48666,7 @@ paths: resources: type: object properties: - core: &357 + core: &359 title: Rate Limit type: object properties: @@ -48457,20 +48683,20 @@ paths: - remaining - reset - used - graphql: *357 - search: *357 - code_search: *357 - source_import: *357 - integration_manifest: *357 - code_scanning_upload: *357 - actions_runner_registration: *357 - scim: *357 - dependency_sbom: *357 - code_scanning_autofix: *357 + graphql: *359 + search: *359 + code_search: *359 + source_import: *359 + integration_manifest: *359 + code_scanning_upload: *359 + actions_runner_registration: *359 + scim: *359 + dependency_sbom: *359 + code_scanning_autofix: *359 required: - core - search - rate: *357 + rate: *359 required: - rate - resources @@ -48575,14 +48801,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#get-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *358 + schema: *360 examples: default-response: summary: Default response @@ -49083,7 +49309,7 @@ paths: status: disabled '403': *41 '404': *24 - '301': *359 + '301': *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49101,8 +49327,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#update-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -49336,10 +49562,10 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 - '307': &361 + default: *362 + '307': &363 description: Temporary Redirect content: application/json: @@ -49384,8 +49610,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#delete-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -49407,7 +49633,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#delete-a-repository - '307': *361 + '307': *363 '404': *24 '409': *121 x-github: @@ -49431,11 +49657,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 - - &379 + - &381 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -49458,7 +49684,7 @@ paths: type: integer artifacts: type: array - items: &362 + items: &364 title: Artifact description: An artifact type: object @@ -49544,7 +49770,7 @@ paths: - expires_at - updated_at examples: - default: &380 + default: &382 value: total_count: 2 artifacts: @@ -49603,9 +49829,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/artifacts#get-an-artifact parameters: - - *354 - - *355 - - &363 + - *356 + - *357 + - &365 name: artifact_id description: The unique identifier of the artifact. in: path @@ -49617,7 +49843,7 @@ paths: description: Response content: application/json: - schema: *362 + schema: *364 examples: default: value: @@ -49654,9 +49880,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/artifacts#delete-an-artifact parameters: - - *354 - - *355 - - *363 + - *356 + - *357 + - *365 responses: '204': description: Response @@ -49680,9 +49906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/artifacts#download-an-artifact parameters: - - *354 - - *355 - - *363 + - *356 + - *357 + - *365 - name: archive_format in: path required: true @@ -49696,7 +49922,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49719,14 +49945,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -49752,14 +49978,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#get-github-actions-cache-usage-policy-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: &366 + schema: &368 title: Actions cache usage policy for repository description: GitHub Actions cache usage policy for repository. type: object @@ -49772,7 +49998,7 @@ paths: required: - repo_cache_size_limit_in_gb examples: - default: &367 + default: &369 value: repo_cache_size_limit_in_gb: 14 x-github: @@ -49793,8 +50019,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#set-github-actions-cache-usage-policy-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -49802,9 +50028,9 @@ paths: required: true content: application/json: - schema: *366 + schema: *368 examples: - selected_actions: *367 + selected_actions: *369 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49824,11 +50050,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 - - &368 + - &370 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 @@ -49862,7 +50088,7 @@ paths: description: Response content: application/json: - schema: &369 + schema: &371 title: Repository actions caches description: Repository actions caches type: object @@ -49912,7 +50138,7 @@ paths: - total_count - actions_caches examples: - default: &370 + default: &372 value: total_count: 1 actions_caches: @@ -49944,23 +50170,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *354 - - *355 + - *356 + - *357 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *368 + - *370 responses: '200': description: Response content: application/json: - schema: *369 + schema: *371 examples: - default: *370 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49980,8 +50206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *354 - - *355 + - *356 + - *357 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50012,9 +50238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *354 - - *355 - - &371 + - *356 + - *357 + - &373 name: job_id description: The unique identifier of the job. in: path @@ -50026,7 +50252,7 @@ paths: description: Response content: application/json: - schema: &383 + schema: &385 title: Job description: Information of a job execution in a workflow run type: object @@ -50373,9 +50599,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *354 - - *355 - - *371 + - *356 + - *357 + - *373 responses: '302': description: Response @@ -50403,9 +50629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *354 - - *355 - - *371 + - *356 + - *357 + - *373 requestBody: required: false content: @@ -50451,8 +50677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Status response @@ -50502,8 +50728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -50566,8 +50792,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#list-repository-organization-secrets parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -50585,7 +50811,7 @@ paths: type: integer secrets: type: array - items: &385 + items: &387 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -50606,7 +50832,7 @@ paths: - created_at - updated_at examples: - default: &386 + default: &388 value: total_count: 2 secrets: @@ -50639,9 +50865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#list-repository-organization-variables parameters: - - *354 - - *355 - - *372 + - *356 + - *357 + - *374 - *5 responses: '200': @@ -50658,7 +50884,7 @@ paths: type: integer variables: type: array - items: &389 + items: &391 title: Actions Variable type: object properties: @@ -50692,7 +50918,7 @@ paths: - created_at - updated_at examples: - default: &390 + default: &392 value: total_count: 2 variables: @@ -50725,8 +50951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -50735,7 +50961,7 @@ paths: schema: type: object properties: - enabled: &373 + enabled: &375 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *68 @@ -50770,8 +50996,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -50782,7 +51008,7 @@ paths: schema: type: object properties: - enabled: *373 + enabled: *375 allowed_actions: *68 sha_pinning_required: *69 required: @@ -50815,14 +51041,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: &374 + schema: &376 type: object properties: access_level: @@ -50840,7 +51066,7 @@ paths: required: - access_level examples: - default: &375 + default: &377 value: access_level: organization x-github: @@ -50865,15 +51091,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: application/json: - schema: *374 + schema: *376 examples: - default: *375 + default: *377 responses: '204': description: Response @@ -50897,8 +51123,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -50928,8 +51154,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Empty response for successful settings update @@ -50963,8 +51189,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -50991,8 +51217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -51026,8 +51252,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -51055,8 +51281,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -51087,8 +51313,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -51119,8 +51345,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -51152,8 +51378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -51182,8 +51408,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Success response @@ -51223,8 +51449,8 @@ paths: in: query schema: type: string - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -51268,8 +51494,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -51301,8 +51527,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -51376,8 +51602,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '201': description: Response @@ -51413,8 +51639,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '201': description: Response @@ -51444,8 +51670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 responses: '200': @@ -51475,8 +51701,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 responses: '204': @@ -51503,8 +51729,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 responses: '200': *89 @@ -51529,8 +51755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 requestBody: required: true @@ -51579,8 +51805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 requestBody: required: true @@ -51630,8 +51856,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 responses: '200': *202 @@ -51661,8 +51887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 - *203 responses: @@ -51692,9 +51918,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *354 - - *355 - - &393 + - *356 + - *357 + - &395 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. @@ -51702,7 +51928,7 @@ paths: required: false schema: type: string - - &394 + - &396 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -51710,7 +51936,7 @@ paths: required: false schema: type: string - - &395 + - &397 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -51719,7 +51945,7 @@ paths: required: false schema: type: string - - &396 + - &398 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 @@ -51746,7 +51972,7 @@ paths: - pending - *4 - *5 - - &397 + - &399 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-server@3.19/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -51755,7 +51981,7 @@ paths: schema: type: string format: date-time - - &376 + - &378 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -51764,13 +51990,13 @@ paths: schema: type: boolean default: false - - &398 + - &400 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &399 + - &401 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -51793,7 +52019,7 @@ paths: type: integer workflow_runs: type: array - items: &377 + items: &379 title: Workflow Run description: An invocation of a workflow type: object @@ -51910,7 +52136,7 @@ paths: type: - array - 'null' - items: &417 + items: &419 title: Pull Request Minimal type: object properties: @@ -52037,7 +52263,7 @@ paths: head_commit: anyOf: - type: 'null' - - &421 + - &423 title: Simple Commit description: A commit. type: object @@ -52152,7 +52378,7 @@ paths: - workflow_url - pull_requests examples: - default: &400 + default: &402 value: total_count: 1 workflow_runs: @@ -52388,24 +52614,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *354 - - *355 - - &378 + - *356 + - *357 + - &380 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *376 + - *378 responses: '200': description: Response content: application/json: - schema: *377 + schema: *379 examples: - default: &381 + default: &383 value: id: 30433642 name: Build @@ -52646,9 +52872,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '204': description: Response @@ -52671,9 +52897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '200': description: Response @@ -52803,12 +53029,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 - *4 - *5 - - *379 + - *381 responses: '200': description: Response @@ -52824,9 +53050,9 @@ paths: type: integer artifacts: type: array - items: *362 + items: *364 examples: - default: *380 + default: *382 headers: Link: *6 x-github: @@ -52850,25 +53076,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *354 - - *355 - - *378 - - &382 + - *356 + - *357 + - *380 + - &384 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *376 + - *378 responses: '200': description: Response content: application/json: - schema: *377 + schema: *379 examples: - default: *381 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52891,10 +53117,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *354 - - *355 - - *378 - - *382 + - *356 + - *357 + - *380 + - *384 - *4 - *5 responses: @@ -52912,9 +53138,9 @@ paths: type: integer jobs: type: array - items: *383 + items: *385 examples: - default: &384 + default: &386 value: total_count: 1 jobs: @@ -53027,10 +53253,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *354 - - *355 - - *378 - - *382 + - *356 + - *357 + - *380 + - *384 responses: '302': description: Response @@ -53058,9 +53284,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '202': description: Response @@ -53093,9 +53319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 requestBody: required: true content: @@ -53162,9 +53388,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '202': description: Response @@ -53197,9 +53423,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 - 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 @@ -53229,9 +53455,9 @@ paths: type: integer jobs: type: array - items: *383 + items: *385 examples: - default: *384 + default: *386 headers: Link: *6 x-github: @@ -53256,9 +53482,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '302': description: Response @@ -53285,9 +53511,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '204': description: Response @@ -53314,9 +53540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '200': description: Response @@ -53385,7 +53611,7 @@ paths: items: type: object properties: - type: &484 + type: &485 type: string description: The type of reviewer. enum: @@ -53396,7 +53622,7 @@ paths: reviewer: anyOf: - *17 - - *356 + - *358 required: - environment - wait_timer @@ -53471,9 +53697,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 requestBody: required: true content: @@ -53523,7 +53749,7 @@ paths: application/json: schema: type: array - items: &468 + items: &470 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -53635,7 +53861,7 @@ paths: - created_at - updated_at examples: - default: &469 + default: &471 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -53691,9 +53917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 requestBody: required: false content: @@ -53738,9 +53964,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 requestBody: required: false content: @@ -53788,8 +54014,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#list-repository-secrets parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -53807,9 +54033,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *387 examples: - default: *386 + default: *388 headers: Link: *6 x-github: @@ -53834,16 +54060,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#get-a-repository-public-key parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: *388 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53865,17 +54091,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#get-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 responses: '200': description: Response content: application/json: - schema: *385 + schema: *387 examples: - default: &497 + default: &498 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -53901,8 +54127,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 requestBody: required: true @@ -53960,8 +54186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#delete-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 responses: '204': @@ -53987,9 +54213,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#list-repository-variables parameters: - - *354 - - *355 - - *372 + - *356 + - *357 + - *374 - *5 responses: '200': @@ -54006,9 +54232,9 @@ paths: type: integer variables: type: array - items: *389 + items: *391 examples: - default: *390 + default: *392 headers: Link: *6 x-github: @@ -54031,8 +54257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#create-a-repository-variable parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -54084,17 +54310,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#get-a-repository-variable parameters: - - *354 - - *355 + - *356 + - *357 - *208 responses: '200': description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: &498 + default: &499 value: name: USERNAME value: octocat @@ -54120,8 +54346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#update-a-repository-variable parameters: - - *354 - - *355 + - *356 + - *357 - *208 requestBody: required: true @@ -54164,8 +54390,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#delete-a-repository-variable parameters: - - *354 - - *355 + - *356 + - *357 - *208 responses: '204': @@ -54191,8 +54417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflows#list-repository-workflows parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -54210,7 +54436,7 @@ paths: type: integer workflows: type: array - items: &391 + items: &393 title: Workflow description: A GitHub Actions workflow type: object @@ -54328,9 +54554,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflows#get-a-workflow parameters: - - *354 - - *355 - - &392 + - *356 + - *357 + - &394 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -54345,7 +54571,7 @@ paths: description: Response content: application/json: - schema: *391 + schema: *393 examples: default: value: @@ -54378,9 +54604,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflows#disable-a-workflow parameters: - - *354 - - *355 - - *392 + - *356 + - *357 + - *394 responses: '204': description: Response @@ -54405,9 +54631,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *354 - - *355 - - *392 + - *356 + - *357 + - *394 responses: '204': description: Response @@ -54458,9 +54684,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflows#enable-a-workflow parameters: - - *354 - - *355 - - *392 + - *356 + - *357 + - *394 responses: '204': description: Response @@ -54487,19 +54713,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *354 - - *355 - - *392 - - *393 + - *356 + - *357 - *394 - *395 - *396 - - *4 - - *5 - *397 - - *376 - *398 + - *4 + - *5 - *399 + - *378 + - *400 + - *401 responses: '200': description: Response @@ -54515,9 +54741,9 @@ paths: type: integer workflow_runs: type: array - items: *377 + items: *379 examples: - default: *400 + default: *402 headers: Link: *6 x-github: @@ -54540,8 +54766,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-activities parameters: - - *354 - - *355 + - *356 + - *357 - *9 - *4 - *112 @@ -54709,8 +54935,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/assignees#list-assignees parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -54722,7 +54948,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 '404': *24 @@ -54747,8 +54973,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *354 - - *355 + - *356 + - *357 - name: assignee in: path required: true @@ -54782,8 +55008,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -54791,7 +55017,7 @@ paths: application/json: schema: type: array - items: &401 + items: &403 title: Autolink reference description: An autolink reference. type: object @@ -54850,8 +55076,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -54890,9 +55116,9 @@ paths: description: response content: application/json: - schema: *401 + schema: *403 examples: - default: &402 + default: &404 value: id: 1 key_prefix: TICKET- @@ -54923,9 +55149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *354 - - *355 - - &403 + - *356 + - *357 + - &405 name: autolink_id description: The unique identifier of the autolink. in: path @@ -54937,9 +55163,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: *402 + default: *404 '404': *24 x-github: githubCloudOnly: false @@ -54959,9 +55185,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *354 - - *355 - - *403 + - *356 + - *357 + - *405 responses: '204': description: Response @@ -54985,8 +55211,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response if Dependabot is enabled @@ -55035,8 +55261,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branches#list-branches parameters: - - *354 - - *355 + - *356 + - *357 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -55074,7 +55300,7 @@ paths: - url protected: type: boolean - protection: &405 + protection: &407 title: Branch Protection description: Branch Protection type: object @@ -55117,7 +55343,7 @@ paths: required: - contexts - checks - enforce_admins: &408 + enforce_admins: &410 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -55134,7 +55360,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &410 + required_pull_request_reviews: &412 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -55156,7 +55382,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *356 + items: *358 apps: description: The list of apps with review dismissal access. @@ -55188,7 +55414,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *356 + items: *358 apps: description: The list of apps allowed to bypass pull request requirements. @@ -55218,7 +55444,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &407 + restrictions: &409 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -55281,7 +55507,7 @@ paths: type: string teams: type: array - items: *356 + items: *358 apps: type: array items: @@ -55511,9 +55737,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branches#get-a-branch parameters: - - *354 - - *355 - - &406 + - *356 + - *357 + - &408 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-server@3.19/graphql). @@ -55527,14 +55753,14 @@ paths: description: Response content: application/json: - schema: &416 + schema: &418 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &446 + commit: &448 title: Commit description: Commit type: object @@ -55573,7 +55799,7 @@ paths: author: anyOf: - type: 'null' - - &404 + - &406 title: Git User description: Metaproperties for Git author/committer information. @@ -55595,7 +55821,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *406 message: type: string examples: @@ -55619,7 +55845,7 @@ paths: required: - sha - url - verification: &504 + verification: &505 title: Verification type: object properties: @@ -55699,7 +55925,7 @@ paths: type: integer files: type: array - items: &455 + items: &457 title: Diff Entry description: Diff Entry type: object @@ -55795,7 +56021,7 @@ paths: - self protected: type: boolean - protection: *405 + protection: *407 protection_url: type: string format: uri @@ -55904,7 +56130,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *359 + '301': *361 '404': *24 x-github: githubCloudOnly: false @@ -55926,15 +56152,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *405 + schema: *407 examples: default: value: @@ -56128,9 +56354,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#update-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -56390,7 +56616,7 @@ paths: url: type: string format: uri - required_status_checks: &413 + required_status_checks: &415 title: Status Check Policy description: Status Check Policy type: object @@ -56471,7 +56697,7 @@ paths: items: *17 teams: type: array - items: *356 + items: *358 apps: type: array items: *23 @@ -56489,7 +56715,7 @@ paths: items: *17 teams: type: array - items: *356 + items: *358 apps: type: array items: *23 @@ -56549,7 +56775,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *407 + restrictions: *409 required_conversation_resolution: type: object properties: @@ -56661,9 +56887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#delete-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -56688,17 +56914,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: - default: &409 + default: &411 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -56720,17 +56946,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: - default: *409 + default: *411 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56749,9 +56975,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -56776,17 +57002,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *410 + schema: *412 examples: - default: &411 + default: &413 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -56882,9 +57108,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -56982,9 +57208,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *412 examples: - default: *411 + default: *413 '422': *33 x-github: githubCloudOnly: false @@ -57005,9 +57231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -57034,17 +57260,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: - default: &412 + default: &414 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -57067,17 +57293,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: - default: *412 + default: *414 '404': *24 x-github: githubCloudOnly: false @@ -57097,9 +57323,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -57124,17 +57350,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-status-checks-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: &414 + default: &416 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -57160,9 +57386,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#update-status-check-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -57214,9 +57440,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: *414 + default: *416 '404': *24 '422': *33 x-github: @@ -57238,9 +57464,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#remove-status-check-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -57264,9 +57490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response @@ -57300,9 +57526,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#add-status-check-contexts parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -57369,9 +57595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#set-status-check-contexts parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -57435,9 +57661,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: content: application/json: @@ -57503,15 +57729,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *407 + schema: *409 examples: default: value: @@ -57602,9 +57828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#delete-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -57627,9 +57853,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response @@ -57639,7 +57865,7 @@ paths: type: array items: *23 examples: - default: &415 + default: &417 value: - id: 1 slug: octoapp @@ -57696,9 +57922,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -57732,7 +57958,7 @@ paths: type: array items: *23 examples: - default: *415 + default: *417 '422': *33 x-github: githubCloudOnly: false @@ -57753,9 +57979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -57789,7 +58015,7 @@ paths: type: array items: *23 examples: - default: *415 + default: *417 '422': *33 x-github: githubCloudOnly: false @@ -57810,9 +58036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -57846,7 +58072,7 @@ paths: type: array items: *23 examples: - default: *415 + default: *417 '422': *33 x-github: githubCloudOnly: false @@ -57868,9 +58094,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response @@ -57878,9 +58104,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - default: *332 + default: *334 '404': *24 x-github: githubCloudOnly: false @@ -57900,9 +58126,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -57938,9 +58164,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - default: *332 + default: *334 '422': *33 x-github: githubCloudOnly: false @@ -57961,9 +58187,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -57999,9 +58225,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - default: *332 + default: *334 '422': *33 x-github: githubCloudOnly: false @@ -58022,9 +58248,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: content: application/json: @@ -58059,9 +58285,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - default: *332 + default: *334 '422': *33 x-github: githubCloudOnly: false @@ -58083,9 +58309,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response @@ -58095,7 +58321,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 '404': *24 x-github: githubCloudOnly: false @@ -58119,9 +58345,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -58154,7 +58380,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 '422': *33 x-github: githubCloudOnly: false @@ -58179,9 +58405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -58214,7 +58440,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 '422': *33 x-github: githubCloudOnly: false @@ -58239,9 +58465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -58274,7 +58500,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 '422': *33 x-github: githubCloudOnly: false @@ -58301,9 +58527,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branches#rename-a-branch parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -58325,7 +58551,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *418 examples: default: value: @@ -58439,8 +58665,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *354 - - *355 + - *356 + - *357 - *107 - *108 - *109 @@ -58476,8 +58702,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: bypass_request_number in: path required: true @@ -58550,8 +58776,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *354 - - *355 + - *356 + - *357 - *107 - *108 - *109 @@ -58591,8 +58817,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *354 - - *355 + - *356 + - *357 - name: bypass_request_number in: path required: true @@ -58662,8 +58888,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *354 - - *355 + - *356 + - *357 - name: bypass_request_number in: path required: true @@ -58734,8 +58960,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *354 - - *355 + - *356 + - *357 - name: bypass_response_id in: path required: true @@ -58768,8 +58994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#create-a-check-run parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -59048,7 +59274,7 @@ paths: description: Response content: application/json: - schema: &418 + schema: &420 title: CheckRun description: A check performed on the code of a given code change type: object @@ -59183,8 +59409,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *417 - deployment: &685 + items: *419 + deployment: &686 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -59471,9 +59697,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#get-a-check-run parameters: - - *354 - - *355 - - &419 + - *356 + - *357 + - &421 name: check_run_id description: The unique identifier of the check run. in: path @@ -59485,9 +59711,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *420 examples: - default: &420 + default: &422 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -59587,9 +59813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#update-a-check-run parameters: - - *354 - - *355 - - *419 + - *356 + - *357 + - *421 requestBody: required: true content: @@ -59829,9 +60055,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *420 examples: - default: *420 + default: *422 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59851,9 +60077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#list-check-run-annotations parameters: - - *354 - - *355 - - *419 + - *356 + - *357 + - *421 - *4 - *5 responses: @@ -59963,9 +60189,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#rerequest-a-check-run parameters: - - *354 - - *355 - - *419 + - *356 + - *357 + - *421 responses: '201': description: Response @@ -60009,8 +60235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/suites#create-a-check-suite parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -60032,7 +60258,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &422 + schema: &424 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -60114,7 +60340,7 @@ paths: type: - array - 'null' - items: *417 + items: *419 app: anyOf: - type: 'null' @@ -60130,7 +60356,7 @@ paths: - string - 'null' format: date-time - head_commit: *421 + head_commit: *423 latest_check_runs_count: type: integer check_runs_url: @@ -60158,7 +60384,7 @@ paths: - check_runs_url - pull_requests examples: - default: &423 + default: &425 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -60449,9 +60675,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *422 + schema: *424 examples: - default: *423 + default: *425 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60470,8 +60696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -60780,9 +61006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/suites#get-a-check-suite parameters: - - *354 - - *355 - - &424 + - *356 + - *357 + - &426 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -60794,9 +61020,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *424 examples: - default: *423 + default: *425 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60819,17 +61045,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *354 - - *355 - - *424 - - &452 + - *356 + - *357 + - *426 + - &454 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &453 + - &455 name: status description: Returns check runs with the specified `status`. in: query @@ -60868,9 +61094,9 @@ paths: type: integer check_runs: type: array - items: *418 + items: *420 examples: - default: &454 + default: &456 value: total_count: 1 check_runs: @@ -60972,9 +61198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/suites#rerequest-a-check-suite parameters: - - *354 - - *355 - - *424 + - *356 + - *357 + - *426 responses: '201': description: Response @@ -61007,21 +61233,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *225 - *226 - *5 - *4 - - &436 + - &438 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: *425 - - &437 + schema: *427 + - &439 name: pr description: The number of the pull request for the results you want to list. in: query @@ -61052,7 +61278,7 @@ paths: be returned. in: query required: false - schema: *426 + schema: *428 responses: '200': description: Response @@ -61068,7 +61294,7 @@ paths: updated_at: *131 url: *128 html_url: *129 - instances_url: *427 + instances_url: *429 state: *116 fixed_at: *133 dismissed_by: @@ -61076,11 +61302,11 @@ paths: - type: 'null' - *17 dismissed_at: *132 - dismissed_reason: *428 - dismissed_comment: *429 - rule: *430 - tool: *431 - most_recent_instance: *432 + dismissed_reason: *430 + dismissed_comment: *431 + rule: *432 + tool: *433 + most_recent_instance: *434 dismissal_approved_by: anyOf: - type: 'null' @@ -61203,7 +61429,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *40 - '403': &433 + '403': &435 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -61230,9 +61456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *354 - - *355 - - &434 + - *356 + - *357 + - &436 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -61246,7 +61472,7 @@ paths: description: Response content: application/json: - schema: &435 + schema: &437 type: object properties: number: *123 @@ -61254,7 +61480,7 @@ paths: updated_at: *131 url: *128 html_url: *129 - instances_url: *427 + instances_url: *429 state: *116 fixed_at: *133 dismissed_by: @@ -61262,8 +61488,8 @@ paths: - type: 'null' - *17 dismissed_at: *132 - dismissed_reason: *428 - dismissed_comment: *429 + dismissed_reason: *430 + dismissed_comment: *431 rule: type: object properties: @@ -61325,8 +61551,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *431 - most_recent_instance: *432 + tool: *433 + most_recent_instance: *434 dismissal_approved_by: anyOf: - type: 'null' @@ -61422,7 +61648,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *40 - '403': *433 + '403': *435 '404': *24 '503': *140 x-github: @@ -61442,9 +61668,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *354 - - *355 - - *434 + - *356 + - *357 + - *436 requestBody: required: true content: @@ -61459,8 +61685,8 @@ paths: enum: - open - dismissed - dismissed_reason: *428 - dismissed_comment: *429 + dismissed_reason: *430 + dismissed_comment: *431 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -61482,7 +61708,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: default: value: @@ -61558,7 +61784,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *32 - '403': &442 + '403': &444 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -61585,13 +61811,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *354 - - *355 - - *434 + - *356 + - *357 + - *436 - *5 - *4 - - *436 - - *437 + - *438 + - *439 responses: '200': description: Response @@ -61599,7 +61825,7 @@ paths: application/json: schema: type: array - items: *432 + items: *434 examples: default: value: @@ -61638,7 +61864,7 @@ paths: end_column: 50 classifications: - source - '403': *433 + '403': *435 '404': *24 '503': *140 x-github: @@ -61672,25 +61898,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *225 - *226 - *5 - *4 - - *437 + - *439 - 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: *425 + schema: *427 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &440 + schema: &442 type: string description: An identifier for the upload. examples: @@ -61712,23 +61938,23 @@ paths: application/json: schema: type: array - items: &441 + items: &443 type: object properties: - ref: *425 - commit_sha: &443 + ref: *427 + commit_sha: &445 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *438 + analysis_key: *440 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *439 + category: *441 error: type: string examples: @@ -61753,8 +61979,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *440 - tool: *431 + sarif_id: *442 + tool: *433 deletable: type: boolean warning: @@ -61816,7 +62042,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *433 + '403': *435 '404': *24 '503': *140 x-github: @@ -61852,8 +62078,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -61866,7 +62092,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: response: summary: application/json response @@ -61920,7 +62146,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *433 + '403': *435 '404': *24 '422': description: Response if analysis could not be processed @@ -62007,8 +62233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62064,7 +62290,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': *32 - '403': *442 + '403': *444 '404': *24 '503': *140 x-github: @@ -62086,8 +62312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -62180,7 +62406,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *433 + '403': *435 '404': *24 '503': *140 x-github: @@ -62201,8 +62427,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -62296,7 +62522,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *442 + '403': *444 '404': *24 '409': description: Response if there is already a validation run in progress with @@ -62367,8 +62593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -62376,7 +62602,7 @@ paths: schema: type: object properties: - commit_sha: *443 + commit_sha: *445 ref: type: string description: |- @@ -62431,7 +62657,7 @@ paths: schema: type: object properties: - id: *440 + id: *442 url: type: string description: The REST API URL for checking the status of the upload. @@ -62445,7 +62671,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': *442 + '403': *444 '404': *24 '413': description: Payload Too Large if the sarif field is too large @@ -62468,8 +62694,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *354 - - *355 + - *356 + - *357 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -62517,7 +62743,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': *433 + '403': *435 '404': description: Not Found if the sarif id does not match any upload '503': *140 @@ -62542,8 +62768,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -62619,8 +62845,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-codeowners-errors parameters: - - *354 - - *355 + - *356 + - *357 - 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 @@ -62751,8 +62977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *354 - - *355 + - *356 + - *357 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -62790,7 +63016,7 @@ paths: application/json: schema: type: array - items: &444 + items: &446 title: Collaborator description: Collaborator type: object @@ -62982,8 +63208,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *354 - - *355 + - *356 + - *357 - *8 responses: '204': @@ -63020,8 +63246,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *354 - - *355 + - *356 + - *357 - *8 requestBody: required: false @@ -63091,8 +63317,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *354 - - *355 + - *356 + - *357 - *8 responses: '204': @@ -63124,8 +63350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *354 - - *355 + - *356 + - *357 - *8 responses: '200': @@ -63146,7 +63372,7 @@ paths: user: anyOf: - type: 'null' - - *444 + - *446 required: - permission - role_name @@ -63200,8 +63426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -63211,7 +63437,7 @@ paths: application/json: schema: type: array - items: &445 + items: &447 title: Commit Comment description: Commit Comment type: object @@ -63269,7 +63495,7 @@ paths: - created_at - updated_at examples: - default: &448 + default: &450 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -63328,17 +63554,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#get-a-commit-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 responses: '200': description: Response content: application/json: - schema: *445 + schema: *447 examples: - default: &449 + default: &451 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -63395,8 +63621,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#update-a-commit-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -63419,7 +63645,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: default: value: @@ -63470,8 +63696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#delete-a-commit-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 responses: '204': @@ -63493,8 +63719,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). @@ -63521,9 +63747,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 '404': *24 @@ -63544,8 +63770,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -63578,16 +63804,16 @@ paths: description: Reaction exists content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Reaction created content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '422': *33 x-github: githubCloudOnly: false @@ -63609,10 +63835,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *354 - - *355 + - *356 + - *357 - *162 - - *348 + - *350 responses: '204': description: Response @@ -63661,8 +63887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/commits#list-commits parameters: - - *354 - - *355 + - *356 + - *357 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -63718,9 +63944,9 @@ paths: application/json: schema: type: array - items: *446 + items: *448 examples: - default: &560 + default: &561 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -63814,9 +64040,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/commits#list-branches-for-head-commit parameters: - - *354 - - *355 - - &447 + - *356 + - *357 + - &449 name: commit_sha description: The SHA of the commit. in: path @@ -63888,9 +64114,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#list-commit-comments parameters: - - *354 - - *355 - - *447 + - *356 + - *357 + - *449 - *4 - *5 responses: @@ -63900,9 +64126,9 @@ paths: application/json: schema: type: array - items: *445 + items: *447 examples: - default: *448 + default: *450 headers: Link: *6 x-github: @@ -63930,9 +64156,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#create-a-commit-comment parameters: - - *354 - - *355 - - *447 + - *356 + - *357 + - *449 requestBody: required: true content: @@ -63967,9 +64193,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: - default: *449 + default: *451 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -63997,9 +64223,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *354 - - *355 - - *447 + - *356 + - *357 + - *449 - *4 - *5 responses: @@ -64009,7 +64235,7 @@ paths: application/json: schema: type: array - items: &552 + items: &553 title: Pull Request Simple description: Pull Request Simple type: object @@ -64184,7 +64410,7 @@ paths: type: - array - 'null' - items: *356 + items: *358 head: type: object properties: @@ -64246,7 +64472,7 @@ paths: - review_comment - self author_association: *146 - auto_merge: *450 + auto_merge: *452 draft: description: Indicates whether or not the pull request is a draft. @@ -64286,7 +64512,7 @@ paths: - author_association - auto_merge examples: - default: &553 + default: &554 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -64823,11 +65049,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/commits#get-a-commit parameters: - - *354 - - *355 + - *356 + - *357 - *5 - *4 - - &451 + - &453 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)" @@ -64842,9 +65068,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *448 examples: - default: &538 + default: &539 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -64957,11 +65183,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *354 - - *355 - - *451 - - *452 + - *356 + - *357 - *453 + - *454 + - *455 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -64995,9 +65221,9 @@ paths: type: integer check_runs: type: array - items: *418 + items: *420 examples: - default: *454 + default: *456 headers: Link: *6 x-github: @@ -65022,9 +65248,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *354 - - *355 - - *451 + - *356 + - *357 + - *453 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -65032,7 +65258,7 @@ paths: schema: type: integer example: 1 - - *452 + - *454 - *4 - *5 responses: @@ -65050,7 +65276,7 @@ paths: type: integer check_suites: type: array - items: *422 + items: *424 examples: default: value: @@ -65250,9 +65476,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *354 - - *355 - - *451 + - *356 + - *357 + - *453 - *4 - *5 responses: @@ -65454,9 +65680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *354 - - *355 - - *451 + - *356 + - *357 + - *453 - *4 - *5 responses: @@ -65466,7 +65692,7 @@ paths: application/json: schema: type: array - items: &610 + items: &611 title: Status description: The status of a commit. type: object @@ -65547,7 +65773,7 @@ paths: site_admin: false headers: Link: *6 - '301': *359 + '301': *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65615,8 +65841,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/commits#compare-two-commits parameters: - - *354 - - *355 + - *356 + - *357 - *5 - *4 - name: basehead @@ -65664,8 +65890,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *446 - merge_base_commit: *446 + base_commit: *448 + merge_base_commit: *448 status: type: string enum: @@ -65689,10 +65915,10 @@ paths: - 6 commits: type: array - items: *446 + items: *448 files: type: array - items: *455 + items: *457 required: - url - html_url @@ -65978,8 +66204,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#get-repository-content parameters: - - *354 - - *355 + - *356 + - *357 - name: path description: path parameter in: path @@ -66132,7 +66358,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &456 + response-if-content-is-a-file: &458 summary: Response if content is a file value: type: file @@ -66269,7 +66495,7 @@ paths: - size - type - url - - &565 + - &566 title: Content File description: Content File type: object @@ -66487,7 +66713,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *456 + response-if-content-is-a-file: *458 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -66556,7 +66782,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *24 '403': *41 - '302': &569 + '302': &570 description: Found '304': *40 x-github: @@ -66580,8 +66806,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#create-or-update-file-contents parameters: - - *354 - - *355 + - *356 + - *357 - name: path description: path parameter in: path @@ -66676,7 +66902,7 @@ paths: description: Response content: application/json: - schema: &457 + schema: &459 title: File Commit description: File Commit type: object @@ -66832,7 +67058,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: example-for-creating-a-file: value: @@ -66886,7 +67112,7 @@ paths: schema: oneOf: - *22 - - &499 + - &500 description: Repository rule violation was detected type: object properties: @@ -66907,7 +67133,7 @@ paths: items: type: object properties: - placeholder_id: &606 + placeholder_id: &607 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -66939,8 +67165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#delete-a-file parameters: - - *354 - - *355 + - *356 + - *357 - name: path description: path parameter in: path @@ -67001,7 +67227,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: default: value: @@ -67056,8 +67282,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-contributors parameters: - - *354 - - *355 + - *356 + - *357 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -67181,8 +67407,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *239 - *240 - *241 @@ -67194,7 +67420,7 @@ paths: schema: type: string - *243 - - *458 + - *460 - *244 - *245 - *9 @@ -67225,7 +67451,7 @@ paths: application/json: schema: type: array - items: &462 + items: &464 type: object description: A Dependabot alert. properties: @@ -67260,7 +67486,7 @@ paths: - development - runtime - - security_advisory: *459 + security_advisory: *461 security_vulnerability: *127 url: *128 html_url: *129 @@ -67291,8 +67517,8 @@ paths: dismissal. maxLength: 280 fixed_at: *133 - auto_dismissed_at: *460 - dismissal_request: *461 + auto_dismissed_at: *462 + dismissal_request: *463 required: - number - state @@ -67522,9 +67748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *354 - - *355 - - &463 + - *356 + - *357 + - &465 name: alert_number in: path description: |- @@ -67539,7 +67765,7 @@ paths: description: Response content: application/json: - schema: *462 + schema: *464 examples: default: value: @@ -67652,9 +67878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *354 - - *355 - - *463 + - *356 + - *357 + - *465 requestBody: required: true content: @@ -67699,7 +67925,7 @@ paths: description: Response content: application/json: - schema: *462 + schema: *464 examples: default: value: @@ -67828,8 +68054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/secrets#list-repository-secrets parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -67847,7 +68073,7 @@ paths: type: integer secrets: type: array - items: &466 + items: &468 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -67901,16 +68127,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *464 + schema: *466 examples: - default: *465 + default: *467 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67930,15 +68156,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/secrets#get-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 responses: '200': description: Response content: application/json: - schema: *466 + schema: *468 examples: default: value: @@ -67964,8 +68190,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 requestBody: required: true @@ -68018,8 +68244,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 responses: '204': @@ -68042,8 +68268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *354 - - *355 + - *356 + - *357 - 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 @@ -68217,8 +68443,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -68464,8 +68690,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -68548,7 +68774,7 @@ paths: - version - url additionalProperties: false - metadata: &467 + metadata: &469 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -68587,7 +68813,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *467 + metadata: *469 resolved: type: object description: A collection of resolved package dependencies. @@ -68601,7 +68827,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *467 + metadata: *469 relationship: type: string description: A notation of whether a dependency is requested @@ -68734,8 +68960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/deployments#list-deployments parameters: - - *354 - - *355 + - *356 + - *357 - name: sha description: The SHA recorded at creation time. in: query @@ -68776,9 +69002,9 @@ paths: application/json: schema: type: array - items: *468 + items: *470 examples: - default: *469 + default: *471 headers: Link: *6 x-github: @@ -68844,8 +69070,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/deployments#create-a-deployment parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -68927,7 +69153,7 @@ paths: description: Response content: application/json: - schema: *468 + schema: *470 examples: simple-example: summary: Simple example @@ -69000,9 +69226,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/deployments#get-a-deployment parameters: - - *354 - - *355 - - &470 + - *356 + - *357 + - &472 name: deployment_id description: deployment_id parameter in: path @@ -69014,7 +69240,7 @@ paths: description: Response content: application/json: - schema: *468 + schema: *470 examples: default: value: @@ -69079,9 +69305,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/deployments#delete-a-deployment parameters: - - *354 - - *355 - - *470 + - *356 + - *357 + - *472 responses: '204': description: Response @@ -69103,9 +69329,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/statuses#list-deployment-statuses parameters: - - *354 - - *355 - - *470 + - *356 + - *357 + - *472 - *4 - *5 responses: @@ -69115,7 +69341,7 @@ paths: application/json: schema: type: array - items: &471 + items: &473 title: Deployment Status description: The status of a deployment. type: object @@ -69279,9 +69505,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/statuses#create-a-deployment-status parameters: - - *354 - - *355 - - *470 + - *356 + - *357 + - *472 requestBody: required: true content: @@ -69356,9 +69582,9 @@ paths: description: Response content: application/json: - schema: *471 + schema: *473 examples: - default: &472 + default: &474 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -69414,9 +69640,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/statuses#get-a-deployment-status parameters: - - *354 - - *355 - - *470 + - *356 + - *357 + - *472 - name: status_id in: path required: true @@ -69427,9 +69653,9 @@ paths: description: Response content: application/json: - schema: *471 + schema: *473 examples: - default: *472 + default: *474 '404': *24 x-github: githubCloudOnly: false @@ -69456,12 +69682,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 - - *473 - - *474 + - *356 + - *357 - *475 - *476 + - *477 + - *478 - *4 - *5 responses: @@ -69471,9 +69697,9 @@ paths: application/json: schema: type: array - items: *477 + items: *479 examples: - default: *478 + default: *480 '404': *24 '403': *41 '500': *105 @@ -69497,8 +69723,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -69510,7 +69736,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *477 + schema: *479 examples: default: value: @@ -69566,8 +69792,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -69626,12 +69852,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *354 - - *355 - - *473 - - *474 + - *356 + - *357 - *475 - *476 + - *477 + - *478 - *4 - *5 responses: @@ -69641,193 +69867,9 @@ paths: application/json: schema: type: array - items: &480 - title: Dependabot alert dismissal request - description: Alert dismissal request made by a user asking to dismiss - a Dependabot alert. - type: object - properties: - id: - type: integer - format: int64 - description: The unique identifier of the dismissal request. - number: - type: integer - format: int64 - description: The number uniquely identifying the dismissal request - within its repository. - repository: - type: object - description: The repository the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the repository the dismissal request - is for. - name: - type: string - description: The name of the repository the dismissal request - is for. - full_name: - type: string - description: The full name of the repository the dismissal - request is for. - organization: - type: object - description: The organization associated with the repository - the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the dismissal request. - properties: - actor_id: - type: integer - format: int64 - description: The ID of the GitHub user who requested the - dismissal request. - actor_name: - type: string - description: The name of the GitHub user who requested the - dismissal request. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the dismissal request metadata. - items: - type: object - properties: - reason: - type: string - description: The reason for the dismissal request. - alert_number: - type: string - description: The alert number. - alert_title: - type: string - description: The title of the alert. - resource_identifier: - type: string - description: The unique identifier for the request type of the - dismissal request. - examples: - - '123' - status: - type: string - description: The status of the dismissal request. - enum: - - pending - - denied - - approved - - expired - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating - the dismissal request. - expires_at: - type: string - format: date-time - description: The date and time the dismissal request will expire. - created_at: - type: string - format: date-time - description: The date and time the dismissal request was created. - responses: - type: - - array - - 'null' - description: The responses to the dismissal request. - items: *479 - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: - type: string - description: The URL to view the dismissal request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/security/dependabot/1 + items: *481 examples: - default: - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: no_bandwidth - alert_number: '1' - alert_title: lodash - GHSA-1234-abcd-5678 - resource_identifier: '1' - status: denied - requester_comment: No bandwidth to fix this right now - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: https://github.com/octo-org/smile/security/dependabot/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: tolerable_risk - alert_number: '2' - alert_title: axios - GHSA-5678-efgh-9012 - resource_identifier: '2' - status: approved - requester_comment: Risk is acceptable for this internal tool - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 43 - reviewer: - actor_id: 4 - actor_name: octocat - status: approved - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 - html_url: https://github.com/octo-org/smile/security/dependabot/2 + default: *482 '404': *24 '403': *41 '500': *105 @@ -69851,8 +69893,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -69864,7 +69906,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *480 + schema: *481 examples: default: value: @@ -69915,8 +69957,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -69987,12 +70029,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - *107 - *108 - *109 - - *481 + - *252 - *4 - *5 responses: @@ -70002,9 +70044,9 @@ paths: application/json: schema: type: array - items: *482 + items: *483 examples: - default: *483 + default: *484 '404': *24 '403': *41 '500': *105 @@ -70029,8 +70071,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -70042,7 +70084,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *482 + schema: *483 examples: default: value: @@ -70100,8 +70142,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -70170,8 +70212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -70228,8 +70270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/environments#list-environments parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -70247,7 +70289,7 @@ paths: - 5 environments: type: array - items: &485 + items: &486 title: Environment description: Details of a deployment environment type: object @@ -70309,7 +70351,7 @@ paths: type: string examples: - wait_timer - wait_timer: &487 + wait_timer: &488 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -70351,11 +70393,11 @@ paths: items: type: object properties: - type: *484 + type: *485 reviewer: anyOf: - *17 - - *356 + - *358 required: - id - node_id @@ -70378,7 +70420,7 @@ paths: - id - node_id - type - deployment_branch_policy: &488 + deployment_branch_policy: &489 type: - object - 'null' @@ -70494,9 +70536,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/environments#get-an-environment parameters: - - *354 - - *355 - - &486 + - *356 + - *357 + - &487 name: environment_name in: path required: true @@ -70509,9 +70551,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: &489 + default: &490 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -70594,9 +70636,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/environments#create-or-update-an-environment parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 requestBody: required: false content: @@ -70606,7 +70648,7 @@ paths: - object - 'null' properties: - wait_timer: *487 + wait_timer: *488 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -70625,14 +70667,14 @@ paths: items: type: object properties: - type: *484 + type: *485 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *488 + deployment_branch_policy: *489 additionalProperties: false examples: default: @@ -70652,9 +70694,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *489 + default: *490 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -70678,9 +70720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/environments#delete-an-environment parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 responses: '204': description: Default response @@ -70705,9 +70747,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *4 - *5 responses: @@ -70726,7 +70768,7 @@ paths: - 2 branch_policies: type: array - items: &490 + items: &491 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -70787,9 +70829,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 requestBody: required: true content: @@ -70837,9 +70879,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: - example-wildcard: &491 + example-wildcard: &492 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -70881,10 +70923,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *354 - - *355 - - *486 - - &492 + - *356 + - *357 + - *487 + - &493 name: branch_policy_id in: path required: true @@ -70896,9 +70938,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: - default: *491 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70917,10 +70959,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *354 - - *355 - - *486 - - *492 + - *356 + - *357 + - *487 + - *493 requestBody: required: true content: @@ -70949,9 +70991,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: - default: *491 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70970,10 +71012,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *354 - - *355 - - *486 - - *492 + - *356 + - *357 + - *487 + - *493 responses: '204': description: Response @@ -70998,9 +71040,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *486 - - *355 - - *354 + - *487 + - *357 + - *356 responses: '200': description: List of deployment protection rules @@ -71017,7 +71059,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &493 + items: &494 title: Deployment protection rule description: Deployment protection rule type: object @@ -71039,7 +71081,7 @@ paths: for the environment. examples: - true - app: &494 + app: &495 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -71142,9 +71184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *486 - - *355 - - *354 + - *487 + - *357 + - *356 requestBody: content: application/json: @@ -71165,9 +71207,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *493 + schema: *494 examples: - default: &495 + default: &496 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -71202,9 +71244,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *486 - - *355 - - *354 + - *487 + - *357 + - *356 - *5 - *4 responses: @@ -71224,7 +71266,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *494 + items: *495 examples: default: value: @@ -71259,10 +71301,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *354 - - *355 - - *486 - - &496 + - *356 + - *357 + - *487 + - &497 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -71274,9 +71316,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: *495 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71297,10 +71339,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *486 - - *355 - - *354 - - *496 + - *487 + - *357 + - *356 + - *497 responses: '204': description: Response @@ -71326,9 +71368,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#list-environment-secrets parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *4 - *5 responses: @@ -71346,9 +71388,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *387 examples: - default: *386 + default: *388 headers: Link: *6 x-github: @@ -71373,17 +71415,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#get-an-environment-public-key parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 responses: '200': description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: *388 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71405,18 +71447,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#get-an-environment-secret parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *205 responses: '200': description: Response content: application/json: - schema: *385 + schema: *387 examples: - default: *497 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71438,9 +71480,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *205 requestBody: required: true @@ -71498,9 +71540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#delete-an-environment-secret parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *205 responses: '204': @@ -71526,10 +71568,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#list-environment-variables parameters: - - *354 - - *355 - - *486 - - *372 + - *356 + - *357 + - *487 + - *374 - *5 responses: '200': @@ -71546,9 +71588,9 @@ paths: type: integer variables: type: array - items: *389 + items: *391 examples: - default: *390 + default: *392 headers: Link: *6 x-github: @@ -71571,9 +71613,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#create-an-environment-variable parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 requestBody: required: true content: @@ -71625,18 +71667,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#get-an-environment-variable parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *208 responses: '200': description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *498 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71657,10 +71699,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#update-an-environment-variable parameters: - - *354 - - *355 + - *356 + - *357 - *208 - - *486 + - *487 requestBody: required: true content: @@ -71702,10 +71744,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#delete-an-environment-variable parameters: - - *354 - - *355 + - *356 + - *357 - *208 - - *486 + - *487 responses: '204': description: Response @@ -71727,8 +71769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/events#list-repository-events parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -71806,8 +71848,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/forks#list-forks parameters: - - *354 - - *355 + - *356 + - *357 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -71966,8 +72008,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/forks#create-a-fork parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -72000,9 +72042,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 '400': *32 '422': *33 '403': *41 @@ -72023,8 +72065,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/blobs#create-a-blob parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -72084,7 +72126,7 @@ paths: schema: oneOf: - *176 - - *499 + - *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72109,8 +72151,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/blobs#get-a-blob parameters: - - *354 - - *355 + - *356 + - *357 - name: file_sha in: path required: true @@ -72210,8 +72252,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/commits#create-a-commit parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -72320,7 +72362,7 @@ paths: description: Response content: application/json: - schema: &500 + schema: &501 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -72547,15 +72589,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/commits#get-a-commit-object parameters: - - *354 - - *355 - - *447 + - *356 + - *357 + - *449 responses: '200': description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -72611,9 +72653,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/refs#list-matching-references parameters: - - *354 - - *355 - - &501 + - *356 + - *357 + - &502 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. @@ -72630,7 +72672,7 @@ paths: application/json: schema: type: array - items: &502 + items: &503 title: Git Reference description: Git references within a repository type: object @@ -72706,17 +72748,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/refs#get-a-reference parameters: - - *354 - - *355 - - *501 + - *356 + - *357 + - *502 responses: '200': description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: &503 + default: &504 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -72745,8 +72787,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/refs#create-a-reference parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -72775,9 +72817,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -72803,9 +72845,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/refs#update-a-reference parameters: - - *354 - - *355 - - *501 + - *356 + - *357 + - *502 requestBody: required: true content: @@ -72834,9 +72876,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '422': *33 '409': *121 x-github: @@ -72854,9 +72896,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/refs#delete-a-reference parameters: - - *354 - - *355 - - *501 + - *356 + - *357 + - *502 responses: '204': description: Response @@ -72911,8 +72953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/tags#create-a-tag-object parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -72979,7 +73021,7 @@ paths: description: Response content: application/json: - schema: &505 + schema: &506 title: Git Tag description: Metadata for a Git tag type: object @@ -73035,7 +73077,7 @@ paths: - sha - type - url - verification: *504 + verification: *505 required: - sha - url @@ -73045,7 +73087,7 @@ paths: - tag - message examples: - default: &506 + default: &507 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -73118,8 +73160,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/tags#get-a-tag parameters: - - *354 - - *355 + - *356 + - *357 - name: tag_sha in: path required: true @@ -73130,9 +73172,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *506 examples: - default: *506 + default: *507 '404': *24 '409': *121 x-github: @@ -73156,8 +73198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/trees#create-a-tree parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -73231,7 +73273,7 @@ paths: description: Response content: application/json: - schema: &507 + schema: &508 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -73333,8 +73375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/trees#get-a-tree parameters: - - *354 - - *355 + - *356 + - *357 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -73357,7 +73399,7 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: default-response: summary: Default response @@ -73416,8 +73458,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#list-repository-webhooks parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -73427,7 +73469,7 @@ paths: application/json: schema: type: array - items: &508 + items: &509 title: Webhook description: Webhooks for repositories. type: object @@ -73490,7 +73532,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &718 + last_response: &719 title: Hook Response type: object properties: @@ -73567,8 +73609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#create-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -73621,9 +73663,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: &509 + default: &510 value: type: Repository id: 12345678 @@ -73671,17 +73713,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#get-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 responses: '200': description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: *509 + default: *510 '404': *24 x-github: githubCloudOnly: false @@ -73701,8 +73743,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#update-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 requestBody: required: true @@ -73748,9 +73790,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: *509 + default: *510 '422': *33 '404': *24 x-github: @@ -73771,8 +73813,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 responses: '204': @@ -73797,8 +73839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *3 responses: '200': @@ -73826,8 +73868,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *3 requestBody: required: false @@ -73872,11 +73914,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 - *4 - - *253 + - *255 responses: '200': description: Response @@ -73884,9 +73926,9 @@ paths: application/json: schema: type: array - items: *254 + items: *256 examples: - default: *255 + default: *257 '400': *32 '422': *33 x-github: @@ -73905,8 +73947,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 - *34 responses: @@ -73914,9 +73956,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *258 examples: - default: *257 + default: *259 '400': *32 '422': *33 x-github: @@ -73935,8 +73977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 - *34 responses: @@ -73960,8 +74002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 responses: '204': @@ -73987,8 +74029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 responses: '204': @@ -74013,8 +74055,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -74022,8 +74064,8 @@ paths: application/json: schema: *37 examples: - default: *510 - '301': *359 + default: *511 + '301': *361 '404': *24 x-github: githubCloudOnly: false @@ -74042,8 +74084,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/invitations#list-repository-invitations parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -74053,7 +74095,7 @@ paths: application/json: schema: type: array - items: &511 + items: &512 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -74115,7 +74157,7 @@ paths: - html_url - created_at examples: - default: &664 + default: &665 value: - id: 1 repository: @@ -74246,9 +74288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *354 - - *355 - - &512 + - *356 + - *357 + - &513 name: invitation_id description: The unique identifier of the invitation. in: path @@ -74283,7 +74325,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: default: value: @@ -74414,9 +74456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *354 - - *355 - - *512 + - *356 + - *357 + - *513 responses: '204': description: Response @@ -74447,8 +74489,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#list-repository-issues parameters: - - *354 - - *355 + - *356 + - *357 - 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 @@ -74496,7 +74538,7 @@ paths: required: false schema: type: string - - *258 + - *260 - name: sort description: What to sort results by. in: query @@ -74521,7 +74563,7 @@ paths: type: array items: *145 examples: - default: &519 + default: &520 value: - id: 1 node_id: MDU6SXNzdWUx @@ -74669,7 +74711,7 @@ paths: state_reason: completed headers: Link: *6 - '301': *359 + '301': *361 '422': *33 '404': *24 x-github: @@ -74698,8 +74740,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#create-an-issue parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -74791,7 +74833,7 @@ paths: application/json: schema: *145 examples: - default: &516 + default: &517 value: id: 1 node_id: MDU6SXNzdWUx @@ -74947,7 +74989,7 @@ paths: '422': *33 '503': *140 '404': *24 - '410': *364 + '410': *366 x-github: triggersNotification: true githubCloudOnly: false @@ -74975,9 +75017,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *354 - - *355 - - &558 + - *356 + - *357 + - &559 name: sort description: The property to sort the results by. in: query @@ -75007,9 +75049,9 @@ paths: application/json: schema: type: array - items: *513 + items: *514 examples: - default: &518 + default: &519 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -75067,17 +75109,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#get-an-issue-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 responses: '200': description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: &514 + default: &515 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -75131,8 +75173,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#update-an-issue-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -75155,9 +75197,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: *514 + default: *515 '422': *33 x-github: githubCloudOnly: false @@ -75175,8 +75217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#delete-an-issue-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 responses: '204': @@ -75197,8 +75239,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). @@ -75225,9 +75267,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 '404': *24 @@ -75248,8 +75290,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -75282,16 +75324,16 @@ paths: description: Reaction exists content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Reaction created content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '422': *33 x-github: githubCloudOnly: false @@ -75313,10 +75355,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *354 - - *355 + - *356 + - *357 - *162 - - *348 + - *350 responses: '204': description: Response @@ -75336,8 +75378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/events#list-issue-events-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -75347,7 +75389,7 @@ paths: application/json: schema: type: array - items: &515 + items: &516 title: Issue Event description: Issue Event type: object @@ -75427,7 +75469,7 @@ paths: anyOf: - type: 'null' - *17 - requested_team: *356 + requested_team: *358 dismissed_review: title: Issue Event Dismissed Review type: object @@ -75686,8 +75728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/events#get-an-issue-event parameters: - - *354 - - *355 + - *356 + - *357 - name: event_id in: path required: true @@ -75698,7 +75740,7 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: default: value: @@ -75890,7 +75932,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *24 - '410': *364 + '410': *366 '403': *41 x-github: githubCloudOnly: false @@ -75924,9 +75966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue parameters: - - *354 - - *355 - - &517 + - *356 + - *357 + - &518 name: issue_number description: The number that identifies the issue. in: path @@ -75940,10 +75982,10 @@ paths: application/json: schema: *145 examples: - default: *516 - '301': *359 + default: *517 + '301': *361 '404': *24 - '410': *364 + '410': *366 '304': *40 x-github: githubCloudOnly: false @@ -75968,9 +76010,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#update-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: false content: @@ -76091,13 +76133,13 @@ paths: application/json: schema: *145 examples: - default: *516 + default: *517 '422': *33 '503': *140 '403': *41 - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76115,9 +76157,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: false content: @@ -76145,7 +76187,7 @@ paths: application/json: schema: *145 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76161,9 +76203,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: content: application/json: @@ -76190,7 +76232,7 @@ paths: application/json: schema: *145 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76212,9 +76254,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - name: assignee in: path required: true @@ -76254,9 +76296,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#list-issue-comments parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *153 - *4 - *5 @@ -76267,13 +76309,13 @@ paths: application/json: schema: type: array - items: *513 + items: *514 examples: - default: *518 + default: *519 headers: Link: *6 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76302,9 +76344,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#create-an-issue-comment parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: true content: @@ -76326,16 +76368,16 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: *514 + default: *515 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *41 - '410': *364 + '410': *366 '422': *33 '404': *24 x-github: @@ -76363,9 +76405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *4 - *5 responses: @@ -76377,12 +76419,12 @@ paths: type: array items: *145 examples: - default: *519 + default: *520 headers: Link: *6 - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76410,9 +76452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: true content: @@ -76436,15 +76478,15 @@ paths: application/json: schema: *145 examples: - default: *516 + default: *517 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *359 + '301': *361 '403': *41 - '410': *364 + '410': *366 '422': *33 '404': *24 x-github: @@ -76475,9 +76517,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -76491,13 +76533,13 @@ paths: application/json: schema: *145 examples: - default: *516 - '301': *359 + default: *517 + '301': *361 '400': *32 '401': *39 '403': *41 '404': *24 - '410': *364 + '410': *366 x-github: triggersNotification: true githubCloudOnly: false @@ -76523,9 +76565,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *4 - *5 responses: @@ -76537,12 +76579,12 @@ paths: type: array items: *145 examples: - default: *519 + default: *520 headers: Link: *6 - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76559,9 +76601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/events#list-issue-events parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *4 - *5 responses: @@ -76575,7 +76617,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &521 + - &522 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -76624,7 +76666,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &522 + - &523 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -76752,7 +76794,7 @@ paths: - performed_via_github_app - assignee - assigner - - &523 + - &524 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -76798,7 +76840,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &524 + - &525 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -76844,7 +76886,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &525 + - &526 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -76893,7 +76935,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &526 + - &527 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -76922,7 +76964,7 @@ paths: - type: 'null' - *23 review_requester: *17 - requested_team: *356 + requested_team: *358 requested_reviewer: *17 required: - review_requester @@ -76935,7 +76977,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &527 + - &528 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -76964,7 +77006,7 @@ paths: - type: 'null' - *23 review_requester: *17 - requested_team: *356 + requested_team: *358 requested_reviewer: *17 required: - review_requester @@ -76977,7 +77019,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &528 + - &529 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -77033,7 +77075,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &529 + - &530 title: Locked Issue Event description: Locked Issue Event type: object @@ -77078,7 +77120,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &530 + - &531 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -77139,7 +77181,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &531 + - &532 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -77200,7 +77242,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &532 + - &533 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -77261,7 +77303,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &533 + - &534 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -77354,7 +77396,7 @@ paths: color: red headers: Link: *6 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77371,9 +77413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#list-labels-for-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *4 - *5 responses: @@ -77385,7 +77427,7 @@ paths: type: array items: *144 examples: - default: &520 + default: &521 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -77403,9 +77445,9 @@ paths: default: false headers: Link: *6 - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77422,9 +77464,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#add-labels-to-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: false content: @@ -77485,10 +77527,10 @@ paths: type: array items: *144 examples: - default: *520 - '301': *359 + default: *521 + '301': *361 '404': *24 - '410': *364 + '410': *366 '422': *33 x-github: githubCloudOnly: false @@ -77505,9 +77547,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#set-labels-for-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: false content: @@ -77569,10 +77611,10 @@ paths: type: array items: *144 examples: - default: *520 - '301': *359 + default: *521 + '301': *361 '404': *24 - '410': *364 + '410': *366 '422': *33 x-github: githubCloudOnly: false @@ -77589,15 +77631,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 responses: '204': description: Response - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77616,9 +77658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - name: name in: path required: true @@ -77642,9 +77684,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77664,9 +77706,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#lock-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: false content: @@ -77695,7 +77737,7 @@ paths: '204': description: Response '403': *41 - '410': *364 + '410': *366 '404': *24 '422': *33 x-github: @@ -77713,9 +77755,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#unlock-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 responses: '204': description: Response @@ -77737,9 +77779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -77765,13 +77807,13 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77789,9 +77831,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: true content: @@ -77823,16 +77865,16 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '422': *33 x-github: githubCloudOnly: false @@ -77854,10 +77896,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *354 - - *355 - - *517 - - *348 + - *356 + - *357 + - *518 + - *350 responses: '204': description: Response @@ -77877,9 +77919,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *4 - *5 responses: @@ -77894,7 +77936,6 @@ paths: description: Timeline Event type: object anyOf: - - *521 - *522 - *523 - *524 @@ -77907,6 +77948,7 @@ paths: - *531 - *532 - *533 + - *534 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -78235,7 +78277,7 @@ paths: type: string comments: type: array - items: &554 + items: &555 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -78473,7 +78515,7 @@ paths: type: string comments: type: array - items: *445 + items: *447 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -78748,7 +78790,7 @@ paths: headers: Link: *6 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78765,8 +78807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -78776,7 +78818,7 @@ paths: application/json: schema: type: array - items: &534 + items: &535 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -78844,8 +78886,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -78881,9 +78923,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: &535 + default: &536 value: id: 1 key: ssh-rsa AAA... @@ -78917,9 +78959,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *354 - - *355 - - &536 + - *356 + - *357 + - &537 name: key_id description: The unique identifier of the key. in: path @@ -78931,9 +78973,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: *535 + default: *536 '404': *24 x-github: githubCloudOnly: false @@ -78951,9 +78993,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *354 - - *355 - - *536 + - *356 + - *357 + - *537 responses: '204': description: Response @@ -78973,8 +79015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#list-labels-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -78986,7 +79028,7 @@ paths: type: array items: *144 examples: - default: *520 + default: *521 headers: Link: *6 '404': *24 @@ -79007,8 +79049,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#create-a-label parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -79046,7 +79088,7 @@ paths: application/json: schema: *144 examples: - default: &537 + default: &538 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -79078,8 +79120,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#get-a-label parameters: - - *354 - - *355 + - *356 + - *357 - name: name in: path required: true @@ -79092,7 +79134,7 @@ paths: application/json: schema: *144 examples: - default: *537 + default: *538 '404': *24 x-github: githubCloudOnly: false @@ -79109,8 +79151,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#update-a-label parameters: - - *354 - - *355 + - *356 + - *357 - name: name in: path required: true @@ -79175,8 +79217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#delete-a-label parameters: - - *354 - - *355 + - *356 + - *357 - name: name in: path required: true @@ -79202,8 +79244,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-languages parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -79239,8 +79281,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '202': *51 '403': @@ -79268,8 +79310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -79295,9 +79337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *354 - - *355 - - *436 + - *356 + - *357 + - *438 responses: '200': description: Response @@ -79444,8 +79486,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -79510,8 +79552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branches#merge-a-branch parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -79545,9 +79587,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *446 + schema: *448 examples: - default: *538 + default: *539 '204': description: Response when already merged '404': @@ -79572,8 +79614,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/milestones#list-milestones parameters: - - *354 - - *355 + - *356 + - *357 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -79670,8 +79712,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/milestones#create-a-milestone parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -79713,7 +79755,7 @@ paths: application/json: schema: *149 examples: - default: &539 + default: &540 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -79772,9 +79814,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/milestones#get-a-milestone parameters: - - *354 - - *355 - - &540 + - *356 + - *357 + - &541 name: milestone_number description: The number that identifies the milestone. in: path @@ -79788,7 +79830,7 @@ paths: application/json: schema: *149 examples: - default: *539 + default: *540 '404': *24 x-github: githubCloudOnly: false @@ -79805,9 +79847,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/milestones#update-a-milestone parameters: - - *354 - - *355 - - *540 + - *356 + - *357 + - *541 requestBody: required: false content: @@ -79847,7 +79889,7 @@ paths: application/json: schema: *149 examples: - default: *539 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79863,9 +79905,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/milestones#delete-a-milestone parameters: - - *354 - - *355 - - *540 + - *356 + - *357 + - *541 responses: '204': description: Response @@ -79886,9 +79928,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *354 - - *355 - - *540 + - *356 + - *357 + - *541 - *4 - *5 responses: @@ -79900,7 +79942,7 @@ paths: type: array items: *144 examples: - default: *520 + default: *521 headers: Link: *6 x-github: @@ -79919,12 +79961,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *354 - - *355 - - *541 + - *356 + - *357 - *542 - - *153 - *543 + - *153 + - *544 - *4 - *5 responses: @@ -79936,7 +79978,7 @@ paths: type: array items: *170 examples: - default: *544 + default: *545 headers: Link: *6 x-github: @@ -79960,8 +80002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -80019,14 +80061,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#get-a-apiname-pages-site parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: &545 + schema: &546 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -80170,7 +80212,7 @@ paths: - custom_404 - public examples: - default: &546 + default: &547 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -80211,8 +80253,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#create-a-apiname-pages-site parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -80267,9 +80309,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: *546 + default: *547 '422': *33 '409': *121 x-github: @@ -80292,8 +80334,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -80393,8 +80435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -80420,8 +80462,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#list-apiname-pages-builds parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -80431,7 +80473,7 @@ paths: application/json: schema: type: array - items: &547 + items: &548 title: Page Build description: Page Build type: object @@ -80523,8 +80565,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#request-a-apiname-pages-build parameters: - - *354 - - *355 + - *356 + - *357 responses: '201': description: Response @@ -80571,16 +80613,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#get-latest-pages-build parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: &548 + default: &549 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -80628,8 +80670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#get-apiname-pages-build parameters: - - *354 - - *355 + - *356 + - *357 - name: build_id in: path required: true @@ -80640,9 +80682,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80662,8 +80704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#create-a-github-pages-deployment parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -80766,9 +80808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *354 - - *355 - - &549 + - *356 + - *357 + - &550 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -80826,9 +80868,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *354 - - *355 - - *549 + - *356 + - *357 + - *550 responses: '204': *138 '404': *24 @@ -80851,8 +80893,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/repo-pre-receive-hooks#list-pre-receive-hooks-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 - *9 @@ -80873,7 +80915,7 @@ paths: application/json: schema: type: array - items: &550 + items: &551 type: object properties: id: @@ -80907,17 +80949,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/repo-pre-receive-hooks#get-a-pre-receive-hook-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *16 responses: '200': description: Response content: application/json: - schema: *550 + schema: *551 examples: - default: &551 + default: &552 value: id: 42 name: Check Commits @@ -80939,15 +80981,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/repo-pre-receive-hooks#update-pre-receive-hook-enforcement-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *16 responses: '200': description: Response content: application/json: - schema: *550 + schema: *551 examples: default: value: @@ -80991,8 +81033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/repo-pre-receive-hooks#remove-pre-receive-hook-enforcement-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *16 responses: '200': @@ -81000,9 +81042,9 @@ paths: global level. content: application/json: - schema: *550 + schema: *551 examples: - default: *551 + default: *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81021,8 +81063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -81030,7 +81072,7 @@ paths: application/json: schema: type: array - items: *287 + items: *289 examples: default: value: @@ -81061,8 +81103,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -81074,7 +81116,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *287 + items: *289 required: - properties examples: @@ -81124,8 +81166,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#list-pull-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -81185,9 +81227,9 @@ paths: application/json: schema: type: array - items: *552 + items: *553 examples: - default: *553 + default: *554 headers: Link: *6 '304': *40 @@ -81219,8 +81261,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#create-a-pull-request parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -81289,7 +81331,7 @@ paths: application/json: schema: *151 examples: - default: &556 + default: &557 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -81816,8 +81858,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - name: sort in: query required: false @@ -81846,9 +81888,9 @@ paths: application/json: schema: type: array - items: *554 + items: *555 examples: - default: &559 + default: &560 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -81925,17 +81967,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *354 - - *355 + - *356 + - *357 - *162 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/pulls/comments/1 pull_request_review_id: 42 @@ -82010,8 +82052,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -82034,9 +82076,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: - default: *555 + default: *556 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82052,8 +82094,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *354 - - *355 + - *356 + - *357 - *162 responses: '204': @@ -82075,8 +82117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). @@ -82103,9 +82145,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 '404': *24 @@ -82126,8 +82168,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -82160,16 +82202,16 @@ paths: description: Reaction exists content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Reaction created content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '422': *33 x-github: githubCloudOnly: false @@ -82191,10 +82233,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *354 - - *355 + - *356 + - *357 - *162 - - *348 + - *350 responses: '204': description: Response @@ -82237,9 +82279,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#get-a-pull-request parameters: - - *354 - - *355 - - &557 + - *356 + - *357 + - &558 name: pull_number description: The number that identifies the pull request. in: path @@ -82254,7 +82296,7 @@ paths: application/json: schema: *151 examples: - default: *556 + default: *557 '304': *40 '404': *24 '406': @@ -82289,9 +82331,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#update-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: false content: @@ -82335,7 +82377,7 @@ paths: application/json: schema: *151 examples: - default: *556 + default: *557 '422': *33 '403': *41 x-github: @@ -82363,10 +82405,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 - *558 + - *559 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -82386,9 +82428,9 @@ paths: application/json: schema: type: array - items: *554 + items: *555 examples: - default: *559 + default: *560 headers: Link: *6 x-github: @@ -82421,9 +82463,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: true content: @@ -82529,7 +82571,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: example-for-a-multi-line-comment: value: @@ -82617,9 +82659,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 - *162 requestBody: required: true @@ -82642,7 +82684,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: default: value: @@ -82728,9 +82770,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 - *4 - *5 responses: @@ -82740,9 +82782,9 @@ paths: application/json: schema: type: array - items: *446 + items: *448 examples: - default: *560 + default: *561 headers: Link: *6 x-github: @@ -82772,9 +82814,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#list-pull-requests-files parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 - *4 - *5 responses: @@ -82784,7 +82826,7 @@ paths: application/json: schema: type: array - items: *455 + items: *457 examples: default: value: @@ -82822,9 +82864,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 responses: '204': description: Response if pull request has been merged @@ -82847,9 +82889,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#merge-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: false content: @@ -82961,9 +83003,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 responses: '200': description: Response @@ -82979,7 +83021,7 @@ paths: items: *17 teams: type: array - items: *356 + items: *358 required: - users - teams @@ -83038,9 +83080,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: false content: @@ -83077,7 +83119,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *553 examples: default: value: @@ -83613,9 +83655,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: true content: @@ -83649,7 +83691,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *553 examples: default: value: @@ -84154,9 +84196,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 - *4 - *5 responses: @@ -84166,7 +84208,7 @@ paths: application/json: schema: type: array - items: &561 + items: &562 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -84322,9 +84364,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: false content: @@ -84414,9 +84456,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &563 + default: &564 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -84479,10 +84521,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 - - &562 + - *356 + - *357 + - *558 + - &563 name: review_id description: The unique identifier of the review. in: path @@ -84494,9 +84536,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &564 + default: &565 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -84555,10 +84597,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 - - *562 + - *356 + - *357 + - *558 + - *563 requestBody: required: true content: @@ -84581,7 +84623,7 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: default: value: @@ -84643,18 +84685,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 - - *562 + - *356 + - *357 + - *558 + - *563 responses: '200': description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *563 + default: *564 '422': *25 '404': *24 x-github: @@ -84681,10 +84723,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *354 - - *355 - - *557 - - *562 + - *356 + - *357 + - *558 + - *563 - *4 - *5 responses: @@ -84942,10 +84984,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 - - *562 + - *356 + - *357 + - *558 + - *563 requestBody: required: true content: @@ -84974,7 +85016,7 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: default: value: @@ -85037,10 +85079,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 - - *562 + - *356 + - *357 + - *558 + - *563 requestBody: required: true content: @@ -85075,9 +85117,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *564 + default: *565 '404': *24 '422': *25 '403': *41 @@ -85099,9 +85141,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: false content: @@ -85165,8 +85207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#get-a-repository-readme parameters: - - *354 - - *355 + - *356 + - *357 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -85179,9 +85221,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: - default: &566 + default: &567 value: type: file encoding: base64 @@ -85223,8 +85265,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *354 - - *355 + - *356 + - *357 - name: dir description: The alternate path to look for a README file in: path @@ -85244,9 +85286,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: - default: *566 + default: *567 '404': *24 '422': *33 x-github: @@ -85268,8 +85310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#list-releases parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -85279,7 +85321,7 @@ paths: application/json: schema: type: array - items: *567 + items: *568 examples: default: value: @@ -85373,8 +85415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#create-a-release parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -85444,9 +85486,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: &572 + default: &573 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -85546,9 +85588,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/assets#get-a-release-asset parameters: - - *354 - - *355 - - &570 + - *356 + - *357 + - &571 name: asset_id description: The unique identifier of the asset. in: path @@ -85560,9 +85602,9 @@ paths: description: Response content: application/json: - schema: *568 + schema: *569 examples: - default: &571 + default: &572 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 @@ -85597,7 +85639,7 @@ paths: type: User site_admin: false '404': *24 - '302': *569 + '302': *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85613,9 +85655,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/assets#update-a-release-asset parameters: - - *354 - - *355 - - *570 + - *356 + - *357 + - *571 requestBody: required: false content: @@ -85644,9 +85686,9 @@ paths: description: Response content: application/json: - schema: *568 + schema: *569 examples: - default: *571 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85662,9 +85704,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/assets#delete-a-release-asset parameters: - - *354 - - *355 - - *570 + - *356 + - *357 + - *571 responses: '204': description: Response @@ -85688,8 +85730,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -85775,16 +85817,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#get-the-latest-release parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *572 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85801,8 +85843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#get-a-release-by-tag-name parameters: - - *354 - - *355 + - *356 + - *357 - name: tag description: tag parameter in: path @@ -85815,9 +85857,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *572 + default: *573 '404': *24 x-github: githubCloudOnly: false @@ -85839,9 +85881,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#get-a-release parameters: - - *354 - - *355 - - &573 + - *356 + - *357 + - &574 name: release_id description: The unique identifier of the release. in: path @@ -85855,9 +85897,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-server@3.19/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *567 + schema: *568 examples: - default: *572 + default: *573 '401': description: Unauthorized x-github: @@ -85875,9 +85917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#update-a-release parameters: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 requestBody: required: false content: @@ -85934,9 +85976,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *572 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85952,9 +85994,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#delete-a-release parameters: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 responses: '204': description: Response @@ -85974,9 +86016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/assets#list-release-assets parameters: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 - *4 - *5 responses: @@ -85986,7 +86028,7 @@ paths: application/json: schema: type: array - items: *568 + items: *569 examples: default: value: @@ -86068,9 +86110,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: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 - name: name in: query required: true @@ -86096,7 +86138,7 @@ paths: description: Response for successful upload content: application/json: - schema: *568 + schema: *569 examples: response-for-successful-upload: value: @@ -86151,9 +86193,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -86177,9 +86219,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 '404': *24 @@ -86200,9 +86242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 requestBody: required: true content: @@ -86232,16 +86274,16 @@ paths: description: Reaction exists content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Reaction created content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '422': *33 x-github: githubCloudOnly: false @@ -86263,10 +86305,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-a-release-reaction parameters: - - *354 - - *355 - - *573 - - *348 + - *356 + - *357 + - *574 + - *350 responses: '204': description: Response @@ -86286,8 +86328,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-cache-replication-status parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -86362,9 +86404,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/rules#get-rules-for-a-branch parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 - *4 - *5 responses: @@ -86380,8 +86422,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *294 - - &574 + - *296 + - &575 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -86400,69 +86442,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *295 - - *574 - - allOf: - - *296 - - *574 - allOf: - *297 - - *574 - - allOf: - *575 - - *574 - allOf: - *298 - - *574 + - *575 - allOf: - *299 - - *574 + - *575 + - allOf: + - *576 + - *575 - allOf: - *300 - - *574 + - *575 - allOf: - *301 - - *574 + - *575 - allOf: - *302 - - *574 + - *575 - allOf: - *303 - - *574 + - *575 - allOf: - *304 - - *574 + - *575 - allOf: - *305 - - *574 + - *575 - allOf: - *306 - - *574 + - *575 - allOf: - *307 - - *574 + - *575 - allOf: - *308 - - *574 + - *575 - allOf: - *309 - - *574 + - *575 - allOf: - *310 - - *574 + - *575 - allOf: - *311 - - *574 + - *575 - allOf: - *312 - - *574 + - *575 - allOf: - *313 - - *574 + - *575 - allOf: - *314 - - *574 + - *575 + - allOf: + - *315 + - *575 + - allOf: + - *316 + - *575 examples: default: value: @@ -86501,8 +86543,8 @@ paths: category: repos subcategory: rules parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 - name: includes_parents @@ -86513,7 +86555,7 @@ paths: schema: type: boolean default: true - - *576 + - *577 responses: '200': description: Response @@ -86521,7 +86563,7 @@ paths: application/json: schema: type: array - items: *315 + items: *317 examples: default: value: @@ -86568,8 +86610,8 @@ paths: category: repos subcategory: rules parameters: - - *354 - - *355 + - *356 + - *357 requestBody: description: Request body required: true @@ -86589,16 +86631,16 @@ paths: - tag - push default: branch - enforcement: *291 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *292 - conditions: *289 + items: *294 + conditions: *291 rules: type: array description: An array of rules within the ruleset. - items: *577 + items: *578 required: - name - enforcement @@ -86629,9 +86671,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: &586 + default: &587 value: id: 42 name: super cool ruleset @@ -86678,12 +86720,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *354 - - *355 - - *578 - - *109 + - *356 + - *357 - *579 + - *109 - *580 + - *581 - *4 - *5 responses: @@ -86691,9 +86733,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: *582 + default: *583 '404': *24 '500': *105 x-github: @@ -86714,17 +86756,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *354 - - *355 - - *583 + - *356 + - *357 + - *584 responses: '200': description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *585 + default: *586 '404': *24 '500': *105 x-github: @@ -86752,8 +86794,8 @@ paths: category: repos subcategory: rules parameters: - - *354 - - *355 + - *356 + - *357 - name: ruleset_id description: The ID of the ruleset. in: path @@ -86773,9 +86815,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *586 + default: *587 '404': *24 '500': *105 put: @@ -86793,8 +86835,8 @@ paths: category: repos subcategory: rules parameters: - - *354 - - *355 + - *356 + - *357 - name: ruleset_id description: The ID of the ruleset. in: path @@ -86819,16 +86861,16 @@ paths: - branch - tag - push - enforcement: *291 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *292 - conditions: *289 + items: *294 + conditions: *291 rules: description: An array of rules within the ruleset. type: array - items: *577 + items: *578 examples: default: value: @@ -86856,9 +86898,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *586 + default: *587 '404': *24 '500': *105 delete: @@ -86876,8 +86918,8 @@ paths: category: repos subcategory: rules parameters: - - *354 - - *355 + - *356 + - *357 - name: ruleset_id description: The ID of the ruleset. in: path @@ -86900,8 +86942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/rules#get-repository-ruleset-history parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 - name: ruleset_id @@ -86919,7 +86961,7 @@ paths: type: array items: *139 examples: - default: *318 + default: *320 '404': *24 '500': *105 x-github: @@ -86938,8 +86980,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/rules#get-repository-ruleset-version parameters: - - *354 - - *355 + - *356 + - *357 - name: ruleset_id description: The ID of the ruleset. in: path @@ -86957,7 +86999,7 @@ paths: description: Response content: application/json: - schema: *319 + schema: *321 examples: default: value: @@ -87012,21 +87054,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *354 - - *355 - - *320 - - *321 + - *356 + - *357 - *322 - *323 + - *324 + - *325 - *9 - *5 - *4 - - *587 - *588 - - *324 - - *325 + - *589 - *326 - *327 + - *328 + - *329 responses: '200': description: Response @@ -87034,7 +87076,7 @@ paths: application/json: schema: type: array - items: &592 + items: &593 type: object properties: number: *123 @@ -87050,8 +87092,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *589 - resolution: *590 + state: *590 + resolution: *591 resolved_at: type: - string @@ -87140,7 +87182,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *591 + - *592 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -87285,16 +87327,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *354 - - *355 - - *434 - - *327 + - *356 + - *357 + - *436 + - *329 responses: '200': description: Response content: application/json: - schema: *592 + schema: *593 examples: default: value: @@ -87335,9 +87377,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *354 - - *355 - - *434 + - *356 + - *357 + - *436 requestBody: required: true content: @@ -87345,8 +87387,8 @@ paths: schema: type: object properties: - state: *589 - resolution: *590 + state: *590 + resolution: *591 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -87366,7 +87408,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: default: value: @@ -87434,9 +87476,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *354 - - *355 - - *434 + - *356 + - *357 + - *436 - *5 - *4 responses: @@ -87447,7 +87489,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &738 + items: &739 type: object properties: type: @@ -87474,7 +87516,6 @@ paths: - commit details: oneOf: - - *593 - *594 - *595 - *596 @@ -87487,6 +87528,7 @@ paths: - *603 - *604 - *605 + - *606 examples: default: value: @@ -87572,8 +87614,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -87581,14 +87623,14 @@ paths: schema: type: object properties: - reason: &607 + reason: &608 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *606 + placeholder_id: *607 required: - reason - placeholder_id @@ -87605,7 +87647,7 @@ paths: schema: type: object properties: - reason: *607 + reason: *608 expire_at: type: - string @@ -87652,8 +87694,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -87668,7 +87710,7 @@ paths: properties: incremental_scans: type: array - items: &608 + items: &609 description: Information on a single scan performed by secret scanning on the repository type: object @@ -87696,15 +87738,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *608 + items: *609 backfill_scans: type: array - items: *608 + items: *609 custom_pattern_backfill_scans: type: array items: allOf: - - *608 + - *609 - type: object properties: pattern_name: @@ -87774,8 +87816,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#list-stargazers parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -87868,8 +87910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -87878,7 +87920,7 @@ paths: application/json: schema: type: array - items: &609 + items: &610 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -87909,8 +87951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -87985,8 +88027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -88080,8 +88122,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -88235,8 +88277,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -88246,7 +88288,7 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: default: value: @@ -88279,8 +88321,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/statuses#create-a-commit-status parameters: - - *354 - - *355 + - *356 + - *357 - name: sha in: path required: true @@ -88336,7 +88378,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *611 examples: default: value: @@ -88390,8 +88432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/watching#list-watchers parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -88403,7 +88445,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -88423,14 +88465,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/watching#get-a-repository-subscription parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &611 + schema: &612 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -88503,8 +88545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/watching#set-a-repository-subscription parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -88530,7 +88572,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -88557,8 +88599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/watching#delete-a-repository-subscription parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -88578,8 +88620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-tags parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -88661,8 +88703,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -88670,7 +88712,7 @@ paths: application/json: schema: type: array - items: &612 + items: &613 title: Tag protection description: Tag protection type: object @@ -88727,8 +88769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -88751,7 +88793,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -88782,8 +88824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -88820,8 +88862,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *354 - - *355 + - *356 + - *357 - name: ref in: path required: true @@ -88857,8 +88899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-teams parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -88868,9 +88910,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - default: *332 + default: *334 headers: Link: *6 '404': *24 @@ -88890,8 +88932,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#get-all-repository-topics parameters: - - *354 - - *355 + - *356 + - *357 - *5 - *4 responses: @@ -88899,7 +88941,7 @@ paths: description: Response content: application/json: - schema: &613 + schema: &614 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -88911,7 +88953,7 @@ paths: required: - names examples: - default: &614 + default: &615 value: names: - octocat @@ -88934,8 +88976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#replace-all-repository-topics parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -88966,9 +89008,9 @@ paths: description: Response content: application/json: - schema: *613 + schema: *614 examples: - default: *614 + default: *615 '404': *24 '422': *25 x-github: @@ -88991,8 +89033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#transfer-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -89266,8 +89308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -89290,8 +89332,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#enable-vulnerability-alerts parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -89313,8 +89355,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#disable-vulnerability-alerts parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -89340,8 +89382,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *354 - - *355 + - *356 + - *357 - name: ref in: path required: true @@ -89433,9 +89475,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -89610,7 +89652,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &622 + - &623 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -89620,7 +89662,7 @@ paths: type: string examples: - members - - &627 + - &628 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -89632,7 +89674,7 @@ paths: format: int32 examples: - 1 - - &628 + - &629 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -89676,7 +89718,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &617 + items: &618 allOf: - type: object required: @@ -89758,7 +89800,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: &629 + meta: &630 type: object description: The metadata associated with the creation/updates to the user. @@ -89823,30 +89865,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &618 + '400': &619 description: Bad request content: application/json: - schema: *615 + schema: *616 application/scim+json: - schema: *615 - '401': *616 - '403': &619 + schema: *616 + '401': *617 + '403': &620 description: Permission denied - '429': &620 + '429': &621 description: Too many requests content: application/json: - schema: *615 + schema: *616 application/scim+json: - schema: *615 - '500': &621 + schema: *616 + '500': &622 description: Internal server error content: application/json: - schema: *615 + schema: *616 application/scim+json: - schema: *615 + schema: *616 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89873,7 +89915,7 @@ paths: required: true content: application/json: - schema: &625 + schema: &626 type: object required: - schemas @@ -89937,9 +89979,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *617 + schema: *618 examples: - group: &623 + group: &624 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -89958,13 +90000,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': *618 - '401': *616 - '403': *619 - '409': &626 + '400': *619 + '401': *617 + '403': *620 + '409': &627 description: Duplicate record detected - '429': *620 - '500': *621 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89985,7 +90027,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &624 + - &625 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -89994,22 +90036,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *622 + - *623 - *64 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *617 + schema: *618 examples: - default: *623 - '400': *618 - '401': *616 - '403': *619 + default: *624 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '429': *620 - '500': *621 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90031,13 +90073,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *624 + - *625 - *64 requestBody: required: true content: application/json: - schema: *625 + schema: *626 examples: group: summary: Group @@ -90063,17 +90105,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *617 + schema: *618 examples: - group: *623 - groupWithMembers: *623 - '400': *618 - '401': *616 - '403': *619 + group: *624 + groupWithMembers: *624 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '409': *626 - '429': *620 - '500': *621 + '409': *627 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90097,13 +90139,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *624 + - *625 - *64 requestBody: required: true content: application/json: - schema: &636 + schema: &637 type: object required: - Operations @@ -90163,17 +90205,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *617 + schema: *618 examples: - updateGroup: *623 - addMembers: *623 - '400': *618 - '401': *616 - '403': *619 + updateGroup: *624 + addMembers: *624 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '409': *626 - '429': *620 - '500': *621 + '409': *627 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90193,17 +90235,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *624 + - *625 - *64 responses: '204': description: Group was deleted, no content - '400': *618 - '401': *616 - '403': *619 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '429': *620 - '500': *621 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90240,8 +90282,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *627 - *628 + - *629 - *64 responses: '200': @@ -90275,7 +90317,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &631 + items: &632 allOf: - type: object required: @@ -90367,7 +90409,7 @@ paths: address. examples: - true - roles: &630 + roles: &631 type: array description: The roles assigned to the user. items: @@ -90426,7 +90468,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *629 + meta: *630 startIndex: type: integer description: A starting index for the returned page @@ -90465,11 +90507,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *618 - '401': *616 - '403': *619 - '429': *620 - '500': *621 + '400': *619 + '401': *617 + '403': *620 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90498,7 +90540,7 @@ paths: required: true content: application/json: - schema: &634 + schema: &635 type: object required: - schemas @@ -90591,9 +90633,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *630 + roles: *631 examples: - user: &635 + user: &636 summary: User value: schemas: @@ -90640,9 +90682,9 @@ paths: description: User has been created content: application/scim+json: - schema: *631 + schema: *632 examples: - user: &632 + user: &633 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -90668,13 +90710,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: *632 - '400': *618 - '401': *616 - '403': *619 - '409': *626 - '429': *620 - '500': *621 + enterpriseOwner: *633 + '400': *619 + '401': *617 + '403': *620 + '409': *627 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90695,7 +90737,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &633 + - &634 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -90708,15 +90750,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *631 + schema: *632 examples: - default: *632 - '400': *618 - '401': *616 - '403': *619 + default: *633 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '429': *620 - '500': *621 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90741,30 +90783,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *633 + - *634 - *64 requestBody: required: true content: application/json: - schema: *634 + schema: *635 examples: - user: *635 + user: *636 responses: '200': description: User was updated content: application/scim+json: - schema: *631 + schema: *632 examples: - user: *632 - '400': *618 - '401': *616 - '403': *619 + user: *633 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '409': *626 - '429': *620 - '500': *621 + '409': *627 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90802,13 +90844,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *633 + - *634 - *64 requestBody: required: true content: application/json: - schema: *636 + schema: *637 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -90848,18 +90890,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *631 - examples: - userMultiValuedProperties: *632 - userSingleValuedProperties: *632 - disableUser: *632 - '400': *618 - '401': *616 - '403': *619 + schema: *632 + examples: + userMultiValuedProperties: *633 + userSingleValuedProperties: *633 + disableUser: *633 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '409': *626 - '429': *620 - '500': *621 + '409': *627 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90879,17 +90921,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *633 + - *634 - *64 responses: '204': description: User was deleted, no content - '400': *618 - '401': *616 - '403': *619 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '429': *620 - '500': *621 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91017,7 +91059,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &637 + text_matches: &638 title: Search Result Text Matches type: array items: @@ -91181,7 +91223,7 @@ paths: enum: - author-date - committer-date - - &638 + - &639 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 @@ -91250,7 +91292,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *406 comment_count: type: integer message: @@ -91269,7 +91311,7 @@ paths: url: type: string format: uri - verification: *504 + verification: *505 required: - author - committer @@ -91284,7 +91326,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *406 parents: type: array items: @@ -91301,7 +91343,7 @@ paths: type: number node_id: type: string - text_matches: *637 + text_matches: *638 required: - sha - node_id @@ -91494,7 +91536,7 @@ paths: - interactions - created - updated - - *638 + - *639 - *4 - *5 - name: advanced_search @@ -91591,11 +91633,11 @@ paths: type: - string - 'null' - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: type: string state_reason: @@ -91623,7 +91665,7 @@ paths: - string - 'null' format: date-time - text_matches: *637 + text_matches: *638 pull_request: type: object properties: @@ -91672,7 +91714,7 @@ paths: timeline_url: type: string format: uri - type: *642 + type: *643 performed_via_github_app: anyOf: - type: 'null' @@ -91846,7 +91888,7 @@ paths: enum: - created - updated - - *638 + - *639 - *4 - *5 responses: @@ -91891,7 +91933,7 @@ paths: - 'null' score: type: number - text_matches: *637 + text_matches: *638 required: - id - node_id @@ -91977,7 +92019,7 @@ paths: - forks - help-wanted-issues - updated - - *638 + - *639 - *4 - *5 responses: @@ -92214,7 +92256,7 @@ paths: - admin - pull - push - text_matches: *637 + text_matches: *638 temp_clone_token: type: string allow_merge_commit: @@ -92523,7 +92565,7 @@ paths: - string - 'null' format: uri - text_matches: *637 + text_matches: *638 related: type: - array @@ -92718,7 +92760,7 @@ paths: - followers - repositories - joined - - *638 + - *639 - *4 - *5 responses: @@ -92828,7 +92870,7 @@ paths: type: - boolean - 'null' - text_matches: *637 + text_matches: *638 blog: type: - string @@ -92916,9 +92958,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *24 x-github: githubCloudOnly: false @@ -93009,16 +93051,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '201': description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *24 '422': *33 '403': *41 @@ -93088,9 +93130,9 @@ paths: application/json: schema: type: array - items: *339 + items: *341 examples: - default: *643 + default: *644 headers: Link: *6 x-github: @@ -93153,9 +93195,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *340 + default: *342 x-github: triggersNotification: true githubCloudOnly: false @@ -93183,15 +93225,15 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#get-a-discussion-legacy parameters: - *7 - - *341 + - *343 responses: '200': description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *340 + default: *342 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93217,7 +93259,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#update-a-discussion-legacy parameters: - *7 - - *341 + - *343 requestBody: required: false content: @@ -93240,9 +93282,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *644 + default: *645 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93268,7 +93310,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#delete-a-discussion-legacy parameters: - *7 - - *341 + - *343 responses: '204': description: Response @@ -93298,7 +93340,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - *7 - - *341 + - *343 - *9 - *4 - *5 @@ -93309,9 +93351,9 @@ paths: application/json: schema: type: array - items: *342 + items: *344 examples: - default: *645 + default: *646 headers: Link: *6 x-github: @@ -93341,7 +93383,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - *7 - - *341 + - *343 requestBody: required: true content: @@ -93363,9 +93405,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: *343 + default: *345 x-github: triggersNotification: true githubCloudOnly: false @@ -93393,16 +93435,16 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - *7 - - *341 - - *344 + - *343 + - *346 responses: '200': description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: *343 + default: *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93428,8 +93470,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - *7 - - *341 - - *344 + - *343 + - *346 requestBody: required: true content: @@ -93451,9 +93493,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: *646 + default: *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93479,8 +93521,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - *7 - - *341 - - *344 + - *343 + - *346 responses: '204': description: Response @@ -93510,8 +93552,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - *7 - - *341 - - *344 + - *343 + - *346 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -93537,9 +93579,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 x-github: @@ -93569,8 +93611,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - *7 - - *341 - - *344 + - *343 + - *346 requestBody: required: true content: @@ -93602,9 +93644,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93631,7 +93673,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - *7 - - *341 + - *343 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -93657,9 +93699,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 x-github: @@ -93689,7 +93731,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - *7 - - *341 + - *343 requestBody: required: true content: @@ -93721,9 +93763,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -93770,7 +93812,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 '404': *24 @@ -93919,9 +93961,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *355 examples: - response-if-user-is-a-team-maintainer: *647 + response-if-user-is-a-team-maintainer: *648 '404': *24 x-github: githubCloudOnly: false @@ -93980,9 +94022,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *355 examples: - response-if-users-membership-with-team-is-now-pending: *648 + response-if-users-membership-with-team-is-now-pending: *649 '403': description: Forbidden if team synchronization is set up '422': @@ -94056,7 +94098,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 '404': *24 @@ -94087,14 +94129,14 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - *7 - - *354 - - *355 + - *356 + - *357 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *649 + schema: *650 examples: alternative-response-with-extra-repository-information: value: @@ -94246,8 +94288,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - *7 - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -94298,8 +94340,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - *7 - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -94334,9 +94376,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - response-if-child-teams-exist: *650 + response-if-child-teams-exist: *651 headers: Link: *6 '404': *24 @@ -94369,7 +94411,7 @@ paths: application/json: schema: oneOf: - - &652 + - &653 title: Private User description: Private User type: object @@ -94619,7 +94661,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *651 + - *652 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -94777,7 +94819,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -94853,9 +94895,9 @@ paths: application/json: schema: type: array - items: *268 + items: *270 examples: - default: &661 + default: &662 value: - id: 197 name: hello_docker @@ -94942,7 +94984,7 @@ paths: application/json: schema: type: array - items: &653 + items: &654 title: Email description: Email type: object @@ -94972,7 +95014,7 @@ paths: - verified - visibility examples: - default: &663 + default: &664 value: - email: octocat@github.com verified: true @@ -95049,7 +95091,7 @@ paths: application/json: schema: type: array - items: *653 + items: *654 examples: default: value: @@ -95161,7 +95203,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 '304': *40 @@ -95194,7 +95236,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 '304': *40 @@ -95307,7 +95349,7 @@ paths: application/json: schema: type: array - items: &654 + items: &655 title: GPG Key description: A unique encryption key type: object @@ -95452,7 +95494,7 @@ paths: - subkeys - revoked examples: - default: &673 + default: &674 value: - id: 3 name: Octocat's GPG Key @@ -95537,9 +95579,9 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: - default: &655 + default: &656 value: id: 3 name: Octocat's GPG Key @@ -95596,7 +95638,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &656 + - &657 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -95608,9 +95650,9 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: - default: *655 + default: *656 '404': *24 '304': *40 '403': *41 @@ -95633,7 +95675,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *656 + - *657 responses: '204': description: Response @@ -95942,7 +95984,7 @@ paths: - closed - all default: open - - *258 + - *260 - name: sort description: What to sort results by. in: query @@ -95967,7 +96009,7 @@ paths: type: array items: *145 examples: - default: *259 + default: *261 headers: Link: *6 '404': *24 @@ -96000,7 +96042,7 @@ paths: application/json: schema: type: array - items: &657 + items: &658 title: Key description: Key type: object @@ -96103,9 +96145,9 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: - default: &658 + default: &659 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -96138,15 +96180,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *536 + - *537 responses: '200': description: Response content: application/json: - schema: *657 + schema: *658 examples: - default: *658 + default: *659 '404': *24 '304': *40 '403': *41 @@ -96169,7 +96211,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *536 + - *537 responses: '204': description: Response @@ -96212,7 +96254,7 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: default: value: @@ -96320,7 +96362,7 @@ paths: description: Response content: application/json: - schema: *260 + schema: *262 examples: default: value: @@ -96403,7 +96445,7 @@ paths: description: Response content: application/json: - schema: *260 + schema: *262 examples: default: value: @@ -96471,7 +96513,7 @@ paths: application/json: schema: type: array - items: *262 + items: *264 examples: default: value: @@ -96733,7 +96775,7 @@ paths: description: Response content: application/json: - schema: *262 + schema: *264 examples: default: value: @@ -96926,7 +96968,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/migrations/users#download-a-user-migration-archive parameters: - - *263 + - *265 responses: '302': description: Response @@ -96949,7 +96991,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *263 + - *265 - *4 - *5 responses: @@ -96961,7 +97003,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 '404': *24 @@ -96998,7 +97040,7 @@ paths: type: array items: *72 examples: - default: *659 + default: *660 headers: Link: *6 '304': *40 @@ -97040,7 +97082,7 @@ paths: - docker - nuget - container - - *660 + - *661 - *5 - *4 responses: @@ -97050,10 +97092,10 @@ paths: application/json: schema: type: array - items: *268 + items: *270 examples: - default: *661 - '400': *662 + default: *662 + '400': *663 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97073,16 +97115,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 + - *273 responses: '200': description: Response content: application/json: - schema: *268 + schema: *270 examples: - default: &674 + default: &675 value: id: 40201 name: octo-name @@ -97195,8 +97237,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 + - *273 responses: '204': description: Response @@ -97226,8 +97268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 + - *273 - name: token description: package token schema: @@ -97259,8 +97301,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *270 - - *271 + - *272 + - *273 - *5 - *4 - name: state @@ -97280,7 +97322,7 @@ paths: application/json: schema: type: array - items: *272 + items: *274 examples: default: value: @@ -97329,15 +97371,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 - *273 + - *275 responses: '200': description: Response content: application/json: - schema: *272 + schema: *274 examples: default: value: @@ -97373,9 +97415,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 - *273 + - *275 responses: '204': description: Response @@ -97405,9 +97447,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 - *273 + - *275 responses: '204': description: Response @@ -97444,9 +97486,9 @@ paths: application/json: schema: type: array - items: *653 + items: *654 examples: - default: *663 + default: *664 headers: Link: *6 '304': *40 @@ -97559,7 +97601,7 @@ paths: type: array items: *86 examples: - default: &670 + default: &671 summary: Default response value: - id: 1296269 @@ -97877,9 +97919,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -97917,9 +97959,9 @@ paths: application/json: schema: type: array - items: *511 + items: *512 examples: - default: *664 + default: *665 headers: Link: *6 '304': *40 @@ -97942,7 +97984,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *512 + - *513 responses: '204': description: Response @@ -97965,7 +98007,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *512 + - *513 responses: '204': description: Response @@ -97998,7 +98040,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Social account description: Social media account type: object @@ -98015,7 +98057,7 @@ paths: - provider - url examples: - default: &666 + default: &667 value: - provider: twitter url: https://twitter.com/github @@ -98078,9 +98120,9 @@ paths: application/json: schema: type: array - items: *665 + items: *666 examples: - default: *666 + default: *667 '422': *33 '304': *40 '404': *24 @@ -98168,7 +98210,7 @@ paths: application/json: schema: type: array - items: &667 + items: &668 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -98188,7 +98230,7 @@ paths: - title - created_at examples: - default: &675 + default: &676 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -98253,9 +98295,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: - default: &668 + default: &669 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -98285,7 +98327,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &669 + - &670 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -98297,9 +98339,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: - default: *668 + default: *669 '404': *24 '304': *40 '403': *41 @@ -98322,7 +98364,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *669 + - *670 responses: '204': description: Response @@ -98351,7 +98393,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &676 + - &677 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 @@ -98376,11 +98418,11 @@ paths: type: array items: *86 examples: - default-response: *670 + default-response: *671 application/vnd.github.v3.star+json: schema: type: array - items: &677 + items: &678 title: Starred Repository description: Starred Repository type: object @@ -98536,8 +98578,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response if this repository is starred by you @@ -98565,8 +98607,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -98590,8 +98632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -98626,7 +98668,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 '304': *40 @@ -98663,7 +98705,7 @@ paths: application/json: schema: type: array - items: *337 + items: *339 examples: default: value: @@ -98750,10 +98792,10 @@ paths: application/json: schema: oneOf: + - *653 - *652 - - *651 examples: - default-response: &671 + default-response: &672 summary: Default response value: login: octocat @@ -98788,7 +98830,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &672 + response-with-git-hub-plan-information: &673 summary: Response with GitHub plan information value: login: octocat @@ -98864,7 +98906,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: example: ; rel="next" @@ -98900,11 +98942,11 @@ paths: application/json: schema: oneOf: + - *653 - *652 - - *651 examples: - default-response: *671 - response-with-git-hub-plan-information: *672 + default-response: *672 + response-with-git-hub-plan-information: *673 '404': *24 x-github: githubCloudOnly: false @@ -98933,9 +98975,9 @@ paths: application/json: schema: type: array - items: *268 + items: *270 examples: - default: *661 + default: *662 '403': *41 '401': *39 x-github: @@ -99227,7 +99269,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -99258,7 +99300,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -99348,9 +99390,9 @@ paths: application/json: schema: type: array - items: *654 + items: *655 examples: - default: *673 + default: *674 headers: Link: *6 x-github: @@ -99454,7 +99496,7 @@ paths: application/json: schema: *37 examples: - default: *510 + default: *511 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99540,7 +99582,7 @@ paths: type: array items: *72 examples: - default: *659 + default: *660 headers: Link: *6 x-github: @@ -99579,7 +99621,7 @@ paths: - docker - nuget - container - - *660 + - *661 - *8 - *5 - *4 @@ -99590,12 +99632,12 @@ paths: application/json: schema: type: array - items: *268 + items: *270 examples: - default: *661 + default: *662 '403': *41 '401': *39 - '400': *662 + '400': *663 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99615,17 +99657,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-for-a-user parameters: - - *270 - - *271 + - *272 + - *273 - *8 responses: '200': description: Response content: application/json: - schema: *268 + schema: *270 examples: - default: *674 + default: *675 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99646,8 +99688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-a-package-for-a-user parameters: - - *270 - - *271 + - *272 + - *273 - *8 responses: '204': @@ -99680,8 +99722,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-a-package-for-a-user parameters: - - *270 - - *271 + - *272 + - *273 - *8 - name: token description: package token @@ -99714,8 +99756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *270 - - *271 + - *272 + - *273 - *8 responses: '200': @@ -99724,7 +99766,7 @@ paths: application/json: schema: type: array - items: *272 + items: *274 examples: default: value: @@ -99782,16 +99824,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *270 - - *271 + - *272 - *273 + - *275 - *8 responses: '200': description: Response content: application/json: - schema: *272 + schema: *274 examples: default: value: @@ -99826,10 +99868,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-package-version-for-a-user parameters: - - *270 - - *271 - - *8 + - *272 - *273 + - *8 + - *275 responses: '204': description: Response @@ -99861,10 +99903,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-package-version-for-a-user parameters: - - *270 - - *271 - - *8 + - *272 - *273 + - *8 + - *275 responses: '204': description: Response @@ -100103,7 +100145,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -100173,9 +100215,9 @@ paths: application/json: schema: type: array - items: *665 + items: *666 examples: - default: *666 + default: *667 headers: Link: *6 x-github: @@ -100205,9 +100247,9 @@ paths: application/json: schema: type: array - items: *667 + items: *668 examples: - default: *675 + default: *676 headers: Link: *6 x-github: @@ -100232,7 +100274,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *8 - - *676 + - *677 - *9 - *4 - *5 @@ -100244,11 +100286,11 @@ paths: schema: anyOf: - type: array - items: *677 + items: *678 - type: array items: *86 examples: - default-response: *670 + default-response: *671 headers: Link: *6 x-github: @@ -100279,7 +100321,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -100460,7 +100502,7 @@ webhooks: type: string enum: - disabled - enterprise: &678 + enterprise: &679 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -100529,7 +100571,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &679 + installation: &680 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -100550,7 +100592,7 @@ webhooks: required: - id - node_id - organization: &680 + organization: &681 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -100623,7 +100665,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &681 + repository: &682 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -101536,10 +101578,10 @@ webhooks: type: string enum: - enabled - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -101625,11 +101667,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - rule: &682 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + rule: &683 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-server@3.19/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -101862,11 +101904,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - rule: *682 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + rule: *683 sender: *17 required: - action @@ -102064,11 +102106,11 @@ webhooks: - everyone required: - from - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - rule: *682 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + rule: *683 sender: *17 required: - action @@ -102141,7 +102183,7 @@ webhooks: required: true content: application/json: - schema: &702 + schema: &703 title: Exemption request cancellation event type: object properties: @@ -102149,11 +102191,11 @@ webhooks: type: string enum: - cancelled - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - exemption_request: &683 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + exemption_request: &684 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -102427,7 +102469,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &684 + items: &685 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -102539,7 +102581,7 @@ webhooks: required: true content: application/json: - schema: &703 + schema: &704 title: Exemption request completed event type: object properties: @@ -102547,11 +102589,11 @@ webhooks: type: string enum: - completed - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - exemption_request: *683 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + exemption_request: *684 sender: *17 required: - action @@ -102623,7 +102665,7 @@ webhooks: required: true content: application/json: - schema: &700 + schema: &701 title: Exemption request created event type: object properties: @@ -102631,11 +102673,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - exemption_request: *683 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + exemption_request: *684 sender: *17 required: - action @@ -102707,7 +102749,7 @@ webhooks: required: true content: application/json: - schema: &704 + schema: &705 title: Exemption response dismissed event type: object properties: @@ -102715,12 +102757,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - exemption_request: *683 - exemption_response: *684 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + exemption_request: *684 + exemption_response: *685 sender: *17 required: - action @@ -102794,7 +102836,7 @@ webhooks: required: true content: application/json: - schema: &701 + schema: &702 title: Exemption response submitted event type: object properties: @@ -102802,12 +102844,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - exemption_request: *683 - exemption_response: *684 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + exemption_request: *684 + exemption_response: *685 sender: *17 required: - action @@ -102892,12 +102934,12 @@ webhooks: type: string cache_location: type: string - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 ref: type: string - repository: *681 + repository: *682 sender: *17 required: - cache_location @@ -102991,7 +103033,7 @@ webhooks: type: string enum: - completed - check_run: &686 + check_run: &687 title: CheckRun description: A check performed on the code of a given code change type: object @@ -103056,7 +103098,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *417 + items: *419 repository: *195 status: type: string @@ -103101,7 +103143,7 @@ webhooks: - examples: - neutral - deployment: *685 + deployment: *686 details_url: type: string examples: @@ -103161,7 +103203,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *417 + items: *419 started_at: type: string format: date-time @@ -103199,10 +103241,10 @@ webhooks: - output - app - pull_requests - installation: *679 - enterprise: *678 - organization: *680 - repository: *681 + installation: *680 + enterprise: *679 + organization: *681 + repository: *682 sender: *17 required: - check_run @@ -103605,11 +103647,11 @@ webhooks: type: string enum: - created - check_run: *686 - installation: *679 - enterprise: *678 - organization: *680 - repository: *681 + check_run: *687 + installation: *680 + enterprise: *679 + organization: *681 + repository: *682 sender: *17 required: - check_run @@ -104015,11 +104057,11 @@ webhooks: type: string enum: - requested_action - check_run: *686 - installation: *679 - enterprise: *678 - organization: *680 - repository: *681 + check_run: *687 + installation: *680 + enterprise: *679 + organization: *681 + repository: *682 requested_action: description: The action requested by the user. type: object @@ -104434,11 +104476,11 @@ webhooks: type: string enum: - rerequested - check_run: *686 - installation: *679 - enterprise: *678 - organization: *680 - repository: *681 + check_run: *687 + installation: *680 + enterprise: *679 + organization: *681 + repository: *682 sender: *17 required: - check_run @@ -105440,10 +105482,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -106162,10 +106204,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -106878,10 +106920,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -107060,7 +107102,7 @@ webhooks: required: - login - id - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107212,20 +107254,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &687 + commit_oid: &688 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: *678 - installation: *679 - organization: *680 - ref: &688 + enterprise: *679 + installation: *680 + organization: *681 + ref: &689 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: *681 + repository: *682 sender: *17 required: - action @@ -107402,7 +107444,7 @@ webhooks: required: - login - id - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107643,12 +107685,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *687 - enterprise: *678 - installation: *679 - organization: *680 - ref: *688 - repository: *681 + commit_oid: *688 + enterprise: *679 + installation: *680 + organization: *681 + ref: *689 + repository: *682 sender: *17 required: - action @@ -107756,7 +107798,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107941,12 +107983,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *687 - enterprise: *678 - installation: *679 - organization: *680 - ref: *688 - repository: *681 + commit_oid: *688 + enterprise: *679 + installation: *680 + organization: *681 + ref: *689 + repository: *682 sender: *17 required: - action @@ -108125,7 +108167,7 @@ webhooks: required: - login - id - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -108302,12 +108344,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *687 - enterprise: *678 - installation: *679 - organization: *680 - ref: *688 - repository: *681 + commit_oid: *688 + enterprise: *679 + installation: *680 + organization: *681 + ref: *689 + repository: *682 sender: *17 required: - action @@ -108418,7 +108460,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108607,9 +108649,9 @@ webhooks: type: - string - 'null' - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -108617,7 +108659,7 @@ webhooks: type: - string - 'null' - repository: *681 + repository: *682 sender: *17 required: - action @@ -108726,7 +108768,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108873,12 +108915,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *687 - enterprise: *678 - installation: *679 - organization: *680 - ref: *688 - repository: *681 + commit_oid: *688 + enterprise: *679 + installation: *680 + organization: *681 + ref: *689 + repository: *682 sender: *17 required: - action @@ -109150,10 +109192,10 @@ webhooks: - updated_at - author_association - body - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -109244,18 +109286,18 @@ webhooks: type: - string - 'null' - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *680 - pusher_type: &689 + organization: *681 + pusher_type: &690 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &690 + ref: &691 description: The [`git ref`](https://docs.github.com/enterprise-server@3.19/rest/git/refs#get-a-reference) resource. type: string @@ -109265,7 +109307,7 @@ webhooks: enum: - tag - branch - repository: *681 + repository: *682 sender: *17 required: - ref @@ -109348,9 +109390,9 @@ webhooks: enum: - created definition: *134 - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 sender: *17 required: - action @@ -109435,9 +109477,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 sender: *17 required: - action @@ -109515,9 +109557,9 @@ webhooks: enum: - promote_to_enterprise definition: *134 - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 sender: *17 required: - action @@ -109595,9 +109637,9 @@ webhooks: enum: - updated definition: *134 - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 sender: *17 required: - action @@ -109674,19 +109716,19 @@ webhooks: type: string enum: - updated - enterprise: *678 - installation: *679 - repository: *681 - organization: *680 + enterprise: *679 + installation: *680 + repository: *682 + organization: *681 sender: *17 new_property_values: type: array description: The new custom property values for the repository. - items: *287 + items: *289 old_property_values: type: array description: The old custom property values for the repository. - items: *287 + items: *289 required: - action - repository @@ -109772,18 +109814,18 @@ webhooks: title: delete event type: object properties: - enterprise: *678 - installation: *679 - organization: *680 - pusher_type: *689 - ref: *690 + enterprise: *679 + installation: *680 + organization: *681 + pusher_type: *690 + ref: *691 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *681 + repository: *682 sender: *17 required: - ref @@ -109877,11 +109919,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -109975,11 +110017,11 @@ webhooks: type: string enum: - auto_reopened - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110073,11 +110115,11 @@ webhooks: type: string enum: - created - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110169,11 +110211,11 @@ webhooks: type: string enum: - dismissed - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110265,11 +110307,11 @@ webhooks: type: string enum: - fixed - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110362,11 +110404,11 @@ webhooks: type: string enum: - reintroduced - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110458,11 +110500,11 @@ webhooks: type: string enum: - reopened - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110549,9 +110591,9 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - key: &691 + enterprise: *679 + installation: *680 + key: &692 description: The [`deploy key`](https://docs.github.com/enterprise-server@3.19/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -110589,8 +110631,8 @@ webhooks: - verified - created_at - read_only - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -110677,11 +110719,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - key: *691 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + key: *692 + organization: *681 + repository: *682 sender: *17 required: - action @@ -111263,12 +111305,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - workflow: &695 + workflow: &696 title: Workflow type: - object @@ -112016,13 +112058,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *468 + deployment: *470 pull_requests: type: array items: *151 - repository: *681 - organization: *680 - installation: *679 + repository: *682 + organization: *681 + installation: *680 sender: *17 responses: '200': @@ -112103,7 +112145,7 @@ webhooks: type: string enum: - approved - approver: &692 + approver: &693 type: object properties: avatar_url: @@ -112146,11 +112188,11 @@ webhooks: type: string comment: type: string - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - reviewers: &693 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + reviewers: &694 type: array items: type: object @@ -112231,7 +112273,7 @@ webhooks: sender: *17 since: type: string - workflow_job_run: &694 + workflow_job_run: &695 type: object properties: conclusion: @@ -112987,18 +113029,18 @@ webhooks: type: string enum: - rejected - approver: *692 + approver: *693 comment: type: string - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - reviewers: *693 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + reviewers: *694 sender: *17 since: type: string - workflow_job_run: *694 + workflow_job_run: *695 workflow_job_runs: type: array items: @@ -113725,13 +113767,13 @@ webhooks: type: string enum: - requested - enterprise: *678 + enterprise: *679 environment: type: string - installation: *679 - organization: *680 - repository: *681 - requestor: &705 + installation: *680 + organization: *681 + repository: *682 + requestor: &706 title: User type: - object @@ -115684,12 +115726,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - workflow: *695 + workflow: *696 workflow_run: title: Deployment Workflow Run type: @@ -116390,7 +116432,7 @@ webhooks: type: string enum: - answered - answer: &698 + answer: &699 type: object properties: author_association: @@ -116550,7 +116592,7 @@ webhooks: - created_at - updated_at - body - discussion: &696 + discussion: &697 title: Discussion description: A Discussion in a repository. type: object @@ -116867,10 +116909,10 @@ webhooks: - updated_at - active_lock_reason - body - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117007,11 +117049,11 @@ webhooks: - from required: - category - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117104,11 +117146,11 @@ webhooks: type: string enum: - closed - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117200,7 +117242,7 @@ webhooks: type: string enum: - created - comment: &697 + comment: &698 type: object properties: author_association: @@ -117360,11 +117402,11 @@ webhooks: - updated_at - body - reactions - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117457,12 +117499,12 @@ webhooks: type: string enum: - deleted - comment: *697 - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + comment: *698 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117567,12 +117609,12 @@ webhooks: - from required: - body - comment: *697 - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + comment: *698 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117666,11 +117708,11 @@ webhooks: type: string enum: - created - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117762,11 +117804,11 @@ webhooks: type: string enum: - deleted - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117876,11 +117918,11 @@ webhooks: type: string required: - from - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117972,10 +118014,10 @@ webhooks: type: string enum: - labeled - discussion: *696 - enterprise: *678 - installation: *679 - label: &699 + discussion: *697 + enterprise: *679 + installation: *680 + label: &700 title: Label type: object properties: @@ -118008,8 +118050,8 @@ webhooks: - color - default - description - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118102,11 +118144,11 @@ webhooks: type: string enum: - locked - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118198,11 +118240,11 @@ webhooks: type: string enum: - pinned - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118294,11 +118336,11 @@ webhooks: type: string enum: - reopened - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118393,16 +118435,16 @@ webhooks: changes: type: object properties: - new_discussion: *696 - new_repository: *681 + new_discussion: *697 + new_repository: *682 required: - new_discussion - new_repository - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118495,10 +118537,10 @@ webhooks: type: string enum: - unanswered - discussion: *696 - old_answer: *698 - organization: *680 - repository: *681 + discussion: *697 + old_answer: *699 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118590,12 +118632,12 @@ webhooks: type: string enum: - unlabeled - discussion: *696 - enterprise: *678 - installation: *679 - label: *699 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118688,11 +118730,11 @@ webhooks: type: string enum: - unlocked - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118784,11 +118826,11 @@ webhooks: type: string enum: - unpinned - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118857,7 +118899,7 @@ webhooks: required: true content: application/json: - schema: *700 + schema: *701 responses: '200': description: Return a 200 status to indicate that the data was received @@ -118920,7 +118962,7 @@ webhooks: required: true content: application/json: - schema: *701 + schema: *702 responses: '200': description: Return a 200 status to indicate that the data was received @@ -118983,7 +119025,7 @@ webhooks: required: true content: application/json: - schema: *702 + schema: *703 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119046,7 +119088,7 @@ webhooks: required: true content: application/json: - schema: *700 + schema: *701 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119109,7 +119151,7 @@ webhooks: required: true content: application/json: - schema: *701 + schema: *702 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119175,7 +119217,7 @@ webhooks: required: true content: application/json: - schema: *702 + schema: *703 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119241,7 +119283,7 @@ webhooks: required: true content: application/json: - schema: *703 + schema: *704 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119307,7 +119349,7 @@ webhooks: required: true content: application/json: - schema: *700 + schema: *701 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119373,7 +119415,7 @@ webhooks: required: true content: application/json: - schema: *704 + schema: *705 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119439,7 +119481,7 @@ webhooks: required: true content: application/json: - schema: *701 + schema: *702 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119662,7 +119704,7 @@ webhooks: required: true content: application/json: - schema: *702 + schema: *703 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119727,7 +119769,7 @@ webhooks: required: true content: application/json: - schema: *703 + schema: *704 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119792,7 +119834,7 @@ webhooks: required: true content: application/json: - schema: *700 + schema: *701 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119857,7 +119899,7 @@ webhooks: required: true content: application/json: - schema: *704 + schema: *705 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119923,7 +119965,7 @@ webhooks: required: true content: application/json: - schema: *701 + schema: *702 responses: '200': description: Return a 200 status to indicate that the data was received @@ -120000,7 +120042,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *678 + enterprise: *679 forkee: description: The created [`repository`](https://docs.github.com/enterprise-server@3.19/rest/repos/repos#get-a-repository) resource. @@ -120678,9 +120720,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - forkee @@ -120846,9 +120888,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pages: description: The pages that were updated. type: array @@ -120886,7 +120928,7 @@ webhooks: - action - sha - html_url - repository: *681 + repository: *682 sender: *17 required: - pages @@ -120972,10 +121014,10 @@ webhooks: type: string enum: - created - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories: &706 + organization: *681 + repositories: &707 description: An array of repository objects that the installation can access. type: array @@ -121001,8 +121043,8 @@ webhooks: - name - full_name - private - repository: *681 - requester: *705 + repository: *682 + requester: *706 sender: *17 required: - action @@ -121087,11 +121129,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories: *706 - repository: *681 + organization: *681 + repositories: *707 + repository: *682 requester: type: - 'null' @@ -121178,11 +121220,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories: *706 - repository: *681 + organization: *681 + repositories: *707 + repository: *682 requester: type: - 'null' @@ -121269,10 +121311,10 @@ webhooks: type: string enum: - added - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories_added: &707 + organization: *681 + repositories_added: &708 description: An array of repository objects, which were added to the installation. type: array @@ -121318,15 +121360,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *681 - repository_selection: &708 + repository: *682 + repository_selection: &709 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *705 + requester: *706 sender: *17 required: - action @@ -121415,10 +121457,10 @@ webhooks: type: string enum: - removed - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories_added: *707 + organization: *681 + repositories_added: *708 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -121445,9 +121487,9 @@ webhooks: - name - full_name - private - repository: *681 - repository_selection: *708 - requester: *705 + repository: *682 + repository_selection: *709 + requester: *706 sender: *17 required: - action @@ -121536,11 +121578,11 @@ webhooks: type: string enum: - suspend - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories: *706 - repository: *681 + organization: *681 + repositories: *707 + repository: *682 requester: type: - 'null' @@ -121733,10 +121775,10 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 target_type: type: string @@ -121825,11 +121867,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories: *706 - repository: *681 + organization: *681 + repositories: *707 + repository: *682 requester: type: - 'null' @@ -122087,8 +122129,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) the comment belongs to. @@ -122905,8 +122947,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 state: description: State of the issue; either 'open' or 'closed' type: string @@ -122923,7 +122965,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -123267,8 +123309,8 @@ webhooks: - state - locked - assignee - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -123358,7 +123400,7 @@ webhooks: type: string enum: - deleted - comment: &709 + comment: &710 title: issue comment description: The [comment](https://docs.github.com/enterprise-server@3.19/rest/issues/comments#get-an-issue-comment) itself. @@ -123525,8 +123567,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) the comment belongs to. @@ -124339,8 +124381,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 state: description: State of the issue; either 'open' or 'closed' type: string @@ -124357,7 +124399,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -124703,8 +124745,8 @@ webhooks: - state - locked - assignee - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -124794,7 +124836,7 @@ webhooks: type: string enum: - edited - changes: &730 + changes: &731 description: The changes to the comment. type: object properties: @@ -124806,9 +124848,9 @@ webhooks: type: string required: - from - comment: *709 - enterprise: *678 - installation: *679 + comment: *710 + enterprise: *679 + installation: *680 issue: description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) the comment belongs to. @@ -125624,8 +125666,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 state: description: State of the issue; either 'open' or 'closed' type: string @@ -125642,7 +125684,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -125986,8 +126028,8 @@ webhooks: - state - locked - assignee - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -126077,9 +126119,9 @@ webhooks: type: number blocking_issue: *145 blocking_issue_repo: *86 - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -126168,9 +126210,9 @@ webhooks: type: number blocking_issue: *145 blocking_issue_repo: *86 - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -126258,9 +126300,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *145 - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -126349,9 +126391,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *145 - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -126441,10 +126483,10 @@ webhooks: type: string enum: - assigned - assignee: *705 - enterprise: *678 - installation: *679 - issue: &712 + assignee: *706 + enterprise: *679 + installation: *680 + issue: &713 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) itself. @@ -127256,11 +127298,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -127277,7 +127319,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -127380,8 +127422,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -127471,8 +127513,8 @@ webhooks: type: string enum: - closed - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) itself. @@ -128289,11 +128331,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128310,7 +128352,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -128556,8 +128598,8 @@ webhooks: required: - state - closed_at - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -128646,8 +128688,8 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -129455,11 +129497,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129476,7 +129518,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -129578,8 +129620,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -129668,8 +129710,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -130500,11 +130542,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130521,7 +130563,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -130602,7 +130644,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &710 + milestone: &711 title: Milestone description: A collection of related issues and pull requests. type: object @@ -130745,8 +130787,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -130855,8 +130897,8 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -131668,11 +131710,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131686,7 +131728,7 @@ webhooks: timeline_url: type: string format: uri - type: *642 + type: *643 title: description: Title of the issue type: string @@ -131792,9 +131834,9 @@ webhooks: - active_lock_reason - body - reactions - label: *699 - organization: *680 - repository: *681 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -131884,8 +131926,8 @@ webhooks: type: string enum: - labeled - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -132696,11 +132738,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132714,7 +132756,7 @@ webhooks: timeline_url: type: string format: uri - type: *642 + type: *643 title: description: Title of the issue type: string @@ -132820,9 +132862,9 @@ webhooks: - active_lock_reason - body - reactions - label: *699 - organization: *680 - repository: *681 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -132912,8 +132954,8 @@ webhooks: type: string enum: - locked - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -133749,11 +133791,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133767,7 +133809,7 @@ webhooks: timeline_url: type: string format: uri - type: *642 + type: *643 title: description: Title of the issue type: string @@ -133850,8 +133892,8 @@ webhooks: format: uri user_view_type: type: string - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -133940,8 +133982,8 @@ webhooks: type: string enum: - milestoned - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -134771,11 +134813,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134792,7 +134834,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -134872,9 +134914,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *710 - organization: *680 - repository: *681 + milestone: *711 + organization: *681 + repository: *682 sender: *17 required: - action @@ -135776,11 +135818,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135876,7 +135918,7 @@ webhooks: required: - login - id - type: *642 + type: *643 required: - id - number @@ -136357,8 +136399,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -137170,11 +137212,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137191,7 +137233,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -137293,8 +137335,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -137384,9 +137426,9 @@ webhooks: type: string enum: - pinned - enterprise: *678 - installation: *679 - issue: &711 + enterprise: *679 + installation: *680 + issue: &712 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) itself. @@ -138192,11 +138234,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138213,7 +138255,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -138315,8 +138357,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -138405,8 +138447,8 @@ webhooks: type: string enum: - reopened - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -139240,11 +139282,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139341,9 +139383,9 @@ webhooks: format: uri user_view_type: type: string - type: *642 - organization: *680 - repository: *681 + type: *643 + organization: *681 + repository: *682 sender: *17 required: - action @@ -140242,11 +140284,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140263,7 +140305,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -140845,11 +140887,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *678 - installation: *679 - issue: *711 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + issue: *712 + organization: *681 + repository: *682 sender: *17 required: - action @@ -140940,7 +140982,7 @@ webhooks: type: string enum: - unassigned - assignee: &733 + assignee: &734 title: User type: - object @@ -141012,11 +141054,11 @@ webhooks: required: - login - id - enterprise: *678 - installation: *679 - issue: *712 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + issue: *713 + organization: *681 + repository: *682 sender: *17 required: - action @@ -141105,12 +141147,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *678 - installation: *679 - issue: *712 - label: *699 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + issue: *713 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -141200,8 +141242,8 @@ webhooks: type: string enum: - unlocked - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -142035,11 +142077,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142056,7 +142098,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -142136,8 +142178,8 @@ webhooks: format: uri user_view_type: type: string - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142227,11 +142269,11 @@ webhooks: type: string enum: - unpinned - enterprise: *678 - installation: *679 - issue: *711 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + issue: *712 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142320,11 +142362,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - label: *699 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142412,11 +142454,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - label: *699 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142536,11 +142578,11 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - label: *699 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142654,11 +142696,11 @@ webhooks: type: string required: - to - enterprise: *678 - installation: *679 - member: *705 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + member: *706 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142770,11 +142812,11 @@ webhooks: type: - string - 'null' - enterprise: *678 - installation: *679 - member: *705 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + member: *706 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142863,11 +142905,11 @@ webhooks: type: string enum: - removed - enterprise: *678 - installation: *679 - member: *705 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + member: *706 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142955,11 +142997,11 @@ webhooks: type: string enum: - added - enterprise: *678 - installation: *679 - member: *705 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + member: *706 + organization: *681 + repository: *682 scope: description: The scope of the membership. Currently, can only be `team`. @@ -143037,7 +143079,7 @@ webhooks: required: - login - id - team: &713 + team: &714 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -143277,11 +143319,11 @@ webhooks: type: string enum: - removed - enterprise: *678 - installation: *679 - member: *705 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + member: *706 + organization: *681 + repository: *682 scope: description: The scope of the membership. Currently, can only be `team`. @@ -143360,7 +143402,7 @@ webhooks: required: - login - id - team: *713 + team: *714 required: - action - scope @@ -143448,7 +143490,7 @@ webhooks: type: string enum: - deleted - enterprise: *678 + enterprise: *679 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -143557,12 +143599,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *679 - organization: *680 + installation: *680 + organization: *681 repository: anyOf: - type: 'null' - - *681 + - *682 sender: *17 required: - action @@ -143652,11 +143694,11 @@ webhooks: type: string enum: - closed - enterprise: *678 - installation: *679 - milestone: *710 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + milestone: *711 + organization: *681 + repository: *682 sender: *17 required: - action @@ -143745,9 +143787,9 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - milestone: &714 + enterprise: *679 + installation: *680 + milestone: &715 title: Milestone description: A collection of related issues and pull requests. type: object @@ -143889,8 +143931,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -143979,11 +144021,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - milestone: *710 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + milestone: *711 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144103,11 +144145,11 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - milestone: *710 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + milestone: *711 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144197,11 +144239,11 @@ webhooks: type: string enum: - opened - enterprise: *678 - installation: *679 - milestone: *714 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + milestone: *715 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144290,9 +144332,9 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - membership: &715 + enterprise: *679 + installation: *680 + membership: &716 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -144402,8 +144444,8 @@ webhooks: - role - organization_url - user - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144491,11 +144533,11 @@ webhooks: type: string enum: - member_added - enterprise: *678 - installation: *679 - membership: *715 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + membership: *716 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144584,8 +144626,8 @@ webhooks: type: string enum: - member_invited - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -144707,10 +144749,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 - user: *705 + user: *706 required: - action - invitation @@ -144798,11 +144840,11 @@ webhooks: type: string enum: - member_removed - enterprise: *678 - installation: *679 - membership: *715 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + membership: *716 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144899,11 +144941,11 @@ webhooks: properties: from: type: string - enterprise: *678 - installation: *679 - membership: *715 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + membership: *716 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144989,9 +145031,9 @@ webhooks: type: string enum: - published - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 package: description: Information about the package. type: object @@ -145514,7 +145556,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &716 + items: &717 title: Ruby Gems metadata type: object properties: @@ -145611,7 +145653,7 @@ webhooks: - owner - package_version - registry - repository: *681 + repository: *682 sender: *17 required: - action @@ -145697,9 +145739,9 @@ webhooks: type: string enum: - updated - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 package: description: Information about the package. type: object @@ -146061,7 +146103,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *716 + items: *717 source_url: type: string format: uri @@ -146132,7 +146174,7 @@ webhooks: - owner - package_version - registry - repository: *681 + repository: *682 sender: *17 required: - action @@ -146323,12 +146365,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *678 + enterprise: *679 id: type: integer - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - id @@ -146405,7 +146447,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &717 + personal_access_token_request: &718 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -146555,10 +146597,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *678 - organization: *680 + enterprise: *679 + organization: *681 sender: *17 - installation: *679 + installation: *680 required: - action - personal_access_token_request @@ -146635,11 +146677,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *717 - enterprise: *678 - organization: *680 + personal_access_token_request: *718 + enterprise: *679 + organization: *681 sender: *17 - installation: *679 + installation: *680 required: - action - personal_access_token_request @@ -146715,11 +146757,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *717 - enterprise: *678 - organization: *680 + personal_access_token_request: *718 + enterprise: *679 + organization: *681 sender: *17 - installation: *679 + installation: *680 required: - action - personal_access_token_request @@ -146794,11 +146836,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *717 - organization: *680 - enterprise: *678 + personal_access_token_request: *718 + organization: *681 + enterprise: *679 sender: *17 - installation: *679 + installation: *680 required: - action - personal_access_token_request @@ -146913,7 +146955,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *718 + last_response: *719 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -146945,8 +146987,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 zen: description: Random string of GitHub zen. @@ -147201,10 +147243,10 @@ webhooks: - from required: - note - enterprise: *678 - installation: *679 - organization: *680 - project_card: &719 + enterprise: *679 + installation: *680 + organization: *681 + project_card: &720 title: Project Card type: object properties: @@ -147327,7 +147369,7 @@ webhooks: - creator - created_at - updated_at - repository: *681 + repository: *682 sender: *17 required: - action @@ -147418,11 +147460,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - project_card: *719 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project_card: *720 + repository: *682 sender: *17 required: - action @@ -147512,9 +147554,9 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 project_card: title: Project Card type: object @@ -147644,7 +147686,7 @@ webhooks: repository: anyOf: - type: 'null' - - *681 + - *682 sender: *17 required: - action @@ -147748,11 +147790,11 @@ webhooks: - from required: - note - enterprise: *678 - installation: *679 - organization: *680 - project_card: *719 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project_card: *720 + repository: *682 sender: *17 required: - action @@ -147856,9 +147898,9 @@ webhooks: - from required: - column_id - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 project_card: allOf: - title: Project Card @@ -148055,7 +148097,7 @@ webhooks: type: string required: - after_id - repository: *681 + repository: *682 sender: *17 required: - action @@ -148145,10 +148187,10 @@ webhooks: type: string enum: - closed - enterprise: *678 - installation: *679 - organization: *680 - project: &721 + enterprise: *679 + installation: *680 + organization: *681 + project: &722 title: Project type: object properties: @@ -148275,7 +148317,7 @@ webhooks: - creator - created_at - updated_at - repository: *681 + repository: *682 sender: *17 required: - action @@ -148365,10 +148407,10 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - project_column: &720 + enterprise: *679 + installation: *680 + organization: *681 + project_column: &721 title: Project Column type: object properties: @@ -148408,7 +148450,7 @@ webhooks: - name - created_at - updated_at - repository: *681 + repository: *682 sender: *17 required: - action @@ -148497,14 +148539,14 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - project_column: *720 + enterprise: *679 + installation: *680 + organization: *681 + project_column: *721 repository: anyOf: - type: 'null' - - *681 + - *682 sender: *17 required: - action @@ -148603,11 +148645,11 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - organization: *680 - project_column: *720 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project_column: *721 + repository: *682 sender: *17 required: - action @@ -148697,11 +148739,11 @@ webhooks: type: string enum: - moved - enterprise: *678 - installation: *679 - organization: *680 - project_column: *720 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project_column: *721 + repository: *682 sender: *17 required: - action @@ -148791,11 +148833,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - project: *721 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project: *722 + repository: *682 sender: *17 required: - action @@ -148885,14 +148927,14 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - project: *721 + enterprise: *679 + installation: *680 + organization: *681 + project: *722 repository: anyOf: - type: 'null' - - *681 + - *682 sender: *17 required: - action @@ -149003,11 +149045,11 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - organization: *680 - project: *721 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project: *722 + repository: *682 sender: *17 required: - action @@ -149096,11 +149138,11 @@ webhooks: type: string enum: - reopened - enterprise: *678 - installation: *679 - organization: *680 - project: *721 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project: *722 + repository: *682 sender: *17 required: - action @@ -149191,9 +149233,9 @@ webhooks: type: string enum: - closed - installation: *679 - organization: *680 - projects_v2: &722 + installation: *680 + organization: *681 + projects_v2: &723 title: Projects v2 Project description: A projects v2 project type: object @@ -149440,9 +149482,9 @@ webhooks: type: string enum: - created - installation: *679 - organization: *680 - projects_v2: *722 + installation: *680 + organization: *681 + projects_v2: *723 sender: *17 required: - action @@ -149533,9 +149575,9 @@ webhooks: type: string enum: - deleted - installation: *679 - organization: *680 - projects_v2: *722 + installation: *680 + organization: *681 + projects_v2: *723 sender: *17 required: - action @@ -149666,9 +149708,9 @@ webhooks: type: string to: type: string - installation: *679 - organization: *680 - projects_v2: *722 + installation: *680 + organization: *681 + projects_v2: *723 sender: *17 required: - action @@ -149761,7 +149803,7 @@ webhooks: type: string enum: - archived - changes: &726 + changes: &727 type: object properties: archived_at: @@ -149777,9 +149819,9 @@ webhooks: - string - 'null' format: date-time - installation: *679 - organization: *680 - projects_v2_item: &723 + installation: *680 + organization: *681 + projects_v2_item: &724 title: Projects v2 Item description: An item belonging to a project type: object @@ -149936,9 +149978,9 @@ webhooks: - 'null' to: type: string - installation: *679 - organization: *680 - projects_v2_item: *723 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150030,9 +150072,9 @@ webhooks: type: string enum: - created - installation: *679 - organization: *680 - projects_v2_item: *723 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150123,9 +150165,9 @@ webhooks: type: string enum: - deleted - installation: *679 - organization: *680 - projects_v2_item: *723 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150240,7 +150282,7 @@ webhooks: oneOf: - type: string - type: integer - - &724 + - &725 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -150264,7 +150306,7 @@ webhooks: required: - id - name - - &725 + - &726 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -150304,8 +150346,8 @@ webhooks: oneOf: - type: string - type: integer - - *724 - *725 + - *726 type: - 'null' - string @@ -150328,9 +150370,9 @@ webhooks: - 'null' required: - body - installation: *679 - organization: *680 - projects_v2_item: *723 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150437,9 +150479,9 @@ webhooks: type: - string - 'null' - installation: *679 - organization: *680 - projects_v2_item: *723 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150532,10 +150574,10 @@ webhooks: type: string enum: - restored - changes: *726 - installation: *679 - organization: *680 - projects_v2_item: *723 + changes: *727 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150627,9 +150669,9 @@ webhooks: type: string enum: - reopened - installation: *679 - organization: *680 - projects_v2: *722 + installation: *680 + organization: *681 + projects_v2: *723 sender: *17 required: - action @@ -150710,10 +150752,10 @@ webhooks: title: public event type: object properties: - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - repository @@ -150800,13 +150842,13 @@ webhooks: type: string enum: - assigned - assignee: *705 - enterprise: *678 - installation: *679 - number: &727 + assignee: *706 + enterprise: *679 + installation: *680 + number: &728 description: The pull request number. type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -153155,7 +153197,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -153247,11 +153289,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -155593,7 +155635,7 @@ webhooks: - draft reason: type: string - repository: *681 + repository: *682 sender: *17 required: - action @@ -155685,11 +155727,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -158031,7 +158073,7 @@ webhooks: - draft reason: type: string - repository: *681 + repository: *682 sender: *17 required: - action @@ -158123,11 +158165,11 @@ webhooks: type: string enum: - closed - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: &728 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: &729 allOf: - *151 - type: object @@ -158191,7 +158233,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *681 + repository: *682 sender: *17 required: - action @@ -158282,12 +158324,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: *728 - repository: *681 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: *729 + repository: *682 sender: *17 required: - action @@ -158377,11 +158419,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *678 + enterprise: *679 milestone: *149 - number: *727 - organization: *680 - pull_request: &729 + number: *728 + organization: *681 + pull_request: &730 title: Pull Request type: object properties: @@ -160708,7 +160750,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -160840,12 +160882,12 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: *728 - repository: *681 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: *729 + repository: *682 sender: *17 required: - action @@ -160935,11 +160977,11 @@ webhooks: type: string enum: - labeled - enterprise: *678 - installation: *679 - label: *699 - number: *727 - organization: *680 + enterprise: *679 + installation: *680 + label: *700 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -163287,7 +163329,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -163378,10 +163420,10 @@ webhooks: type: string enum: - locked - enterprise: *678 - installation: *679 - number: *727 - organization: *680 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -165727,7 +165769,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -165817,12 +165859,12 @@ webhooks: type: string enum: - milestoned - enterprise: *678 + enterprise: *679 milestone: *149 - number: *727 - organization: *680 - pull_request: *729 - repository: *681 + number: *728 + organization: *681 + pull_request: *730 + repository: *682 sender: *17 required: - action @@ -165911,12 +165953,12 @@ webhooks: type: string enum: - opened - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: *728 - repository: *681 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: *729 + repository: *682 sender: *17 required: - action @@ -166007,12 +166049,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: *728 - repository: *681 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: *729 + repository: *682 sender: *17 required: - action @@ -166102,12 +166144,12 @@ webhooks: type: string enum: - reopened - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: *728 - repository: *681 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: *729 + repository: *682 sender: *17 required: - action @@ -166492,9 +166534,9 @@ webhooks: - start_side - side - reactions - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: type: object properties: @@ -168724,7 +168766,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *681 + repository: *682 sender: *17 required: - action @@ -168814,7 +168856,7 @@ webhooks: type: string enum: - deleted - comment: &731 + comment: &732 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -169107,9 +169149,9 @@ webhooks: - start_side - side - reactions - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: type: object properties: @@ -171327,7 +171369,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *681 + repository: *682 sender: *17 required: - action @@ -171417,11 +171459,11 @@ webhooks: type: string enum: - edited - changes: *730 - comment: *731 - enterprise: *678 - installation: *679 - organization: *680 + changes: *731 + comment: *732 + enterprise: *679 + installation: *680 + organization: *681 pull_request: type: object properties: @@ -173642,7 +173684,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *681 + repository: *682 sender: *17 required: - action @@ -173733,9 +173775,9 @@ webhooks: type: string enum: - dismissed - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: title: Simple Pull Request type: object @@ -175968,7 +176010,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *681 + repository: *682 review: description: The review that was affected. type: object @@ -176229,9 +176271,9 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: title: Simple Pull Request type: object @@ -178345,8 +178387,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *681 - review: &732 + repository: *682 + review: &733 description: The review that was affected. type: object properties: @@ -178594,12 +178636,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: description: The pull request number. type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -180946,7 +180988,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 requested_reviewer: title: User type: @@ -181032,12 +181074,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: description: The pull request number. type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -183391,7 +183433,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 requested_team: title: Team description: Groups of organization members that gives permissions @@ -183596,12 +183638,12 @@ webhooks: type: string enum: - review_requested - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: description: The pull request number. type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -185950,7 +185992,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 requested_reviewer: title: User type: @@ -186037,12 +186079,12 @@ webhooks: type: string enum: - review_requested - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: description: The pull request number. type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -188382,7 +188424,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 requested_team: title: Team description: Groups of organization members that gives permissions @@ -188576,9 +188618,9 @@ webhooks: type: string enum: - submitted - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: title: Simple Pull Request type: object @@ -190814,8 +190856,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *681 - review: *732 + repository: *682 + review: *733 sender: *17 required: - action @@ -190905,9 +190947,9 @@ webhooks: type: string enum: - resolved - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: title: Simple Pull Request type: object @@ -193038,7 +193080,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *681 + repository: *682 sender: *17 thread: type: object @@ -193445,9 +193487,9 @@ webhooks: type: string enum: - unresolved - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: title: Simple Pull Request type: object @@ -195561,7 +195603,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *681 + repository: *682 sender: *17 thread: type: object @@ -195970,10 +196012,10 @@ webhooks: type: string before: type: string - enterprise: *678 - installation: *679 - number: *727 - organization: *680 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -198308,7 +198350,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -198400,11 +198442,11 @@ webhooks: type: string enum: - unassigned - assignee: *733 - enterprise: *678 - installation: *679 - number: *727 - organization: *680 + assignee: *734 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -200754,7 +200796,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -200843,11 +200885,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *678 - installation: *679 - label: *699 - number: *727 - organization: *680 + enterprise: *679 + installation: *680 + label: *700 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -203186,7 +203228,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -203277,10 +203319,10 @@ webhooks: type: string enum: - unlocked - enterprise: *678 - installation: *679 - number: *727 - organization: *680 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -205609,7 +205651,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -205822,7 +205864,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *678 + enterprise: *679 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -205917,8 +205959,8 @@ webhooks: - url - author - committer - installation: *679 - organization: *680 + installation: *680 + organization: *681 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -206516,9 +206558,9 @@ webhooks: type: string enum: - published - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 registry_package: type: object properties: @@ -206995,7 +207037,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *716 + items: *717 summary: type: string tag_name: @@ -207051,7 +207093,7 @@ webhooks: - owner - package_version - registry - repository: *681 + repository: *682 sender: *17 required: - action @@ -207139,9 +207181,9 @@ webhooks: type: string enum: - updated - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 registry_package: type: object properties: @@ -207453,7 +207495,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *716 + items: *717 summary: type: string tag_name: @@ -207503,7 +207545,7 @@ webhooks: - owner - package_version - registry - repository: *681 + repository: *682 sender: *17 required: - action @@ -207590,10 +207632,10 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - release: &734 + enterprise: *679 + installation: *680 + organization: *681 + release: &735 title: Release description: The [release](https://docs.github.com/enterprise-server@3.19/rest/releases/releases/#get-a-release) object. @@ -207924,7 +207966,7 @@ webhooks: - updated_at - zipball_url - body - repository: *681 + repository: *682 sender: *17 required: - action @@ -208011,11 +208053,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - release: *734 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + release: *735 + repository: *682 sender: *17 required: - action @@ -208142,11 +208184,11 @@ webhooks: type: boolean required: - to - enterprise: *678 - installation: *679 - organization: *680 - release: *734 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + release: *735 + repository: *682 sender: *17 required: - action @@ -208234,9 +208276,9 @@ webhooks: type: string enum: - prereleased - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 release: title: Release description: The [release](https://docs.github.com/enterprise-server@3.19/rest/releases/releases/#get-a-release) @@ -208572,7 +208614,7 @@ webhooks: - string - 'null' format: uri - repository: *681 + repository: *682 sender: *17 required: - action @@ -208658,10 +208700,10 @@ webhooks: type: string enum: - published - enterprise: *678 - installation: *679 - organization: *680 - release: &735 + enterprise: *679 + installation: *680 + organization: *681 + release: &736 title: Release description: The [release](https://docs.github.com/enterprise-server@3.19/rest/releases/releases/#get-a-release) object. @@ -208994,7 +209036,7 @@ webhooks: - string - 'null' format: uri - repository: *681 + repository: *682 sender: *17 required: - action @@ -209080,11 +209122,11 @@ webhooks: type: string enum: - released - enterprise: *678 - installation: *679 - organization: *680 - release: *734 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + release: *735 + repository: *682 sender: *17 required: - action @@ -209170,11 +209212,11 @@ webhooks: type: string enum: - unpublished - enterprise: *678 - installation: *679 - organization: *680 - release: *735 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + release: *736 + repository: *682 sender: *17 required: - action @@ -209260,10 +209302,10 @@ webhooks: type: string enum: - anonymous_access_disabled - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209348,10 +209390,10 @@ webhooks: type: string enum: - anonymous_access_enabled - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209436,10 +209478,10 @@ webhooks: type: string enum: - archived - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209526,10 +209568,10 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209617,10 +209659,10 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209715,10 +209757,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209843,10 +209885,10 @@ webhooks: - 'null' items: type: string - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209934,10 +209976,10 @@ webhooks: type: string enum: - privatized - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -210024,10 +210066,10 @@ webhooks: type: string enum: - publicized - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -210131,10 +210173,10 @@ webhooks: - name required: - repository - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -210214,11 +210256,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - repository_ruleset: *315 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + repository_ruleset: *317 sender: *17 required: - action @@ -210296,11 +210338,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - repository_ruleset: *315 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + repository_ruleset: *317 sender: *17 required: - action @@ -210378,11 +210420,11 @@ webhooks: type: string enum: - edited - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - repository_ruleset: *315 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + repository_ruleset: *317 changes: type: object properties: @@ -210401,16 +210443,16 @@ webhooks: properties: added: type: array - items: *289 + items: *291 deleted: type: array - items: *289 + items: *291 updated: type: array items: type: object properties: - condition: *289 + condition: *291 changes: type: object properties: @@ -210443,16 +210485,16 @@ webhooks: properties: added: type: array - items: *577 + items: *578 deleted: type: array - items: *577 + items: *578 updated: type: array items: type: object properties: - rule: *577 + rule: *578 changes: type: object properties: @@ -210699,10 +210741,10 @@ webhooks: - from required: - owner - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -210790,10 +210832,10 @@ webhooks: type: string enum: - unarchived - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -210881,7 +210923,7 @@ webhooks: type: string enum: - create - alert: &736 + alert: &737 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -211005,10 +211047,10 @@ webhooks: type: string enum: - open - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -211228,10 +211270,10 @@ webhooks: type: string enum: - dismissed - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -211319,11 +211361,11 @@ webhooks: type: string enum: - reopen - alert: *736 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + alert: *737 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -211535,10 +211577,10 @@ webhooks: enum: - fixed - open - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -211626,7 +211668,7 @@ webhooks: type: string enum: - created - alert: &737 + alert: &738 type: object properties: number: *123 @@ -211735,10 +211777,10 @@ webhooks: anyOf: - type: 'null' - *17 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -211829,11 +211871,11 @@ webhooks: type: string enum: - created - alert: *737 - installation: *679 - location: *738 - organization: *680 - repository: *681 + alert: *738 + installation: *680 + location: *739 + organization: *681 + repository: *682 sender: *17 required: - location @@ -212077,11 +212119,11 @@ webhooks: type: string enum: - reopened - alert: *737 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + alert: *738 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -212169,11 +212211,11 @@ webhooks: type: string enum: - resolved - alert: *737 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + alert: *738 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -212261,11 +212303,11 @@ webhooks: type: string enum: - validated - alert: *737 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + alert: *738 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -212395,10 +212437,10 @@ webhooks: - organization - enterprise - - repository: *681 - enterprise: *678 - installation: *679 - organization: *680 + repository: *682 + enterprise: *679 + installation: *680 + organization: *681 sender: *17 required: - action @@ -212486,11 +212528,11 @@ webhooks: type: string enum: - published - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - security_advisory: &739 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + security_advisory: &740 description: The details of the security advisory, including summary, description, and severity. type: object @@ -212686,11 +212728,11 @@ webhooks: type: string enum: - updated - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - security_advisory: *739 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + security_advisory: *740 sender: *17 required: - action @@ -212773,10 +212815,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -212972,11 +213014,11 @@ webhooks: from: type: object properties: - security_and_analysis: *288 - enterprise: *678 - installation: *679 - organization: *680 - repository: *358 + security_and_analysis: *290 + enterprise: *679 + installation: *680 + organization: *681 + repository: *360 sender: *17 required: - changes @@ -213064,12 +213106,12 @@ webhooks: type: string enum: - cancelled - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: &740 + sponsorship: &741 type: object properties: created_at: @@ -213384,12 +213426,12 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: *740 + sponsorship: *741 required: - action - sponsorship @@ -213487,12 +213529,12 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: *740 + sponsorship: *741 required: - action - changes @@ -213579,17 +213621,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &741 + effective_date: &742 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: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: *740 + sponsorship: *741 required: - action - sponsorship @@ -213673,7 +213715,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &742 + changes: &743 type: object properties: tier: @@ -213717,13 +213759,13 @@ webhooks: - from required: - tier - effective_date: *741 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + effective_date: *742 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: *740 + sponsorship: *741 required: - action - changes @@ -213810,13 +213852,13 @@ webhooks: type: string enum: - tier_changed - changes: *742 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + changes: *743 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: *740 + sponsorship: *741 required: - action - changes @@ -213900,10 +213942,10 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 starred_at: description: 'The time the star was created. This is a timestamp @@ -213997,10 +214039,10 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 starred_at: description: 'The time the star was created. This is a timestamp @@ -214444,15 +214486,15 @@ webhooks: type: - string - 'null' - enterprise: *678 + enterprise: *679 id: description: The unique identifier of the status. type: integer - installation: *679 + installation: *680 name: type: string - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 sha: description: The Commit SHA. @@ -214565,12 +214607,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - team: &743 + team: &744 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -214810,9 +214852,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 repository: title: Repository description: A git repository @@ -215282,7 +215324,7 @@ webhooks: - topics - visibility sender: *17 - team: *743 + team: *744 required: - action - team @@ -215368,9 +215410,9 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 repository: title: Repository description: A git repository @@ -215840,7 +215882,7 @@ webhooks: - topics - visibility sender: *17 - team: *743 + team: *744 required: - action - team @@ -215927,9 +215969,9 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 repository: title: Repository description: A git repository @@ -216399,7 +216441,7 @@ webhooks: - topics - visibility sender: *17 - team: *743 + team: *744 required: - action - team @@ -216553,9 +216595,9 @@ webhooks: - from required: - permissions - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 repository: title: Repository description: A git repository @@ -217025,7 +217067,7 @@ webhooks: - topics - visibility sender: *17 - team: *743 + team: *744 required: - action - changes @@ -217113,9 +217155,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 repository: title: Repository description: A git repository @@ -217585,7 +217627,7 @@ webhooks: - topics - visibility sender: *17 - team: *743 + team: *744 required: - action - team @@ -217668,12 +217710,12 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - user: *705 + user: *706 required: - action responses: @@ -217751,12 +217793,12 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - user: *705 + user: *706 required: - action responses: @@ -217837,10 +217879,10 @@ webhooks: type: string enum: - started - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -217923,17 +217965,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *678 + enterprise: *679 inputs: type: - object - 'null' additionalProperties: true - installation: *679 - organization: *680 + installation: *680 + organization: *681 ref: type: string - repository: *681 + repository: *682 sender: *17 workflow: type: string @@ -218025,10 +218067,10 @@ webhooks: type: string enum: - completed - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 workflow_job: allOf: @@ -218284,7 +218326,7 @@ webhooks: type: string required: - conclusion - deployment: *468 + deployment: *470 required: - action - repository @@ -218373,10 +218415,10 @@ webhooks: type: string enum: - in_progress - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 workflow_job: allOf: @@ -218658,7 +218700,7 @@ webhooks: required: - status - steps - deployment: *468 + deployment: *470 required: - action - repository @@ -218747,10 +218789,10 @@ webhooks: type: string enum: - queued - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 workflow_job: type: object @@ -218896,7 +218938,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *468 + deployment: *470 required: - action - repository @@ -218985,10 +219027,10 @@ webhooks: type: string enum: - waiting - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 workflow_job: type: object @@ -219135,7 +219177,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *468 + deployment: *470 required: - action - repository @@ -219225,12 +219267,12 @@ webhooks: type: string enum: - completed - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - workflow: *695 + workflow: *696 workflow_run: title: Workflow Run type: object @@ -220259,12 +220301,12 @@ webhooks: type: string enum: - in_progress - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - workflow: *695 + workflow: *696 workflow_run: title: Workflow Run type: object @@ -221278,12 +221320,12 @@ webhooks: type: string enum: - requested - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - workflow: *695 + workflow: *696 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.deref.json b/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.deref.json index f1982ca3c..c2cc940e0 100644 --- a/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.deref.json +++ b/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.deref.json @@ -166286,6 +166286,496 @@ } } }, + "/orgs/{org}/dismissal-requests/dependabot": { + "get": { + "summary": "List dismissal requests for Dependabot alerts for an organization", + "description": "Lists dismissal requests for Dependabot alerts in an organization.\n\nDelegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager,\nor have the appropriate permission to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/list-dismissal-requests-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-server@3.19/rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "dependabot", + "subcategory": "alert-dismissal-requests" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repository_name", + "description": "The name of the repository to filter on.", + "in": "query", + "schema": { + "type": "string" + } + }, + { + "name": "reviewer", + "description": "Filter bypass requests by the handle of the GitHub user who reviewed the bypass request.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "requester", + "description": "Filter bypass requests by the handle of the GitHub user who requested the bypass.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, + { + "name": "time_period", + "description": "The time period to filter by.\n\nFor example, `day` will filter for rule suites that occurred in the past 24 hours, and `week` will filter for rule suites that occurred in the past 7 days (168 hours).", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "hour", + "day", + "week", + "month" + ], + "default": "day" + } + }, + { + "name": "request_status", + "description": "The status of the dismissal request to filter on. When specified, only requests with this status will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "completed", + "cancelled", + "approved", + "expired", + "denied", + "open", + "all" + ], + "default": "all" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.19/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-server@3.19/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "A list of alert dismissal requests.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Dependabot alert dismissal request", + "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The unique identifier of the dismissal request." + }, + "number": { + "type": "integer", + "format": "int64", + "description": "The number uniquely identifying the dismissal request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the repository the dismissal request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the dismissal request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the dismissal request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who requested the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the dismissal request." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the dismissal request metadata.", + "items": { + "type": "object", + "properties": { + "reason": { + "type": "string", + "description": "The reason for the dismissal request." + }, + "alert_number": { + "type": "string", + "description": "The alert number." + }, + "alert_title": { + "type": "string", + "description": "The title of the alert." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the dismissal request.", + "examples": [ + "123" + ] + }, + "status": { + "type": "string", + "description": "The status of the dismissal request.", + "enum": [ + "pending", + "denied", + "approved", + "expired" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the dismissal request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the dismissal request.", + "items": { + "title": "Dismissal request response", + "description": "A response made by a requester to dismiss the request.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the response to the dismissal request." + }, + "reviewer": { + "type": "object", + "description": "The user who reviewed the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who reviewed the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who reviewed the dismissal request." + } + } + }, + "message": { + "type": [ + "string", + "null" + ], + "description": "The response comment of the reviewer." + }, + "status": { + "type": "string", + "description": "The response status to the dismissal request until dismissed.", + "enum": [ + "approved", + "denied", + "dismissed" + ] + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the response to the dismissal request was created." + } + } + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the dismissal request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/security/dependabot/1" + ] + } + } + } + }, + "examples": { + "default": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "no_bandwidth", + "alert_number": "1", + "alert_title": "lodash - GHSA-1234-abcd-5678" + } + ], + "resource_identifier": "1", + "status": "denied", + "requester_comment": "No bandwidth to fix this right now", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", + "html_url": "https://github.com/octo-org/smile/security/dependabot/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "tolerable_risk", + "alert_number": "2", + "alert_title": "axios - GHSA-5678-efgh-9012" + } + ], + "resource_identifier": "2", + "status": "approved", + "requester_comment": "Risk is acceptable for this internal tool", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 43, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "approved", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", + "html_url": "https://github.com/octo-org/smile/security/dependabot/2" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "500": { + "description": "Internal Error", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + } + } + }, "/orgs/{org}/dismissal-requests/secret-scanning": { "get": { "summary": "List alert dismissal requests for secret scanning for an org", diff --git a/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.deref.yaml b/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.deref.yaml index 013c09160..0e39bbf1c 100644 --- a/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.deref.yaml +++ b/descriptions-next/ghes-3.19/dereferenced/ghes-3.19.deref.yaml @@ -930,7 +930,7 @@ paths: schema: type: object properties: - ldap_dn: &336 + ldap_dn: &338 type: string description: The [distinguished name](https://www.ldap.com/ldap-dns-and-rdns) (DN) of the LDAP entry to map to a team. @@ -4580,7 +4580,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/apps/webhooks#list-deliveries-for-an-app-webhook parameters: - *4 - - &253 + - &255 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 @@ -4596,7 +4596,7 @@ paths: application/json: schema: type: array - items: &254 + items: &256 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4692,7 +4692,7 @@ paths: - installation_id - repository_id examples: - default: &255 + default: &257 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4724,7 +4724,7 @@ paths: application/json: schema: *22 application/scim+json: - schema: &615 + schema: &616 title: Scim Error description: Scim Error type: object @@ -4827,7 +4827,7 @@ paths: description: Response content: application/json: - schema: &256 + schema: &258 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4962,7 +4962,7 @@ paths: - request - response examples: - default: &257 + default: &259 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -7097,7 +7097,7 @@ paths: schema: type: string '422': *33 - '410': &364 + '410': &366 description: Gone content: application/json: @@ -10716,7 +10716,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &616 + '401': &617 description: Authorization failure '404': *24 x-github: @@ -14868,7 +14868,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &427 + instances_url: &429 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -14904,7 +14904,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &428 + dismissed_reason: &430 type: - string - 'null' @@ -14915,14 +14915,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &429 + dismissed_comment: &431 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &430 + rule: &432 type: object properties: id: @@ -14983,7 +14983,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &431 + tool: &433 type: object properties: name: *114 @@ -14994,15 +14994,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *115 - most_recent_instance: &432 + most_recent_instance: &434 type: object properties: - ref: &425 + ref: &427 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &438 + analysis_key: &440 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -15013,7 +15013,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &439 + category: &441 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -17067,7 +17067,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 - - &458 + - &460 name: has in: query description: |- @@ -17194,7 +17194,7 @@ paths: - development - runtime - - security_advisory: &459 + security_advisory: &461 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17430,7 +17430,7 @@ paths: dismissal. maxLength: 280 fixed_at: *133 - auto_dismissed_at: &460 + auto_dismissed_at: &462 type: - string - 'null' @@ -17438,7 +17438,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &461 + dismissal_request: &463 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -18114,7 +18114,7 @@ paths: required: true content: application/json: - schema: &286 + schema: &288 title: Custom Property Set Payload description: Custom property set payload type: object @@ -18270,7 +18270,7 @@ paths: type: string format: date-time examples: - default: &318 + default: &320 value: - version_id: 3 actor: @@ -18323,7 +18323,7 @@ paths: description: Response content: application/json: - schema: &319 + schema: &321 allOf: - *139 - type: object @@ -18378,7 +18378,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *64 - - &320 + - &322 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -18389,7 +18389,7 @@ paths: enum: - open - resolved - - &321 + - &323 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -18399,7 +18399,7 @@ paths: required: false schema: type: string - - &322 + - &324 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -18408,7 +18408,7 @@ paths: required: false schema: type: string - - &323 + - &325 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. @@ -18424,7 +18424,7 @@ paths: - *4 - *112 - *113 - - &324 + - &326 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -18433,7 +18433,7 @@ paths: required: false schema: type: string - - &325 + - &327 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -18442,7 +18442,7 @@ paths: schema: type: boolean default: false - - &326 + - &328 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -18451,7 +18451,7 @@ paths: schema: type: boolean default: false - - &327 + - &329 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -18467,7 +18467,7 @@ paths: application/json: schema: type: array - items: &328 + items: &330 type: object properties: number: *123 @@ -18483,14 +18483,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &589 + state: &590 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: &590 + resolution: &591 type: - string - 'null' @@ -18592,14 +18592,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &591 + - &592 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &593 + - &594 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -18656,7 +18656,7 @@ paths: - blob_url - commit_sha - commit_url - - &594 + - &595 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. @@ -18717,7 +18717,7 @@ paths: - page_url - commit_sha - commit_url - - &595 + - &596 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -18732,7 +18732,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &596 + - &597 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -18747,7 +18747,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &597 + - &598 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -18762,7 +18762,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &598 + - &599 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -18777,7 +18777,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &599 + - &600 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -18792,7 +18792,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &600 + - &601 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -18807,7 +18807,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &601 + - &602 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. @@ -18822,7 +18822,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &602 + - &603 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. @@ -18837,7 +18837,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &603 + - &604 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. @@ -18852,7 +18852,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &604 + - &605 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. @@ -18867,7 +18867,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &605 + - &606 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 @@ -18892,7 +18892,7 @@ paths: - type: 'null' - *17 examples: - default: &329 + default: &331 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -19101,7 +19101,7 @@ paths: description: Response content: application/json: - schema: &330 + schema: &332 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -19188,7 +19188,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *141 examples: - default: &331 + default: &333 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -19324,7 +19324,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *64 - - &333 + - &335 name: advanced_security_product in: query description: | @@ -19344,7 +19344,7 @@ paths: description: Success content: application/json: - schema: &334 + schema: &336 type: object properties: total_advanced_security_committers: @@ -19407,7 +19407,7 @@ paths: required: - repositories examples: - default: &335 + default: &337 value: total_advanced_security_committers: 2 total_count: 2 @@ -19911,7 +19911,7 @@ paths: timeline_url: type: string format: uri - type: &642 + type: &643 title: Issue Type description: The type of issue. type: @@ -20022,7 +20022,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &639 + sub_issues_summary: &640 title: Sub-issues Summary type: object properties: @@ -20043,7 +20043,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &640 + issue_dependencies_summary: &641 title: Issue Dependencies Summary type: object properties: @@ -20062,7 +20062,7 @@ paths: - total_blocking issue_field_values: type: array - items: &641 + items: &642 title: Issue Field Value description: A value assigned to an issue field type: object @@ -20229,7 +20229,7 @@ paths: action: type: string issue: *145 - comment: &513 + comment: &514 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -20762,7 +20762,7 @@ paths: type: - array - 'null' - items: &266 + items: &268 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -20930,7 +20930,7 @@ paths: - review_comment - self author_association: *146 - auto_merge: &450 + auto_merge: &452 title: Auto merge description: The status of auto merging a pull request. type: @@ -21413,7 +21413,7 @@ paths: type: string release: allOf: - - &567 + - &568 title: Release description: A release. type: object @@ -21495,7 +21495,7 @@ paths: author: *17 assets: type: array - items: &568 + items: &569 title: Release Asset description: Data related to a release. type: object @@ -22089,7 +22089,7 @@ paths: url: type: string format: uri - user: &651 + user: &652 title: Public User description: Public User type: object @@ -23984,7 +23984,7 @@ paths: - closed - all default: open - - &258 + - &260 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -24035,7 +24035,7 @@ paths: type: array items: *145 examples: - default: &259 + default: &261 value: - id: 1 node_id: MDU6SXNzdWUx @@ -26791,14 +26791,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &354 + - &356 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &355 + - &357 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -26870,7 +26870,7 @@ paths: '404': *24 '403': *41 '304': *40 - '301': &359 + '301': &361 description: Moved permanently content: application/json: @@ -26892,7 +26892,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &541 + - &542 name: all description: If `true`, show notifications marked as read. in: query @@ -26900,7 +26900,7 @@ paths: schema: type: boolean default: false - - &542 + - &543 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -26910,7 +26910,7 @@ paths: type: boolean default: false - *153 - - &543 + - &544 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: @@ -27281,7 +27281,7 @@ paths: type: boolean examples: - false - security_and_analysis: &288 + security_and_analysis: &290 type: - object - 'null' @@ -27438,7 +27438,7 @@ paths: - url - subscription_url examples: - default: &544 + default: &545 value: - id: '1' repository: @@ -27991,7 +27991,7 @@ paths: type: array items: *72 examples: - default: &659 + default: &660 value: - login: github id: 1 @@ -29237,7 +29237,7 @@ paths: type: integer repository_cache_usages: type: array - items: &365 + items: &367 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -31724,7 +31724,7 @@ paths: description: Response content: application/json: - schema: &387 + schema: &389 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -31759,7 +31759,7 @@ paths: - key_id - key examples: - default: &388 + default: &390 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32172,7 +32172,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#list-organization-variables parameters: - *90 - - &372 + - &374 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-server@3.19/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -32908,7 +32908,7 @@ paths: be returned. in: query required: false - schema: &426 + schema: &428 type: string description: Severity of a code scanning alert. enum: @@ -34352,7 +34352,7 @@ paths: description: Response content: application/json: - schema: &464 + schema: &466 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34371,7 +34371,7 @@ paths: - key_id - key examples: - default: &465 + default: &467 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34701,7 +34701,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *90 - - &473 + - &475 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -34709,7 +34709,7 @@ paths: required: false schema: type: string - - &474 + - &476 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -34717,7 +34717,7 @@ paths: required: false schema: type: string - - &475 + - &477 name: time_period description: |- The time period to filter by. @@ -34733,7 +34733,7 @@ paths: - week - month default: month - - &476 + - &478 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -34758,7 +34758,7 @@ paths: application/json: schema: type: array - items: &477 + items: &479 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -34868,7 +34868,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: &479 + items: &251 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -34921,7 +34921,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &478 + default: &480 value: - id: 21 number: 42 @@ -34987,24 +34987,25 @@ paths: '403': *41 '422': *33 '500': *105 - "/orgs/{org}/dismissal-requests/secret-scanning": + "/orgs/{org}/dismissal-requests/dependabot": get: - summary: List alert dismissal requests for secret scanning for an org + summary: List dismissal requests for Dependabot alerts for an organization description: |- - Lists requests to dismiss secret scanning alerts in an org. + Lists dismissal requests for Dependabot alerts in an organization. Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, - or have the "Review and manage secret scanning alert dismissal requests" permission to access this endpoint. + or have the appropriate permission to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. tags: - - secret-scanning - operationId: secret-scanning/list-org-dismissal-requests + - dependabot + operationId: dependabot/list-dismissal-requests-for-org externalDocs: description: API method documentation - url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/alert-dismissal-requests#list-alert-dismissal-requests-for-secret-scanning-for-an-org + url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization x-github: githubCloudOnly: true enabledForGitHubApps: true - category: secret-scanning + category: dependabot subcategory: alert-dismissal-requests parameters: - *90 @@ -35012,7 +35013,7 @@ paths: - *107 - *108 - *109 - - &481 + - &252 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -35031,6 +35032,231 @@ paths: default: all - *4 - *5 + responses: + '200': + description: A list of alert dismissal requests. + content: + application/json: + schema: + type: array + items: &481 + title: Dependabot alert dismissal request + description: Alert dismissal request made by a user asking to dismiss + a Dependabot alert. + type: object + properties: + id: + type: integer + format: int64 + description: The unique identifier of the dismissal request. + number: + type: integer + format: int64 + description: The number uniquely identifying the dismissal request + within its repository. + repository: + type: object + description: The repository the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the repository the dismissal request + is for. + name: + type: string + description: The name of the repository the dismissal request + is for. + full_name: + type: string + description: The full name of the repository the dismissal + request is for. + organization: + type: object + description: The organization associated with the repository + the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the dismissal request. + properties: + actor_id: + type: integer + format: int64 + description: The ID of the GitHub user who requested the + dismissal request. + actor_name: + type: string + description: The name of the GitHub user who requested the + dismissal request. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the dismissal request metadata. + items: + type: object + properties: + reason: + type: string + description: The reason for the dismissal request. + alert_number: + type: string + description: The alert number. + alert_title: + type: string + description: The title of the alert. + resource_identifier: + type: string + description: The unique identifier for the request type of the + dismissal request. + examples: + - '123' + status: + type: string + description: The status of the dismissal request. + enum: + - pending + - denied + - approved + - expired + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating + the dismissal request. + expires_at: + type: string + format: date-time + description: The date and time the dismissal request will expire. + created_at: + type: string + format: date-time + description: The date and time the dismissal request was created. + responses: + type: + - array + - 'null' + description: The responses to the dismissal request. + items: *251 + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: + type: string + description: The URL to view the dismissal request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/security/dependabot/1 + examples: + default: &482 + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: no_bandwidth + alert_number: '1' + alert_title: lodash - GHSA-1234-abcd-5678 + resource_identifier: '1' + status: denied + requester_comment: No bandwidth to fix this right now + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: https://github.com/octo-org/smile/security/dependabot/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: tolerable_risk + alert_number: '2' + alert_title: axios - GHSA-5678-efgh-9012 + resource_identifier: '2' + status: approved + requester_comment: Risk is acceptable for this internal tool + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 43 + reviewer: + actor_id: 4 + actor_name: octocat + status: approved + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 + html_url: https://github.com/octo-org/smile/security/dependabot/2 + '404': *24 + '403': *41 + '500': *105 + "/orgs/{org}/dismissal-requests/secret-scanning": + get: + summary: List alert dismissal requests for secret scanning for an org + description: |- + Lists requests to dismiss secret scanning alerts in an org. + + Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, + or have the "Review and manage secret scanning alert dismissal requests" permission to access this endpoint. + tags: + - secret-scanning + operationId: secret-scanning/list-org-dismissal-requests + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/alert-dismissal-requests#list-alert-dismissal-requests-for-secret-scanning-for-an-org + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: secret-scanning + subcategory: alert-dismissal-requests + parameters: + - *90 + - *222 + - *107 + - *108 + - *109 + - *252 + - *4 + - *5 responses: '200': description: A list of the alert dismissal requests. @@ -35038,7 +35264,7 @@ paths: application/json: schema: type: array - items: &482 + items: &483 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -35165,7 +35391,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &483 + default: &484 value: - id: 21 number: 42 @@ -35253,7 +35479,7 @@ paths: application/json: schema: type: array - items: &268 + items: &270 title: Package description: A software package type: object @@ -35324,7 +35550,7 @@ paths: - created_at - updated_at examples: - default: &269 + default: &271 value: - id: 197 name: hello_docker @@ -35521,7 +35747,7 @@ paths: description: Response content: application/json: - schema: &351 + schema: &353 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -35611,7 +35837,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &352 + default: &354 value: group_id: '123' group_name: Octocat admins @@ -35666,7 +35892,7 @@ paths: description: Response content: application/json: - schema: &349 + schema: &351 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -35706,7 +35932,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &350 + default: &352 value: groups: - group_id: '123' @@ -35753,7 +35979,7 @@ paths: application/json: schema: type: array - items: &251 + items: &253 title: Org Hook description: Org Hook type: object @@ -35938,9 +36164,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: &252 + default: &254 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -35994,9 +36220,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: *252 + default: *254 '404': *24 x-github: githubCloudOnly: false @@ -36070,7 +36296,7 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: default: value: @@ -36224,7 +36450,7 @@ paths: - *90 - *3 - *4 - - *253 + - *255 responses: '200': description: Response @@ -36232,9 +36458,9 @@ paths: application/json: schema: type: array - items: *254 + items: *256 examples: - default: *255 + default: *257 '400': *32 '422': *33 x-github: @@ -36267,9 +36493,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *258 examples: - default: *257 + default: *259 '400': *32 '422': *33 x-github: @@ -36357,7 +36583,7 @@ paths: application/json: schema: *37 examples: - default: &510 + default: &511 value: id: 1 account: @@ -36554,7 +36780,7 @@ paths: - closed - all default: open - - *258 + - *260 - name: type description: Can be the name of an issue type. in: query @@ -36585,7 +36811,7 @@ paths: type: array items: *145 examples: - default: *259 + default: *261 headers: Link: *6 '404': *24 @@ -36645,7 +36871,7 @@ paths: type: array items: *17 examples: - default: &267 + default: &269 value: - login: octocat id: 1 @@ -36750,7 +36976,7 @@ paths: description: Response content: application/json: - schema: &260 + schema: &262 title: Org Membership description: Org Membership type: object @@ -36819,7 +37045,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &261 + response-if-user-has-an-active-admin-membership-with-organization: &263 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -36915,9 +37141,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *262 examples: - response-if-user-already-had-membership-with-organization: *261 + response-if-user-already-had-membership-with-organization: *263 '422': *33 '403': *41 x-github: @@ -36989,7 +37215,7 @@ paths: application/json: schema: type: array - items: &262 + items: &264 title: Migration description: A migration. type: object @@ -37330,7 +37556,7 @@ paths: description: Response content: application/json: - schema: *262 + schema: *264 examples: default: value: @@ -37509,7 +37735,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/migrations/orgs#get-an-organization-migration-status parameters: - *90 - - &263 + - &265 name: migration_id description: The unique identifier of the migration. in: path @@ -37537,7 +37763,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *262 + schema: *264 examples: default: value: @@ -37707,7 +37933,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *90 - - *263 + - *265 responses: '302': description: Response @@ -37729,7 +37955,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *90 - - *263 + - *265 responses: '204': description: Response @@ -37753,7 +37979,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/migrations/orgs#unlock-an-organization-repository parameters: - *90 - - *263 + - *265 - name: repo_name description: repo_name parameter in: path @@ -37781,7 +38007,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *90 - - *263 + - *265 - *4 - *5 responses: @@ -37793,7 +38019,7 @@ paths: type: array items: *195 examples: - default: &274 + default: &276 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -38002,7 +38228,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &264 + items: &266 title: Organization Role description: Organization roles type: object @@ -38211,7 +38437,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -38263,7 +38489,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *90 - - &265 + - &267 name: team_slug description: The slug of the team name. in: path @@ -38295,7 +38521,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *90 - - *265 + - *267 - *238 responses: '204': @@ -38326,7 +38552,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *90 - - *265 + - *267 - *238 responses: '204': @@ -38447,7 +38673,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -38544,7 +38770,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: default: value: @@ -38703,7 +38929,7 @@ paths: parent: anyOf: - type: 'null' - - *266 + - *268 type: description: The ownership type of the team type: string @@ -38736,7 +38962,7 @@ paths: - type - parent examples: - default: &332 + default: &334 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -38809,7 +39035,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *266 + items: *268 name: type: - string @@ -38926,7 +39152,7 @@ paths: - type - url examples: - default: *267 + default: *269 headers: Link: *6 '404': @@ -38977,7 +39203,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -39119,7 +39345,7 @@ paths: - nuget - container - *90 - - &660 + - &661 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -39155,12 +39381,12 @@ paths: application/json: schema: type: array - items: *268 + items: *270 examples: - default: *269 + default: *271 '403': *41 '401': *39 - '400': &662 + '400': &663 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -39182,7 +39408,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-for-an-organization parameters: - - &270 + - &272 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 @@ -39200,7 +39426,7 @@ paths: - docker - nuget - container - - &271 + - &273 name: package_name description: The name of the package. in: path @@ -39213,7 +39439,7 @@ paths: description: Response content: application/json: - schema: *268 + schema: *270 examples: default: value: @@ -39265,8 +39491,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *270 - - *271 + - *272 + - *273 - *90 responses: '204': @@ -39299,8 +39525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *270 - - *271 + - *272 + - *273 - *90 - name: token description: package token @@ -39333,8 +39559,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *270 - - *271 + - *272 + - *273 - *90 - *5 - *4 @@ -39355,7 +39581,7 @@ paths: application/json: schema: type: array - items: &272 + items: &274 title: Package Version description: A version of a software package type: object @@ -39490,10 +39716,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *270 - - *271 + - *272 + - *273 - *90 - - &273 + - &275 name: package_version_id description: Unique identifier of the package version. in: path @@ -39505,7 +39731,7 @@ paths: description: Response content: application/json: - schema: *272 + schema: *274 examples: default: value: @@ -39541,10 +39767,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *270 - - *271 - - *90 + - *272 - *273 + - *90 + - *275 responses: '204': description: Response @@ -39576,10 +39802,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *270 - - *271 - - *90 + - *272 - *273 + - *90 + - *275 responses: '204': description: Response @@ -39609,7 +39835,7 @@ paths: - *90 - *4 - *5 - - &275 + - &277 name: sort description: The property by which to sort the results. in: query @@ -39620,7 +39846,7 @@ paths: - created_at default: created_at - *9 - - &276 + - &278 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -39632,7 +39858,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &277 + - &279 name: repository description: The name of the repository to use to filter the results. in: query @@ -39641,7 +39867,7 @@ paths: type: string examples: - Hello-World - - &278 + - &280 name: permission description: The permission to use to filter the results. in: query @@ -39650,7 +39876,7 @@ paths: type: string examples: - issues_read - - &279 + - &281 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) @@ -39660,7 +39886,7 @@ paths: schema: type: string format: date-time - - &280 + - &282 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) @@ -39670,7 +39896,7 @@ paths: schema: type: string format: date-time - - &281 + - &283 name: token_id description: The ID of the token in: query @@ -39989,7 +40215,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -40015,14 +40241,14 @@ paths: - *90 - *4 - *5 - - *275 - - *9 - - *276 - *277 + - *9 - *278 - *279 - *280 - *281 + - *282 + - *283 responses: '500': *105 '422': *33 @@ -40306,7 +40532,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -40350,7 +40576,7 @@ paths: application/json: schema: type: array - items: &282 + items: &284 type: object properties: id: @@ -40394,9 +40620,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *284 examples: - default: &283 + default: &285 value: id: 42 name: Check Commits @@ -40426,7 +40652,7 @@ paths: description: Response content: application/json: - schema: *282 + schema: *284 examples: default: value: @@ -40475,9 +40701,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *284 examples: - default: *283 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40517,7 +40743,7 @@ paths: type: integer configurations: type: array - items: &284 + items: &286 title: Organization private registry description: Private registry configuration for an organization type: object @@ -40813,7 +41039,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &285 + org-private-registry-with-selected-visibility: &287 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -40911,9 +41137,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *284 + schema: *286 examples: - default: *285 + default: *287 '404': *24 x-github: githubCloudOnly: false @@ -41204,7 +41430,7 @@ paths: required: true content: application/json: - schema: *286 + schema: *288 examples: default: value: @@ -41311,7 +41537,7 @@ paths: - octocat/Hello-World properties: type: array - items: &287 + items: &289 title: Custom Property Value description: Custom property name and associated value type: object @@ -41401,7 +41627,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *287 + items: *289 required: - repository_names - properties @@ -41454,7 +41680,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -41595,7 +41821,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -41805,7 +42031,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &360 title: Full Repository description: Full Repository type: object @@ -42300,7 +42526,7 @@ paths: - key - name - html_url - security_and_analysis: *288 + security_and_analysis: *290 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42384,7 +42610,7 @@ paths: - network_count - subscribers_count examples: - default: &360 + default: &362 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42956,7 +43182,7 @@ paths: - *90 - *4 - *5 - - &576 + - &577 name: targets description: | A comma-separated list of rule targets to filter by. @@ -42975,7 +43201,7 @@ paths: application/json: schema: type: array - items: &315 + items: &317 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -43008,7 +43234,7 @@ paths: source: type: string description: The name of the source - enforcement: &291 + enforcement: &293 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -43021,7 +43247,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &292 + items: &294 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -43090,7 +43316,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &289 + - &291 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -43114,7 +43340,7 @@ paths: match. items: type: string - - &293 + - &295 title: Organization ruleset conditions type: object description: |- @@ -43127,7 +43353,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *289 + - *291 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -43161,7 +43387,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *289 + - *291 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -43183,7 +43409,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *289 + - *291 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -43196,7 +43422,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &290 + items: &292 title: Repository ruleset property targeting definition type: object @@ -43229,7 +43455,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *290 + items: *292 required: - repository_property type: @@ -43237,12 +43463,12 @@ paths: - object rules: type: array - items: &577 + items: &578 title: Repository Rule type: object description: A repository rule. oneOf: - - &294 + - &296 title: creation description: Only allow users with bypass permission to create matching refs. @@ -43254,7 +43480,7 @@ paths: type: string enum: - creation - - &295 + - &297 title: update description: Only allow users with bypass permission to update matching refs. @@ -43275,7 +43501,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &296 + - &298 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -43287,7 +43513,7 @@ paths: type: string enum: - deletion - - &297 + - &299 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -43299,7 +43525,7 @@ paths: type: string enum: - required_linear_history - - &575 + - &576 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -43377,7 +43603,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &298 + - &300 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -43401,7 +43627,7 @@ paths: type: string required: - required_deployment_environments - - &299 + - &301 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -43413,7 +43639,7 @@ paths: type: string enum: - required_signatures - - &300 + - &302 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -43519,7 +43745,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &301 + - &303 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -43567,7 +43793,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &302 + - &304 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -43579,7 +43805,7 @@ paths: type: string enum: - non_fast_forward - - &303 + - &305 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -43615,7 +43841,7 @@ paths: required: - operator - pattern - - &304 + - &306 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -43651,7 +43877,7 @@ paths: required: - operator - pattern - - &305 + - &307 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -43687,7 +43913,7 @@ paths: required: - operator - pattern - - &306 + - &308 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -43723,7 +43949,7 @@ paths: required: - operator - pattern - - &307 + - &309 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -43759,7 +43985,7 @@ paths: required: - operator - pattern - - &308 + - &310 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -43784,7 +44010,7 @@ paths: type: string required: - restricted_file_paths - - &309 + - &311 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -43808,7 +44034,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &310 + - &312 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -43831,7 +44057,7 @@ paths: type: string required: - restricted_file_extensions - - &311 + - &313 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -43856,7 +44082,7 @@ paths: maximum: 100 required: - max_file_size - - &312 + - &314 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -43906,7 +44132,7 @@ paths: - repository_id required: - workflows - - &313 + - &315 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -43967,7 +44193,7 @@ paths: - tool required: - code_scanning_tools - - &314 + - &316 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -44065,22 +44291,20 @@ paths: - tag - push default: branch - enforcement: *291 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *292 - conditions: *293 + items: *294 + conditions: *295 rules: type: array description: An array of rules within the ruleset. - items: &317 + items: &319 title: Repository Rule type: object description: A repository rule. oneOf: - - *294 - - *295 - *296 - *297 - *298 @@ -44100,6 +44324,8 @@ paths: - *312 - *313 - *314 + - *315 + - *316 source_type: type: string description: The type of the source of the ruleset @@ -44143,9 +44369,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: &316 + default: &318 value: id: 21 name: super cool ruleset @@ -44200,7 +44426,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *90 - - &578 + - &579 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 @@ -44212,14 +44438,14 @@ paths: x-multi-segment: true - *222 - *109 - - &579 + - &580 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 - - &580 + - &581 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -44239,7 +44465,7 @@ paths: description: Response content: application/json: - schema: &581 + schema: &582 title: Rule Suites description: Response type: array @@ -44295,7 +44521,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &582 + default: &583 value: - id: 21 actor_id: 12 @@ -44339,7 +44565,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *90 - - &583 + - &584 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44355,7 +44581,7 @@ paths: description: Response content: application/json: - schema: &584 + schema: &585 title: Rule Suite description: Response type: object @@ -44462,7 +44688,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &585 + default: &586 value: id: 21 actor_id: 12 @@ -44535,9 +44761,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *316 + default: *318 '404': *24 '500': *105 put: @@ -44580,16 +44806,16 @@ paths: - branch - tag - push - enforcement: *291 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *292 - conditions: *293 + items: *294 + conditions: *295 rules: description: An array of rules within the ruleset. type: array - items: *317 + items: *319 examples: default: value: @@ -44624,9 +44850,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *316 + default: *318 '404': *24 '500': *105 delete: @@ -44685,7 +44911,7 @@ paths: type: array items: *139 examples: - default: *318 + default: *320 '404': *24 '500': *105 x-github: @@ -44722,7 +44948,7 @@ paths: description: Response content: application/json: - schema: *319 + schema: *321 examples: default: value: @@ -44785,14 +45011,14 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *90 - - *320 - - *321 - *322 - *323 + - *324 + - *325 - *9 - *5 - *4 - - &587 + - &588 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.19/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -44802,7 +45028,7 @@ paths: required: false schema: type: string - - &588 + - &589 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.19/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -44812,10 +45038,10 @@ paths: required: false schema: type: string - - *324 - - *325 - *326 - *327 + - *328 + - *329 responses: '200': description: Response @@ -44823,9 +45049,9 @@ paths: application/json: schema: type: array - items: *328 + items: *330 examples: - default: *329 + default: *331 headers: Link: *6 '404': *24 @@ -44860,9 +45086,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *332 examples: - default: *331 + default: *333 '403': *41 '404': *24 patch: @@ -44976,9 +45202,9 @@ paths: application/json: schema: type: array - items: *266 + items: *268 examples: - default: *332 + default: *334 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45000,7 +45226,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/security-managers#add-a-security-manager-team parameters: - *90 - - *265 + - *267 responses: '204': description: Response @@ -45024,7 +45250,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *90 - - *265 + - *267 responses: '204': description: Response @@ -45054,7 +45280,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *90 - - *333 + - *335 - *4 - *5 responses: @@ -45062,9 +45288,9 @@ paths: description: Success content: application/json: - schema: *334 + schema: *336 examples: - default: *335 + default: *337 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45092,7 +45318,7 @@ paths: application/json: schema: type: array - items: &356 + items: &358 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -45169,7 +45395,7 @@ paths: parent: anyOf: - type: 'null' - - *266 + - *268 required: - id - node_id @@ -45184,7 +45410,7 @@ paths: - parent - type examples: - default: *332 + default: *334 headers: Link: *6 '403': *41 @@ -45286,7 +45512,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &339 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -45360,7 +45586,7 @@ paths: parent: anyOf: - type: 'null' - - *266 + - *268 members_count: type: integer examples: @@ -45643,7 +45869,7 @@ paths: - created_at - updated_at - archived_at - ldap_dn: *336 + ldap_dn: *338 type: description: The ownership type of the team type: string @@ -45680,7 +45906,7 @@ paths: - repos_count - organization examples: - default: &338 + default: &340 value: id: 1 node_id: MDQ6VGVhbTE= @@ -45750,15 +45976,15 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#get-a-team-by-name parameters: - *90 - - *265 + - *267 responses: '200': description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *24 x-github: githubCloudOnly: false @@ -45780,7 +46006,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#update-a-team parameters: - *90 - - *265 + - *267 requestBody: required: false content: @@ -45843,16 +46069,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '201': description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *24 '422': *33 '403': *41 @@ -45878,7 +46104,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#delete-a-team parameters: - *90 - - *265 + - *267 responses: '204': description: Response @@ -45905,7 +46131,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#list-discussions parameters: - *90 - - *265 + - *267 - *9 - *4 - *5 @@ -45922,7 +46148,7 @@ paths: application/json: schema: type: array - items: &339 + items: &341 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -46033,7 +46259,7 @@ paths: - updated_at - url examples: - default: &643 + default: &644 value: - author: login: octocat @@ -46108,7 +46334,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#create-a-discussion parameters: - *90 - - *265 + - *267 requestBody: required: true content: @@ -46142,9 +46368,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: &340 + default: &342 value: author: login: octocat @@ -46217,8 +46443,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#get-a-discussion parameters: - *90 - - *265 - - &341 + - *267 + - &343 name: discussion_number description: The number that identifies the discussion. in: path @@ -46230,9 +46456,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *340 + default: *342 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46255,8 +46481,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#update-a-discussion parameters: - *90 - - *265 - - *341 + - *267 + - *343 requestBody: required: false content: @@ -46279,9 +46505,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: &644 + default: &645 value: author: login: octocat @@ -46352,8 +46578,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#delete-a-discussion parameters: - *90 - - *265 - - *341 + - *267 + - *343 responses: '204': description: Response @@ -46380,8 +46606,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#list-discussion-comments parameters: - *90 - - *265 - - *341 + - *267 + - *343 - *9 - *4 - *5 @@ -46392,7 +46618,7 @@ paths: application/json: schema: type: array - items: &342 + items: &344 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -46472,7 +46698,7 @@ paths: - updated_at - url examples: - default: &645 + default: &646 value: - author: login: octocat @@ -46541,8 +46767,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *90 - - *265 - - *341 + - *267 + - *343 requestBody: required: true content: @@ -46564,9 +46790,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: &343 + default: &345 value: author: login: octocat @@ -46633,9 +46859,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *90 - - *265 - - *341 - - &344 + - *267 + - *343 + - &346 name: comment_number description: The number that identifies the comment. in: path @@ -46647,9 +46873,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: *343 + default: *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46672,9 +46898,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *90 - - *265 - - *341 - - *344 + - *267 + - *343 + - *346 requestBody: required: true content: @@ -46696,9 +46922,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: &646 + default: &647 value: author: login: octocat @@ -46763,9 +46989,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *90 - - *265 - - *341 - - *344 + - *267 + - *343 + - *346 responses: '204': description: Response @@ -46792,9 +47018,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *90 - - *265 - - *341 - - *344 + - *267 + - *343 + - *346 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -46820,7 +47046,7 @@ paths: application/json: schema: type: array - items: &345 + items: &347 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -46864,7 +47090,7 @@ paths: - content - created_at examples: - default: &347 + default: &349 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46915,9 +47141,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *90 - - *265 - - *341 - - *344 + - *267 + - *343 + - *346 requestBody: required: true content: @@ -46950,9 +47176,9 @@ paths: team discussion comment content: application/json: - schema: *345 + schema: *347 examples: - default: &346 + default: &348 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46981,9 +47207,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47007,10 +47233,10 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *90 - - *265 - - *341 - - *344 - - &348 + - *267 + - *343 + - *346 + - &350 name: reaction_id description: The unique identifier of the reaction. in: path @@ -47043,8 +47269,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *90 - - *265 - - *341 + - *267 + - *343 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -47070,9 +47296,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 x-github: @@ -47099,8 +47325,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *90 - - *265 - - *341 + - *267 + - *343 requestBody: required: true content: @@ -47132,16 +47358,16 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47165,9 +47391,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *90 - - *265 - - *341 - - *348 + - *267 + - *343 + - *350 responses: '204': description: Response @@ -47191,15 +47417,15 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *90 - - *265 + - *267 responses: '200': description: Response content: application/json: - schema: *349 + schema: *351 examples: - default: *350 + default: *352 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -47219,7 +47445,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *90 - - *265 + - *267 requestBody: required: true content: @@ -47243,9 +47469,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *353 examples: - default: *352 + default: *354 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -47265,7 +47491,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *90 - - *265 + - *267 responses: '204': description: Response @@ -47289,7 +47515,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/members#list-team-members parameters: - *90 - - *265 + - *267 - name: role description: Filters members returned by their role in the team. in: query @@ -47312,7 +47538,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -47343,14 +47569,14 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/members#get-team-membership-for-a-user parameters: - *90 - - *265 + - *267 - *8 responses: '200': description: Response content: application/json: - schema: &353 + schema: &355 title: Team Membership description: Team Membership type: object @@ -47378,7 +47604,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &647 + response-if-user-is-a-team-maintainer: &648 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47415,7 +47641,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *90 - - *265 + - *267 - *8 requestBody: required: false @@ -47441,9 +47667,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *355 examples: - response-if-users-membership-with-team-is-now-pending: &648 + response-if-users-membership-with-team-is-now-pending: &649 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47479,7 +47705,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/members#remove-team-membership-for-a-user parameters: - *90 - - *265 + - *267 - *8 responses: '204': @@ -47507,7 +47733,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#list-team-repositories parameters: - *90 - - *265 + - *267 - *4 - *5 responses: @@ -47519,7 +47745,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -47549,15 +47775,15 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *90 - - *265 - - *354 - - *355 + - *267 + - *356 + - *357 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &649 + schema: &650 title: Team Repository description: A team's access to a repository. type: object @@ -48199,9 +48425,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *90 - - *265 - - *354 - - *355 + - *267 + - *356 + - *357 requestBody: required: false content: @@ -48247,9 +48473,9 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#remove-a-repository-from-a-team parameters: - *90 - - *265 - - *354 - - *355 + - *267 + - *356 + - *357 responses: '204': description: Response @@ -48274,7 +48500,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#list-child-teams parameters: - *90 - - *265 + - *267 - *4 - *5 responses: @@ -48284,9 +48510,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - response-if-child-teams-exist: &650 + response-if-child-teams-exist: &651 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48440,7 +48666,7 @@ paths: resources: type: object properties: - core: &357 + core: &359 title: Rate Limit type: object properties: @@ -48457,20 +48683,20 @@ paths: - remaining - reset - used - graphql: *357 - search: *357 - code_search: *357 - source_import: *357 - integration_manifest: *357 - code_scanning_upload: *357 - actions_runner_registration: *357 - scim: *357 - dependency_sbom: *357 - code_scanning_autofix: *357 + graphql: *359 + search: *359 + code_search: *359 + source_import: *359 + integration_manifest: *359 + code_scanning_upload: *359 + actions_runner_registration: *359 + scim: *359 + dependency_sbom: *359 + code_scanning_autofix: *359 required: - core - search - rate: *357 + rate: *359 required: - rate - resources @@ -48575,14 +48801,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#get-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *358 + schema: *360 examples: default-response: summary: Default response @@ -49083,7 +49309,7 @@ paths: status: disabled '403': *41 '404': *24 - '301': *359 + '301': *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49101,8 +49327,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#update-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -49336,10 +49562,10 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 - '307': &361 + default: *362 + '307': &363 description: Temporary Redirect content: application/json: @@ -49384,8 +49610,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#delete-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -49407,7 +49633,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#delete-a-repository - '307': *361 + '307': *363 '404': *24 '409': *121 x-github: @@ -49431,11 +49657,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 - - &379 + - &381 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -49458,7 +49684,7 @@ paths: type: integer artifacts: type: array - items: &362 + items: &364 title: Artifact description: An artifact type: object @@ -49544,7 +49770,7 @@ paths: - expires_at - updated_at examples: - default: &380 + default: &382 value: total_count: 2 artifacts: @@ -49603,9 +49829,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/artifacts#get-an-artifact parameters: - - *354 - - *355 - - &363 + - *356 + - *357 + - &365 name: artifact_id description: The unique identifier of the artifact. in: path @@ -49617,7 +49843,7 @@ paths: description: Response content: application/json: - schema: *362 + schema: *364 examples: default: value: @@ -49654,9 +49880,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/artifacts#delete-an-artifact parameters: - - *354 - - *355 - - *363 + - *356 + - *357 + - *365 responses: '204': description: Response @@ -49680,9 +49906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/artifacts#download-an-artifact parameters: - - *354 - - *355 - - *363 + - *356 + - *357 + - *365 - name: archive_format in: path required: true @@ -49696,7 +49922,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49719,14 +49945,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -49752,14 +49978,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#get-github-actions-cache-usage-policy-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: &366 + schema: &368 title: Actions cache usage policy for repository description: GitHub Actions cache usage policy for repository. type: object @@ -49772,7 +49998,7 @@ paths: required: - repo_cache_size_limit_in_gb examples: - default: &367 + default: &369 value: repo_cache_size_limit_in_gb: 14 x-github: @@ -49793,8 +50019,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#set-github-actions-cache-usage-policy-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -49802,9 +50028,9 @@ paths: required: true content: application/json: - schema: *366 + schema: *368 examples: - selected_actions: *367 + selected_actions: *369 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49824,11 +50050,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 - - &368 + - &370 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 @@ -49862,7 +50088,7 @@ paths: description: Response content: application/json: - schema: &369 + schema: &371 title: Repository actions caches description: Repository actions caches type: object @@ -49912,7 +50138,7 @@ paths: - total_count - actions_caches examples: - default: &370 + default: &372 value: total_count: 1 actions_caches: @@ -49944,23 +50170,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *354 - - *355 + - *356 + - *357 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *368 + - *370 responses: '200': description: Response content: application/json: - schema: *369 + schema: *371 examples: - default: *370 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49980,8 +50206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *354 - - *355 + - *356 + - *357 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50012,9 +50238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *354 - - *355 - - &371 + - *356 + - *357 + - &373 name: job_id description: The unique identifier of the job. in: path @@ -50026,7 +50252,7 @@ paths: description: Response content: application/json: - schema: &383 + schema: &385 title: Job description: Information of a job execution in a workflow run type: object @@ -50373,9 +50599,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *354 - - *355 - - *371 + - *356 + - *357 + - *373 responses: '302': description: Response @@ -50403,9 +50629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *354 - - *355 - - *371 + - *356 + - *357 + - *373 requestBody: required: false content: @@ -50451,8 +50677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Status response @@ -50502,8 +50728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -50566,8 +50792,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#list-repository-organization-secrets parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -50585,7 +50811,7 @@ paths: type: integer secrets: type: array - items: &385 + items: &387 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -50606,7 +50832,7 @@ paths: - created_at - updated_at examples: - default: &386 + default: &388 value: total_count: 2 secrets: @@ -50639,9 +50865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#list-repository-organization-variables parameters: - - *354 - - *355 - - *372 + - *356 + - *357 + - *374 - *5 responses: '200': @@ -50658,7 +50884,7 @@ paths: type: integer variables: type: array - items: &389 + items: &391 title: Actions Variable type: object properties: @@ -50692,7 +50918,7 @@ paths: - created_at - updated_at examples: - default: &390 + default: &392 value: total_count: 2 variables: @@ -50725,8 +50951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -50735,7 +50961,7 @@ paths: schema: type: object properties: - enabled: &373 + enabled: &375 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *68 @@ -50770,8 +50996,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -50782,7 +51008,7 @@ paths: schema: type: object properties: - enabled: *373 + enabled: *375 allowed_actions: *68 sha_pinning_required: *69 required: @@ -50815,14 +51041,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: &374 + schema: &376 type: object properties: access_level: @@ -50840,7 +51066,7 @@ paths: required: - access_level examples: - default: &375 + default: &377 value: access_level: organization x-github: @@ -50865,15 +51091,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: application/json: - schema: *374 + schema: *376 examples: - default: *375 + default: *377 responses: '204': description: Response @@ -50897,8 +51123,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -50928,8 +51154,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Empty response for successful settings update @@ -50963,8 +51189,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -50991,8 +51217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -51026,8 +51252,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -51055,8 +51281,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -51087,8 +51313,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -51119,8 +51345,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -51152,8 +51378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -51182,8 +51408,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Success response @@ -51223,8 +51449,8 @@ paths: in: query schema: type: string - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -51268,8 +51494,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -51301,8 +51527,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -51376,8 +51602,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '201': description: Response @@ -51413,8 +51639,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '201': description: Response @@ -51444,8 +51670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 responses: '200': @@ -51475,8 +51701,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 responses: '204': @@ -51503,8 +51729,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 responses: '200': *89 @@ -51529,8 +51755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 requestBody: required: true @@ -51579,8 +51805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 requestBody: required: true @@ -51630,8 +51856,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 responses: '200': *202 @@ -51661,8 +51887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *83 - *203 responses: @@ -51692,9 +51918,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *354 - - *355 - - &393 + - *356 + - *357 + - &395 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. @@ -51702,7 +51928,7 @@ paths: required: false schema: type: string - - &394 + - &396 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -51710,7 +51936,7 @@ paths: required: false schema: type: string - - &395 + - &397 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -51719,7 +51945,7 @@ paths: required: false schema: type: string - - &396 + - &398 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 @@ -51746,7 +51972,7 @@ paths: - pending - *4 - *5 - - &397 + - &399 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-server@3.19/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -51755,7 +51981,7 @@ paths: schema: type: string format: date-time - - &376 + - &378 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -51764,13 +51990,13 @@ paths: schema: type: boolean default: false - - &398 + - &400 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &399 + - &401 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -51793,7 +52019,7 @@ paths: type: integer workflow_runs: type: array - items: &377 + items: &379 title: Workflow Run description: An invocation of a workflow type: object @@ -51910,7 +52136,7 @@ paths: type: - array - 'null' - items: &417 + items: &419 title: Pull Request Minimal type: object properties: @@ -52037,7 +52263,7 @@ paths: head_commit: anyOf: - type: 'null' - - &421 + - &423 title: Simple Commit description: A commit. type: object @@ -52152,7 +52378,7 @@ paths: - workflow_url - pull_requests examples: - default: &400 + default: &402 value: total_count: 1 workflow_runs: @@ -52388,24 +52614,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *354 - - *355 - - &378 + - *356 + - *357 + - &380 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *376 + - *378 responses: '200': description: Response content: application/json: - schema: *377 + schema: *379 examples: - default: &381 + default: &383 value: id: 30433642 name: Build @@ -52646,9 +52872,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '204': description: Response @@ -52671,9 +52897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '200': description: Response @@ -52803,12 +53029,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 - *4 - *5 - - *379 + - *381 responses: '200': description: Response @@ -52824,9 +53050,9 @@ paths: type: integer artifacts: type: array - items: *362 + items: *364 examples: - default: *380 + default: *382 headers: Link: *6 x-github: @@ -52850,25 +53076,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *354 - - *355 - - *378 - - &382 + - *356 + - *357 + - *380 + - &384 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *376 + - *378 responses: '200': description: Response content: application/json: - schema: *377 + schema: *379 examples: - default: *381 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52891,10 +53117,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *354 - - *355 - - *378 - - *382 + - *356 + - *357 + - *380 + - *384 - *4 - *5 responses: @@ -52912,9 +53138,9 @@ paths: type: integer jobs: type: array - items: *383 + items: *385 examples: - default: &384 + default: &386 value: total_count: 1 jobs: @@ -53027,10 +53253,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *354 - - *355 - - *378 - - *382 + - *356 + - *357 + - *380 + - *384 responses: '302': description: Response @@ -53058,9 +53284,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '202': description: Response @@ -53093,9 +53319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 requestBody: required: true content: @@ -53162,9 +53388,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '202': description: Response @@ -53197,9 +53423,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 - 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 @@ -53229,9 +53455,9 @@ paths: type: integer jobs: type: array - items: *383 + items: *385 examples: - default: *384 + default: *386 headers: Link: *6 x-github: @@ -53256,9 +53482,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '302': description: Response @@ -53285,9 +53511,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '204': description: Response @@ -53314,9 +53540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 responses: '200': description: Response @@ -53385,7 +53611,7 @@ paths: items: type: object properties: - type: &484 + type: &485 type: string description: The type of reviewer. enum: @@ -53396,7 +53622,7 @@ paths: reviewer: anyOf: - *17 - - *356 + - *358 required: - environment - wait_timer @@ -53471,9 +53697,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 requestBody: required: true content: @@ -53523,7 +53749,7 @@ paths: application/json: schema: type: array - items: &468 + items: &470 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -53635,7 +53861,7 @@ paths: - created_at - updated_at examples: - default: &469 + default: &471 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -53691,9 +53917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 requestBody: required: false content: @@ -53738,9 +53964,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *354 - - *355 - - *378 + - *356 + - *357 + - *380 requestBody: required: false content: @@ -53788,8 +54014,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#list-repository-secrets parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -53807,9 +54033,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *387 examples: - default: *386 + default: *388 headers: Link: *6 x-github: @@ -53834,16 +54060,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#get-a-repository-public-key parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: *388 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53865,17 +54091,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#get-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 responses: '200': description: Response content: application/json: - schema: *385 + schema: *387 examples: - default: &497 + default: &498 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -53901,8 +54127,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 requestBody: required: true @@ -53960,8 +54186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#delete-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 responses: '204': @@ -53987,9 +54213,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#list-repository-variables parameters: - - *354 - - *355 - - *372 + - *356 + - *357 + - *374 - *5 responses: '200': @@ -54006,9 +54232,9 @@ paths: type: integer variables: type: array - items: *389 + items: *391 examples: - default: *390 + default: *392 headers: Link: *6 x-github: @@ -54031,8 +54257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#create-a-repository-variable parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -54084,17 +54310,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#get-a-repository-variable parameters: - - *354 - - *355 + - *356 + - *357 - *208 responses: '200': description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: &498 + default: &499 value: name: USERNAME value: octocat @@ -54120,8 +54346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#update-a-repository-variable parameters: - - *354 - - *355 + - *356 + - *357 - *208 requestBody: required: true @@ -54164,8 +54390,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#delete-a-repository-variable parameters: - - *354 - - *355 + - *356 + - *357 - *208 responses: '204': @@ -54191,8 +54417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflows#list-repository-workflows parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -54210,7 +54436,7 @@ paths: type: integer workflows: type: array - items: &391 + items: &393 title: Workflow description: A GitHub Actions workflow type: object @@ -54328,9 +54554,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflows#get-a-workflow parameters: - - *354 - - *355 - - &392 + - *356 + - *357 + - &394 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -54345,7 +54571,7 @@ paths: description: Response content: application/json: - schema: *391 + schema: *393 examples: default: value: @@ -54378,9 +54604,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflows#disable-a-workflow parameters: - - *354 - - *355 - - *392 + - *356 + - *357 + - *394 responses: '204': description: Response @@ -54405,9 +54631,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *354 - - *355 - - *392 + - *356 + - *357 + - *394 responses: '204': description: Response @@ -54458,9 +54684,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflows#enable-a-workflow parameters: - - *354 - - *355 - - *392 + - *356 + - *357 + - *394 responses: '204': description: Response @@ -54487,19 +54713,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *354 - - *355 - - *392 - - *393 + - *356 + - *357 - *394 - *395 - *396 - - *4 - - *5 - *397 - - *376 - *398 + - *4 + - *5 - *399 + - *378 + - *400 + - *401 responses: '200': description: Response @@ -54515,9 +54741,9 @@ paths: type: integer workflow_runs: type: array - items: *377 + items: *379 examples: - default: *400 + default: *402 headers: Link: *6 x-github: @@ -54540,8 +54766,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-activities parameters: - - *354 - - *355 + - *356 + - *357 - *9 - *4 - *112 @@ -54709,8 +54935,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/assignees#list-assignees parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -54722,7 +54948,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 '404': *24 @@ -54747,8 +54973,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *354 - - *355 + - *356 + - *357 - name: assignee in: path required: true @@ -54782,8 +55008,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -54791,7 +55017,7 @@ paths: application/json: schema: type: array - items: &401 + items: &403 title: Autolink reference description: An autolink reference. type: object @@ -54850,8 +55076,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -54890,9 +55116,9 @@ paths: description: response content: application/json: - schema: *401 + schema: *403 examples: - default: &402 + default: &404 value: id: 1 key_prefix: TICKET- @@ -54923,9 +55149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *354 - - *355 - - &403 + - *356 + - *357 + - &405 name: autolink_id description: The unique identifier of the autolink. in: path @@ -54937,9 +55163,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *403 examples: - default: *402 + default: *404 '404': *24 x-github: githubCloudOnly: false @@ -54959,9 +55185,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *354 - - *355 - - *403 + - *356 + - *357 + - *405 responses: '204': description: Response @@ -54985,8 +55211,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response if Dependabot is enabled @@ -55035,8 +55261,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branches#list-branches parameters: - - *354 - - *355 + - *356 + - *357 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -55074,7 +55300,7 @@ paths: - url protected: type: boolean - protection: &405 + protection: &407 title: Branch Protection description: Branch Protection type: object @@ -55117,7 +55343,7 @@ paths: required: - contexts - checks - enforce_admins: &408 + enforce_admins: &410 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -55134,7 +55360,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &410 + required_pull_request_reviews: &412 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -55156,7 +55382,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *356 + items: *358 apps: description: The list of apps with review dismissal access. @@ -55188,7 +55414,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *356 + items: *358 apps: description: The list of apps allowed to bypass pull request requirements. @@ -55218,7 +55444,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &407 + restrictions: &409 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -55281,7 +55507,7 @@ paths: type: string teams: type: array - items: *356 + items: *358 apps: type: array items: @@ -55511,9 +55737,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branches#get-a-branch parameters: - - *354 - - *355 - - &406 + - *356 + - *357 + - &408 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-server@3.19/graphql). @@ -55527,14 +55753,14 @@ paths: description: Response content: application/json: - schema: &416 + schema: &418 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &446 + commit: &448 title: Commit description: Commit type: object @@ -55573,7 +55799,7 @@ paths: author: anyOf: - type: 'null' - - &404 + - &406 title: Git User description: Metaproperties for Git author/committer information. @@ -55595,7 +55821,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *406 message: type: string examples: @@ -55619,7 +55845,7 @@ paths: required: - sha - url - verification: &504 + verification: &505 title: Verification type: object properties: @@ -55699,7 +55925,7 @@ paths: type: integer files: type: array - items: &455 + items: &457 title: Diff Entry description: Diff Entry type: object @@ -55795,7 +56021,7 @@ paths: - self protected: type: boolean - protection: *405 + protection: *407 protection_url: type: string format: uri @@ -55904,7 +56130,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *359 + '301': *361 '404': *24 x-github: githubCloudOnly: false @@ -55926,15 +56152,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *405 + schema: *407 examples: default: value: @@ -56128,9 +56354,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#update-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -56390,7 +56616,7 @@ paths: url: type: string format: uri - required_status_checks: &413 + required_status_checks: &415 title: Status Check Policy description: Status Check Policy type: object @@ -56471,7 +56697,7 @@ paths: items: *17 teams: type: array - items: *356 + items: *358 apps: type: array items: *23 @@ -56489,7 +56715,7 @@ paths: items: *17 teams: type: array - items: *356 + items: *358 apps: type: array items: *23 @@ -56549,7 +56775,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *407 + restrictions: *409 required_conversation_resolution: type: object properties: @@ -56661,9 +56887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#delete-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -56688,17 +56914,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: - default: &409 + default: &411 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -56720,17 +56946,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: - default: *409 + default: *411 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56749,9 +56975,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -56776,17 +57002,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *410 + schema: *412 examples: - default: &411 + default: &413 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -56882,9 +57108,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -56982,9 +57208,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *412 examples: - default: *411 + default: *413 '422': *33 x-github: githubCloudOnly: false @@ -57005,9 +57231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -57034,17 +57260,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: - default: &412 + default: &414 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -57067,17 +57293,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *408 + schema: *410 examples: - default: *412 + default: *414 '404': *24 x-github: githubCloudOnly: false @@ -57097,9 +57323,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -57124,17 +57350,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-status-checks-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: &414 + default: &416 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -57160,9 +57386,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#update-status-check-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -57214,9 +57440,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *415 examples: - default: *414 + default: *416 '404': *24 '422': *33 x-github: @@ -57238,9 +57464,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#remove-status-check-protection parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -57264,9 +57490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response @@ -57300,9 +57526,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#add-status-check-contexts parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -57369,9 +57595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#set-status-check-contexts parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -57435,9 +57661,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: content: application/json: @@ -57503,15 +57729,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response content: application/json: - schema: *407 + schema: *409 examples: default: value: @@ -57602,9 +57828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#delete-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '204': description: Response @@ -57627,9 +57853,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response @@ -57639,7 +57865,7 @@ paths: type: array items: *23 examples: - default: &415 + default: &417 value: - id: 1 slug: octoapp @@ -57696,9 +57922,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -57732,7 +57958,7 @@ paths: type: array items: *23 examples: - default: *415 + default: *417 '422': *33 x-github: githubCloudOnly: false @@ -57753,9 +57979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -57789,7 +58015,7 @@ paths: type: array items: *23 examples: - default: *415 + default: *417 '422': *33 x-github: githubCloudOnly: false @@ -57810,9 +58036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -57846,7 +58072,7 @@ paths: type: array items: *23 examples: - default: *415 + default: *417 '422': *33 x-github: githubCloudOnly: false @@ -57868,9 +58094,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response @@ -57878,9 +58104,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - default: *332 + default: *334 '404': *24 x-github: githubCloudOnly: false @@ -57900,9 +58126,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -57938,9 +58164,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - default: *332 + default: *334 '422': *33 x-github: githubCloudOnly: false @@ -57961,9 +58187,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: false content: @@ -57999,9 +58225,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - default: *332 + default: *334 '422': *33 x-github: githubCloudOnly: false @@ -58022,9 +58248,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: content: application/json: @@ -58059,9 +58285,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - default: *332 + default: *334 '422': *33 x-github: githubCloudOnly: false @@ -58083,9 +58309,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 responses: '200': description: Response @@ -58095,7 +58321,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 '404': *24 x-github: githubCloudOnly: false @@ -58119,9 +58345,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -58154,7 +58380,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 '422': *33 x-github: githubCloudOnly: false @@ -58179,9 +58405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -58214,7 +58440,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 '422': *33 x-github: githubCloudOnly: false @@ -58239,9 +58465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -58274,7 +58500,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 '422': *33 x-github: githubCloudOnly: false @@ -58301,9 +58527,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branches#rename-a-branch parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 requestBody: required: true content: @@ -58325,7 +58551,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *418 examples: default: value: @@ -58439,8 +58665,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *354 - - *355 + - *356 + - *357 - *107 - *108 - *109 @@ -58476,8 +58702,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: bypass_request_number in: path required: true @@ -58550,8 +58776,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *354 - - *355 + - *356 + - *357 - *107 - *108 - *109 @@ -58591,8 +58817,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *354 - - *355 + - *356 + - *357 - name: bypass_request_number in: path required: true @@ -58662,8 +58888,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *354 - - *355 + - *356 + - *357 - name: bypass_request_number in: path required: true @@ -58734,8 +58960,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *354 - - *355 + - *356 + - *357 - name: bypass_response_id in: path required: true @@ -58768,8 +58994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#create-a-check-run parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -59048,7 +59274,7 @@ paths: description: Response content: application/json: - schema: &418 + schema: &420 title: CheckRun description: A check performed on the code of a given code change type: object @@ -59183,8 +59409,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *417 - deployment: &685 + items: *419 + deployment: &686 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -59471,9 +59697,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#get-a-check-run parameters: - - *354 - - *355 - - &419 + - *356 + - *357 + - &421 name: check_run_id description: The unique identifier of the check run. in: path @@ -59485,9 +59711,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *420 examples: - default: &420 + default: &422 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -59587,9 +59813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#update-a-check-run parameters: - - *354 - - *355 - - *419 + - *356 + - *357 + - *421 requestBody: required: true content: @@ -59829,9 +60055,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *420 examples: - default: *420 + default: *422 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59851,9 +60077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#list-check-run-annotations parameters: - - *354 - - *355 - - *419 + - *356 + - *357 + - *421 - *4 - *5 responses: @@ -59963,9 +60189,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#rerequest-a-check-run parameters: - - *354 - - *355 - - *419 + - *356 + - *357 + - *421 responses: '201': description: Response @@ -60009,8 +60235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/suites#create-a-check-suite parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -60032,7 +60258,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &422 + schema: &424 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -60114,7 +60340,7 @@ paths: type: - array - 'null' - items: *417 + items: *419 app: anyOf: - type: 'null' @@ -60130,7 +60356,7 @@ paths: - string - 'null' format: date-time - head_commit: *421 + head_commit: *423 latest_check_runs_count: type: integer check_runs_url: @@ -60158,7 +60384,7 @@ paths: - check_runs_url - pull_requests examples: - default: &423 + default: &425 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -60449,9 +60675,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *422 + schema: *424 examples: - default: *423 + default: *425 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60470,8 +60696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -60780,9 +61006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/suites#get-a-check-suite parameters: - - *354 - - *355 - - &424 + - *356 + - *357 + - &426 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -60794,9 +61020,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *424 examples: - default: *423 + default: *425 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60819,17 +61045,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *354 - - *355 - - *424 - - &452 + - *356 + - *357 + - *426 + - &454 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &453 + - &455 name: status description: Returns check runs with the specified `status`. in: query @@ -60868,9 +61094,9 @@ paths: type: integer check_runs: type: array - items: *418 + items: *420 examples: - default: &454 + default: &456 value: total_count: 1 check_runs: @@ -60972,9 +61198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/suites#rerequest-a-check-suite parameters: - - *354 - - *355 - - *424 + - *356 + - *357 + - *426 responses: '201': description: Response @@ -61007,21 +61233,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *225 - *226 - *5 - *4 - - &436 + - &438 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: *425 - - &437 + schema: *427 + - &439 name: pr description: The number of the pull request for the results you want to list. in: query @@ -61052,7 +61278,7 @@ paths: be returned. in: query required: false - schema: *426 + schema: *428 responses: '200': description: Response @@ -61068,7 +61294,7 @@ paths: updated_at: *131 url: *128 html_url: *129 - instances_url: *427 + instances_url: *429 state: *116 fixed_at: *133 dismissed_by: @@ -61076,11 +61302,11 @@ paths: - type: 'null' - *17 dismissed_at: *132 - dismissed_reason: *428 - dismissed_comment: *429 - rule: *430 - tool: *431 - most_recent_instance: *432 + dismissed_reason: *430 + dismissed_comment: *431 + rule: *432 + tool: *433 + most_recent_instance: *434 dismissal_approved_by: anyOf: - type: 'null' @@ -61203,7 +61429,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *40 - '403': &433 + '403': &435 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -61230,9 +61456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *354 - - *355 - - &434 + - *356 + - *357 + - &436 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -61246,7 +61472,7 @@ paths: description: Response content: application/json: - schema: &435 + schema: &437 type: object properties: number: *123 @@ -61254,7 +61480,7 @@ paths: updated_at: *131 url: *128 html_url: *129 - instances_url: *427 + instances_url: *429 state: *116 fixed_at: *133 dismissed_by: @@ -61262,8 +61488,8 @@ paths: - type: 'null' - *17 dismissed_at: *132 - dismissed_reason: *428 - dismissed_comment: *429 + dismissed_reason: *430 + dismissed_comment: *431 rule: type: object properties: @@ -61325,8 +61551,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *431 - most_recent_instance: *432 + tool: *433 + most_recent_instance: *434 dismissal_approved_by: anyOf: - type: 'null' @@ -61422,7 +61648,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *40 - '403': *433 + '403': *435 '404': *24 '503': *140 x-github: @@ -61442,9 +61668,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *354 - - *355 - - *434 + - *356 + - *357 + - *436 requestBody: required: true content: @@ -61459,8 +61685,8 @@ paths: enum: - open - dismissed - dismissed_reason: *428 - dismissed_comment: *429 + dismissed_reason: *430 + dismissed_comment: *431 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -61482,7 +61708,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: default: value: @@ -61558,7 +61784,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *32 - '403': &442 + '403': &444 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -61585,13 +61811,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *354 - - *355 - - *434 + - *356 + - *357 + - *436 - *5 - *4 - - *436 - - *437 + - *438 + - *439 responses: '200': description: Response @@ -61599,7 +61825,7 @@ paths: application/json: schema: type: array - items: *432 + items: *434 examples: default: value: @@ -61638,7 +61864,7 @@ paths: end_column: 50 classifications: - source - '403': *433 + '403': *435 '404': *24 '503': *140 x-github: @@ -61672,25 +61898,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *225 - *226 - *5 - *4 - - *437 + - *439 - 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: *425 + schema: *427 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &440 + schema: &442 type: string description: An identifier for the upload. examples: @@ -61712,23 +61938,23 @@ paths: application/json: schema: type: array - items: &441 + items: &443 type: object properties: - ref: *425 - commit_sha: &443 + ref: *427 + commit_sha: &445 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *438 + analysis_key: *440 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *439 + category: *441 error: type: string examples: @@ -61753,8 +61979,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *440 - tool: *431 + sarif_id: *442 + tool: *433 deletable: type: boolean warning: @@ -61816,7 +62042,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *433 + '403': *435 '404': *24 '503': *140 x-github: @@ -61852,8 +62078,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -61866,7 +62092,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: response: summary: application/json response @@ -61920,7 +62146,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *433 + '403': *435 '404': *24 '422': description: Response if analysis could not be processed @@ -62007,8 +62233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62064,7 +62290,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': *32 - '403': *442 + '403': *444 '404': *24 '503': *140 x-github: @@ -62086,8 +62312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -62180,7 +62406,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *433 + '403': *435 '404': *24 '503': *140 x-github: @@ -62201,8 +62427,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -62296,7 +62522,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *442 + '403': *444 '404': *24 '409': description: Response if there is already a validation run in progress with @@ -62367,8 +62593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -62376,7 +62602,7 @@ paths: schema: type: object properties: - commit_sha: *443 + commit_sha: *445 ref: type: string description: |- @@ -62431,7 +62657,7 @@ paths: schema: type: object properties: - id: *440 + id: *442 url: type: string description: The REST API URL for checking the status of the upload. @@ -62445,7 +62671,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': *442 + '403': *444 '404': *24 '413': description: Payload Too Large if the sarif field is too large @@ -62468,8 +62694,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *354 - - *355 + - *356 + - *357 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -62517,7 +62743,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': *433 + '403': *435 '404': description: Not Found if the sarif id does not match any upload '503': *140 @@ -62542,8 +62768,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -62619,8 +62845,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-codeowners-errors parameters: - - *354 - - *355 + - *356 + - *357 - 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 @@ -62751,8 +62977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *354 - - *355 + - *356 + - *357 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -62790,7 +63016,7 @@ paths: application/json: schema: type: array - items: &444 + items: &446 title: Collaborator description: Collaborator type: object @@ -62982,8 +63208,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *354 - - *355 + - *356 + - *357 - *8 responses: '204': @@ -63020,8 +63246,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *354 - - *355 + - *356 + - *357 - *8 requestBody: required: false @@ -63091,8 +63317,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *354 - - *355 + - *356 + - *357 - *8 responses: '204': @@ -63124,8 +63350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *354 - - *355 + - *356 + - *357 - *8 responses: '200': @@ -63146,7 +63372,7 @@ paths: user: anyOf: - type: 'null' - - *444 + - *446 required: - permission - role_name @@ -63200,8 +63426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -63211,7 +63437,7 @@ paths: application/json: schema: type: array - items: &445 + items: &447 title: Commit Comment description: Commit Comment type: object @@ -63269,7 +63495,7 @@ paths: - created_at - updated_at examples: - default: &448 + default: &450 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -63328,17 +63554,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#get-a-commit-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 responses: '200': description: Response content: application/json: - schema: *445 + schema: *447 examples: - default: &449 + default: &451 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -63395,8 +63621,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#update-a-commit-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -63419,7 +63645,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: default: value: @@ -63470,8 +63696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#delete-a-commit-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 responses: '204': @@ -63493,8 +63719,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). @@ -63521,9 +63747,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 '404': *24 @@ -63544,8 +63770,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -63578,16 +63804,16 @@ paths: description: Reaction exists content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Reaction created content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '422': *33 x-github: githubCloudOnly: false @@ -63609,10 +63835,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *354 - - *355 + - *356 + - *357 - *162 - - *348 + - *350 responses: '204': description: Response @@ -63661,8 +63887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/commits#list-commits parameters: - - *354 - - *355 + - *356 + - *357 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -63718,9 +63944,9 @@ paths: application/json: schema: type: array - items: *446 + items: *448 examples: - default: &560 + default: &561 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -63814,9 +64040,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/commits#list-branches-for-head-commit parameters: - - *354 - - *355 - - &447 + - *356 + - *357 + - &449 name: commit_sha description: The SHA of the commit. in: path @@ -63888,9 +64114,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#list-commit-comments parameters: - - *354 - - *355 - - *447 + - *356 + - *357 + - *449 - *4 - *5 responses: @@ -63900,9 +64126,9 @@ paths: application/json: schema: type: array - items: *445 + items: *447 examples: - default: *448 + default: *450 headers: Link: *6 x-github: @@ -63930,9 +64156,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/comments#create-a-commit-comment parameters: - - *354 - - *355 - - *447 + - *356 + - *357 + - *449 requestBody: required: true content: @@ -63967,9 +64193,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: - default: *449 + default: *451 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -63997,9 +64223,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *354 - - *355 - - *447 + - *356 + - *357 + - *449 - *4 - *5 responses: @@ -64009,7 +64235,7 @@ paths: application/json: schema: type: array - items: &552 + items: &553 title: Pull Request Simple description: Pull Request Simple type: object @@ -64184,7 +64410,7 @@ paths: type: - array - 'null' - items: *356 + items: *358 head: type: object properties: @@ -64246,7 +64472,7 @@ paths: - review_comment - self author_association: *146 - auto_merge: *450 + auto_merge: *452 draft: description: Indicates whether or not the pull request is a draft. @@ -64286,7 +64512,7 @@ paths: - author_association - auto_merge examples: - default: &553 + default: &554 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -64823,11 +65049,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/commits#get-a-commit parameters: - - *354 - - *355 + - *356 + - *357 - *5 - *4 - - &451 + - &453 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)" @@ -64842,9 +65068,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *448 examples: - default: &538 + default: &539 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -64957,11 +65183,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *354 - - *355 - - *451 - - *452 + - *356 + - *357 - *453 + - *454 + - *455 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -64995,9 +65221,9 @@ paths: type: integer check_runs: type: array - items: *418 + items: *420 examples: - default: *454 + default: *456 headers: Link: *6 x-github: @@ -65022,9 +65248,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *354 - - *355 - - *451 + - *356 + - *357 + - *453 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -65032,7 +65258,7 @@ paths: schema: type: integer example: 1 - - *452 + - *454 - *4 - *5 responses: @@ -65050,7 +65276,7 @@ paths: type: integer check_suites: type: array - items: *422 + items: *424 examples: default: value: @@ -65250,9 +65476,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *354 - - *355 - - *451 + - *356 + - *357 + - *453 - *4 - *5 responses: @@ -65454,9 +65680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *354 - - *355 - - *451 + - *356 + - *357 + - *453 - *4 - *5 responses: @@ -65466,7 +65692,7 @@ paths: application/json: schema: type: array - items: &610 + items: &611 title: Status description: The status of a commit. type: object @@ -65547,7 +65773,7 @@ paths: site_admin: false headers: Link: *6 - '301': *359 + '301': *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65615,8 +65841,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/commits#compare-two-commits parameters: - - *354 - - *355 + - *356 + - *357 - *5 - *4 - name: basehead @@ -65664,8 +65890,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *446 - merge_base_commit: *446 + base_commit: *448 + merge_base_commit: *448 status: type: string enum: @@ -65689,10 +65915,10 @@ paths: - 6 commits: type: array - items: *446 + items: *448 files: type: array - items: *455 + items: *457 required: - url - html_url @@ -65978,8 +66204,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#get-repository-content parameters: - - *354 - - *355 + - *356 + - *357 - name: path description: path parameter in: path @@ -66132,7 +66358,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &456 + response-if-content-is-a-file: &458 summary: Response if content is a file value: type: file @@ -66269,7 +66495,7 @@ paths: - size - type - url - - &565 + - &566 title: Content File description: Content File type: object @@ -66487,7 +66713,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *456 + response-if-content-is-a-file: *458 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -66556,7 +66782,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *24 '403': *41 - '302': &569 + '302': &570 description: Found '304': *40 x-github: @@ -66580,8 +66806,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#create-or-update-file-contents parameters: - - *354 - - *355 + - *356 + - *357 - name: path description: path parameter in: path @@ -66676,7 +66902,7 @@ paths: description: Response content: application/json: - schema: &457 + schema: &459 title: File Commit description: File Commit type: object @@ -66832,7 +67058,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: example-for-creating-a-file: value: @@ -66886,7 +67112,7 @@ paths: schema: oneOf: - *22 - - &499 + - &500 description: Repository rule violation was detected type: object properties: @@ -66907,7 +67133,7 @@ paths: items: type: object properties: - placeholder_id: &606 + placeholder_id: &607 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -66939,8 +67165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#delete-a-file parameters: - - *354 - - *355 + - *356 + - *357 - name: path description: path parameter in: path @@ -67001,7 +67227,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: default: value: @@ -67056,8 +67282,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-contributors parameters: - - *354 - - *355 + - *356 + - *357 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -67181,8 +67407,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *239 - *240 - *241 @@ -67194,7 +67420,7 @@ paths: schema: type: string - *243 - - *458 + - *460 - *244 - *245 - *9 @@ -67225,7 +67451,7 @@ paths: application/json: schema: type: array - items: &462 + items: &464 type: object description: A Dependabot alert. properties: @@ -67260,7 +67486,7 @@ paths: - development - runtime - - security_advisory: *459 + security_advisory: *461 security_vulnerability: *127 url: *128 html_url: *129 @@ -67291,8 +67517,8 @@ paths: dismissal. maxLength: 280 fixed_at: *133 - auto_dismissed_at: *460 - dismissal_request: *461 + auto_dismissed_at: *462 + dismissal_request: *463 required: - number - state @@ -67522,9 +67748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *354 - - *355 - - &463 + - *356 + - *357 + - &465 name: alert_number in: path description: |- @@ -67539,7 +67765,7 @@ paths: description: Response content: application/json: - schema: *462 + schema: *464 examples: default: value: @@ -67652,9 +67878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *354 - - *355 - - *463 + - *356 + - *357 + - *465 requestBody: required: true content: @@ -67699,7 +67925,7 @@ paths: description: Response content: application/json: - schema: *462 + schema: *464 examples: default: value: @@ -67828,8 +68054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/secrets#list-repository-secrets parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -67847,7 +68073,7 @@ paths: type: integer secrets: type: array - items: &466 + items: &468 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -67901,16 +68127,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *464 + schema: *466 examples: - default: *465 + default: *467 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67930,15 +68156,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/secrets#get-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 responses: '200': description: Response content: application/json: - schema: *466 + schema: *468 examples: default: value: @@ -67964,8 +68190,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 requestBody: required: true @@ -68018,8 +68244,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *354 - - *355 + - *356 + - *357 - *205 responses: '204': @@ -68042,8 +68268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *354 - - *355 + - *356 + - *357 - 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 @@ -68217,8 +68443,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -68464,8 +68690,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -68548,7 +68774,7 @@ paths: - version - url additionalProperties: false - metadata: &467 + metadata: &469 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -68587,7 +68813,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *467 + metadata: *469 resolved: type: object description: A collection of resolved package dependencies. @@ -68601,7 +68827,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *467 + metadata: *469 relationship: type: string description: A notation of whether a dependency is requested @@ -68734,8 +68960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/deployments#list-deployments parameters: - - *354 - - *355 + - *356 + - *357 - name: sha description: The SHA recorded at creation time. in: query @@ -68776,9 +69002,9 @@ paths: application/json: schema: type: array - items: *468 + items: *470 examples: - default: *469 + default: *471 headers: Link: *6 x-github: @@ -68844,8 +69070,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/deployments#create-a-deployment parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -68927,7 +69153,7 @@ paths: description: Response content: application/json: - schema: *468 + schema: *470 examples: simple-example: summary: Simple example @@ -69000,9 +69226,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/deployments#get-a-deployment parameters: - - *354 - - *355 - - &470 + - *356 + - *357 + - &472 name: deployment_id description: deployment_id parameter in: path @@ -69014,7 +69240,7 @@ paths: description: Response content: application/json: - schema: *468 + schema: *470 examples: default: value: @@ -69079,9 +69305,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/deployments#delete-a-deployment parameters: - - *354 - - *355 - - *470 + - *356 + - *357 + - *472 responses: '204': description: Response @@ -69103,9 +69329,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/statuses#list-deployment-statuses parameters: - - *354 - - *355 - - *470 + - *356 + - *357 + - *472 - *4 - *5 responses: @@ -69115,7 +69341,7 @@ paths: application/json: schema: type: array - items: &471 + items: &473 title: Deployment Status description: The status of a deployment. type: object @@ -69279,9 +69505,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/statuses#create-a-deployment-status parameters: - - *354 - - *355 - - *470 + - *356 + - *357 + - *472 requestBody: required: true content: @@ -69356,9 +69582,9 @@ paths: description: Response content: application/json: - schema: *471 + schema: *473 examples: - default: &472 + default: &474 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -69414,9 +69640,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/statuses#get-a-deployment-status parameters: - - *354 - - *355 - - *470 + - *356 + - *357 + - *472 - name: status_id in: path required: true @@ -69427,9 +69653,9 @@ paths: description: Response content: application/json: - schema: *471 + schema: *473 examples: - default: *472 + default: *474 '404': *24 x-github: githubCloudOnly: false @@ -69456,12 +69682,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 - - *473 - - *474 + - *356 + - *357 - *475 - *476 + - *477 + - *478 - *4 - *5 responses: @@ -69471,9 +69697,9 @@ paths: application/json: schema: type: array - items: *477 + items: *479 examples: - default: *478 + default: *480 '404': *24 '403': *41 '500': *105 @@ -69497,8 +69723,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -69510,7 +69736,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *477 + schema: *479 examples: default: value: @@ -69566,8 +69792,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -69626,12 +69852,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *354 - - *355 - - *473 - - *474 + - *356 + - *357 - *475 - *476 + - *477 + - *478 - *4 - *5 responses: @@ -69641,193 +69867,9 @@ paths: application/json: schema: type: array - items: &480 - title: Dependabot alert dismissal request - description: Alert dismissal request made by a user asking to dismiss - a Dependabot alert. - type: object - properties: - id: - type: integer - format: int64 - description: The unique identifier of the dismissal request. - number: - type: integer - format: int64 - description: The number uniquely identifying the dismissal request - within its repository. - repository: - type: object - description: The repository the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the repository the dismissal request - is for. - name: - type: string - description: The name of the repository the dismissal request - is for. - full_name: - type: string - description: The full name of the repository the dismissal - request is for. - organization: - type: object - description: The organization associated with the repository - the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the dismissal request. - properties: - actor_id: - type: integer - format: int64 - description: The ID of the GitHub user who requested the - dismissal request. - actor_name: - type: string - description: The name of the GitHub user who requested the - dismissal request. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the dismissal request metadata. - items: - type: object - properties: - reason: - type: string - description: The reason for the dismissal request. - alert_number: - type: string - description: The alert number. - alert_title: - type: string - description: The title of the alert. - resource_identifier: - type: string - description: The unique identifier for the request type of the - dismissal request. - examples: - - '123' - status: - type: string - description: The status of the dismissal request. - enum: - - pending - - denied - - approved - - expired - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating - the dismissal request. - expires_at: - type: string - format: date-time - description: The date and time the dismissal request will expire. - created_at: - type: string - format: date-time - description: The date and time the dismissal request was created. - responses: - type: - - array - - 'null' - description: The responses to the dismissal request. - items: *479 - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: - type: string - description: The URL to view the dismissal request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/security/dependabot/1 + items: *481 examples: - default: - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: no_bandwidth - alert_number: '1' - alert_title: lodash - GHSA-1234-abcd-5678 - resource_identifier: '1' - status: denied - requester_comment: No bandwidth to fix this right now - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: https://github.com/octo-org/smile/security/dependabot/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: tolerable_risk - alert_number: '2' - alert_title: axios - GHSA-5678-efgh-9012 - resource_identifier: '2' - status: approved - requester_comment: Risk is acceptable for this internal tool - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 43 - reviewer: - actor_id: 4 - actor_name: octocat - status: approved - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 - html_url: https://github.com/octo-org/smile/security/dependabot/2 + default: *482 '404': *24 '403': *41 '500': *105 @@ -69851,8 +69893,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -69864,7 +69906,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *480 + schema: *481 examples: default: value: @@ -69915,8 +69957,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -69987,12 +70029,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - *107 - *108 - *109 - - *481 + - *252 - *4 - *5 responses: @@ -70002,9 +70044,9 @@ paths: application/json: schema: type: array - items: *482 + items: *483 examples: - default: *483 + default: *484 '404': *24 '403': *41 '500': *105 @@ -70029,8 +70071,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -70042,7 +70084,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *482 + schema: *483 examples: default: value: @@ -70100,8 +70142,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: alert_number in: path required: true @@ -70170,8 +70212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -70228,8 +70270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/environments#list-environments parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -70247,7 +70289,7 @@ paths: - 5 environments: type: array - items: &485 + items: &486 title: Environment description: Details of a deployment environment type: object @@ -70309,7 +70351,7 @@ paths: type: string examples: - wait_timer - wait_timer: &487 + wait_timer: &488 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -70351,11 +70393,11 @@ paths: items: type: object properties: - type: *484 + type: *485 reviewer: anyOf: - *17 - - *356 + - *358 required: - id - node_id @@ -70378,7 +70420,7 @@ paths: - id - node_id - type - deployment_branch_policy: &488 + deployment_branch_policy: &489 type: - object - 'null' @@ -70494,9 +70536,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/environments#get-an-environment parameters: - - *354 - - *355 - - &486 + - *356 + - *357 + - &487 name: environment_name in: path required: true @@ -70509,9 +70551,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: &489 + default: &490 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -70594,9 +70636,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/environments#create-or-update-an-environment parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 requestBody: required: false content: @@ -70606,7 +70648,7 @@ paths: - object - 'null' properties: - wait_timer: *487 + wait_timer: *488 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -70625,14 +70667,14 @@ paths: items: type: object properties: - type: *484 + type: *485 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *488 + deployment_branch_policy: *489 additionalProperties: false examples: default: @@ -70652,9 +70694,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *489 + default: *490 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -70678,9 +70720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/environments#delete-an-environment parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 responses: '204': description: Default response @@ -70705,9 +70747,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *4 - *5 responses: @@ -70726,7 +70768,7 @@ paths: - 2 branch_policies: type: array - items: &490 + items: &491 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -70787,9 +70829,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 requestBody: required: true content: @@ -70837,9 +70879,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: - example-wildcard: &491 + example-wildcard: &492 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -70881,10 +70923,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *354 - - *355 - - *486 - - &492 + - *356 + - *357 + - *487 + - &493 name: branch_policy_id in: path required: true @@ -70896,9 +70938,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: - default: *491 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70917,10 +70959,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *354 - - *355 - - *486 - - *492 + - *356 + - *357 + - *487 + - *493 requestBody: required: true content: @@ -70949,9 +70991,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: - default: *491 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70970,10 +71012,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *354 - - *355 - - *486 - - *492 + - *356 + - *357 + - *487 + - *493 responses: '204': description: Response @@ -70998,9 +71040,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *486 - - *355 - - *354 + - *487 + - *357 + - *356 responses: '200': description: List of deployment protection rules @@ -71017,7 +71059,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &493 + items: &494 title: Deployment protection rule description: Deployment protection rule type: object @@ -71039,7 +71081,7 @@ paths: for the environment. examples: - true - app: &494 + app: &495 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -71142,9 +71184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *486 - - *355 - - *354 + - *487 + - *357 + - *356 requestBody: content: application/json: @@ -71165,9 +71207,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *493 + schema: *494 examples: - default: &495 + default: &496 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -71202,9 +71244,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *486 - - *355 - - *354 + - *487 + - *357 + - *356 - *5 - *4 responses: @@ -71224,7 +71266,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *494 + items: *495 examples: default: value: @@ -71259,10 +71301,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *354 - - *355 - - *486 - - &496 + - *356 + - *357 + - *487 + - &497 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -71274,9 +71316,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: *495 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71297,10 +71339,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *486 - - *355 - - *354 - - *496 + - *487 + - *357 + - *356 + - *497 responses: '204': description: Response @@ -71326,9 +71368,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#list-environment-secrets parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *4 - *5 responses: @@ -71346,9 +71388,9 @@ paths: type: integer secrets: type: array - items: *385 + items: *387 examples: - default: *386 + default: *388 headers: Link: *6 x-github: @@ -71373,17 +71415,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#get-an-environment-public-key parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 responses: '200': description: Response content: application/json: - schema: *387 + schema: *389 examples: - default: *388 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71405,18 +71447,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#get-an-environment-secret parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *205 responses: '200': description: Response content: application/json: - schema: *385 + schema: *387 examples: - default: *497 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71438,9 +71480,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *205 requestBody: required: true @@ -71498,9 +71540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/secrets#delete-an-environment-secret parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *205 responses: '204': @@ -71526,10 +71568,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#list-environment-variables parameters: - - *354 - - *355 - - *486 - - *372 + - *356 + - *357 + - *487 + - *374 - *5 responses: '200': @@ -71546,9 +71588,9 @@ paths: type: integer variables: type: array - items: *389 + items: *391 examples: - default: *390 + default: *392 headers: Link: *6 x-github: @@ -71571,9 +71613,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#create-an-environment-variable parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 requestBody: required: true content: @@ -71625,18 +71667,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#get-an-environment-variable parameters: - - *354 - - *355 - - *486 + - *356 + - *357 + - *487 - *208 responses: '200': description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *498 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71657,10 +71699,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#update-an-environment-variable parameters: - - *354 - - *355 + - *356 + - *357 - *208 - - *486 + - *487 requestBody: required: true content: @@ -71702,10 +71744,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/actions/variables#delete-an-environment-variable parameters: - - *354 - - *355 + - *356 + - *357 - *208 - - *486 + - *487 responses: '204': description: Response @@ -71727,8 +71769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/events#list-repository-events parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -71806,8 +71848,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/forks#list-forks parameters: - - *354 - - *355 + - *356 + - *357 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -71966,8 +72008,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/forks#create-a-fork parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -72000,9 +72042,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 '400': *32 '422': *33 '403': *41 @@ -72023,8 +72065,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/blobs#create-a-blob parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -72084,7 +72126,7 @@ paths: schema: oneOf: - *176 - - *499 + - *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72109,8 +72151,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/blobs#get-a-blob parameters: - - *354 - - *355 + - *356 + - *357 - name: file_sha in: path required: true @@ -72210,8 +72252,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/commits#create-a-commit parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -72320,7 +72362,7 @@ paths: description: Response content: application/json: - schema: &500 + schema: &501 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -72547,15 +72589,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/commits#get-a-commit-object parameters: - - *354 - - *355 - - *447 + - *356 + - *357 + - *449 responses: '200': description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -72611,9 +72653,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/refs#list-matching-references parameters: - - *354 - - *355 - - &501 + - *356 + - *357 + - &502 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. @@ -72630,7 +72672,7 @@ paths: application/json: schema: type: array - items: &502 + items: &503 title: Git Reference description: Git references within a repository type: object @@ -72706,17 +72748,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/refs#get-a-reference parameters: - - *354 - - *355 - - *501 + - *356 + - *357 + - *502 responses: '200': description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: &503 + default: &504 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -72745,8 +72787,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/refs#create-a-reference parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -72775,9 +72817,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -72803,9 +72845,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/refs#update-a-reference parameters: - - *354 - - *355 - - *501 + - *356 + - *357 + - *502 requestBody: required: true content: @@ -72834,9 +72876,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '422': *33 '409': *121 x-github: @@ -72854,9 +72896,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/refs#delete-a-reference parameters: - - *354 - - *355 - - *501 + - *356 + - *357 + - *502 responses: '204': description: Response @@ -72911,8 +72953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/tags#create-a-tag-object parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -72979,7 +73021,7 @@ paths: description: Response content: application/json: - schema: &505 + schema: &506 title: Git Tag description: Metadata for a Git tag type: object @@ -73035,7 +73077,7 @@ paths: - sha - type - url - verification: *504 + verification: *505 required: - sha - url @@ -73045,7 +73087,7 @@ paths: - tag - message examples: - default: &506 + default: &507 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -73118,8 +73160,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/tags#get-a-tag parameters: - - *354 - - *355 + - *356 + - *357 - name: tag_sha in: path required: true @@ -73130,9 +73172,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *506 examples: - default: *506 + default: *507 '404': *24 '409': *121 x-github: @@ -73156,8 +73198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/trees#create-a-tree parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -73231,7 +73273,7 @@ paths: description: Response content: application/json: - schema: &507 + schema: &508 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -73333,8 +73375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/git/trees#get-a-tree parameters: - - *354 - - *355 + - *356 + - *357 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -73357,7 +73399,7 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: default-response: summary: Default response @@ -73416,8 +73458,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#list-repository-webhooks parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -73427,7 +73469,7 @@ paths: application/json: schema: type: array - items: &508 + items: &509 title: Webhook description: Webhooks for repositories. type: object @@ -73490,7 +73532,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &718 + last_response: &719 title: Hook Response type: object properties: @@ -73567,8 +73609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#create-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -73621,9 +73663,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: &509 + default: &510 value: type: Repository id: 12345678 @@ -73671,17 +73713,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#get-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 responses: '200': description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: *509 + default: *510 '404': *24 x-github: githubCloudOnly: false @@ -73701,8 +73743,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#update-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 requestBody: required: true @@ -73748,9 +73790,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: *509 + default: *510 '422': *33 '404': *24 x-github: @@ -73771,8 +73813,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 responses: '204': @@ -73797,8 +73839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *3 responses: '200': @@ -73826,8 +73868,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *3 requestBody: required: false @@ -73872,11 +73914,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 - *4 - - *253 + - *255 responses: '200': description: Response @@ -73884,9 +73926,9 @@ paths: application/json: schema: type: array - items: *254 + items: *256 examples: - default: *255 + default: *257 '400': *32 '422': *33 x-github: @@ -73905,8 +73947,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 - *34 responses: @@ -73914,9 +73956,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *258 examples: - default: *257 + default: *259 '400': *32 '422': *33 x-github: @@ -73935,8 +73977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 - *34 responses: @@ -73960,8 +74002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 responses: '204': @@ -73987,8 +74029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *354 - - *355 + - *356 + - *357 - *3 responses: '204': @@ -74013,8 +74055,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -74022,8 +74064,8 @@ paths: application/json: schema: *37 examples: - default: *510 - '301': *359 + default: *511 + '301': *361 '404': *24 x-github: githubCloudOnly: false @@ -74042,8 +74084,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/invitations#list-repository-invitations parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -74053,7 +74095,7 @@ paths: application/json: schema: type: array - items: &511 + items: &512 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -74115,7 +74157,7 @@ paths: - html_url - created_at examples: - default: &664 + default: &665 value: - id: 1 repository: @@ -74246,9 +74288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *354 - - *355 - - &512 + - *356 + - *357 + - &513 name: invitation_id description: The unique identifier of the invitation. in: path @@ -74283,7 +74325,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: default: value: @@ -74414,9 +74456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *354 - - *355 - - *512 + - *356 + - *357 + - *513 responses: '204': description: Response @@ -74447,8 +74489,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#list-repository-issues parameters: - - *354 - - *355 + - *356 + - *357 - 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 @@ -74496,7 +74538,7 @@ paths: required: false schema: type: string - - *258 + - *260 - name: sort description: What to sort results by. in: query @@ -74521,7 +74563,7 @@ paths: type: array items: *145 examples: - default: &519 + default: &520 value: - id: 1 node_id: MDU6SXNzdWUx @@ -74669,7 +74711,7 @@ paths: state_reason: completed headers: Link: *6 - '301': *359 + '301': *361 '422': *33 '404': *24 x-github: @@ -74698,8 +74740,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#create-an-issue parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -74791,7 +74833,7 @@ paths: application/json: schema: *145 examples: - default: &516 + default: &517 value: id: 1 node_id: MDU6SXNzdWUx @@ -74947,7 +74989,7 @@ paths: '422': *33 '503': *140 '404': *24 - '410': *364 + '410': *366 x-github: triggersNotification: true githubCloudOnly: false @@ -74975,9 +75017,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *354 - - *355 - - &558 + - *356 + - *357 + - &559 name: sort description: The property to sort the results by. in: query @@ -75007,9 +75049,9 @@ paths: application/json: schema: type: array - items: *513 + items: *514 examples: - default: &518 + default: &519 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -75067,17 +75109,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#get-an-issue-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 responses: '200': description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: &514 + default: &515 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -75131,8 +75173,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#update-an-issue-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -75155,9 +75197,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: *514 + default: *515 '422': *33 x-github: githubCloudOnly: false @@ -75175,8 +75217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#delete-an-issue-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 responses: '204': @@ -75197,8 +75239,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). @@ -75225,9 +75267,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 '404': *24 @@ -75248,8 +75290,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -75282,16 +75324,16 @@ paths: description: Reaction exists content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Reaction created content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '422': *33 x-github: githubCloudOnly: false @@ -75313,10 +75355,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *354 - - *355 + - *356 + - *357 - *162 - - *348 + - *350 responses: '204': description: Response @@ -75336,8 +75378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/events#list-issue-events-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -75347,7 +75389,7 @@ paths: application/json: schema: type: array - items: &515 + items: &516 title: Issue Event description: Issue Event type: object @@ -75427,7 +75469,7 @@ paths: anyOf: - type: 'null' - *17 - requested_team: *356 + requested_team: *358 dismissed_review: title: Issue Event Dismissed Review type: object @@ -75686,8 +75728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/events#get-an-issue-event parameters: - - *354 - - *355 + - *356 + - *357 - name: event_id in: path required: true @@ -75698,7 +75740,7 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: default: value: @@ -75890,7 +75932,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *24 - '410': *364 + '410': *366 '403': *41 x-github: githubCloudOnly: false @@ -75924,9 +75966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue parameters: - - *354 - - *355 - - &517 + - *356 + - *357 + - &518 name: issue_number description: The number that identifies the issue. in: path @@ -75940,10 +75982,10 @@ paths: application/json: schema: *145 examples: - default: *516 - '301': *359 + default: *517 + '301': *361 '404': *24 - '410': *364 + '410': *366 '304': *40 x-github: githubCloudOnly: false @@ -75968,9 +76010,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#update-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: false content: @@ -76091,13 +76133,13 @@ paths: application/json: schema: *145 examples: - default: *516 + default: *517 '422': *33 '503': *140 '403': *41 - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76115,9 +76157,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: false content: @@ -76145,7 +76187,7 @@ paths: application/json: schema: *145 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76161,9 +76203,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: content: application/json: @@ -76190,7 +76232,7 @@ paths: application/json: schema: *145 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76212,9 +76254,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - name: assignee in: path required: true @@ -76254,9 +76296,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#list-issue-comments parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *153 - *4 - *5 @@ -76267,13 +76309,13 @@ paths: application/json: schema: type: array - items: *513 + items: *514 examples: - default: *518 + default: *519 headers: Link: *6 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76302,9 +76344,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/comments#create-an-issue-comment parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: true content: @@ -76326,16 +76368,16 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: *514 + default: *515 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *41 - '410': *364 + '410': *366 '422': *33 '404': *24 x-github: @@ -76363,9 +76405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *4 - *5 responses: @@ -76377,12 +76419,12 @@ paths: type: array items: *145 examples: - default: *519 + default: *520 headers: Link: *6 - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76410,9 +76452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: true content: @@ -76436,15 +76478,15 @@ paths: application/json: schema: *145 examples: - default: *516 + default: *517 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *359 + '301': *361 '403': *41 - '410': *364 + '410': *366 '422': *33 '404': *24 x-github: @@ -76475,9 +76517,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -76491,13 +76533,13 @@ paths: application/json: schema: *145 examples: - default: *516 - '301': *359 + default: *517 + '301': *361 '400': *32 '401': *39 '403': *41 '404': *24 - '410': *364 + '410': *366 x-github: triggersNotification: true githubCloudOnly: false @@ -76523,9 +76565,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *4 - *5 responses: @@ -76537,12 +76579,12 @@ paths: type: array items: *145 examples: - default: *519 + default: *520 headers: Link: *6 - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76559,9 +76601,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/events#list-issue-events parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *4 - *5 responses: @@ -76575,7 +76617,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &521 + - &522 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -76624,7 +76666,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &522 + - &523 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -76752,7 +76794,7 @@ paths: - performed_via_github_app - assignee - assigner - - &523 + - &524 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -76798,7 +76840,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &524 + - &525 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -76844,7 +76886,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &525 + - &526 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -76893,7 +76935,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &526 + - &527 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -76922,7 +76964,7 @@ paths: - type: 'null' - *23 review_requester: *17 - requested_team: *356 + requested_team: *358 requested_reviewer: *17 required: - review_requester @@ -76935,7 +76977,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &527 + - &528 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -76964,7 +77006,7 @@ paths: - type: 'null' - *23 review_requester: *17 - requested_team: *356 + requested_team: *358 requested_reviewer: *17 required: - review_requester @@ -76977,7 +77019,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &528 + - &529 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -77033,7 +77075,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &529 + - &530 title: Locked Issue Event description: Locked Issue Event type: object @@ -77078,7 +77120,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &530 + - &531 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -77139,7 +77181,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &531 + - &532 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -77200,7 +77242,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &532 + - &533 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -77261,7 +77303,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &533 + - &534 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -77354,7 +77396,7 @@ paths: color: red headers: Link: *6 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77371,9 +77413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#list-labels-for-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *4 - *5 responses: @@ -77385,7 +77427,7 @@ paths: type: array items: *144 examples: - default: &520 + default: &521 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -77403,9 +77445,9 @@ paths: default: false headers: Link: *6 - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77422,9 +77464,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#add-labels-to-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: false content: @@ -77485,10 +77527,10 @@ paths: type: array items: *144 examples: - default: *520 - '301': *359 + default: *521 + '301': *361 '404': *24 - '410': *364 + '410': *366 '422': *33 x-github: githubCloudOnly: false @@ -77505,9 +77547,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#set-labels-for-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: false content: @@ -77569,10 +77611,10 @@ paths: type: array items: *144 examples: - default: *520 - '301': *359 + default: *521 + '301': *361 '404': *24 - '410': *364 + '410': *366 '422': *33 x-github: githubCloudOnly: false @@ -77589,15 +77631,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 responses: '204': description: Response - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77616,9 +77658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - name: name in: path required: true @@ -77642,9 +77684,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *359 + '301': *361 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77664,9 +77706,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#lock-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: false content: @@ -77695,7 +77737,7 @@ paths: '204': description: Response '403': *41 - '410': *364 + '410': *366 '404': *24 '422': *33 x-github: @@ -77713,9 +77755,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/issues#unlock-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 responses: '204': description: Response @@ -77737,9 +77779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -77765,13 +77807,13 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77789,9 +77831,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 requestBody: required: true content: @@ -77823,16 +77865,16 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '422': *33 x-github: githubCloudOnly: false @@ -77854,10 +77896,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *354 - - *355 - - *517 - - *348 + - *356 + - *357 + - *518 + - *350 responses: '204': description: Response @@ -77877,9 +77919,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *354 - - *355 - - *517 + - *356 + - *357 + - *518 - *4 - *5 responses: @@ -77894,7 +77936,6 @@ paths: description: Timeline Event type: object anyOf: - - *521 - *522 - *523 - *524 @@ -77907,6 +77948,7 @@ paths: - *531 - *532 - *533 + - *534 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -78235,7 +78277,7 @@ paths: type: string comments: type: array - items: &554 + items: &555 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -78473,7 +78515,7 @@ paths: type: string comments: type: array - items: *445 + items: *447 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -78748,7 +78790,7 @@ paths: headers: Link: *6 '404': *24 - '410': *364 + '410': *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78765,8 +78807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -78776,7 +78818,7 @@ paths: application/json: schema: type: array - items: &534 + items: &535 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -78844,8 +78886,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -78881,9 +78923,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: &535 + default: &536 value: id: 1 key: ssh-rsa AAA... @@ -78917,9 +78959,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *354 - - *355 - - &536 + - *356 + - *357 + - &537 name: key_id description: The unique identifier of the key. in: path @@ -78931,9 +78973,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: *535 + default: *536 '404': *24 x-github: githubCloudOnly: false @@ -78951,9 +78993,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *354 - - *355 - - *536 + - *356 + - *357 + - *537 responses: '204': description: Response @@ -78973,8 +79015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#list-labels-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -78986,7 +79028,7 @@ paths: type: array items: *144 examples: - default: *520 + default: *521 headers: Link: *6 '404': *24 @@ -79007,8 +79049,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#create-a-label parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -79046,7 +79088,7 @@ paths: application/json: schema: *144 examples: - default: &537 + default: &538 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -79078,8 +79120,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#get-a-label parameters: - - *354 - - *355 + - *356 + - *357 - name: name in: path required: true @@ -79092,7 +79134,7 @@ paths: application/json: schema: *144 examples: - default: *537 + default: *538 '404': *24 x-github: githubCloudOnly: false @@ -79109,8 +79151,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#update-a-label parameters: - - *354 - - *355 + - *356 + - *357 - name: name in: path required: true @@ -79175,8 +79217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#delete-a-label parameters: - - *354 - - *355 + - *356 + - *357 - name: name in: path required: true @@ -79202,8 +79244,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-languages parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -79239,8 +79281,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '202': *51 '403': @@ -79268,8 +79310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -79295,9 +79337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *354 - - *355 - - *436 + - *356 + - *357 + - *438 responses: '200': description: Response @@ -79444,8 +79486,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -79510,8 +79552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/branches/branches#merge-a-branch parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -79545,9 +79587,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *446 + schema: *448 examples: - default: *538 + default: *539 '204': description: Response when already merged '404': @@ -79572,8 +79614,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/milestones#list-milestones parameters: - - *354 - - *355 + - *356 + - *357 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -79670,8 +79712,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/milestones#create-a-milestone parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -79713,7 +79755,7 @@ paths: application/json: schema: *149 examples: - default: &539 + default: &540 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -79772,9 +79814,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/milestones#get-a-milestone parameters: - - *354 - - *355 - - &540 + - *356 + - *357 + - &541 name: milestone_number description: The number that identifies the milestone. in: path @@ -79788,7 +79830,7 @@ paths: application/json: schema: *149 examples: - default: *539 + default: *540 '404': *24 x-github: githubCloudOnly: false @@ -79805,9 +79847,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/milestones#update-a-milestone parameters: - - *354 - - *355 - - *540 + - *356 + - *357 + - *541 requestBody: required: false content: @@ -79847,7 +79889,7 @@ paths: application/json: schema: *149 examples: - default: *539 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79863,9 +79905,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/milestones#delete-a-milestone parameters: - - *354 - - *355 - - *540 + - *356 + - *357 + - *541 responses: '204': description: Response @@ -79886,9 +79928,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *354 - - *355 - - *540 + - *356 + - *357 + - *541 - *4 - *5 responses: @@ -79900,7 +79942,7 @@ paths: type: array items: *144 examples: - default: *520 + default: *521 headers: Link: *6 x-github: @@ -79919,12 +79961,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *354 - - *355 - - *541 + - *356 + - *357 - *542 - - *153 - *543 + - *153 + - *544 - *4 - *5 responses: @@ -79936,7 +79978,7 @@ paths: type: array items: *170 examples: - default: *544 + default: *545 headers: Link: *6 x-github: @@ -79960,8 +80002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -80019,14 +80061,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#get-a-apiname-pages-site parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: &545 + schema: &546 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -80170,7 +80212,7 @@ paths: - custom_404 - public examples: - default: &546 + default: &547 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -80211,8 +80253,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#create-a-apiname-pages-site parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -80267,9 +80309,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: *546 + default: *547 '422': *33 '409': *121 x-github: @@ -80292,8 +80334,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -80393,8 +80435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -80420,8 +80462,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#list-apiname-pages-builds parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -80431,7 +80473,7 @@ paths: application/json: schema: type: array - items: &547 + items: &548 title: Page Build description: Page Build type: object @@ -80523,8 +80565,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#request-a-apiname-pages-build parameters: - - *354 - - *355 + - *356 + - *357 responses: '201': description: Response @@ -80571,16 +80613,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#get-latest-pages-build parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: &548 + default: &549 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -80628,8 +80670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#get-apiname-pages-build parameters: - - *354 - - *355 + - *356 + - *357 - name: build_id in: path required: true @@ -80640,9 +80682,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80662,8 +80704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#create-a-github-pages-deployment parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -80766,9 +80808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *354 - - *355 - - &549 + - *356 + - *357 + - &550 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -80826,9 +80868,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *354 - - *355 - - *549 + - *356 + - *357 + - *550 responses: '204': *138 '404': *24 @@ -80851,8 +80893,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/repo-pre-receive-hooks#list-pre-receive-hooks-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 - *9 @@ -80873,7 +80915,7 @@ paths: application/json: schema: type: array - items: &550 + items: &551 type: object properties: id: @@ -80907,17 +80949,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/repo-pre-receive-hooks#get-a-pre-receive-hook-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *16 responses: '200': description: Response content: application/json: - schema: *550 + schema: *551 examples: - default: &551 + default: &552 value: id: 42 name: Check Commits @@ -80939,15 +80981,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/repo-pre-receive-hooks#update-pre-receive-hook-enforcement-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *16 responses: '200': description: Response content: application/json: - schema: *550 + schema: *551 examples: default: value: @@ -80991,8 +81033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/repo-pre-receive-hooks#remove-pre-receive-hook-enforcement-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - *16 responses: '200': @@ -81000,9 +81042,9 @@ paths: global level. content: application/json: - schema: *550 + schema: *551 examples: - default: *551 + default: *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81021,8 +81063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -81030,7 +81072,7 @@ paths: application/json: schema: type: array - items: *287 + items: *289 examples: default: value: @@ -81061,8 +81103,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -81074,7 +81116,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *287 + items: *289 required: - properties examples: @@ -81124,8 +81166,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#list-pull-requests parameters: - - *354 - - *355 + - *356 + - *357 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -81185,9 +81227,9 @@ paths: application/json: schema: type: array - items: *552 + items: *553 examples: - default: *553 + default: *554 headers: Link: *6 '304': *40 @@ -81219,8 +81261,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#create-a-pull-request parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -81289,7 +81331,7 @@ paths: application/json: schema: *151 examples: - default: &556 + default: &557 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -81816,8 +81858,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - name: sort in: query required: false @@ -81846,9 +81888,9 @@ paths: application/json: schema: type: array - items: *554 + items: *555 examples: - default: &559 + default: &560 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -81925,17 +81967,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *354 - - *355 + - *356 + - *357 - *162 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/pulls/comments/1 pull_request_review_id: 42 @@ -82010,8 +82052,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -82034,9 +82076,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: - default: *555 + default: *556 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82052,8 +82094,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *354 - - *355 + - *356 + - *357 - *162 responses: '204': @@ -82075,8 +82117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). @@ -82103,9 +82145,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 '404': *24 @@ -82126,8 +82168,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *354 - - *355 + - *356 + - *357 - *162 requestBody: required: true @@ -82160,16 +82202,16 @@ paths: description: Reaction exists content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Reaction created content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '422': *33 x-github: githubCloudOnly: false @@ -82191,10 +82233,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *354 - - *355 + - *356 + - *357 - *162 - - *348 + - *350 responses: '204': description: Response @@ -82237,9 +82279,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#get-a-pull-request parameters: - - *354 - - *355 - - &557 + - *356 + - *357 + - &558 name: pull_number description: The number that identifies the pull request. in: path @@ -82254,7 +82296,7 @@ paths: application/json: schema: *151 examples: - default: *556 + default: *557 '304': *40 '404': *24 '406': @@ -82289,9 +82331,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#update-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: false content: @@ -82335,7 +82377,7 @@ paths: application/json: schema: *151 examples: - default: *556 + default: *557 '422': *33 '403': *41 x-github: @@ -82363,10 +82405,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 - *558 + - *559 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -82386,9 +82428,9 @@ paths: application/json: schema: type: array - items: *554 + items: *555 examples: - default: *559 + default: *560 headers: Link: *6 x-github: @@ -82421,9 +82463,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: true content: @@ -82529,7 +82571,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: example-for-a-multi-line-comment: value: @@ -82617,9 +82659,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 - *162 requestBody: required: true @@ -82642,7 +82684,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: default: value: @@ -82728,9 +82770,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 - *4 - *5 responses: @@ -82740,9 +82782,9 @@ paths: application/json: schema: type: array - items: *446 + items: *448 examples: - default: *560 + default: *561 headers: Link: *6 x-github: @@ -82772,9 +82814,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#list-pull-requests-files parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 - *4 - *5 responses: @@ -82784,7 +82826,7 @@ paths: application/json: schema: type: array - items: *455 + items: *457 examples: default: value: @@ -82822,9 +82864,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 responses: '204': description: Response if pull request has been merged @@ -82847,9 +82889,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#merge-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: false content: @@ -82961,9 +83003,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 responses: '200': description: Response @@ -82979,7 +83021,7 @@ paths: items: *17 teams: type: array - items: *356 + items: *358 required: - users - teams @@ -83038,9 +83080,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: false content: @@ -83077,7 +83119,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *553 examples: default: value: @@ -83613,9 +83655,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: true content: @@ -83649,7 +83691,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *553 examples: default: value: @@ -84154,9 +84196,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 - *4 - *5 responses: @@ -84166,7 +84208,7 @@ paths: application/json: schema: type: array - items: &561 + items: &562 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -84322,9 +84364,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: false content: @@ -84414,9 +84456,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &563 + default: &564 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -84479,10 +84521,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 - - &562 + - *356 + - *357 + - *558 + - &563 name: review_id description: The unique identifier of the review. in: path @@ -84494,9 +84536,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &564 + default: &565 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -84555,10 +84597,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 - - *562 + - *356 + - *357 + - *558 + - *563 requestBody: required: true content: @@ -84581,7 +84623,7 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: default: value: @@ -84643,18 +84685,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 - - *562 + - *356 + - *357 + - *558 + - *563 responses: '200': description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *563 + default: *564 '422': *25 '404': *24 x-github: @@ -84681,10 +84723,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *354 - - *355 - - *557 - - *562 + - *356 + - *357 + - *558 + - *563 - *4 - *5 responses: @@ -84942,10 +84984,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 - - *562 + - *356 + - *357 + - *558 + - *563 requestBody: required: true content: @@ -84974,7 +85016,7 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: default: value: @@ -85037,10 +85079,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *354 - - *355 - - *557 - - *562 + - *356 + - *357 + - *558 + - *563 requestBody: required: true content: @@ -85075,9 +85117,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *564 + default: *565 '404': *24 '422': *25 '403': *41 @@ -85099,9 +85141,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *354 - - *355 - - *557 + - *356 + - *357 + - *558 requestBody: required: false content: @@ -85165,8 +85207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#get-a-repository-readme parameters: - - *354 - - *355 + - *356 + - *357 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -85179,9 +85221,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: - default: &566 + default: &567 value: type: file encoding: base64 @@ -85223,8 +85265,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *354 - - *355 + - *356 + - *357 - name: dir description: The alternate path to look for a README file in: path @@ -85244,9 +85286,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: - default: *566 + default: *567 '404': *24 '422': *33 x-github: @@ -85268,8 +85310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#list-releases parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -85279,7 +85321,7 @@ paths: application/json: schema: type: array - items: *567 + items: *568 examples: default: value: @@ -85373,8 +85415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#create-a-release parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -85444,9 +85486,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: &572 + default: &573 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -85546,9 +85588,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/assets#get-a-release-asset parameters: - - *354 - - *355 - - &570 + - *356 + - *357 + - &571 name: asset_id description: The unique identifier of the asset. in: path @@ -85560,9 +85602,9 @@ paths: description: Response content: application/json: - schema: *568 + schema: *569 examples: - default: &571 + default: &572 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 @@ -85597,7 +85639,7 @@ paths: type: User site_admin: false '404': *24 - '302': *569 + '302': *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85613,9 +85655,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/assets#update-a-release-asset parameters: - - *354 - - *355 - - *570 + - *356 + - *357 + - *571 requestBody: required: false content: @@ -85644,9 +85686,9 @@ paths: description: Response content: application/json: - schema: *568 + schema: *569 examples: - default: *571 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85662,9 +85704,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/assets#delete-a-release-asset parameters: - - *354 - - *355 - - *570 + - *356 + - *357 + - *571 responses: '204': description: Response @@ -85688,8 +85730,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -85775,16 +85817,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#get-the-latest-release parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *572 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85801,8 +85843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#get-a-release-by-tag-name parameters: - - *354 - - *355 + - *356 + - *357 - name: tag description: tag parameter in: path @@ -85815,9 +85857,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *572 + default: *573 '404': *24 x-github: githubCloudOnly: false @@ -85839,9 +85881,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#get-a-release parameters: - - *354 - - *355 - - &573 + - *356 + - *357 + - &574 name: release_id description: The unique identifier of the release. in: path @@ -85855,9 +85897,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-server@3.19/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *567 + schema: *568 examples: - default: *572 + default: *573 '401': description: Unauthorized x-github: @@ -85875,9 +85917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#update-a-release parameters: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 requestBody: required: false content: @@ -85934,9 +85976,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *572 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85952,9 +85994,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/releases#delete-a-release parameters: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 responses: '204': description: Response @@ -85974,9 +86016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/releases/assets#list-release-assets parameters: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 - *4 - *5 responses: @@ -85986,7 +86028,7 @@ paths: application/json: schema: type: array - items: *568 + items: *569 examples: default: value: @@ -86068,9 +86110,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: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 - name: name in: query required: true @@ -86096,7 +86138,7 @@ paths: description: Response for successful upload content: application/json: - schema: *568 + schema: *569 examples: response-for-successful-upload: value: @@ -86151,9 +86193,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -86177,9 +86219,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 '404': *24 @@ -86200,9 +86242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *354 - - *355 - - *573 + - *356 + - *357 + - *574 requestBody: required: true content: @@ -86232,16 +86274,16 @@ paths: description: Reaction exists content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '201': description: Reaction created content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 '422': *33 x-github: githubCloudOnly: false @@ -86263,10 +86305,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#delete-a-release-reaction parameters: - - *354 - - *355 - - *573 - - *348 + - *356 + - *357 + - *574 + - *350 responses: '204': description: Response @@ -86286,8 +86328,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-cache-replication-status parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -86362,9 +86404,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/rules#get-rules-for-a-branch parameters: - - *354 - - *355 - - *406 + - *356 + - *357 + - *408 - *4 - *5 responses: @@ -86380,8 +86422,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *294 - - &574 + - *296 + - &575 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -86400,69 +86442,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *295 - - *574 - - allOf: - - *296 - - *574 - allOf: - *297 - - *574 - - allOf: - *575 - - *574 - allOf: - *298 - - *574 + - *575 - allOf: - *299 - - *574 + - *575 + - allOf: + - *576 + - *575 - allOf: - *300 - - *574 + - *575 - allOf: - *301 - - *574 + - *575 - allOf: - *302 - - *574 + - *575 - allOf: - *303 - - *574 + - *575 - allOf: - *304 - - *574 + - *575 - allOf: - *305 - - *574 + - *575 - allOf: - *306 - - *574 + - *575 - allOf: - *307 - - *574 + - *575 - allOf: - *308 - - *574 + - *575 - allOf: - *309 - - *574 + - *575 - allOf: - *310 - - *574 + - *575 - allOf: - *311 - - *574 + - *575 - allOf: - *312 - - *574 + - *575 - allOf: - *313 - - *574 + - *575 - allOf: - *314 - - *574 + - *575 + - allOf: + - *315 + - *575 + - allOf: + - *316 + - *575 examples: default: value: @@ -86501,8 +86543,8 @@ paths: category: repos subcategory: rules parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 - name: includes_parents @@ -86513,7 +86555,7 @@ paths: schema: type: boolean default: true - - *576 + - *577 responses: '200': description: Response @@ -86521,7 +86563,7 @@ paths: application/json: schema: type: array - items: *315 + items: *317 examples: default: value: @@ -86568,8 +86610,8 @@ paths: category: repos subcategory: rules parameters: - - *354 - - *355 + - *356 + - *357 requestBody: description: Request body required: true @@ -86589,16 +86631,16 @@ paths: - tag - push default: branch - enforcement: *291 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *292 - conditions: *289 + items: *294 + conditions: *291 rules: type: array description: An array of rules within the ruleset. - items: *577 + items: *578 required: - name - enforcement @@ -86629,9 +86671,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: &586 + default: &587 value: id: 42 name: super cool ruleset @@ -86678,12 +86720,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *354 - - *355 - - *578 - - *109 + - *356 + - *357 - *579 + - *109 - *580 + - *581 - *4 - *5 responses: @@ -86691,9 +86733,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: *582 + default: *583 '404': *24 '500': *105 x-github: @@ -86714,17 +86756,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *354 - - *355 - - *583 + - *356 + - *357 + - *584 responses: '200': description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *585 + default: *586 '404': *24 '500': *105 x-github: @@ -86752,8 +86794,8 @@ paths: category: repos subcategory: rules parameters: - - *354 - - *355 + - *356 + - *357 - name: ruleset_id description: The ID of the ruleset. in: path @@ -86773,9 +86815,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *586 + default: *587 '404': *24 '500': *105 put: @@ -86793,8 +86835,8 @@ paths: category: repos subcategory: rules parameters: - - *354 - - *355 + - *356 + - *357 - name: ruleset_id description: The ID of the ruleset. in: path @@ -86819,16 +86861,16 @@ paths: - branch - tag - push - enforcement: *291 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *292 - conditions: *289 + items: *294 + conditions: *291 rules: description: An array of rules within the ruleset. type: array - items: *577 + items: *578 examples: default: value: @@ -86856,9 +86898,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *586 + default: *587 '404': *24 '500': *105 delete: @@ -86876,8 +86918,8 @@ paths: category: repos subcategory: rules parameters: - - *354 - - *355 + - *356 + - *357 - name: ruleset_id description: The ID of the ruleset. in: path @@ -86900,8 +86942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/rules#get-repository-ruleset-history parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 - name: ruleset_id @@ -86919,7 +86961,7 @@ paths: type: array items: *139 examples: - default: *318 + default: *320 '404': *24 '500': *105 x-github: @@ -86938,8 +86980,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/rules#get-repository-ruleset-version parameters: - - *354 - - *355 + - *356 + - *357 - name: ruleset_id description: The ID of the ruleset. in: path @@ -86957,7 +86999,7 @@ paths: description: Response content: application/json: - schema: *319 + schema: *321 examples: default: value: @@ -87012,21 +87054,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *354 - - *355 - - *320 - - *321 + - *356 + - *357 - *322 - *323 + - *324 + - *325 - *9 - *5 - *4 - - *587 - *588 - - *324 - - *325 + - *589 - *326 - *327 + - *328 + - *329 responses: '200': description: Response @@ -87034,7 +87076,7 @@ paths: application/json: schema: type: array - items: &592 + items: &593 type: object properties: number: *123 @@ -87050,8 +87092,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *589 - resolution: *590 + state: *590 + resolution: *591 resolved_at: type: - string @@ -87140,7 +87182,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *591 + - *592 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -87285,16 +87327,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *354 - - *355 - - *434 - - *327 + - *356 + - *357 + - *436 + - *329 responses: '200': description: Response content: application/json: - schema: *592 + schema: *593 examples: default: value: @@ -87335,9 +87377,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *354 - - *355 - - *434 + - *356 + - *357 + - *436 requestBody: required: true content: @@ -87345,8 +87387,8 @@ paths: schema: type: object properties: - state: *589 - resolution: *590 + state: *590 + resolution: *591 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -87366,7 +87408,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: default: value: @@ -87434,9 +87476,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *354 - - *355 - - *434 + - *356 + - *357 + - *436 - *5 - *4 responses: @@ -87447,7 +87489,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &738 + items: &739 type: object properties: type: @@ -87474,7 +87516,6 @@ paths: - commit details: oneOf: - - *593 - *594 - *595 - *596 @@ -87487,6 +87528,7 @@ paths: - *603 - *604 - *605 + - *606 examples: default: value: @@ -87572,8 +87614,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -87581,14 +87623,14 @@ paths: schema: type: object properties: - reason: &607 + reason: &608 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *606 + placeholder_id: *607 required: - reason - placeholder_id @@ -87605,7 +87647,7 @@ paths: schema: type: object properties: - reason: *607 + reason: *608 expire_at: type: - string @@ -87652,8 +87694,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -87668,7 +87710,7 @@ paths: properties: incremental_scans: type: array - items: &608 + items: &609 description: Information on a single scan performed by secret scanning on the repository type: object @@ -87696,15 +87738,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *608 + items: *609 backfill_scans: type: array - items: *608 + items: *609 custom_pattern_backfill_scans: type: array items: allOf: - - *608 + - *609 - type: object properties: pattern_name: @@ -87774,8 +87816,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#list-stargazers parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -87868,8 +87910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -87878,7 +87920,7 @@ paths: application/json: schema: type: array - items: &609 + items: &610 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -87909,8 +87951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -87985,8 +88027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -88080,8 +88122,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -88235,8 +88277,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -88246,7 +88288,7 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: default: value: @@ -88279,8 +88321,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/commits/statuses#create-a-commit-status parameters: - - *354 - - *355 + - *356 + - *357 - name: sha in: path required: true @@ -88336,7 +88378,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *611 examples: default: value: @@ -88390,8 +88432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/watching#list-watchers parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -88403,7 +88445,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -88423,14 +88465,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/watching#get-a-repository-subscription parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &611 + schema: &612 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -88503,8 +88545,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/watching#set-a-repository-subscription parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -88530,7 +88572,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -88557,8 +88599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/watching#delete-a-repository-subscription parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -88578,8 +88620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-tags parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -88661,8 +88703,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '200': description: Response @@ -88670,7 +88712,7 @@ paths: application/json: schema: type: array - items: &612 + items: &613 title: Tag protection description: Tag protection type: object @@ -88727,8 +88769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -88751,7 +88793,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: default: value: @@ -88782,8 +88824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -88820,8 +88862,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *354 - - *355 + - *356 + - *357 - name: ref in: path required: true @@ -88857,8 +88899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#list-repository-teams parameters: - - *354 - - *355 + - *356 + - *357 - *4 - *5 responses: @@ -88868,9 +88910,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - default: *332 + default: *334 headers: Link: *6 '404': *24 @@ -88890,8 +88932,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#get-all-repository-topics parameters: - - *354 - - *355 + - *356 + - *357 - *5 - *4 responses: @@ -88899,7 +88941,7 @@ paths: description: Response content: application/json: - schema: &613 + schema: &614 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -88911,7 +88953,7 @@ paths: required: - names examples: - default: &614 + default: &615 value: names: - octocat @@ -88934,8 +88976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#replace-all-repository-topics parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -88966,9 +89008,9 @@ paths: description: Response content: application/json: - schema: *613 + schema: *614 examples: - default: *614 + default: *615 '404': *24 '422': *25 x-github: @@ -88991,8 +89033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#transfer-a-repository parameters: - - *354 - - *355 + - *356 + - *357 requestBody: required: true content: @@ -89266,8 +89308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -89290,8 +89332,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#enable-vulnerability-alerts parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -89313,8 +89355,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/repos/repos#disable-vulnerability-alerts parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -89340,8 +89382,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *354 - - *355 + - *356 + - *357 - name: ref in: path required: true @@ -89433,9 +89475,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -89610,7 +89652,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &622 + - &623 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -89620,7 +89662,7 @@ paths: type: string examples: - members - - &627 + - &628 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -89632,7 +89674,7 @@ paths: format: int32 examples: - 1 - - &628 + - &629 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -89676,7 +89718,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &617 + items: &618 allOf: - type: object required: @@ -89758,7 +89800,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: &629 + meta: &630 type: object description: The metadata associated with the creation/updates to the user. @@ -89823,30 +89865,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &618 + '400': &619 description: Bad request content: application/json: - schema: *615 + schema: *616 application/scim+json: - schema: *615 - '401': *616 - '403': &619 + schema: *616 + '401': *617 + '403': &620 description: Permission denied - '429': &620 + '429': &621 description: Too many requests content: application/json: - schema: *615 + schema: *616 application/scim+json: - schema: *615 - '500': &621 + schema: *616 + '500': &622 description: Internal server error content: application/json: - schema: *615 + schema: *616 application/scim+json: - schema: *615 + schema: *616 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89873,7 +89915,7 @@ paths: required: true content: application/json: - schema: &625 + schema: &626 type: object required: - schemas @@ -89937,9 +89979,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *617 + schema: *618 examples: - group: &623 + group: &624 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -89958,13 +90000,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': *618 - '401': *616 - '403': *619 - '409': &626 + '400': *619 + '401': *617 + '403': *620 + '409': &627 description: Duplicate record detected - '429': *620 - '500': *621 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89985,7 +90027,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &624 + - &625 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -89994,22 +90036,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *622 + - *623 - *64 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *617 + schema: *618 examples: - default: *623 - '400': *618 - '401': *616 - '403': *619 + default: *624 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '429': *620 - '500': *621 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90031,13 +90073,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *624 + - *625 - *64 requestBody: required: true content: application/json: - schema: *625 + schema: *626 examples: group: summary: Group @@ -90063,17 +90105,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *617 + schema: *618 examples: - group: *623 - groupWithMembers: *623 - '400': *618 - '401': *616 - '403': *619 + group: *624 + groupWithMembers: *624 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '409': *626 - '429': *620 - '500': *621 + '409': *627 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90097,13 +90139,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *624 + - *625 - *64 requestBody: required: true content: application/json: - schema: &636 + schema: &637 type: object required: - Operations @@ -90163,17 +90205,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *617 + schema: *618 examples: - updateGroup: *623 - addMembers: *623 - '400': *618 - '401': *616 - '403': *619 + updateGroup: *624 + addMembers: *624 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '409': *626 - '429': *620 - '500': *621 + '409': *627 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90193,17 +90235,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *624 + - *625 - *64 responses: '204': description: Group was deleted, no content - '400': *618 - '401': *616 - '403': *619 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '429': *620 - '500': *621 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90240,8 +90282,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *627 - *628 + - *629 - *64 responses: '200': @@ -90275,7 +90317,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &631 + items: &632 allOf: - type: object required: @@ -90367,7 +90409,7 @@ paths: address. examples: - true - roles: &630 + roles: &631 type: array description: The roles assigned to the user. items: @@ -90426,7 +90468,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *629 + meta: *630 startIndex: type: integer description: A starting index for the returned page @@ -90465,11 +90507,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *618 - '401': *616 - '403': *619 - '429': *620 - '500': *621 + '400': *619 + '401': *617 + '403': *620 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90498,7 +90540,7 @@ paths: required: true content: application/json: - schema: &634 + schema: &635 type: object required: - schemas @@ -90591,9 +90633,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *630 + roles: *631 examples: - user: &635 + user: &636 summary: User value: schemas: @@ -90640,9 +90682,9 @@ paths: description: User has been created content: application/scim+json: - schema: *631 + schema: *632 examples: - user: &632 + user: &633 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -90668,13 +90710,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: *632 - '400': *618 - '401': *616 - '403': *619 - '409': *626 - '429': *620 - '500': *621 + enterpriseOwner: *633 + '400': *619 + '401': *617 + '403': *620 + '409': *627 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90695,7 +90737,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &633 + - &634 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -90708,15 +90750,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *631 + schema: *632 examples: - default: *632 - '400': *618 - '401': *616 - '403': *619 + default: *633 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '429': *620 - '500': *621 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90741,30 +90783,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *633 + - *634 - *64 requestBody: required: true content: application/json: - schema: *634 + schema: *635 examples: - user: *635 + user: *636 responses: '200': description: User was updated content: application/scim+json: - schema: *631 + schema: *632 examples: - user: *632 - '400': *618 - '401': *616 - '403': *619 + user: *633 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '409': *626 - '429': *620 - '500': *621 + '409': *627 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90802,13 +90844,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *633 + - *634 - *64 requestBody: required: true content: application/json: - schema: *636 + schema: *637 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -90848,18 +90890,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *631 - examples: - userMultiValuedProperties: *632 - userSingleValuedProperties: *632 - disableUser: *632 - '400': *618 - '401': *616 - '403': *619 + schema: *632 + examples: + userMultiValuedProperties: *633 + userSingleValuedProperties: *633 + disableUser: *633 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '409': *626 - '429': *620 - '500': *621 + '409': *627 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90879,17 +90921,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *633 + - *634 - *64 responses: '204': description: User was deleted, no content - '400': *618 - '401': *616 - '403': *619 + '400': *619 + '401': *617 + '403': *620 '404': *24 - '429': *620 - '500': *621 + '429': *621 + '500': *622 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -91017,7 +91059,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &637 + text_matches: &638 title: Search Result Text Matches type: array items: @@ -91181,7 +91223,7 @@ paths: enum: - author-date - committer-date - - &638 + - &639 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 @@ -91250,7 +91292,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *406 comment_count: type: integer message: @@ -91269,7 +91311,7 @@ paths: url: type: string format: uri - verification: *504 + verification: *505 required: - author - committer @@ -91284,7 +91326,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *406 parents: type: array items: @@ -91301,7 +91343,7 @@ paths: type: number node_id: type: string - text_matches: *637 + text_matches: *638 required: - sha - node_id @@ -91494,7 +91536,7 @@ paths: - interactions - created - updated - - *638 + - *639 - *4 - *5 - name: advanced_search @@ -91591,11 +91633,11 @@ paths: type: - string - 'null' - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: type: string state_reason: @@ -91623,7 +91665,7 @@ paths: - string - 'null' format: date-time - text_matches: *637 + text_matches: *638 pull_request: type: object properties: @@ -91672,7 +91714,7 @@ paths: timeline_url: type: string format: uri - type: *642 + type: *643 performed_via_github_app: anyOf: - type: 'null' @@ -91846,7 +91888,7 @@ paths: enum: - created - updated - - *638 + - *639 - *4 - *5 responses: @@ -91891,7 +91933,7 @@ paths: - 'null' score: type: number - text_matches: *637 + text_matches: *638 required: - id - node_id @@ -91977,7 +92019,7 @@ paths: - forks - help-wanted-issues - updated - - *638 + - *639 - *4 - *5 responses: @@ -92214,7 +92256,7 @@ paths: - admin - pull - push - text_matches: *637 + text_matches: *638 temp_clone_token: type: string allow_merge_commit: @@ -92523,7 +92565,7 @@ paths: - string - 'null' format: uri - text_matches: *637 + text_matches: *638 related: type: - array @@ -92718,7 +92760,7 @@ paths: - followers - repositories - joined - - *638 + - *639 - *4 - *5 responses: @@ -92828,7 +92870,7 @@ paths: type: - boolean - 'null' - text_matches: *637 + text_matches: *638 blog: type: - string @@ -92916,9 +92958,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *24 x-github: githubCloudOnly: false @@ -93009,16 +93051,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '201': description: Response content: application/json: - schema: *337 + schema: *339 examples: - default: *338 + default: *340 '404': *24 '422': *33 '403': *41 @@ -93088,9 +93130,9 @@ paths: application/json: schema: type: array - items: *339 + items: *341 examples: - default: *643 + default: *644 headers: Link: *6 x-github: @@ -93153,9 +93195,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *340 + default: *342 x-github: triggersNotification: true githubCloudOnly: false @@ -93183,15 +93225,15 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#get-a-discussion-legacy parameters: - *7 - - *341 + - *343 responses: '200': description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *340 + default: *342 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93217,7 +93259,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#update-a-discussion-legacy parameters: - *7 - - *341 + - *343 requestBody: required: false content: @@ -93240,9 +93282,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *644 + default: *645 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93268,7 +93310,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussions#delete-a-discussion-legacy parameters: - *7 - - *341 + - *343 responses: '204': description: Response @@ -93298,7 +93340,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - *7 - - *341 + - *343 - *9 - *4 - *5 @@ -93309,9 +93351,9 @@ paths: application/json: schema: type: array - items: *342 + items: *344 examples: - default: *645 + default: *646 headers: Link: *6 x-github: @@ -93341,7 +93383,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - *7 - - *341 + - *343 requestBody: required: true content: @@ -93363,9 +93405,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: *343 + default: *345 x-github: triggersNotification: true githubCloudOnly: false @@ -93393,16 +93435,16 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - *7 - - *341 - - *344 + - *343 + - *346 responses: '200': description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: *343 + default: *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93428,8 +93470,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - *7 - - *341 - - *344 + - *343 + - *346 requestBody: required: true content: @@ -93451,9 +93493,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *344 examples: - default: *646 + default: *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93479,8 +93521,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - *7 - - *341 - - *344 + - *343 + - *346 responses: '204': description: Response @@ -93510,8 +93552,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - *7 - - *341 - - *344 + - *343 + - *346 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -93537,9 +93579,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 x-github: @@ -93569,8 +93611,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - *7 - - *341 - - *344 + - *343 + - *346 requestBody: required: true content: @@ -93602,9 +93644,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93631,7 +93673,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - *7 - - *341 + - *343 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -93657,9 +93699,9 @@ paths: application/json: schema: type: array - items: *345 + items: *347 examples: - default: *347 + default: *349 headers: Link: *6 x-github: @@ -93689,7 +93731,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - *7 - - *341 + - *343 requestBody: required: true content: @@ -93721,9 +93763,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -93770,7 +93812,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 '404': *24 @@ -93919,9 +93961,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *355 examples: - response-if-user-is-a-team-maintainer: *647 + response-if-user-is-a-team-maintainer: *648 '404': *24 x-github: githubCloudOnly: false @@ -93980,9 +94022,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *355 examples: - response-if-users-membership-with-team-is-now-pending: *648 + response-if-users-membership-with-team-is-now-pending: *649 '403': description: Forbidden if team synchronization is set up '422': @@ -94056,7 +94098,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 '404': *24 @@ -94087,14 +94129,14 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - *7 - - *354 - - *355 + - *356 + - *357 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *649 + schema: *650 examples: alternative-response-with-extra-repository-information: value: @@ -94246,8 +94288,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - *7 - - *354 - - *355 + - *356 + - *357 requestBody: required: false content: @@ -94298,8 +94340,8 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - *7 - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -94334,9 +94376,9 @@ paths: application/json: schema: type: array - items: *356 + items: *358 examples: - response-if-child-teams-exist: *650 + response-if-child-teams-exist: *651 headers: Link: *6 '404': *24 @@ -94369,7 +94411,7 @@ paths: application/json: schema: oneOf: - - &652 + - &653 title: Private User description: Private User type: object @@ -94619,7 +94661,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *651 + - *652 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -94777,7 +94819,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -94853,9 +94895,9 @@ paths: application/json: schema: type: array - items: *268 + items: *270 examples: - default: &661 + default: &662 value: - id: 197 name: hello_docker @@ -94942,7 +94984,7 @@ paths: application/json: schema: type: array - items: &653 + items: &654 title: Email description: Email type: object @@ -94972,7 +95014,7 @@ paths: - verified - visibility examples: - default: &663 + default: &664 value: - email: octocat@github.com verified: true @@ -95049,7 +95091,7 @@ paths: application/json: schema: type: array - items: *653 + items: *654 examples: default: value: @@ -95161,7 +95203,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 '304': *40 @@ -95194,7 +95236,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 '304': *40 @@ -95307,7 +95349,7 @@ paths: application/json: schema: type: array - items: &654 + items: &655 title: GPG Key description: A unique encryption key type: object @@ -95452,7 +95494,7 @@ paths: - subkeys - revoked examples: - default: &673 + default: &674 value: - id: 3 name: Octocat's GPG Key @@ -95537,9 +95579,9 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: - default: &655 + default: &656 value: id: 3 name: Octocat's GPG Key @@ -95596,7 +95638,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &656 + - &657 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -95608,9 +95650,9 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: - default: *655 + default: *656 '404': *24 '304': *40 '403': *41 @@ -95633,7 +95675,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *656 + - *657 responses: '204': description: Response @@ -95942,7 +95984,7 @@ paths: - closed - all default: open - - *258 + - *260 - name: sort description: What to sort results by. in: query @@ -95967,7 +96009,7 @@ paths: type: array items: *145 examples: - default: *259 + default: *261 headers: Link: *6 '404': *24 @@ -96000,7 +96042,7 @@ paths: application/json: schema: type: array - items: &657 + items: &658 title: Key description: Key type: object @@ -96103,9 +96145,9 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: - default: &658 + default: &659 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -96138,15 +96180,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *536 + - *537 responses: '200': description: Response content: application/json: - schema: *657 + schema: *658 examples: - default: *658 + default: *659 '404': *24 '304': *40 '403': *41 @@ -96169,7 +96211,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *536 + - *537 responses: '204': description: Response @@ -96212,7 +96254,7 @@ paths: application/json: schema: type: array - items: *260 + items: *262 examples: default: value: @@ -96320,7 +96362,7 @@ paths: description: Response content: application/json: - schema: *260 + schema: *262 examples: default: value: @@ -96403,7 +96445,7 @@ paths: description: Response content: application/json: - schema: *260 + schema: *262 examples: default: value: @@ -96471,7 +96513,7 @@ paths: application/json: schema: type: array - items: *262 + items: *264 examples: default: value: @@ -96733,7 +96775,7 @@ paths: description: Response content: application/json: - schema: *262 + schema: *264 examples: default: value: @@ -96926,7 +96968,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/migrations/users#download-a-user-migration-archive parameters: - - *263 + - *265 responses: '302': description: Response @@ -96949,7 +96991,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *263 + - *265 - *4 - *5 responses: @@ -96961,7 +97003,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 '404': *24 @@ -96998,7 +97040,7 @@ paths: type: array items: *72 examples: - default: *659 + default: *660 headers: Link: *6 '304': *40 @@ -97040,7 +97082,7 @@ paths: - docker - nuget - container - - *660 + - *661 - *5 - *4 responses: @@ -97050,10 +97092,10 @@ paths: application/json: schema: type: array - items: *268 + items: *270 examples: - default: *661 - '400': *662 + default: *662 + '400': *663 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97073,16 +97115,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 + - *273 responses: '200': description: Response content: application/json: - schema: *268 + schema: *270 examples: - default: &674 + default: &675 value: id: 40201 name: octo-name @@ -97195,8 +97237,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 + - *273 responses: '204': description: Response @@ -97226,8 +97268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 + - *273 - name: token description: package token schema: @@ -97259,8 +97301,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *270 - - *271 + - *272 + - *273 - *5 - *4 - name: state @@ -97280,7 +97322,7 @@ paths: application/json: schema: type: array - items: *272 + items: *274 examples: default: value: @@ -97329,15 +97371,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 - *273 + - *275 responses: '200': description: Response content: application/json: - schema: *272 + schema: *274 examples: default: value: @@ -97373,9 +97415,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 - *273 + - *275 responses: '204': description: Response @@ -97405,9 +97447,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *270 - - *271 + - *272 - *273 + - *275 responses: '204': description: Response @@ -97444,9 +97486,9 @@ paths: application/json: schema: type: array - items: *653 + items: *654 examples: - default: *663 + default: *664 headers: Link: *6 '304': *40 @@ -97559,7 +97601,7 @@ paths: type: array items: *86 examples: - default: &670 + default: &671 summary: Default response value: - id: 1296269 @@ -97877,9 +97919,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *360 examples: - default: *360 + default: *362 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -97917,9 +97959,9 @@ paths: application/json: schema: type: array - items: *511 + items: *512 examples: - default: *664 + default: *665 headers: Link: *6 '304': *40 @@ -97942,7 +97984,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *512 + - *513 responses: '204': description: Response @@ -97965,7 +98007,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *512 + - *513 responses: '204': description: Response @@ -97998,7 +98040,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Social account description: Social media account type: object @@ -98015,7 +98057,7 @@ paths: - provider - url examples: - default: &666 + default: &667 value: - provider: twitter url: https://twitter.com/github @@ -98078,9 +98120,9 @@ paths: application/json: schema: type: array - items: *665 + items: *666 examples: - default: *666 + default: *667 '422': *33 '304': *40 '404': *24 @@ -98168,7 +98210,7 @@ paths: application/json: schema: type: array - items: &667 + items: &668 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -98188,7 +98230,7 @@ paths: - title - created_at examples: - default: &675 + default: &676 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -98253,9 +98295,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: - default: &668 + default: &669 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -98285,7 +98327,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &669 + - &670 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -98297,9 +98339,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: - default: *668 + default: *669 '404': *24 '304': *40 '403': *41 @@ -98322,7 +98364,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *669 + - *670 responses: '204': description: Response @@ -98351,7 +98393,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &676 + - &677 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 @@ -98376,11 +98418,11 @@ paths: type: array items: *86 examples: - default-response: *670 + default-response: *671 application/vnd.github.v3.star+json: schema: type: array - items: &677 + items: &678 title: Starred Repository description: Starred Repository type: object @@ -98536,8 +98578,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response if this repository is starred by you @@ -98565,8 +98607,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -98590,8 +98632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *354 - - *355 + - *356 + - *357 responses: '204': description: Response @@ -98626,7 +98668,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 '304': *40 @@ -98663,7 +98705,7 @@ paths: application/json: schema: type: array - items: *337 + items: *339 examples: default: value: @@ -98750,10 +98792,10 @@ paths: application/json: schema: oneOf: + - *653 - *652 - - *651 examples: - default-response: &671 + default-response: &672 summary: Default response value: login: octocat @@ -98788,7 +98830,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &672 + response-with-git-hub-plan-information: &673 summary: Response with GitHub plan information value: login: octocat @@ -98864,7 +98906,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: example: ; rel="next" @@ -98900,11 +98942,11 @@ paths: application/json: schema: oneOf: + - *653 - *652 - - *651 examples: - default-response: *671 - response-with-git-hub-plan-information: *672 + default-response: *672 + response-with-git-hub-plan-information: *673 '404': *24 x-github: githubCloudOnly: false @@ -98933,9 +98975,9 @@ paths: application/json: schema: type: array - items: *268 + items: *270 examples: - default: *661 + default: *662 '403': *41 '401': *39 x-github: @@ -99227,7 +99269,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -99258,7 +99300,7 @@ paths: type: array items: *17 examples: - default: *267 + default: *269 headers: Link: *6 x-github: @@ -99348,9 +99390,9 @@ paths: application/json: schema: type: array - items: *654 + items: *655 examples: - default: *673 + default: *674 headers: Link: *6 x-github: @@ -99454,7 +99496,7 @@ paths: application/json: schema: *37 examples: - default: *510 + default: *511 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99540,7 +99582,7 @@ paths: type: array items: *72 examples: - default: *659 + default: *660 headers: Link: *6 x-github: @@ -99579,7 +99621,7 @@ paths: - docker - nuget - container - - *660 + - *661 - *8 - *5 - *4 @@ -99590,12 +99632,12 @@ paths: application/json: schema: type: array - items: *268 + items: *270 examples: - default: *661 + default: *662 '403': *41 '401': *39 - '400': *662 + '400': *663 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99615,17 +99657,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-for-a-user parameters: - - *270 - - *271 + - *272 + - *273 - *8 responses: '200': description: Response content: application/json: - schema: *268 + schema: *270 examples: - default: *674 + default: *675 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99646,8 +99688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-a-package-for-a-user parameters: - - *270 - - *271 + - *272 + - *273 - *8 responses: '204': @@ -99680,8 +99722,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-a-package-for-a-user parameters: - - *270 - - *271 + - *272 + - *273 - *8 - name: token description: package token @@ -99714,8 +99756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *270 - - *271 + - *272 + - *273 - *8 responses: '200': @@ -99724,7 +99766,7 @@ paths: application/json: schema: type: array - items: *272 + items: *274 examples: default: value: @@ -99782,16 +99824,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *270 - - *271 + - *272 - *273 + - *275 - *8 responses: '200': description: Response content: application/json: - schema: *272 + schema: *274 examples: default: value: @@ -99826,10 +99868,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#delete-package-version-for-a-user parameters: - - *270 - - *271 - - *8 + - *272 - *273 + - *8 + - *275 responses: '204': description: Response @@ -99861,10 +99903,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.19/rest/packages/packages#restore-package-version-for-a-user parameters: - - *270 - - *271 - - *8 + - *272 - *273 + - *8 + - *275 responses: '204': description: Response @@ -100103,7 +100145,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -100173,9 +100215,9 @@ paths: application/json: schema: type: array - items: *665 + items: *666 examples: - default: *666 + default: *667 headers: Link: *6 x-github: @@ -100205,9 +100247,9 @@ paths: application/json: schema: type: array - items: *667 + items: *668 examples: - default: *675 + default: *676 headers: Link: *6 x-github: @@ -100232,7 +100274,7 @@ paths: url: https://docs.github.com/enterprise-server@3.19/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *8 - - *676 + - *677 - *9 - *4 - *5 @@ -100244,11 +100286,11 @@ paths: schema: anyOf: - type: array - items: *677 + items: *678 - type: array items: *86 examples: - default-response: *670 + default-response: *671 headers: Link: *6 x-github: @@ -100279,7 +100321,7 @@ paths: type: array items: *195 examples: - default: *274 + default: *276 headers: Link: *6 x-github: @@ -100460,7 +100502,7 @@ webhooks: type: string enum: - disabled - enterprise: &678 + enterprise: &679 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -100529,7 +100571,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &679 + installation: &680 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -100550,7 +100592,7 @@ webhooks: required: - id - node_id - organization: &680 + organization: &681 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -100623,7 +100665,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &681 + repository: &682 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -101536,10 +101578,10 @@ webhooks: type: string enum: - enabled - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -101625,11 +101667,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - rule: &682 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + rule: &683 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-server@3.19/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -101862,11 +101904,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - rule: *682 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + rule: *683 sender: *17 required: - action @@ -102064,11 +102106,11 @@ webhooks: - everyone required: - from - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - rule: *682 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + rule: *683 sender: *17 required: - action @@ -102141,7 +102183,7 @@ webhooks: required: true content: application/json: - schema: &702 + schema: &703 title: Exemption request cancellation event type: object properties: @@ -102149,11 +102191,11 @@ webhooks: type: string enum: - cancelled - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - exemption_request: &683 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + exemption_request: &684 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -102427,7 +102469,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &684 + items: &685 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -102539,7 +102581,7 @@ webhooks: required: true content: application/json: - schema: &703 + schema: &704 title: Exemption request completed event type: object properties: @@ -102547,11 +102589,11 @@ webhooks: type: string enum: - completed - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - exemption_request: *683 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + exemption_request: *684 sender: *17 required: - action @@ -102623,7 +102665,7 @@ webhooks: required: true content: application/json: - schema: &700 + schema: &701 title: Exemption request created event type: object properties: @@ -102631,11 +102673,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - exemption_request: *683 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + exemption_request: *684 sender: *17 required: - action @@ -102707,7 +102749,7 @@ webhooks: required: true content: application/json: - schema: &704 + schema: &705 title: Exemption response dismissed event type: object properties: @@ -102715,12 +102757,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - exemption_request: *683 - exemption_response: *684 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + exemption_request: *684 + exemption_response: *685 sender: *17 required: - action @@ -102794,7 +102836,7 @@ webhooks: required: true content: application/json: - schema: &701 + schema: &702 title: Exemption response submitted event type: object properties: @@ -102802,12 +102844,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - exemption_request: *683 - exemption_response: *684 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + exemption_request: *684 + exemption_response: *685 sender: *17 required: - action @@ -102892,12 +102934,12 @@ webhooks: type: string cache_location: type: string - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 ref: type: string - repository: *681 + repository: *682 sender: *17 required: - cache_location @@ -102991,7 +103033,7 @@ webhooks: type: string enum: - completed - check_run: &686 + check_run: &687 title: CheckRun description: A check performed on the code of a given code change type: object @@ -103056,7 +103098,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *417 + items: *419 repository: *195 status: type: string @@ -103101,7 +103143,7 @@ webhooks: - examples: - neutral - deployment: *685 + deployment: *686 details_url: type: string examples: @@ -103161,7 +103203,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *417 + items: *419 started_at: type: string format: date-time @@ -103199,10 +103241,10 @@ webhooks: - output - app - pull_requests - installation: *679 - enterprise: *678 - organization: *680 - repository: *681 + installation: *680 + enterprise: *679 + organization: *681 + repository: *682 sender: *17 required: - check_run @@ -103605,11 +103647,11 @@ webhooks: type: string enum: - created - check_run: *686 - installation: *679 - enterprise: *678 - organization: *680 - repository: *681 + check_run: *687 + installation: *680 + enterprise: *679 + organization: *681 + repository: *682 sender: *17 required: - check_run @@ -104015,11 +104057,11 @@ webhooks: type: string enum: - requested_action - check_run: *686 - installation: *679 - enterprise: *678 - organization: *680 - repository: *681 + check_run: *687 + installation: *680 + enterprise: *679 + organization: *681 + repository: *682 requested_action: description: The action requested by the user. type: object @@ -104434,11 +104476,11 @@ webhooks: type: string enum: - rerequested - check_run: *686 - installation: *679 - enterprise: *678 - organization: *680 - repository: *681 + check_run: *687 + installation: *680 + enterprise: *679 + organization: *681 + repository: *682 sender: *17 required: - check_run @@ -105440,10 +105482,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -106162,10 +106204,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -106878,10 +106920,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -107060,7 +107102,7 @@ webhooks: required: - login - id - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107212,20 +107254,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &687 + commit_oid: &688 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: *678 - installation: *679 - organization: *680 - ref: &688 + enterprise: *679 + installation: *680 + organization: *681 + ref: &689 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: *681 + repository: *682 sender: *17 required: - action @@ -107402,7 +107444,7 @@ webhooks: required: - login - id - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107643,12 +107685,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *687 - enterprise: *678 - installation: *679 - organization: *680 - ref: *688 - repository: *681 + commit_oid: *688 + enterprise: *679 + installation: *680 + organization: *681 + ref: *689 + repository: *682 sender: *17 required: - action @@ -107756,7 +107798,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107941,12 +107983,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *687 - enterprise: *678 - installation: *679 - organization: *680 - ref: *688 - repository: *681 + commit_oid: *688 + enterprise: *679 + installation: *680 + organization: *681 + ref: *689 + repository: *682 sender: *17 required: - action @@ -108125,7 +108167,7 @@ webhooks: required: - login - id - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -108302,12 +108344,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *687 - enterprise: *678 - installation: *679 - organization: *680 - ref: *688 - repository: *681 + commit_oid: *688 + enterprise: *679 + installation: *680 + organization: *681 + ref: *689 + repository: *682 sender: *17 required: - action @@ -108418,7 +108460,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108607,9 +108649,9 @@ webhooks: type: - string - 'null' - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -108617,7 +108659,7 @@ webhooks: type: - string - 'null' - repository: *681 + repository: *682 sender: *17 required: - action @@ -108726,7 +108768,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *429 + dismissed_comment: *431 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108873,12 +108915,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *687 - enterprise: *678 - installation: *679 - organization: *680 - ref: *688 - repository: *681 + commit_oid: *688 + enterprise: *679 + installation: *680 + organization: *681 + ref: *689 + repository: *682 sender: *17 required: - action @@ -109150,10 +109192,10 @@ webhooks: - updated_at - author_association - body - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -109244,18 +109286,18 @@ webhooks: type: - string - 'null' - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *680 - pusher_type: &689 + organization: *681 + pusher_type: &690 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &690 + ref: &691 description: The [`git ref`](https://docs.github.com/enterprise-server@3.19/rest/git/refs#get-a-reference) resource. type: string @@ -109265,7 +109307,7 @@ webhooks: enum: - tag - branch - repository: *681 + repository: *682 sender: *17 required: - ref @@ -109348,9 +109390,9 @@ webhooks: enum: - created definition: *134 - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 sender: *17 required: - action @@ -109435,9 +109477,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 sender: *17 required: - action @@ -109515,9 +109557,9 @@ webhooks: enum: - promote_to_enterprise definition: *134 - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 sender: *17 required: - action @@ -109595,9 +109637,9 @@ webhooks: enum: - updated definition: *134 - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 sender: *17 required: - action @@ -109674,19 +109716,19 @@ webhooks: type: string enum: - updated - enterprise: *678 - installation: *679 - repository: *681 - organization: *680 + enterprise: *679 + installation: *680 + repository: *682 + organization: *681 sender: *17 new_property_values: type: array description: The new custom property values for the repository. - items: *287 + items: *289 old_property_values: type: array description: The old custom property values for the repository. - items: *287 + items: *289 required: - action - repository @@ -109772,18 +109814,18 @@ webhooks: title: delete event type: object properties: - enterprise: *678 - installation: *679 - organization: *680 - pusher_type: *689 - ref: *690 + enterprise: *679 + installation: *680 + organization: *681 + pusher_type: *690 + ref: *691 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *681 + repository: *682 sender: *17 required: - ref @@ -109877,11 +109919,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -109975,11 +110017,11 @@ webhooks: type: string enum: - auto_reopened - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110073,11 +110115,11 @@ webhooks: type: string enum: - created - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110169,11 +110211,11 @@ webhooks: type: string enum: - dismissed - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110265,11 +110307,11 @@ webhooks: type: string enum: - fixed - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110362,11 +110404,11 @@ webhooks: type: string enum: - reintroduced - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110458,11 +110500,11 @@ webhooks: type: string enum: - reopened - alert: *462 - installation: *679 - organization: *680 - enterprise: *678 - repository: *681 + alert: *464 + installation: *680 + organization: *681 + enterprise: *679 + repository: *682 sender: *17 required: - action @@ -110549,9 +110591,9 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - key: &691 + enterprise: *679 + installation: *680 + key: &692 description: The [`deploy key`](https://docs.github.com/enterprise-server@3.19/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -110589,8 +110631,8 @@ webhooks: - verified - created_at - read_only - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -110677,11 +110719,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - key: *691 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + key: *692 + organization: *681 + repository: *682 sender: *17 required: - action @@ -111263,12 +111305,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - workflow: &695 + workflow: &696 title: Workflow type: - object @@ -112016,13 +112058,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *468 + deployment: *470 pull_requests: type: array items: *151 - repository: *681 - organization: *680 - installation: *679 + repository: *682 + organization: *681 + installation: *680 sender: *17 responses: '200': @@ -112103,7 +112145,7 @@ webhooks: type: string enum: - approved - approver: &692 + approver: &693 type: object properties: avatar_url: @@ -112146,11 +112188,11 @@ webhooks: type: string comment: type: string - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - reviewers: &693 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + reviewers: &694 type: array items: type: object @@ -112231,7 +112273,7 @@ webhooks: sender: *17 since: type: string - workflow_job_run: &694 + workflow_job_run: &695 type: object properties: conclusion: @@ -112987,18 +113029,18 @@ webhooks: type: string enum: - rejected - approver: *692 + approver: *693 comment: type: string - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - reviewers: *693 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + reviewers: *694 sender: *17 since: type: string - workflow_job_run: *694 + workflow_job_run: *695 workflow_job_runs: type: array items: @@ -113725,13 +113767,13 @@ webhooks: type: string enum: - requested - enterprise: *678 + enterprise: *679 environment: type: string - installation: *679 - organization: *680 - repository: *681 - requestor: &705 + installation: *680 + organization: *681 + repository: *682 + requestor: &706 title: User type: - object @@ -115684,12 +115726,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - workflow: *695 + workflow: *696 workflow_run: title: Deployment Workflow Run type: @@ -116390,7 +116432,7 @@ webhooks: type: string enum: - answered - answer: &698 + answer: &699 type: object properties: author_association: @@ -116550,7 +116592,7 @@ webhooks: - created_at - updated_at - body - discussion: &696 + discussion: &697 title: Discussion description: A Discussion in a repository. type: object @@ -116867,10 +116909,10 @@ webhooks: - updated_at - active_lock_reason - body - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117007,11 +117049,11 @@ webhooks: - from required: - category - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117104,11 +117146,11 @@ webhooks: type: string enum: - closed - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117200,7 +117242,7 @@ webhooks: type: string enum: - created - comment: &697 + comment: &698 type: object properties: author_association: @@ -117360,11 +117402,11 @@ webhooks: - updated_at - body - reactions - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117457,12 +117499,12 @@ webhooks: type: string enum: - deleted - comment: *697 - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + comment: *698 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117567,12 +117609,12 @@ webhooks: - from required: - body - comment: *697 - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + comment: *698 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117666,11 +117708,11 @@ webhooks: type: string enum: - created - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117762,11 +117804,11 @@ webhooks: type: string enum: - deleted - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117876,11 +117918,11 @@ webhooks: type: string required: - from - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -117972,10 +118014,10 @@ webhooks: type: string enum: - labeled - discussion: *696 - enterprise: *678 - installation: *679 - label: &699 + discussion: *697 + enterprise: *679 + installation: *680 + label: &700 title: Label type: object properties: @@ -118008,8 +118050,8 @@ webhooks: - color - default - description - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118102,11 +118144,11 @@ webhooks: type: string enum: - locked - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118198,11 +118240,11 @@ webhooks: type: string enum: - pinned - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118294,11 +118336,11 @@ webhooks: type: string enum: - reopened - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118393,16 +118435,16 @@ webhooks: changes: type: object properties: - new_discussion: *696 - new_repository: *681 + new_discussion: *697 + new_repository: *682 required: - new_discussion - new_repository - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118495,10 +118537,10 @@ webhooks: type: string enum: - unanswered - discussion: *696 - old_answer: *698 - organization: *680 - repository: *681 + discussion: *697 + old_answer: *699 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118590,12 +118632,12 @@ webhooks: type: string enum: - unlabeled - discussion: *696 - enterprise: *678 - installation: *679 - label: *699 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118688,11 +118730,11 @@ webhooks: type: string enum: - unlocked - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118784,11 +118826,11 @@ webhooks: type: string enum: - unpinned - discussion: *696 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + discussion: *697 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -118857,7 +118899,7 @@ webhooks: required: true content: application/json: - schema: *700 + schema: *701 responses: '200': description: Return a 200 status to indicate that the data was received @@ -118920,7 +118962,7 @@ webhooks: required: true content: application/json: - schema: *701 + schema: *702 responses: '200': description: Return a 200 status to indicate that the data was received @@ -118983,7 +119025,7 @@ webhooks: required: true content: application/json: - schema: *702 + schema: *703 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119046,7 +119088,7 @@ webhooks: required: true content: application/json: - schema: *700 + schema: *701 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119109,7 +119151,7 @@ webhooks: required: true content: application/json: - schema: *701 + schema: *702 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119175,7 +119217,7 @@ webhooks: required: true content: application/json: - schema: *702 + schema: *703 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119241,7 +119283,7 @@ webhooks: required: true content: application/json: - schema: *703 + schema: *704 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119307,7 +119349,7 @@ webhooks: required: true content: application/json: - schema: *700 + schema: *701 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119373,7 +119415,7 @@ webhooks: required: true content: application/json: - schema: *704 + schema: *705 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119439,7 +119481,7 @@ webhooks: required: true content: application/json: - schema: *701 + schema: *702 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119662,7 +119704,7 @@ webhooks: required: true content: application/json: - schema: *702 + schema: *703 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119727,7 +119769,7 @@ webhooks: required: true content: application/json: - schema: *703 + schema: *704 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119792,7 +119834,7 @@ webhooks: required: true content: application/json: - schema: *700 + schema: *701 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119857,7 +119899,7 @@ webhooks: required: true content: application/json: - schema: *704 + schema: *705 responses: '200': description: Return a 200 status to indicate that the data was received @@ -119923,7 +119965,7 @@ webhooks: required: true content: application/json: - schema: *701 + schema: *702 responses: '200': description: Return a 200 status to indicate that the data was received @@ -120000,7 +120042,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *678 + enterprise: *679 forkee: description: The created [`repository`](https://docs.github.com/enterprise-server@3.19/rest/repos/repos#get-a-repository) resource. @@ -120678,9 +120720,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - forkee @@ -120846,9 +120888,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pages: description: The pages that were updated. type: array @@ -120886,7 +120928,7 @@ webhooks: - action - sha - html_url - repository: *681 + repository: *682 sender: *17 required: - pages @@ -120972,10 +121014,10 @@ webhooks: type: string enum: - created - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories: &706 + organization: *681 + repositories: &707 description: An array of repository objects that the installation can access. type: array @@ -121001,8 +121043,8 @@ webhooks: - name - full_name - private - repository: *681 - requester: *705 + repository: *682 + requester: *706 sender: *17 required: - action @@ -121087,11 +121129,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories: *706 - repository: *681 + organization: *681 + repositories: *707 + repository: *682 requester: type: - 'null' @@ -121178,11 +121220,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories: *706 - repository: *681 + organization: *681 + repositories: *707 + repository: *682 requester: type: - 'null' @@ -121269,10 +121311,10 @@ webhooks: type: string enum: - added - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories_added: &707 + organization: *681 + repositories_added: &708 description: An array of repository objects, which were added to the installation. type: array @@ -121318,15 +121360,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *681 - repository_selection: &708 + repository: *682 + repository_selection: &709 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *705 + requester: *706 sender: *17 required: - action @@ -121415,10 +121457,10 @@ webhooks: type: string enum: - removed - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories_added: *707 + organization: *681 + repositories_added: *708 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -121445,9 +121487,9 @@ webhooks: - name - full_name - private - repository: *681 - repository_selection: *708 - requester: *705 + repository: *682 + repository_selection: *709 + requester: *706 sender: *17 required: - action @@ -121536,11 +121578,11 @@ webhooks: type: string enum: - suspend - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories: *706 - repository: *681 + organization: *681 + repositories: *707 + repository: *682 requester: type: - 'null' @@ -121733,10 +121775,10 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 target_type: type: string @@ -121825,11 +121867,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *678 + enterprise: *679 installation: *37 - organization: *680 - repositories: *706 - repository: *681 + organization: *681 + repositories: *707 + repository: *682 requester: type: - 'null' @@ -122087,8 +122129,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) the comment belongs to. @@ -122905,8 +122947,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 state: description: State of the issue; either 'open' or 'closed' type: string @@ -122923,7 +122965,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -123267,8 +123309,8 @@ webhooks: - state - locked - assignee - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -123358,7 +123400,7 @@ webhooks: type: string enum: - deleted - comment: &709 + comment: &710 title: issue comment description: The [comment](https://docs.github.com/enterprise-server@3.19/rest/issues/comments#get-an-issue-comment) itself. @@ -123525,8 +123567,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) the comment belongs to. @@ -124339,8 +124381,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 state: description: State of the issue; either 'open' or 'closed' type: string @@ -124357,7 +124399,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -124703,8 +124745,8 @@ webhooks: - state - locked - assignee - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -124794,7 +124836,7 @@ webhooks: type: string enum: - edited - changes: &730 + changes: &731 description: The changes to the comment. type: object properties: @@ -124806,9 +124848,9 @@ webhooks: type: string required: - from - comment: *709 - enterprise: *678 - installation: *679 + comment: *710 + enterprise: *679 + installation: *680 issue: description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) the comment belongs to. @@ -125624,8 +125666,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 state: description: State of the issue; either 'open' or 'closed' type: string @@ -125642,7 +125684,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -125986,8 +126028,8 @@ webhooks: - state - locked - assignee - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -126077,9 +126119,9 @@ webhooks: type: number blocking_issue: *145 blocking_issue_repo: *86 - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -126168,9 +126210,9 @@ webhooks: type: number blocking_issue: *145 blocking_issue_repo: *86 - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -126258,9 +126300,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *145 - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -126349,9 +126391,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *145 - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -126441,10 +126483,10 @@ webhooks: type: string enum: - assigned - assignee: *705 - enterprise: *678 - installation: *679 - issue: &712 + assignee: *706 + enterprise: *679 + installation: *680 + issue: &713 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) itself. @@ -127256,11 +127298,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -127277,7 +127319,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -127380,8 +127422,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -127471,8 +127513,8 @@ webhooks: type: string enum: - closed - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) itself. @@ -128289,11 +128331,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128310,7 +128352,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -128556,8 +128598,8 @@ webhooks: required: - state - closed_at - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -128646,8 +128688,8 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -129455,11 +129497,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129476,7 +129518,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -129578,8 +129620,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -129668,8 +129710,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -130500,11 +130542,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130521,7 +130563,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -130602,7 +130644,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &710 + milestone: &711 title: Milestone description: A collection of related issues and pull requests. type: object @@ -130745,8 +130787,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -130855,8 +130897,8 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -131668,11 +131710,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131686,7 +131728,7 @@ webhooks: timeline_url: type: string format: uri - type: *642 + type: *643 title: description: Title of the issue type: string @@ -131792,9 +131834,9 @@ webhooks: - active_lock_reason - body - reactions - label: *699 - organization: *680 - repository: *681 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -131884,8 +131926,8 @@ webhooks: type: string enum: - labeled - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -132696,11 +132738,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132714,7 +132756,7 @@ webhooks: timeline_url: type: string format: uri - type: *642 + type: *643 title: description: Title of the issue type: string @@ -132820,9 +132862,9 @@ webhooks: - active_lock_reason - body - reactions - label: *699 - organization: *680 - repository: *681 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -132912,8 +132954,8 @@ webhooks: type: string enum: - locked - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -133749,11 +133791,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133767,7 +133809,7 @@ webhooks: timeline_url: type: string format: uri - type: *642 + type: *643 title: description: Title of the issue type: string @@ -133850,8 +133892,8 @@ webhooks: format: uri user_view_type: type: string - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -133940,8 +133982,8 @@ webhooks: type: string enum: - milestoned - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -134771,11 +134813,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134792,7 +134834,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -134872,9 +134914,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *710 - organization: *680 - repository: *681 + milestone: *711 + organization: *681 + repository: *682 sender: *17 required: - action @@ -135776,11 +135818,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135876,7 +135918,7 @@ webhooks: required: - login - id - type: *642 + type: *643 required: - id - number @@ -136357,8 +136399,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -137170,11 +137212,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137191,7 +137233,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -137293,8 +137335,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -137384,9 +137426,9 @@ webhooks: type: string enum: - pinned - enterprise: *678 - installation: *679 - issue: &711 + enterprise: *679 + installation: *680 + issue: &712 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) itself. @@ -138192,11 +138234,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138213,7 +138255,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -138315,8 +138357,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -138405,8 +138447,8 @@ webhooks: type: string enum: - reopened - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -139240,11 +139282,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139341,9 +139383,9 @@ webhooks: format: uri user_view_type: type: string - type: *642 - organization: *680 - repository: *681 + type: *643 + organization: *681 + repository: *682 sender: *17 required: - action @@ -140242,11 +140284,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140263,7 +140305,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -140845,11 +140887,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *678 - installation: *679 - issue: *711 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + issue: *712 + organization: *681 + repository: *682 sender: *17 required: - action @@ -140940,7 +140982,7 @@ webhooks: type: string enum: - unassigned - assignee: &733 + assignee: &734 title: User type: - object @@ -141012,11 +141054,11 @@ webhooks: required: - login - id - enterprise: *678 - installation: *679 - issue: *712 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + issue: *713 + organization: *681 + repository: *682 sender: *17 required: - action @@ -141105,12 +141147,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *678 - installation: *679 - issue: *712 - label: *699 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + issue: *713 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -141200,8 +141242,8 @@ webhooks: type: string enum: - unlocked - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.19/rest/issues/issues#get-an-issue) @@ -142035,11 +142077,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *639 - issue_dependencies_summary: *640 + sub_issues_summary: *640 + issue_dependencies_summary: *641 issue_field_values: type: array - items: *641 + items: *642 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142056,7 +142098,7 @@ webhooks: title: description: Title of the issue type: string - type: *642 + type: *643 updated_at: type: string format: date-time @@ -142136,8 +142178,8 @@ webhooks: format: uri user_view_type: type: string - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142227,11 +142269,11 @@ webhooks: type: string enum: - unpinned - enterprise: *678 - installation: *679 - issue: *711 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + issue: *712 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142320,11 +142362,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - label: *699 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142412,11 +142454,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - label: *699 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142536,11 +142578,11 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - label: *699 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + label: *700 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142654,11 +142696,11 @@ webhooks: type: string required: - to - enterprise: *678 - installation: *679 - member: *705 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + member: *706 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142770,11 +142812,11 @@ webhooks: type: - string - 'null' - enterprise: *678 - installation: *679 - member: *705 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + member: *706 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142863,11 +142905,11 @@ webhooks: type: string enum: - removed - enterprise: *678 - installation: *679 - member: *705 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + member: *706 + organization: *681 + repository: *682 sender: *17 required: - action @@ -142955,11 +142997,11 @@ webhooks: type: string enum: - added - enterprise: *678 - installation: *679 - member: *705 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + member: *706 + organization: *681 + repository: *682 scope: description: The scope of the membership. Currently, can only be `team`. @@ -143037,7 +143079,7 @@ webhooks: required: - login - id - team: &713 + team: &714 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -143277,11 +143319,11 @@ webhooks: type: string enum: - removed - enterprise: *678 - installation: *679 - member: *705 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + member: *706 + organization: *681 + repository: *682 scope: description: The scope of the membership. Currently, can only be `team`. @@ -143360,7 +143402,7 @@ webhooks: required: - login - id - team: *713 + team: *714 required: - action - scope @@ -143448,7 +143490,7 @@ webhooks: type: string enum: - deleted - enterprise: *678 + enterprise: *679 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -143557,12 +143599,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *679 - organization: *680 + installation: *680 + organization: *681 repository: anyOf: - type: 'null' - - *681 + - *682 sender: *17 required: - action @@ -143652,11 +143694,11 @@ webhooks: type: string enum: - closed - enterprise: *678 - installation: *679 - milestone: *710 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + milestone: *711 + organization: *681 + repository: *682 sender: *17 required: - action @@ -143745,9 +143787,9 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - milestone: &714 + enterprise: *679 + installation: *680 + milestone: &715 title: Milestone description: A collection of related issues and pull requests. type: object @@ -143889,8 +143931,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -143979,11 +144021,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - milestone: *710 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + milestone: *711 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144103,11 +144145,11 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - milestone: *710 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + milestone: *711 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144197,11 +144239,11 @@ webhooks: type: string enum: - opened - enterprise: *678 - installation: *679 - milestone: *714 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + milestone: *715 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144290,9 +144332,9 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - membership: &715 + enterprise: *679 + installation: *680 + membership: &716 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -144402,8 +144444,8 @@ webhooks: - role - organization_url - user - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144491,11 +144533,11 @@ webhooks: type: string enum: - member_added - enterprise: *678 - installation: *679 - membership: *715 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + membership: *716 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144584,8 +144626,8 @@ webhooks: type: string enum: - member_invited - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -144707,10 +144749,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 - user: *705 + user: *706 required: - action - invitation @@ -144798,11 +144840,11 @@ webhooks: type: string enum: - member_removed - enterprise: *678 - installation: *679 - membership: *715 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + membership: *716 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144899,11 +144941,11 @@ webhooks: properties: from: type: string - enterprise: *678 - installation: *679 - membership: *715 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + membership: *716 + organization: *681 + repository: *682 sender: *17 required: - action @@ -144989,9 +145031,9 @@ webhooks: type: string enum: - published - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 package: description: Information about the package. type: object @@ -145514,7 +145556,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &716 + items: &717 title: Ruby Gems metadata type: object properties: @@ -145611,7 +145653,7 @@ webhooks: - owner - package_version - registry - repository: *681 + repository: *682 sender: *17 required: - action @@ -145697,9 +145739,9 @@ webhooks: type: string enum: - updated - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 package: description: Information about the package. type: object @@ -146061,7 +146103,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *716 + items: *717 source_url: type: string format: uri @@ -146132,7 +146174,7 @@ webhooks: - owner - package_version - registry - repository: *681 + repository: *682 sender: *17 required: - action @@ -146323,12 +146365,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *678 + enterprise: *679 id: type: integer - installation: *679 - organization: *680 - repository: *681 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - id @@ -146405,7 +146447,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &717 + personal_access_token_request: &718 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -146555,10 +146597,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *678 - organization: *680 + enterprise: *679 + organization: *681 sender: *17 - installation: *679 + installation: *680 required: - action - personal_access_token_request @@ -146635,11 +146677,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *717 - enterprise: *678 - organization: *680 + personal_access_token_request: *718 + enterprise: *679 + organization: *681 sender: *17 - installation: *679 + installation: *680 required: - action - personal_access_token_request @@ -146715,11 +146757,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *717 - enterprise: *678 - organization: *680 + personal_access_token_request: *718 + enterprise: *679 + organization: *681 sender: *17 - installation: *679 + installation: *680 required: - action - personal_access_token_request @@ -146794,11 +146836,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *717 - organization: *680 - enterprise: *678 + personal_access_token_request: *718 + organization: *681 + enterprise: *679 sender: *17 - installation: *679 + installation: *680 required: - action - personal_access_token_request @@ -146913,7 +146955,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *718 + last_response: *719 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -146945,8 +146987,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 zen: description: Random string of GitHub zen. @@ -147201,10 +147243,10 @@ webhooks: - from required: - note - enterprise: *678 - installation: *679 - organization: *680 - project_card: &719 + enterprise: *679 + installation: *680 + organization: *681 + project_card: &720 title: Project Card type: object properties: @@ -147327,7 +147369,7 @@ webhooks: - creator - created_at - updated_at - repository: *681 + repository: *682 sender: *17 required: - action @@ -147418,11 +147460,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - project_card: *719 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project_card: *720 + repository: *682 sender: *17 required: - action @@ -147512,9 +147554,9 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 project_card: title: Project Card type: object @@ -147644,7 +147686,7 @@ webhooks: repository: anyOf: - type: 'null' - - *681 + - *682 sender: *17 required: - action @@ -147748,11 +147790,11 @@ webhooks: - from required: - note - enterprise: *678 - installation: *679 - organization: *680 - project_card: *719 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project_card: *720 + repository: *682 sender: *17 required: - action @@ -147856,9 +147898,9 @@ webhooks: - from required: - column_id - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 project_card: allOf: - title: Project Card @@ -148055,7 +148097,7 @@ webhooks: type: string required: - after_id - repository: *681 + repository: *682 sender: *17 required: - action @@ -148145,10 +148187,10 @@ webhooks: type: string enum: - closed - enterprise: *678 - installation: *679 - organization: *680 - project: &721 + enterprise: *679 + installation: *680 + organization: *681 + project: &722 title: Project type: object properties: @@ -148275,7 +148317,7 @@ webhooks: - creator - created_at - updated_at - repository: *681 + repository: *682 sender: *17 required: - action @@ -148365,10 +148407,10 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - project_column: &720 + enterprise: *679 + installation: *680 + organization: *681 + project_column: &721 title: Project Column type: object properties: @@ -148408,7 +148450,7 @@ webhooks: - name - created_at - updated_at - repository: *681 + repository: *682 sender: *17 required: - action @@ -148497,14 +148539,14 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - project_column: *720 + enterprise: *679 + installation: *680 + organization: *681 + project_column: *721 repository: anyOf: - type: 'null' - - *681 + - *682 sender: *17 required: - action @@ -148603,11 +148645,11 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - organization: *680 - project_column: *720 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project_column: *721 + repository: *682 sender: *17 required: - action @@ -148697,11 +148739,11 @@ webhooks: type: string enum: - moved - enterprise: *678 - installation: *679 - organization: *680 - project_column: *720 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project_column: *721 + repository: *682 sender: *17 required: - action @@ -148791,11 +148833,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - project: *721 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project: *722 + repository: *682 sender: *17 required: - action @@ -148885,14 +148927,14 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - project: *721 + enterprise: *679 + installation: *680 + organization: *681 + project: *722 repository: anyOf: - type: 'null' - - *681 + - *682 sender: *17 required: - action @@ -149003,11 +149045,11 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - organization: *680 - project: *721 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project: *722 + repository: *682 sender: *17 required: - action @@ -149096,11 +149138,11 @@ webhooks: type: string enum: - reopened - enterprise: *678 - installation: *679 - organization: *680 - project: *721 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + project: *722 + repository: *682 sender: *17 required: - action @@ -149191,9 +149233,9 @@ webhooks: type: string enum: - closed - installation: *679 - organization: *680 - projects_v2: &722 + installation: *680 + organization: *681 + projects_v2: &723 title: Projects v2 Project description: A projects v2 project type: object @@ -149440,9 +149482,9 @@ webhooks: type: string enum: - created - installation: *679 - organization: *680 - projects_v2: *722 + installation: *680 + organization: *681 + projects_v2: *723 sender: *17 required: - action @@ -149533,9 +149575,9 @@ webhooks: type: string enum: - deleted - installation: *679 - organization: *680 - projects_v2: *722 + installation: *680 + organization: *681 + projects_v2: *723 sender: *17 required: - action @@ -149666,9 +149708,9 @@ webhooks: type: string to: type: string - installation: *679 - organization: *680 - projects_v2: *722 + installation: *680 + organization: *681 + projects_v2: *723 sender: *17 required: - action @@ -149761,7 +149803,7 @@ webhooks: type: string enum: - archived - changes: &726 + changes: &727 type: object properties: archived_at: @@ -149777,9 +149819,9 @@ webhooks: - string - 'null' format: date-time - installation: *679 - organization: *680 - projects_v2_item: &723 + installation: *680 + organization: *681 + projects_v2_item: &724 title: Projects v2 Item description: An item belonging to a project type: object @@ -149936,9 +149978,9 @@ webhooks: - 'null' to: type: string - installation: *679 - organization: *680 - projects_v2_item: *723 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150030,9 +150072,9 @@ webhooks: type: string enum: - created - installation: *679 - organization: *680 - projects_v2_item: *723 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150123,9 +150165,9 @@ webhooks: type: string enum: - deleted - installation: *679 - organization: *680 - projects_v2_item: *723 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150240,7 +150282,7 @@ webhooks: oneOf: - type: string - type: integer - - &724 + - &725 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -150264,7 +150306,7 @@ webhooks: required: - id - name - - &725 + - &726 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -150304,8 +150346,8 @@ webhooks: oneOf: - type: string - type: integer - - *724 - *725 + - *726 type: - 'null' - string @@ -150328,9 +150370,9 @@ webhooks: - 'null' required: - body - installation: *679 - organization: *680 - projects_v2_item: *723 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150437,9 +150479,9 @@ webhooks: type: - string - 'null' - installation: *679 - organization: *680 - projects_v2_item: *723 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150532,10 +150574,10 @@ webhooks: type: string enum: - restored - changes: *726 - installation: *679 - organization: *680 - projects_v2_item: *723 + changes: *727 + installation: *680 + organization: *681 + projects_v2_item: *724 sender: *17 required: - action @@ -150627,9 +150669,9 @@ webhooks: type: string enum: - reopened - installation: *679 - organization: *680 - projects_v2: *722 + installation: *680 + organization: *681 + projects_v2: *723 sender: *17 required: - action @@ -150710,10 +150752,10 @@ webhooks: title: public event type: object properties: - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - repository @@ -150800,13 +150842,13 @@ webhooks: type: string enum: - assigned - assignee: *705 - enterprise: *678 - installation: *679 - number: &727 + assignee: *706 + enterprise: *679 + installation: *680 + number: &728 description: The pull request number. type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -153155,7 +153197,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -153247,11 +153289,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -155593,7 +155635,7 @@ webhooks: - draft reason: type: string - repository: *681 + repository: *682 sender: *17 required: - action @@ -155685,11 +155727,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -158031,7 +158073,7 @@ webhooks: - draft reason: type: string - repository: *681 + repository: *682 sender: *17 required: - action @@ -158123,11 +158165,11 @@ webhooks: type: string enum: - closed - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: &728 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: &729 allOf: - *151 - type: object @@ -158191,7 +158233,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *681 + repository: *682 sender: *17 required: - action @@ -158282,12 +158324,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: *728 - repository: *681 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: *729 + repository: *682 sender: *17 required: - action @@ -158377,11 +158419,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *678 + enterprise: *679 milestone: *149 - number: *727 - organization: *680 - pull_request: &729 + number: *728 + organization: *681 + pull_request: &730 title: Pull Request type: object properties: @@ -160708,7 +160750,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -160840,12 +160882,12 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: *728 - repository: *681 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: *729 + repository: *682 sender: *17 required: - action @@ -160935,11 +160977,11 @@ webhooks: type: string enum: - labeled - enterprise: *678 - installation: *679 - label: *699 - number: *727 - organization: *680 + enterprise: *679 + installation: *680 + label: *700 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -163287,7 +163329,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -163378,10 +163420,10 @@ webhooks: type: string enum: - locked - enterprise: *678 - installation: *679 - number: *727 - organization: *680 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -165727,7 +165769,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -165817,12 +165859,12 @@ webhooks: type: string enum: - milestoned - enterprise: *678 + enterprise: *679 milestone: *149 - number: *727 - organization: *680 - pull_request: *729 - repository: *681 + number: *728 + organization: *681 + pull_request: *730 + repository: *682 sender: *17 required: - action @@ -165911,12 +165953,12 @@ webhooks: type: string enum: - opened - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: *728 - repository: *681 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: *729 + repository: *682 sender: *17 required: - action @@ -166007,12 +166049,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: *728 - repository: *681 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: *729 + repository: *682 sender: *17 required: - action @@ -166102,12 +166144,12 @@ webhooks: type: string enum: - reopened - enterprise: *678 - installation: *679 - number: *727 - organization: *680 - pull_request: *728 - repository: *681 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 + pull_request: *729 + repository: *682 sender: *17 required: - action @@ -166492,9 +166534,9 @@ webhooks: - start_side - side - reactions - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: type: object properties: @@ -168724,7 +168766,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *681 + repository: *682 sender: *17 required: - action @@ -168814,7 +168856,7 @@ webhooks: type: string enum: - deleted - comment: &731 + comment: &732 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-server@3.19/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -169107,9 +169149,9 @@ webhooks: - start_side - side - reactions - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: type: object properties: @@ -171327,7 +171369,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *681 + repository: *682 sender: *17 required: - action @@ -171417,11 +171459,11 @@ webhooks: type: string enum: - edited - changes: *730 - comment: *731 - enterprise: *678 - installation: *679 - organization: *680 + changes: *731 + comment: *732 + enterprise: *679 + installation: *680 + organization: *681 pull_request: type: object properties: @@ -173642,7 +173684,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *681 + repository: *682 sender: *17 required: - action @@ -173733,9 +173775,9 @@ webhooks: type: string enum: - dismissed - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: title: Simple Pull Request type: object @@ -175968,7 +176010,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *681 + repository: *682 review: description: The review that was affected. type: object @@ -176229,9 +176271,9 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: title: Simple Pull Request type: object @@ -178345,8 +178387,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *681 - review: &732 + repository: *682 + review: &733 description: The review that was affected. type: object properties: @@ -178594,12 +178636,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: description: The pull request number. type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -180946,7 +180988,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 requested_reviewer: title: User type: @@ -181032,12 +181074,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: description: The pull request number. type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -183391,7 +183433,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 requested_team: title: Team description: Groups of organization members that gives permissions @@ -183596,12 +183638,12 @@ webhooks: type: string enum: - review_requested - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: description: The pull request number. type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -185950,7 +185992,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 requested_reviewer: title: User type: @@ -186037,12 +186079,12 @@ webhooks: type: string enum: - review_requested - enterprise: *678 - installation: *679 + enterprise: *679 + installation: *680 number: description: The pull request number. type: integer - organization: *680 + organization: *681 pull_request: title: Pull Request type: object @@ -188382,7 +188424,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 requested_team: title: Team description: Groups of organization members that gives permissions @@ -188576,9 +188618,9 @@ webhooks: type: string enum: - submitted - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: title: Simple Pull Request type: object @@ -190814,8 +190856,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *681 - review: *732 + repository: *682 + review: *733 sender: *17 required: - action @@ -190905,9 +190947,9 @@ webhooks: type: string enum: - resolved - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: title: Simple Pull Request type: object @@ -193038,7 +193080,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *681 + repository: *682 sender: *17 thread: type: object @@ -193445,9 +193487,9 @@ webhooks: type: string enum: - unresolved - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 pull_request: title: Simple Pull Request type: object @@ -195561,7 +195603,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *681 + repository: *682 sender: *17 thread: type: object @@ -195970,10 +196012,10 @@ webhooks: type: string before: type: string - enterprise: *678 - installation: *679 - number: *727 - organization: *680 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -198308,7 +198350,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -198400,11 +198442,11 @@ webhooks: type: string enum: - unassigned - assignee: *733 - enterprise: *678 - installation: *679 - number: *727 - organization: *680 + assignee: *734 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -200754,7 +200796,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -200843,11 +200885,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *678 - installation: *679 - label: *699 - number: *727 - organization: *680 + enterprise: *679 + installation: *680 + label: *700 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -203186,7 +203228,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -203277,10 +203319,10 @@ webhooks: type: string enum: - unlocked - enterprise: *678 - installation: *679 - number: *727 - organization: *680 + enterprise: *679 + installation: *680 + number: *728 + organization: *681 pull_request: title: Pull Request type: object @@ -205609,7 +205651,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *681 + repository: *682 sender: *17 required: - action @@ -205822,7 +205864,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *678 + enterprise: *679 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -205917,8 +205959,8 @@ webhooks: - url - author - committer - installation: *679 - organization: *680 + installation: *680 + organization: *681 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -206516,9 +206558,9 @@ webhooks: type: string enum: - published - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 registry_package: type: object properties: @@ -206995,7 +207037,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *716 + items: *717 summary: type: string tag_name: @@ -207051,7 +207093,7 @@ webhooks: - owner - package_version - registry - repository: *681 + repository: *682 sender: *17 required: - action @@ -207139,9 +207181,9 @@ webhooks: type: string enum: - updated - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 registry_package: type: object properties: @@ -207453,7 +207495,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *716 + items: *717 summary: type: string tag_name: @@ -207503,7 +207545,7 @@ webhooks: - owner - package_version - registry - repository: *681 + repository: *682 sender: *17 required: - action @@ -207590,10 +207632,10 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - release: &734 + enterprise: *679 + installation: *680 + organization: *681 + release: &735 title: Release description: The [release](https://docs.github.com/enterprise-server@3.19/rest/releases/releases/#get-a-release) object. @@ -207924,7 +207966,7 @@ webhooks: - updated_at - zipball_url - body - repository: *681 + repository: *682 sender: *17 required: - action @@ -208011,11 +208053,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - release: *734 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + release: *735 + repository: *682 sender: *17 required: - action @@ -208142,11 +208184,11 @@ webhooks: type: boolean required: - to - enterprise: *678 - installation: *679 - organization: *680 - release: *734 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + release: *735 + repository: *682 sender: *17 required: - action @@ -208234,9 +208276,9 @@ webhooks: type: string enum: - prereleased - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 release: title: Release description: The [release](https://docs.github.com/enterprise-server@3.19/rest/releases/releases/#get-a-release) @@ -208572,7 +208614,7 @@ webhooks: - string - 'null' format: uri - repository: *681 + repository: *682 sender: *17 required: - action @@ -208658,10 +208700,10 @@ webhooks: type: string enum: - published - enterprise: *678 - installation: *679 - organization: *680 - release: &735 + enterprise: *679 + installation: *680 + organization: *681 + release: &736 title: Release description: The [release](https://docs.github.com/enterprise-server@3.19/rest/releases/releases/#get-a-release) object. @@ -208994,7 +209036,7 @@ webhooks: - string - 'null' format: uri - repository: *681 + repository: *682 sender: *17 required: - action @@ -209080,11 +209122,11 @@ webhooks: type: string enum: - released - enterprise: *678 - installation: *679 - organization: *680 - release: *734 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + release: *735 + repository: *682 sender: *17 required: - action @@ -209170,11 +209212,11 @@ webhooks: type: string enum: - unpublished - enterprise: *678 - installation: *679 - organization: *680 - release: *735 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + release: *736 + repository: *682 sender: *17 required: - action @@ -209260,10 +209302,10 @@ webhooks: type: string enum: - anonymous_access_disabled - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209348,10 +209390,10 @@ webhooks: type: string enum: - anonymous_access_enabled - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209436,10 +209478,10 @@ webhooks: type: string enum: - archived - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209526,10 +209568,10 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209617,10 +209659,10 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209715,10 +209757,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209843,10 +209885,10 @@ webhooks: - 'null' items: type: string - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -209934,10 +209976,10 @@ webhooks: type: string enum: - privatized - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -210024,10 +210066,10 @@ webhooks: type: string enum: - publicized - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -210131,10 +210173,10 @@ webhooks: - name required: - repository - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -210214,11 +210256,11 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - repository_ruleset: *315 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + repository_ruleset: *317 sender: *17 required: - action @@ -210296,11 +210338,11 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - repository_ruleset: *315 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + repository_ruleset: *317 sender: *17 required: - action @@ -210378,11 +210420,11 @@ webhooks: type: string enum: - edited - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - repository_ruleset: *315 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + repository_ruleset: *317 changes: type: object properties: @@ -210401,16 +210443,16 @@ webhooks: properties: added: type: array - items: *289 + items: *291 deleted: type: array - items: *289 + items: *291 updated: type: array items: type: object properties: - condition: *289 + condition: *291 changes: type: object properties: @@ -210443,16 +210485,16 @@ webhooks: properties: added: type: array - items: *577 + items: *578 deleted: type: array - items: *577 + items: *578 updated: type: array items: type: object properties: - rule: *577 + rule: *578 changes: type: object properties: @@ -210699,10 +210741,10 @@ webhooks: - from required: - owner - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -210790,10 +210832,10 @@ webhooks: type: string enum: - unarchived - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -210881,7 +210923,7 @@ webhooks: type: string enum: - create - alert: &736 + alert: &737 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -211005,10 +211047,10 @@ webhooks: type: string enum: - open - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -211228,10 +211270,10 @@ webhooks: type: string enum: - dismissed - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -211319,11 +211361,11 @@ webhooks: type: string enum: - reopen - alert: *736 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + alert: *737 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -211535,10 +211577,10 @@ webhooks: enum: - fixed - open - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -211626,7 +211668,7 @@ webhooks: type: string enum: - created - alert: &737 + alert: &738 type: object properties: number: *123 @@ -211735,10 +211777,10 @@ webhooks: anyOf: - type: 'null' - *17 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -211829,11 +211871,11 @@ webhooks: type: string enum: - created - alert: *737 - installation: *679 - location: *738 - organization: *680 - repository: *681 + alert: *738 + installation: *680 + location: *739 + organization: *681 + repository: *682 sender: *17 required: - location @@ -212077,11 +212119,11 @@ webhooks: type: string enum: - reopened - alert: *737 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + alert: *738 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -212169,11 +212211,11 @@ webhooks: type: string enum: - resolved - alert: *737 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + alert: *738 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -212261,11 +212303,11 @@ webhooks: type: string enum: - validated - alert: *737 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + alert: *738 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -212395,10 +212437,10 @@ webhooks: - organization - enterprise - - repository: *681 - enterprise: *678 - installation: *679 - organization: *680 + repository: *682 + enterprise: *679 + installation: *680 + organization: *681 sender: *17 required: - action @@ -212486,11 +212528,11 @@ webhooks: type: string enum: - published - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - security_advisory: &739 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + security_advisory: &740 description: The details of the security advisory, including summary, description, and severity. type: object @@ -212686,11 +212728,11 @@ webhooks: type: string enum: - updated - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 - security_advisory: *739 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 + security_advisory: *740 sender: *17 required: - action @@ -212773,10 +212815,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -212972,11 +213014,11 @@ webhooks: from: type: object properties: - security_and_analysis: *288 - enterprise: *678 - installation: *679 - organization: *680 - repository: *358 + security_and_analysis: *290 + enterprise: *679 + installation: *680 + organization: *681 + repository: *360 sender: *17 required: - changes @@ -213064,12 +213106,12 @@ webhooks: type: string enum: - cancelled - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: &740 + sponsorship: &741 type: object properties: created_at: @@ -213384,12 +213426,12 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: *740 + sponsorship: *741 required: - action - sponsorship @@ -213487,12 +213529,12 @@ webhooks: type: string required: - from - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: *740 + sponsorship: *741 required: - action - changes @@ -213579,17 +213621,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &741 + effective_date: &742 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: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: *740 + sponsorship: *741 required: - action - sponsorship @@ -213673,7 +213715,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &742 + changes: &743 type: object properties: tier: @@ -213717,13 +213759,13 @@ webhooks: - from required: - tier - effective_date: *741 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + effective_date: *742 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: *740 + sponsorship: *741 required: - action - changes @@ -213810,13 +213852,13 @@ webhooks: type: string enum: - tier_changed - changes: *742 - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + changes: *743 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - sponsorship: *740 + sponsorship: *741 required: - action - changes @@ -213900,10 +213942,10 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 starred_at: description: 'The time the star was created. This is a timestamp @@ -213997,10 +214039,10 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 starred_at: description: 'The time the star was created. This is a timestamp @@ -214444,15 +214486,15 @@ webhooks: type: - string - 'null' - enterprise: *678 + enterprise: *679 id: description: The unique identifier of the status. type: integer - installation: *679 + installation: *680 name: type: string - organization: *680 - repository: *681 + organization: *681 + repository: *682 sender: *17 sha: description: The Commit SHA. @@ -214565,12 +214607,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - team: &743 + team: &744 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -214810,9 +214852,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 repository: title: Repository description: A git repository @@ -215282,7 +215324,7 @@ webhooks: - topics - visibility sender: *17 - team: *743 + team: *744 required: - action - team @@ -215368,9 +215410,9 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 repository: title: Repository description: A git repository @@ -215840,7 +215882,7 @@ webhooks: - topics - visibility sender: *17 - team: *743 + team: *744 required: - action - team @@ -215927,9 +215969,9 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 repository: title: Repository description: A git repository @@ -216399,7 +216441,7 @@ webhooks: - topics - visibility sender: *17 - team: *743 + team: *744 required: - action - team @@ -216553,9 +216595,9 @@ webhooks: - from required: - permissions - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 repository: title: Repository description: A git repository @@ -217025,7 +217067,7 @@ webhooks: - topics - visibility sender: *17 - team: *743 + team: *744 required: - action - changes @@ -217113,9 +217155,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *678 - installation: *679 - organization: *680 + enterprise: *679 + installation: *680 + organization: *681 repository: title: Repository description: A git repository @@ -217585,7 +217627,7 @@ webhooks: - topics - visibility sender: *17 - team: *743 + team: *744 required: - action - team @@ -217668,12 +217710,12 @@ webhooks: type: string enum: - created - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - user: *705 + user: *706 required: - action responses: @@ -217751,12 +217793,12 @@ webhooks: type: string enum: - deleted - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - user: *705 + user: *706 required: - action responses: @@ -217837,10 +217879,10 @@ webhooks: type: string enum: - started - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 required: - action @@ -217923,17 +217965,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *678 + enterprise: *679 inputs: type: - object - 'null' additionalProperties: true - installation: *679 - organization: *680 + installation: *680 + organization: *681 ref: type: string - repository: *681 + repository: *682 sender: *17 workflow: type: string @@ -218025,10 +218067,10 @@ webhooks: type: string enum: - completed - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 workflow_job: allOf: @@ -218284,7 +218326,7 @@ webhooks: type: string required: - conclusion - deployment: *468 + deployment: *470 required: - action - repository @@ -218373,10 +218415,10 @@ webhooks: type: string enum: - in_progress - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 workflow_job: allOf: @@ -218658,7 +218700,7 @@ webhooks: required: - status - steps - deployment: *468 + deployment: *470 required: - action - repository @@ -218747,10 +218789,10 @@ webhooks: type: string enum: - queued - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 workflow_job: type: object @@ -218896,7 +218938,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *468 + deployment: *470 required: - action - repository @@ -218985,10 +219027,10 @@ webhooks: type: string enum: - waiting - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 workflow_job: type: object @@ -219135,7 +219177,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *468 + deployment: *470 required: - action - repository @@ -219225,12 +219267,12 @@ webhooks: type: string enum: - completed - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - workflow: *695 + workflow: *696 workflow_run: title: Workflow Run type: object @@ -220259,12 +220301,12 @@ webhooks: type: string enum: - in_progress - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - workflow: *695 + workflow: *696 workflow_run: title: Workflow Run type: object @@ -221278,12 +221320,12 @@ webhooks: type: string enum: - requested - enterprise: *678 - installation: *679 - organization: *680 - repository: *681 + enterprise: *679 + installation: *680 + organization: *681 + repository: *682 sender: *17 - workflow: *695 + workflow: *696 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghes-3.19/ghes-3.19.2022-11-28.json b/descriptions-next/ghes-3.19/ghes-3.19.2022-11-28.json index a9c1941f6..bfced4131 100644 --- a/descriptions-next/ghes-3.19/ghes-3.19.2022-11-28.json +++ b/descriptions-next/ghes-3.19/ghes-3.19.2022-11-28.json @@ -22252,6 +22252,81 @@ } } }, + "/orgs/{org}/dismissal-requests/dependabot": { + "get": { + "summary": "List dismissal requests for Dependabot alerts for an organization", + "description": "Lists dismissal requests for Dependabot alerts in an organization.\n\nDelegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager,\nor have the appropriate permission to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/list-dismissal-requests-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-server@3.19/rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "dependabot", + "subcategory": "alert-dismissal-requests" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/repository-name-in-query" + }, + { + "$ref": "#/components/parameters/bypass-reviewer-name" + }, + { + "$ref": "#/components/parameters/bypass-requester-name" + }, + { + "$ref": "#/components/parameters/time-period" + }, + { + "$ref": "#/components/parameters/dismissal-request-status" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "A list of alert dismissal requests.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/dependabot-alert-dismissal-request" + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/dependabot-alert-dismissal-request-items" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "500": { + "$ref": "#/components/responses/internal_error" + } + } + } + }, "/orgs/{org}/dismissal-requests/secret-scanning": { "get": { "summary": "List alert dismissal requests for secret scanning for an org", @@ -115175,6 +115250,159 @@ } } }, + "dependabot-alert-dismissal-request": { + "title": "Dependabot alert dismissal request", + "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The unique identifier of the dismissal request." + }, + "number": { + "type": "integer", + "format": "int64", + "description": "The number uniquely identifying the dismissal request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the repository the dismissal request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the dismissal request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the dismissal request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who requested the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the dismissal request." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the dismissal request metadata.", + "items": { + "type": "object", + "properties": { + "reason": { + "type": "string", + "description": "The reason for the dismissal request." + }, + "alert_number": { + "type": "string", + "description": "The alert number." + }, + "alert_title": { + "type": "string", + "description": "The title of the alert." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the dismissal request.", + "examples": [ + "123" + ] + }, + "status": { + "type": "string", + "description": "The status of the dismissal request.", + "enum": [ + "pending", + "denied", + "approved", + "expired" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the dismissal request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the dismissal request.", + "items": { + "$ref": "#/components/schemas/dismissal-request-response" + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the dismissal request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/security/dependabot/1" + ] + } + } + }, "secret-scanning-dismissal-request": { "title": "Secret scanning alert dismissal request", "description": "A dismissal request made by a user asking to close a secret scanning alert in this repository.", @@ -128610,159 +128838,6 @@ "updated_at" ] }, - "dependabot-alert-dismissal-request": { - "title": "Dependabot alert dismissal request", - "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The unique identifier of the dismissal request." - }, - "number": { - "type": "integer", - "format": "int64", - "description": "The number uniquely identifying the dismissal request within its repository." - }, - "repository": { - "type": "object", - "description": "The repository the dismissal request is for.", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The ID of the repository the dismissal request is for." - }, - "name": { - "type": "string", - "description": "The name of the repository the dismissal request is for." - }, - "full_name": { - "type": "string", - "description": "The full name of the repository the dismissal request is for." - } - } - }, - "organization": { - "type": "object", - "description": "The organization associated with the repository the dismissal request is for.", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The ID of the organization." - }, - "name": { - "type": "string", - "description": "The name of the organization." - } - } - }, - "requester": { - "type": "object", - "description": "The user who requested the dismissal request.", - "properties": { - "actor_id": { - "type": "integer", - "format": "int64", - "description": "The ID of the GitHub user who requested the dismissal request." - }, - "actor_name": { - "type": "string", - "description": "The name of the GitHub user who requested the dismissal request." - } - } - }, - "request_type": { - "type": "string", - "description": "The type of request." - }, - "data": { - "type": [ - "array", - "null" - ], - "description": "Data describing the dismissal request metadata.", - "items": { - "type": "object", - "properties": { - "reason": { - "type": "string", - "description": "The reason for the dismissal request." - }, - "alert_number": { - "type": "string", - "description": "The alert number." - }, - "alert_title": { - "type": "string", - "description": "The title of the alert." - } - } - } - }, - "resource_identifier": { - "type": "string", - "description": "The unique identifier for the request type of the dismissal request.", - "examples": [ - "123" - ] - }, - "status": { - "type": "string", - "description": "The status of the dismissal request.", - "enum": [ - "pending", - "denied", - "approved", - "expired" - ] - }, - "requester_comment": { - "type": [ - "string", - "null" - ], - "description": "The comment the requester provided when creating the dismissal request." - }, - "expires_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the dismissal request will expire." - }, - "created_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the dismissal request was created." - }, - "responses": { - "type": [ - "array", - "null" - ], - "description": "The responses to the dismissal request.", - "items": { - "$ref": "#/components/schemas/dismissal-request-response" - } - }, - "url": { - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" - ] - }, - "html_url": { - "type": "string", - "description": "The URL to view the dismissal request in a browser.", - "format": "uri", - "examples": [ - "https://github.com/octo-org/smile/security/dependabot/1" - ] - } - } - }, "wait-timer": { "type": "integer", "description": "The amount of time to delay a job after the job is initially triggered. The time (in minutes) must be an integer between 0 and 43,200 (30 days).", @@ -284433,6 +284508,96 @@ } ] }, + "dependabot-alert-dismissal-request-items": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "no_bandwidth", + "alert_number": "1", + "alert_title": "lodash - GHSA-1234-abcd-5678" + } + ], + "resource_identifier": "1", + "status": "denied", + "requester_comment": "No bandwidth to fix this right now", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", + "html_url": "https://github.com/octo-org/smile/security/dependabot/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "tolerable_risk", + "alert_number": "2", + "alert_title": "axios - GHSA-5678-efgh-9012" + } + ], + "resource_identifier": "2", + "status": "approved", + "requester_comment": "Risk is acceptable for this internal tool", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 43, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "approved", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", + "html_url": "https://github.com/octo-org/smile/security/dependabot/2" + } + ] + }, "secret-scanning-dismissal-request-items": { "value": [ { @@ -294007,96 +294172,6 @@ "html_url": "https://github.com/octo-org/smile/code-scanning/alerts/1" } }, - "dependabot-alert-dismissal-request-items": { - "value": [ - { - "id": 21, - "number": 42, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "dependabot_alert_dismissal", - "data": [ - { - "reason": "no_bandwidth", - "alert_number": "1", - "alert_title": "lodash - GHSA-1234-abcd-5678" - } - ], - "resource_identifier": "1", - "status": "denied", - "requester_comment": "No bandwidth to fix this right now", - "expires_at": "2024-07-08T08:43:03Z", - "created_at": "2024-07-01T08:43:03Z", - "responses": [ - { - "id": 42, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "denied", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", - "html_url": "https://github.com/octo-org/smile/security/dependabot/1" - }, - { - "id": 12, - "number": 24, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "dependabot_alert_dismissal", - "data": [ - { - "reason": "tolerable_risk", - "alert_number": "2", - "alert_title": "axios - GHSA-5678-efgh-9012" - } - ], - "resource_identifier": "2", - "status": "approved", - "requester_comment": "Risk is acceptable for this internal tool", - "expires_at": "2024-07-08T07:43:03Z", - "created_at": "2024-07-01T07:43:03Z", - "responses": [ - { - "id": 43, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "approved", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", - "html_url": "https://github.com/octo-org/smile/security/dependabot/2" - } - ] - }, "dependabot-alert-dismissal-request-item": { "value": { "id": 21, diff --git a/descriptions-next/ghes-3.19/ghes-3.19.2022-11-28.yaml b/descriptions-next/ghes-3.19/ghes-3.19.2022-11-28.yaml index c9619a388..85bbfcd19 100644 --- a/descriptions-next/ghes-3.19/ghes-3.19.2022-11-28.yaml +++ b/descriptions-next/ghes-3.19/ghes-3.19.2022-11-28.yaml @@ -15949,6 +15949,53 @@ paths: "$ref": "#/components/responses/validation_failed" '500': "$ref": "#/components/responses/internal_error" + "/orgs/{org}/dismissal-requests/dependabot": + get: + summary: List dismissal requests for Dependabot alerts for an organization + description: |- + Lists dismissal requests for Dependabot alerts in an organization. + + Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, + or have the appropriate permission to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. + tags: + - dependabot + operationId: dependabot/list-dismissal-requests-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: dependabot + subcategory: alert-dismissal-requests + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/repository-name-in-query" + - "$ref": "#/components/parameters/bypass-reviewer-name" + - "$ref": "#/components/parameters/bypass-requester-name" + - "$ref": "#/components/parameters/time-period" + - "$ref": "#/components/parameters/dismissal-request-status" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: A list of alert dismissal requests. + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/dependabot-alert-dismissal-request" + examples: + default: + "$ref": "#/components/examples/dependabot-alert-dismissal-request-items" + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + '500': + "$ref": "#/components/responses/internal_error" "/orgs/{org}/dismissal-requests/secret-scanning": get: summary: List alert dismissal requests for secret scanning for an org @@ -82950,6 +82997,126 @@ components: format: uri examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 + dependabot-alert-dismissal-request: + title: Dependabot alert dismissal request + description: Alert dismissal request made by a user asking to dismiss a Dependabot + alert. + type: object + properties: + id: + type: integer + format: int64 + description: The unique identifier of the dismissal request. + number: + type: integer + format: int64 + description: The number uniquely identifying the dismissal request within + its repository. + repository: + type: object + description: The repository the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the repository the dismissal request is for. + name: + type: string + description: The name of the repository the dismissal request is for. + full_name: + type: string + description: The full name of the repository the dismissal request is + for. + organization: + type: object + description: The organization associated with the repository the dismissal + request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the dismissal request. + properties: + actor_id: + type: integer + format: int64 + description: The ID of the GitHub user who requested the dismissal request. + actor_name: + type: string + description: The name of the GitHub user who requested the dismissal + request. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the dismissal request metadata. + items: + type: object + properties: + reason: + type: string + description: The reason for the dismissal request. + alert_number: + type: string + description: The alert number. + alert_title: + type: string + description: The title of the alert. + resource_identifier: + type: string + description: The unique identifier for the request type of the dismissal + request. + examples: + - '123' + status: + type: string + description: The status of the dismissal request. + enum: + - pending + - denied + - approved + - expired + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating the dismissal + request. + expires_at: + type: string + format: date-time + description: The date and time the dismissal request will expire. + created_at: + type: string + format: date-time + description: The date and time the dismissal request was created. + responses: + type: + - array + - 'null' + description: The responses to the dismissal request. + items: + "$ref": "#/components/schemas/dismissal-request-response" + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: + type: string + description: The URL to view the dismissal request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/security/dependabot/1 secret-scanning-dismissal-request: title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning @@ -92736,126 +92903,6 @@ components: - url - created_at - updated_at - dependabot-alert-dismissal-request: - title: Dependabot alert dismissal request - description: Alert dismissal request made by a user asking to dismiss a Dependabot - alert. - type: object - properties: - id: - type: integer - format: int64 - description: The unique identifier of the dismissal request. - number: - type: integer - format: int64 - description: The number uniquely identifying the dismissal request within - its repository. - repository: - type: object - description: The repository the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the repository the dismissal request is for. - name: - type: string - description: The name of the repository the dismissal request is for. - full_name: - type: string - description: The full name of the repository the dismissal request is - for. - organization: - type: object - description: The organization associated with the repository the dismissal - request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the dismissal request. - properties: - actor_id: - type: integer - format: int64 - description: The ID of the GitHub user who requested the dismissal request. - actor_name: - type: string - description: The name of the GitHub user who requested the dismissal - request. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the dismissal request metadata. - items: - type: object - properties: - reason: - type: string - description: The reason for the dismissal request. - alert_number: - type: string - description: The alert number. - alert_title: - type: string - description: The title of the alert. - resource_identifier: - type: string - description: The unique identifier for the request type of the dismissal - request. - examples: - - '123' - status: - type: string - description: The status of the dismissal request. - enum: - - pending - - denied - - approved - - expired - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating the dismissal - request. - expires_at: - type: string - format: date-time - description: The date and time the dismissal request will expire. - created_at: - type: string - format: date-time - description: The date and time the dismissal request was created. - responses: - type: - - array - - 'null' - description: The responses to the dismissal request. - items: - "$ref": "#/components/schemas/dismissal-request-response" - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: - type: string - description: The URL to view the dismissal request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/security/dependabot/1 wait-timer: type: integer description: The amount of time to delay a job after the job is initially triggered. @@ -209189,6 +209236,70 @@ components: created_at: '2024-07-02T08:43:04Z' url: https://api.github.com/repos/octo-org/smile/dismissal-requests/code-scanning/2 html_url: https://github.com/octo-org/smile/code-scanning/alerts/2 + dependabot-alert-dismissal-request-items: + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: no_bandwidth + alert_number: '1' + alert_title: lodash - GHSA-1234-abcd-5678 + resource_identifier: '1' + status: denied + requester_comment: No bandwidth to fix this right now + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: https://github.com/octo-org/smile/security/dependabot/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: tolerable_risk + alert_number: '2' + alert_title: axios - GHSA-5678-efgh-9012 + resource_identifier: '2' + status: approved + requester_comment: Risk is acceptable for this internal tool + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 43 + reviewer: + actor_id: 4 + actor_name: octocat + status: approved + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 + html_url: https://github.com/octo-org/smile/security/dependabot/2 secret-scanning-dismissal-request-items: value: - id: 21 @@ -217347,70 +217458,6 @@ components: created_at: '2024-07-02T08:43:04Z' url: https://api.github.com/repos/octo-org/smile/dismissal-requests/code-scanning/1 html_url: https://github.com/octo-org/smile/code-scanning/alerts/1 - dependabot-alert-dismissal-request-items: - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: no_bandwidth - alert_number: '1' - alert_title: lodash - GHSA-1234-abcd-5678 - resource_identifier: '1' - status: denied - requester_comment: No bandwidth to fix this right now - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: https://github.com/octo-org/smile/security/dependabot/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: tolerable_risk - alert_number: '2' - alert_title: axios - GHSA-5678-efgh-9012 - resource_identifier: '2' - status: approved - requester_comment: Risk is acceptable for this internal tool - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 43 - reviewer: - actor_id: 4 - actor_name: octocat - status: approved - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 - html_url: https://github.com/octo-org/smile/security/dependabot/2 dependabot-alert-dismissal-request-item: value: id: 21 diff --git a/descriptions-next/ghes-3.19/ghes-3.19.json b/descriptions-next/ghes-3.19/ghes-3.19.json index a9c1941f6..bfced4131 100644 --- a/descriptions-next/ghes-3.19/ghes-3.19.json +++ b/descriptions-next/ghes-3.19/ghes-3.19.json @@ -22252,6 +22252,81 @@ } } }, + "/orgs/{org}/dismissal-requests/dependabot": { + "get": { + "summary": "List dismissal requests for Dependabot alerts for an organization", + "description": "Lists dismissal requests for Dependabot alerts in an organization.\n\nDelegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager,\nor have the appropriate permission to access this endpoint.\nPersonal access tokens (classic) need the `security_events` scope to use this endpoint.", + "tags": [ + "dependabot" + ], + "operationId": "dependabot/list-dismissal-requests-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-server@3.19/rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization" + }, + "x-github": { + "githubCloudOnly": true, + "enabledForGitHubApps": true, + "category": "dependabot", + "subcategory": "alert-dismissal-requests" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/repository-name-in-query" + }, + { + "$ref": "#/components/parameters/bypass-reviewer-name" + }, + { + "$ref": "#/components/parameters/bypass-requester-name" + }, + { + "$ref": "#/components/parameters/time-period" + }, + { + "$ref": "#/components/parameters/dismissal-request-status" + }, + { + "$ref": "#/components/parameters/per-page" + }, + { + "$ref": "#/components/parameters/page" + } + ], + "responses": { + "200": { + "description": "A list of alert dismissal requests.", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/dependabot-alert-dismissal-request" + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/dependabot-alert-dismissal-request-items" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "500": { + "$ref": "#/components/responses/internal_error" + } + } + } + }, "/orgs/{org}/dismissal-requests/secret-scanning": { "get": { "summary": "List alert dismissal requests for secret scanning for an org", @@ -115175,6 +115250,159 @@ } } }, + "dependabot-alert-dismissal-request": { + "title": "Dependabot alert dismissal request", + "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", + "type": "object", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The unique identifier of the dismissal request." + }, + "number": { + "type": "integer", + "format": "int64", + "description": "The number uniquely identifying the dismissal request within its repository." + }, + "repository": { + "type": "object", + "description": "The repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the repository the dismissal request is for." + }, + "name": { + "type": "string", + "description": "The name of the repository the dismissal request is for." + }, + "full_name": { + "type": "string", + "description": "The full name of the repository the dismissal request is for." + } + } + }, + "organization": { + "type": "object", + "description": "The organization associated with the repository the dismissal request is for.", + "properties": { + "id": { + "type": "integer", + "format": "int64", + "description": "The ID of the organization." + }, + "name": { + "type": "string", + "description": "The name of the organization." + } + } + }, + "requester": { + "type": "object", + "description": "The user who requested the dismissal request.", + "properties": { + "actor_id": { + "type": "integer", + "format": "int64", + "description": "The ID of the GitHub user who requested the dismissal request." + }, + "actor_name": { + "type": "string", + "description": "The name of the GitHub user who requested the dismissal request." + } + } + }, + "request_type": { + "type": "string", + "description": "The type of request." + }, + "data": { + "type": [ + "array", + "null" + ], + "description": "Data describing the dismissal request metadata.", + "items": { + "type": "object", + "properties": { + "reason": { + "type": "string", + "description": "The reason for the dismissal request." + }, + "alert_number": { + "type": "string", + "description": "The alert number." + }, + "alert_title": { + "type": "string", + "description": "The title of the alert." + } + } + } + }, + "resource_identifier": { + "type": "string", + "description": "The unique identifier for the request type of the dismissal request.", + "examples": [ + "123" + ] + }, + "status": { + "type": "string", + "description": "The status of the dismissal request.", + "enum": [ + "pending", + "denied", + "approved", + "expired" + ] + }, + "requester_comment": { + "type": [ + "string", + "null" + ], + "description": "The comment the requester provided when creating the dismissal request." + }, + "expires_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request will expire." + }, + "created_at": { + "type": "string", + "format": "date-time", + "description": "The date and time the dismissal request was created." + }, + "responses": { + "type": [ + "array", + "null" + ], + "description": "The responses to the dismissal request.", + "items": { + "$ref": "#/components/schemas/dismissal-request-response" + } + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" + ] + }, + "html_url": { + "type": "string", + "description": "The URL to view the dismissal request in a browser.", + "format": "uri", + "examples": [ + "https://github.com/octo-org/smile/security/dependabot/1" + ] + } + } + }, "secret-scanning-dismissal-request": { "title": "Secret scanning alert dismissal request", "description": "A dismissal request made by a user asking to close a secret scanning alert in this repository.", @@ -128610,159 +128838,6 @@ "updated_at" ] }, - "dependabot-alert-dismissal-request": { - "title": "Dependabot alert dismissal request", - "description": "Alert dismissal request made by a user asking to dismiss a Dependabot alert.", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The unique identifier of the dismissal request." - }, - "number": { - "type": "integer", - "format": "int64", - "description": "The number uniquely identifying the dismissal request within its repository." - }, - "repository": { - "type": "object", - "description": "The repository the dismissal request is for.", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The ID of the repository the dismissal request is for." - }, - "name": { - "type": "string", - "description": "The name of the repository the dismissal request is for." - }, - "full_name": { - "type": "string", - "description": "The full name of the repository the dismissal request is for." - } - } - }, - "organization": { - "type": "object", - "description": "The organization associated with the repository the dismissal request is for.", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "description": "The ID of the organization." - }, - "name": { - "type": "string", - "description": "The name of the organization." - } - } - }, - "requester": { - "type": "object", - "description": "The user who requested the dismissal request.", - "properties": { - "actor_id": { - "type": "integer", - "format": "int64", - "description": "The ID of the GitHub user who requested the dismissal request." - }, - "actor_name": { - "type": "string", - "description": "The name of the GitHub user who requested the dismissal request." - } - } - }, - "request_type": { - "type": "string", - "description": "The type of request." - }, - "data": { - "type": [ - "array", - "null" - ], - "description": "Data describing the dismissal request metadata.", - "items": { - "type": "object", - "properties": { - "reason": { - "type": "string", - "description": "The reason for the dismissal request." - }, - "alert_number": { - "type": "string", - "description": "The alert number." - }, - "alert_title": { - "type": "string", - "description": "The title of the alert." - } - } - } - }, - "resource_identifier": { - "type": "string", - "description": "The unique identifier for the request type of the dismissal request.", - "examples": [ - "123" - ] - }, - "status": { - "type": "string", - "description": "The status of the dismissal request.", - "enum": [ - "pending", - "denied", - "approved", - "expired" - ] - }, - "requester_comment": { - "type": [ - "string", - "null" - ], - "description": "The comment the requester provided when creating the dismissal request." - }, - "expires_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the dismissal request will expire." - }, - "created_at": { - "type": "string", - "format": "date-time", - "description": "The date and time the dismissal request was created." - }, - "responses": { - "type": [ - "array", - "null" - ], - "description": "The responses to the dismissal request.", - "items": { - "$ref": "#/components/schemas/dismissal-request-response" - } - }, - "url": { - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1" - ] - }, - "html_url": { - "type": "string", - "description": "The URL to view the dismissal request in a browser.", - "format": "uri", - "examples": [ - "https://github.com/octo-org/smile/security/dependabot/1" - ] - } - } - }, "wait-timer": { "type": "integer", "description": "The amount of time to delay a job after the job is initially triggered. The time (in minutes) must be an integer between 0 and 43,200 (30 days).", @@ -284433,6 +284508,96 @@ } ] }, + "dependabot-alert-dismissal-request-items": { + "value": [ + { + "id": 21, + "number": 42, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "no_bandwidth", + "alert_number": "1", + "alert_title": "lodash - GHSA-1234-abcd-5678" + } + ], + "resource_identifier": "1", + "status": "denied", + "requester_comment": "No bandwidth to fix this right now", + "expires_at": "2024-07-08T08:43:03Z", + "created_at": "2024-07-01T08:43:03Z", + "responses": [ + { + "id": 42, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "denied", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", + "html_url": "https://github.com/octo-org/smile/security/dependabot/1" + }, + { + "id": 12, + "number": 24, + "repository": { + "id": 1, + "name": "smile", + "full_name": "octo-org/smile" + }, + "organization": { + "id": 1, + "name": "octo-org" + }, + "requester": { + "actor_id": 12, + "actor_name": "monalisa" + }, + "request_type": "dependabot_alert_dismissal", + "data": [ + { + "reason": "tolerable_risk", + "alert_number": "2", + "alert_title": "axios - GHSA-5678-efgh-9012" + } + ], + "resource_identifier": "2", + "status": "approved", + "requester_comment": "Risk is acceptable for this internal tool", + "expires_at": "2024-07-08T07:43:03Z", + "created_at": "2024-07-01T07:43:03Z", + "responses": [ + { + "id": 43, + "reviewer": { + "actor_id": 4, + "actor_name": "octocat" + }, + "status": "approved", + "created_at": "2024-07-02T08:43:04Z" + } + ], + "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", + "html_url": "https://github.com/octo-org/smile/security/dependabot/2" + } + ] + }, "secret-scanning-dismissal-request-items": { "value": [ { @@ -294007,96 +294172,6 @@ "html_url": "https://github.com/octo-org/smile/code-scanning/alerts/1" } }, - "dependabot-alert-dismissal-request-items": { - "value": [ - { - "id": 21, - "number": 42, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "dependabot_alert_dismissal", - "data": [ - { - "reason": "no_bandwidth", - "alert_number": "1", - "alert_title": "lodash - GHSA-1234-abcd-5678" - } - ], - "resource_identifier": "1", - "status": "denied", - "requester_comment": "No bandwidth to fix this right now", - "expires_at": "2024-07-08T08:43:03Z", - "created_at": "2024-07-01T08:43:03Z", - "responses": [ - { - "id": 42, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "denied", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1", - "html_url": "https://github.com/octo-org/smile/security/dependabot/1" - }, - { - "id": 12, - "number": 24, - "repository": { - "id": 1, - "name": "smile", - "full_name": "octo-org/smile" - }, - "organization": { - "id": 1, - "name": "octo-org" - }, - "requester": { - "actor_id": 12, - "actor_name": "monalisa" - }, - "request_type": "dependabot_alert_dismissal", - "data": [ - { - "reason": "tolerable_risk", - "alert_number": "2", - "alert_title": "axios - GHSA-5678-efgh-9012" - } - ], - "resource_identifier": "2", - "status": "approved", - "requester_comment": "Risk is acceptable for this internal tool", - "expires_at": "2024-07-08T07:43:03Z", - "created_at": "2024-07-01T07:43:03Z", - "responses": [ - { - "id": 43, - "reviewer": { - "actor_id": 4, - "actor_name": "octocat" - }, - "status": "approved", - "created_at": "2024-07-02T08:43:04Z" - } - ], - "url": "https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2", - "html_url": "https://github.com/octo-org/smile/security/dependabot/2" - } - ] - }, "dependabot-alert-dismissal-request-item": { "value": { "id": 21, diff --git a/descriptions-next/ghes-3.19/ghes-3.19.yaml b/descriptions-next/ghes-3.19/ghes-3.19.yaml index c9619a388..85bbfcd19 100644 --- a/descriptions-next/ghes-3.19/ghes-3.19.yaml +++ b/descriptions-next/ghes-3.19/ghes-3.19.yaml @@ -15949,6 +15949,53 @@ paths: "$ref": "#/components/responses/validation_failed" '500': "$ref": "#/components/responses/internal_error" + "/orgs/{org}/dismissal-requests/dependabot": + get: + summary: List dismissal requests for Dependabot alerts for an organization + description: |- + Lists dismissal requests for Dependabot alerts in an organization. + + Delegated alert dismissal must be enabled on repositories in the org and the user must be an org admin, security manager, + or have the appropriate permission to access this endpoint. + Personal access tokens (classic) need the `security_events` scope to use this endpoint. + tags: + - dependabot + operationId: dependabot/list-dismissal-requests-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-server@3.19/rest/dependabot/alert-dismissal-requests#list-dismissal-requests-for-dependabot-alerts-for-an-organization + x-github: + githubCloudOnly: true + enabledForGitHubApps: true + category: dependabot + subcategory: alert-dismissal-requests + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/repository-name-in-query" + - "$ref": "#/components/parameters/bypass-reviewer-name" + - "$ref": "#/components/parameters/bypass-requester-name" + - "$ref": "#/components/parameters/time-period" + - "$ref": "#/components/parameters/dismissal-request-status" + - "$ref": "#/components/parameters/per-page" + - "$ref": "#/components/parameters/page" + responses: + '200': + description: A list of alert dismissal requests. + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/dependabot-alert-dismissal-request" + examples: + default: + "$ref": "#/components/examples/dependabot-alert-dismissal-request-items" + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + '500': + "$ref": "#/components/responses/internal_error" "/orgs/{org}/dismissal-requests/secret-scanning": get: summary: List alert dismissal requests for secret scanning for an org @@ -82950,6 +82997,126 @@ components: format: uri examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 + dependabot-alert-dismissal-request: + title: Dependabot alert dismissal request + description: Alert dismissal request made by a user asking to dismiss a Dependabot + alert. + type: object + properties: + id: + type: integer + format: int64 + description: The unique identifier of the dismissal request. + number: + type: integer + format: int64 + description: The number uniquely identifying the dismissal request within + its repository. + repository: + type: object + description: The repository the dismissal request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the repository the dismissal request is for. + name: + type: string + description: The name of the repository the dismissal request is for. + full_name: + type: string + description: The full name of the repository the dismissal request is + for. + organization: + type: object + description: The organization associated with the repository the dismissal + request is for. + properties: + id: + type: integer + format: int64 + description: The ID of the organization. + name: + type: string + description: The name of the organization. + requester: + type: object + description: The user who requested the dismissal request. + properties: + actor_id: + type: integer + format: int64 + description: The ID of the GitHub user who requested the dismissal request. + actor_name: + type: string + description: The name of the GitHub user who requested the dismissal + request. + request_type: + type: string + description: The type of request. + data: + type: + - array + - 'null' + description: Data describing the dismissal request metadata. + items: + type: object + properties: + reason: + type: string + description: The reason for the dismissal request. + alert_number: + type: string + description: The alert number. + alert_title: + type: string + description: The title of the alert. + resource_identifier: + type: string + description: The unique identifier for the request type of the dismissal + request. + examples: + - '123' + status: + type: string + description: The status of the dismissal request. + enum: + - pending + - denied + - approved + - expired + requester_comment: + type: + - string + - 'null' + description: The comment the requester provided when creating the dismissal + request. + expires_at: + type: string + format: date-time + description: The date and time the dismissal request will expire. + created_at: + type: string + format: date-time + description: The date and time the dismissal request was created. + responses: + type: + - array + - 'null' + description: The responses to the dismissal request. + items: + "$ref": "#/components/schemas/dismissal-request-response" + url: + type: string + format: uri + examples: + - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: + type: string + description: The URL to view the dismissal request in a browser. + format: uri + examples: + - https://github.com/octo-org/smile/security/dependabot/1 secret-scanning-dismissal-request: title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning @@ -92736,126 +92903,6 @@ components: - url - created_at - updated_at - dependabot-alert-dismissal-request: - title: Dependabot alert dismissal request - description: Alert dismissal request made by a user asking to dismiss a Dependabot - alert. - type: object - properties: - id: - type: integer - format: int64 - description: The unique identifier of the dismissal request. - number: - type: integer - format: int64 - description: The number uniquely identifying the dismissal request within - its repository. - repository: - type: object - description: The repository the dismissal request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the repository the dismissal request is for. - name: - type: string - description: The name of the repository the dismissal request is for. - full_name: - type: string - description: The full name of the repository the dismissal request is - for. - organization: - type: object - description: The organization associated with the repository the dismissal - request is for. - properties: - id: - type: integer - format: int64 - description: The ID of the organization. - name: - type: string - description: The name of the organization. - requester: - type: object - description: The user who requested the dismissal request. - properties: - actor_id: - type: integer - format: int64 - description: The ID of the GitHub user who requested the dismissal request. - actor_name: - type: string - description: The name of the GitHub user who requested the dismissal - request. - request_type: - type: string - description: The type of request. - data: - type: - - array - - 'null' - description: Data describing the dismissal request metadata. - items: - type: object - properties: - reason: - type: string - description: The reason for the dismissal request. - alert_number: - type: string - description: The alert number. - alert_title: - type: string - description: The title of the alert. - resource_identifier: - type: string - description: The unique identifier for the request type of the dismissal - request. - examples: - - '123' - status: - type: string - description: The status of the dismissal request. - enum: - - pending - - denied - - approved - - expired - requester_comment: - type: - - string - - 'null' - description: The comment the requester provided when creating the dismissal - request. - expires_at: - type: string - format: date-time - description: The date and time the dismissal request will expire. - created_at: - type: string - format: date-time - description: The date and time the dismissal request was created. - responses: - type: - - array - - 'null' - description: The responses to the dismissal request. - items: - "$ref": "#/components/schemas/dismissal-request-response" - url: - type: string - format: uri - examples: - - https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: - type: string - description: The URL to view the dismissal request in a browser. - format: uri - examples: - - https://github.com/octo-org/smile/security/dependabot/1 wait-timer: type: integer description: The amount of time to delay a job after the job is initially triggered. @@ -209189,6 +209236,70 @@ components: created_at: '2024-07-02T08:43:04Z' url: https://api.github.com/repos/octo-org/smile/dismissal-requests/code-scanning/2 html_url: https://github.com/octo-org/smile/code-scanning/alerts/2 + dependabot-alert-dismissal-request-items: + value: + - id: 21 + number: 42 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: no_bandwidth + alert_number: '1' + alert_title: lodash - GHSA-1234-abcd-5678 + resource_identifier: '1' + status: denied + requester_comment: No bandwidth to fix this right now + expires_at: '2024-07-08T08:43:03Z' + created_at: '2024-07-01T08:43:03Z' + responses: + - id: 42 + reviewer: + actor_id: 4 + actor_name: octocat + status: denied + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 + html_url: https://github.com/octo-org/smile/security/dependabot/1 + - id: 12 + number: 24 + repository: + id: 1 + name: smile + full_name: octo-org/smile + organization: + id: 1 + name: octo-org + requester: + actor_id: 12 + actor_name: monalisa + request_type: dependabot_alert_dismissal + data: + - reason: tolerable_risk + alert_number: '2' + alert_title: axios - GHSA-5678-efgh-9012 + resource_identifier: '2' + status: approved + requester_comment: Risk is acceptable for this internal tool + expires_at: '2024-07-08T07:43:03Z' + created_at: '2024-07-01T07:43:03Z' + responses: + - id: 43 + reviewer: + actor_id: 4 + actor_name: octocat + status: approved + created_at: '2024-07-02T08:43:04Z' + url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 + html_url: https://github.com/octo-org/smile/security/dependabot/2 secret-scanning-dismissal-request-items: value: - id: 21 @@ -217347,70 +217458,6 @@ components: created_at: '2024-07-02T08:43:04Z' url: https://api.github.com/repos/octo-org/smile/dismissal-requests/code-scanning/1 html_url: https://github.com/octo-org/smile/code-scanning/alerts/1 - dependabot-alert-dismissal-request-items: - value: - - id: 21 - number: 42 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: no_bandwidth - alert_number: '1' - alert_title: lodash - GHSA-1234-abcd-5678 - resource_identifier: '1' - status: denied - requester_comment: No bandwidth to fix this right now - expires_at: '2024-07-08T08:43:03Z' - created_at: '2024-07-01T08:43:03Z' - responses: - - id: 42 - reviewer: - actor_id: 4 - actor_name: octocat - status: denied - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/1 - html_url: https://github.com/octo-org/smile/security/dependabot/1 - - id: 12 - number: 24 - repository: - id: 1 - name: smile - full_name: octo-org/smile - organization: - id: 1 - name: octo-org - requester: - actor_id: 12 - actor_name: monalisa - request_type: dependabot_alert_dismissal - data: - - reason: tolerable_risk - alert_number: '2' - alert_title: axios - GHSA-5678-efgh-9012 - resource_identifier: '2' - status: approved - requester_comment: Risk is acceptable for this internal tool - expires_at: '2024-07-08T07:43:03Z' - created_at: '2024-07-01T07:43:03Z' - responses: - - id: 43 - reviewer: - actor_id: 4 - actor_name: octocat - status: approved - created_at: '2024-07-02T08:43:04Z' - url: https://api.github.com/repos/octo-org/smile/dismissal-requests/dependabot/2 - html_url: https://github.com/octo-org/smile/security/dependabot/2 dependabot-alert-dismissal-request-item: value: id: 21