diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 80324f7d6..5ef3dae15 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -44075,6 +44075,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + "response-if-content-is-a-file-github-object": { + "summary": "Content is a file using the object media type" + }, + "response-if-content-is-a-directory-github-object": { + "summary": "Content is a directory using the object media type" + }, + "response-if-content-is-a-file": { + "summary": "Content is a file" + }, + "response-if-content-is-a-directory": { + "summary": "Content is a directory" + }, + "response-if-content-is-a-symlink": { + "summary": "Content is a symlink" + }, + "response-if-content-is-a-submodule": { + "summary": "Content is a submodule" + } + } + } + } + }, "responses": { "200": { "description": "Response", @@ -44084,10 +44111,10 @@ "$ref": "#/components/schemas/content-tree" }, "examples": { - "response-if-content-is-a-file": { + "response-if-content-is-a-file-github-object": { "$ref": "#/components/examples/content-file-response-if-content-is-a-file" }, - "response-if-content-is-a-directory": { + "response-if-content-is-a-directory-github-object": { "$ref": "#/components/examples/content-file-response-if-content-is-a-directory-object" } } @@ -44770,10 +44797,26 @@ "type": "string", "description": "An optional comment associated with dismissing the alert.", "maxLength": 280 + }, + "assignees": { + "type": "array", + "description": "Usernames to assign to this Dependabot Alert.\nPass one or more user logins to _replace_ the set of assignees on this alert.\nSend an empty array (`[]`) to clear all assignees from the alert.", + "items": { + "type": "string" + } } }, - "required": [ - "state" + "anyOf": [ + { + "required": [ + "state" + ] + }, + { + "required": [ + "assignees" + ] + } ], "additionalProperties": false }, @@ -63028,186 +63071,6 @@ } } }, - "/repos/{owner}/{repo}/tags/protection": { - "get": { - "summary": "Closing down - List tag protection states for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#get-all-repository-rulesets)\" endpoint instead.\n\nThis returns the tag protection states of a repository.\n\nThis information is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/list-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository" - }, - "parameters": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/tag-protection" - } - }, - "examples": { - "default": { - "$ref": "#/components/examples/tag-protection-items" - } - } - } - } - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - }, - "post": { - "summary": "Closing down - Create a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#create-a-repository-ruleset)\" endpoint instead.\n\nThis creates a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/create-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository" - }, - "parameters": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "pattern": { - "type": "string", - "description": "An optional glob pattern to match against when enforcing tag protection." - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "pattern": "v1.*" - } - } - } - } - } - }, - "responses": { - "201": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/tag-protection" - }, - "examples": { - "default": { - "$ref": "#/components/examples/tag-protection" - } - } - } - } - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": { - "delete": { - "summary": "Closing down - Delete a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset)\" endpoint instead.\n\nThis deletes a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/delete-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository" - }, - "parameters": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - }, - { - "$ref": "#/components/parameters/tag-protection-id" - } - ], - "responses": { - "204": { - "description": "Response" - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, "/repos/{owner}/{repo}/tarball/{ref}": { "get": { "summary": "Download a repository archive (tar)", @@ -134256,36 +134119,6 @@ "tarball_url" ] }, - "tag-protection": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - }, "topic": { "title": "Topic", "description": "A topic aggregates entities that are related to a subject.", @@ -308633,19 +308466,6 @@ } ] }, - "tag-protection-items": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - }, - "tag-protection": { - "value": { - "enabled": true - } - }, "topic": { "value": { "names": [ @@ -316099,15 +315919,6 @@ "type": "integer" } }, - "tag-protection-id": { - "name": "tag_protection_id", - "description": "The unique identifier of the tag protection.", - "in": "path", - "required": true, - "schema": { - "type": "integer" - } - }, "per": { "name": "per", "description": "The time frame to display results for.", diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index 536dd918e..0ddc28320 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -32160,6 +32160,23 @@ paths: required: false schema: type: string + requestBody: + required: false + content: + application/json: + examples: + response-if-content-is-a-file-github-object: + summary: Content is a file using the object media type + response-if-content-is-a-directory-github-object: + summary: Content is a directory using the object media type + response-if-content-is-a-file: + summary: Content is a file + response-if-content-is-a-directory: + summary: Content is a directory + response-if-content-is-a-symlink: + summary: Content is a symlink + response-if-content-is-a-submodule: + summary: Content is a submodule responses: '200': description: Response @@ -32168,9 +32185,9 @@ paths: schema: "$ref": "#/components/schemas/content-tree" examples: - response-if-content-is-a-file: + response-if-content-is-a-file-github-object: "$ref": "#/components/examples/content-file-response-if-content-is-a-file" - response-if-content-is-a-directory: + response-if-content-is-a-directory-github-object: "$ref": "#/components/examples/content-file-response-if-content-is-a-directory-object" application/json: schema: @@ -32639,8 +32656,19 @@ paths: description: An optional comment associated with dismissing the alert. maxLength: 280 - required: - - state + assignees: + type: array + description: |- + Usernames to assign to this Dependabot Alert. + Pass one or more user logins to _replace_ the set of assignees on this alert. + Send an empty array (`[]`) to clear all assignees from the alert. + items: + type: string + anyOf: + - required: + - state + - required: + - assignees additionalProperties: false examples: default: @@ -45707,139 +45735,6 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos - "/repos/{owner}/{repo}/tags/protection": - get: - summary: Closing down - List tag protection states for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#get-all-repository-rulesets)" endpoint instead. - - This returns the tag protection states of a repository. - - This information is only available to repository administrators. - tags: - - repos - operationId: repos/list-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository - parameters: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: - "$ref": "#/components/schemas/tag-protection" - examples: - default: - "$ref": "#/components/examples/tag-protection-items" - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - post: - summary: Closing down - Create a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#create-a-repository-ruleset)" endpoint instead. - - This creates a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/create-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository - parameters: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - pattern: - type: string - description: An optional glob pattern to match against when enforcing - tag protection. - required: - - pattern - examples: - default: - value: - pattern: v1.* - responses: - '201': - description: Response - content: - application/json: - schema: - "$ref": "#/components/schemas/tag-protection" - examples: - default: - "$ref": "#/components/examples/tag-protection" - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": - delete: - summary: Closing down - Delete a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset)" endpoint instead. - - This deletes a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/delete-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository - parameters: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - - "$ref": "#/components/parameters/tag-protection-id" - responses: - '204': - description: Response - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true "/repos/{owner}/{repo}/tarball/{ref}": get: summary: Download a repository archive (tar) @@ -98853,28 +98748,6 @@ components: - commit - zipball_url - tarball_url - tag-protection: - title: Tag protection - description: Tag protection - type: object - properties: - id: - type: integer - example: 2 - created_at: - type: string - example: '2011-01-26T19:01:12Z' - updated_at: - type: string - example: '2011-01-26T19:01:12Z' - enabled: - type: boolean - example: true - pattern: - type: string - example: v1.* - required: - - pattern topic: title: Topic description: A topic aggregates entities that are related to a subject. @@ -233362,13 +233235,6 @@ components: zipball_url: https://github.com/octocat/Hello-World/zipball/v0.1 tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= - tag-protection-items: - value: - - id: 2 - pattern: v1.* - tag-protection: - value: - enabled: true topic: value: names: @@ -239923,13 +239789,6 @@ components: required: true schema: type: integer - tag-protection-id: - name: tag_protection_id - description: The unique identifier of the tag protection. - in: path - required: true - schema: - type: integer per: name: per description: The time frame to display results for. diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 80324f7d6..5ef3dae15 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -44075,6 +44075,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + "response-if-content-is-a-file-github-object": { + "summary": "Content is a file using the object media type" + }, + "response-if-content-is-a-directory-github-object": { + "summary": "Content is a directory using the object media type" + }, + "response-if-content-is-a-file": { + "summary": "Content is a file" + }, + "response-if-content-is-a-directory": { + "summary": "Content is a directory" + }, + "response-if-content-is-a-symlink": { + "summary": "Content is a symlink" + }, + "response-if-content-is-a-submodule": { + "summary": "Content is a submodule" + } + } + } + } + }, "responses": { "200": { "description": "Response", @@ -44084,10 +44111,10 @@ "$ref": "#/components/schemas/content-tree" }, "examples": { - "response-if-content-is-a-file": { + "response-if-content-is-a-file-github-object": { "$ref": "#/components/examples/content-file-response-if-content-is-a-file" }, - "response-if-content-is-a-directory": { + "response-if-content-is-a-directory-github-object": { "$ref": "#/components/examples/content-file-response-if-content-is-a-directory-object" } } @@ -44770,10 +44797,26 @@ "type": "string", "description": "An optional comment associated with dismissing the alert.", "maxLength": 280 + }, + "assignees": { + "type": "array", + "description": "Usernames to assign to this Dependabot Alert.\nPass one or more user logins to _replace_ the set of assignees on this alert.\nSend an empty array (`[]`) to clear all assignees from the alert.", + "items": { + "type": "string" + } } }, - "required": [ - "state" + "anyOf": [ + { + "required": [ + "state" + ] + }, + { + "required": [ + "assignees" + ] + } ], "additionalProperties": false }, @@ -63028,186 +63071,6 @@ } } }, - "/repos/{owner}/{repo}/tags/protection": { - "get": { - "summary": "Closing down - List tag protection states for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#get-all-repository-rulesets)\" endpoint instead.\n\nThis returns the tag protection states of a repository.\n\nThis information is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/list-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository" - }, - "parameters": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/tag-protection" - } - }, - "examples": { - "default": { - "$ref": "#/components/examples/tag-protection-items" - } - } - } - } - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - }, - "post": { - "summary": "Closing down - Create a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#create-a-repository-ruleset)\" endpoint instead.\n\nThis creates a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/create-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository" - }, - "parameters": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "pattern": { - "type": "string", - "description": "An optional glob pattern to match against when enforcing tag protection." - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "pattern": "v1.*" - } - } - } - } - } - }, - "responses": { - "201": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/tag-protection" - }, - "examples": { - "default": { - "$ref": "#/components/examples/tag-protection" - } - } - } - } - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": { - "delete": { - "summary": "Closing down - Delete a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset)\" endpoint instead.\n\nThis deletes a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/delete-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository" - }, - "parameters": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - }, - { - "$ref": "#/components/parameters/tag-protection-id" - } - ], - "responses": { - "204": { - "description": "Response" - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, "/repos/{owner}/{repo}/tarball/{ref}": { "get": { "summary": "Download a repository archive (tar)", @@ -134256,36 +134119,6 @@ "tarball_url" ] }, - "tag-protection": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - }, "topic": { "title": "Topic", "description": "A topic aggregates entities that are related to a subject.", @@ -308633,19 +308466,6 @@ } ] }, - "tag-protection-items": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - }, - "tag-protection": { - "value": { - "enabled": true - } - }, "topic": { "value": { "names": [ @@ -316099,15 +315919,6 @@ "type": "integer" } }, - "tag-protection-id": { - "name": "tag_protection_id", - "description": "The unique identifier of the tag protection.", - "in": "path", - "required": true, - "schema": { - "type": "integer" - } - }, "per": { "name": "per", "description": "The time frame to display results for.", diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index 536dd918e..0ddc28320 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -32160,6 +32160,23 @@ paths: required: false schema: type: string + requestBody: + required: false + content: + application/json: + examples: + response-if-content-is-a-file-github-object: + summary: Content is a file using the object media type + response-if-content-is-a-directory-github-object: + summary: Content is a directory using the object media type + response-if-content-is-a-file: + summary: Content is a file + response-if-content-is-a-directory: + summary: Content is a directory + response-if-content-is-a-symlink: + summary: Content is a symlink + response-if-content-is-a-submodule: + summary: Content is a submodule responses: '200': description: Response @@ -32168,9 +32185,9 @@ paths: schema: "$ref": "#/components/schemas/content-tree" examples: - response-if-content-is-a-file: + response-if-content-is-a-file-github-object: "$ref": "#/components/examples/content-file-response-if-content-is-a-file" - response-if-content-is-a-directory: + response-if-content-is-a-directory-github-object: "$ref": "#/components/examples/content-file-response-if-content-is-a-directory-object" application/json: schema: @@ -32639,8 +32656,19 @@ paths: description: An optional comment associated with dismissing the alert. maxLength: 280 - required: - - state + assignees: + type: array + description: |- + Usernames to assign to this Dependabot Alert. + Pass one or more user logins to _replace_ the set of assignees on this alert. + Send an empty array (`[]`) to clear all assignees from the alert. + items: + type: string + anyOf: + - required: + - state + - required: + - assignees additionalProperties: false examples: default: @@ -45707,139 +45735,6 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos - "/repos/{owner}/{repo}/tags/protection": - get: - summary: Closing down - List tag protection states for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#get-all-repository-rulesets)" endpoint instead. - - This returns the tag protection states of a repository. - - This information is only available to repository administrators. - tags: - - repos - operationId: repos/list-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository - parameters: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: - "$ref": "#/components/schemas/tag-protection" - examples: - default: - "$ref": "#/components/examples/tag-protection-items" - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - post: - summary: Closing down - Create a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#create-a-repository-ruleset)" endpoint instead. - - This creates a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/create-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository - parameters: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - pattern: - type: string - description: An optional glob pattern to match against when enforcing - tag protection. - required: - - pattern - examples: - default: - value: - pattern: v1.* - responses: - '201': - description: Response - content: - application/json: - schema: - "$ref": "#/components/schemas/tag-protection" - examples: - default: - "$ref": "#/components/examples/tag-protection" - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": - delete: - summary: Closing down - Delete a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset)" endpoint instead. - - This deletes a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/delete-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository - parameters: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - - "$ref": "#/components/parameters/tag-protection-id" - responses: - '204': - description: Response - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true "/repos/{owner}/{repo}/tarball/{ref}": get: summary: Download a repository archive (tar) @@ -98853,28 +98748,6 @@ components: - commit - zipball_url - tarball_url - tag-protection: - title: Tag protection - description: Tag protection - type: object - properties: - id: - type: integer - example: 2 - created_at: - type: string - example: '2011-01-26T19:01:12Z' - updated_at: - type: string - example: '2011-01-26T19:01:12Z' - enabled: - type: boolean - example: true - pattern: - type: string - example: v1.* - required: - - pattern topic: title: Topic description: A topic aggregates entities that are related to a subject. @@ -233362,13 +233235,6 @@ components: zipball_url: https://github.com/octocat/Hello-World/zipball/v0.1 tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= - tag-protection-items: - value: - - id: 2 - pattern: v1.* - tag-protection: - value: - enabled: true topic: value: names: @@ -239923,13 +239789,6 @@ components: required: true schema: type: integer - tag-protection-id: - name: tag_protection_id - description: The unique identifier of the tag protection. - in: path - required: true - schema: - type: integer per: name: per description: The time frame to display results for. diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 0ea8674d4..20405d9b7 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -316489,6 +316489,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + "response-if-content-is-a-file-github-object": { + "summary": "Content is a file using the object media type" + }, + "response-if-content-is-a-directory-github-object": { + "summary": "Content is a directory using the object media type" + }, + "response-if-content-is-a-file": { + "summary": "Content is a file" + }, + "response-if-content-is-a-directory": { + "summary": "Content is a directory" + }, + "response-if-content-is-a-symlink": { + "summary": "Content is a symlink" + }, + "response-if-content-is-a-submodule": { + "summary": "Content is a submodule" + } + } + } + } + }, "responses": { "200": { "description": "Response", @@ -316656,7 +316683,7 @@ ] }, "examples": { - "response-if-content-is-a-file": { + "response-if-content-is-a-file-github-object": { "summary": "Response if content is a file", "value": { "type": "file", @@ -316677,7 +316704,7 @@ } } }, - "response-if-content-is-a-directory": { + "response-if-content-is-a-directory-github-object": { "summary": "Response if content is a directory and the application/vnd.github.v3.object media type is requested", "value": { "type": "dir", @@ -321351,10 +321378,26 @@ "type": "string", "description": "An optional comment associated with dismissing the alert.", "maxLength": 280 + }, + "assignees": { + "type": "array", + "description": "Usernames to assign to this Dependabot Alert.\nPass one or more user logins to _replace_ the set of assignees on this alert.\nSend an empty array (`[]`) to clear all assignees from the alert.", + "items": { + "type": "string" + } } }, - "required": [ - "state" + "anyOf": [ + { + "required": [ + "state" + ] + }, + { + "required": [ + "assignees" + ] + } ], "additionalProperties": false }, @@ -538861,427 +538904,6 @@ } } }, - "/repos/{owner}/{repo}/tags/protection": { - "get": { - "summary": "Closing down - List tag protection states for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#get-all-repository-rulesets)\" endpoint instead.\n\nThis returns the tag protection states of a repository.\n\nThis information is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/list-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository" - }, - "parameters": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - } - }, - "examples": { - "default": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - } - } - } - } - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - }, - "post": { - "summary": "Closing down - Create a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#create-a-repository-ruleset)\" endpoint instead.\n\nThis creates a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/create-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository" - }, - "parameters": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "pattern": { - "type": "string", - "description": "An optional glob pattern to match against when enforcing tag protection." - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "pattern": "v1.*" - } - } - } - } - } - }, - "responses": { - "201": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "enabled": true - } - } - } - } - } - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": { - "delete": { - "summary": "Closing down - Delete a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset)\" endpoint instead.\n\nThis deletes a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/delete-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository" - }, - "parameters": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "tag_protection_id", - "description": "The unique identifier of the tag protection.", - "in": "path", - "required": true, - "schema": { - "type": "integer" - } - } - ], - "responses": { - "204": { - "description": "Response" - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, "/repos/{owner}/{repo}/tarball/{ref}": { "get": { "summary": "Download a repository archive (tar)", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 71edf358f..27f070906 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -10569,7 +10569,7 @@ paths: properties: action: type: string - discussion: &738 + discussion: &737 title: Discussion description: A Discussion in a repository. type: object @@ -11313,7 +11313,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &654 + sub_issues_summary: &653 title: Sub-issues Summary type: object properties: @@ -11426,7 +11426,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &655 + issue_dependencies_summary: &654 title: Issue Dependencies Summary type: object properties: @@ -11445,7 +11445,7 @@ paths: - total_blocking issue_field_values: type: array - items: &656 + items: &655 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12870,7 +12870,7 @@ paths: url: type: string format: uri - user: &662 + user: &661 title: Public User description: Public User type: object @@ -18320,7 +18320,7 @@ paths: required: false schema: type: string - - &713 + - &712 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -18466,7 +18466,7 @@ paths: parameters: - *67 - *116 - - &714 + - &713 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -18578,7 +18578,7 @@ paths: - *116 - *118 - *117 - - &715 + - &714 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -18586,7 +18586,7 @@ paths: schema: type: string - *119 - - &716 + - &715 name: sku description: The SKU to query for usage. in: query @@ -22159,7 +22159,7 @@ paths: type: array items: *153 examples: - default: &665 + default: &664 value: total_count: 1 repositories: @@ -25100,12 +25100,12 @@ paths: required: - subject_digests examples: - default: &695 + default: &694 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &696 + withPredicateType: &695 value: subject_digests: - sha256:abc123 @@ -25163,7 +25163,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &697 + default: &696 value: attestations_subject_digests: - sha256:abc: @@ -34759,7 +34759,7 @@ paths: parameters: - *67 - *240 - - &678 + - &677 name: repo_name description: repo_name parameter in: path @@ -35800,7 +35800,7 @@ paths: - nuget - container - *67 - - &679 + - &678 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -35841,7 +35841,7 @@ paths: default: *247 '403': *29 '401': *25 - '400': &681 + '400': &680 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -37633,7 +37633,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &769 + properties: &768 id: type: number description: The unique identifier of the status update. @@ -37681,7 +37681,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &770 + required: &769 - id - node_id - created_at @@ -38499,7 +38499,7 @@ paths: - updated_at - project_url examples: - default: &700 + default: &699 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38676,7 +38676,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &701 + items: &700 type: object properties: name: @@ -38713,7 +38713,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &702 + iteration_configuration: &701 type: object description: The configuration for iteration fields. properties: @@ -38763,7 +38763,7 @@ paths: value: name: Due date data_type: date - single_select_field: &703 + single_select_field: &702 summary: Create a single select field value: name: Priority @@ -38790,7 +38790,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &704 + iteration_field: &703 summary: Create an iteration field value: name: Sprint @@ -38816,7 +38816,7 @@ paths: application/json: schema: *268 examples: - text_field: &705 + text_field: &704 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -38825,7 +38825,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: &706 + number_field: &705 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -38834,7 +38834,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: &707 + date_field: &706 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -38843,7 +38843,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: &708 + single_select_field: &707 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38877,7 +38877,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &709 + iteration_field: &708 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -38923,7 +38923,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *264 - - &710 + - &709 name: field_id description: The unique identifier of the field. in: path @@ -38938,7 +38938,7 @@ paths: application/json: schema: *268 examples: - default: &711 + default: &710 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40135,7 +40135,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &692 + schema: &691 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -40312,7 +40312,7 @@ paths: parameters: - *264 - *67 - - &712 + - &711 name: view_number description: The number that identifies the project view. in: path @@ -47408,7 +47408,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &658 + response-if-user-is-a-team-maintainer: &657 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47473,7 +47473,7 @@ paths: application/json: schema: *326 examples: - response-if-users-membership-with-team-is-now-pending: &659 + response-if-users-membership-with-team-is-now-pending: &658 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47587,7 +47587,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &660 + schema: &659 title: Team Repository description: A team's access to a repository. type: object @@ -48244,7 +48244,7 @@ paths: type: array items: *190 examples: - response-if-child-teams-exist: &661 + response-if-child-teams-exist: &660 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -53444,7 +53444,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &732 + properties: &731 url: type: string format: uri @@ -53529,7 +53529,7 @@ paths: nullable: true properties: *72 required: *73 - required: &733 + required: &732 - id - node_id - sha @@ -59140,7 +59140,7 @@ paths: check. type: array items: *82 - deployment: &725 + deployment: &724 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60052,7 +60052,7 @@ paths: type: string format: date-time nullable: true - head_commit: &753 + head_commit: &752 title: Simple Commit description: A commit. type: object @@ -64323,14 +64323,14 @@ paths: type: integer machines: type: array - items: &668 + items: &667 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *449 required: *450 examples: - default: &669 + default: &668 value: total_count: 2 machines: @@ -68117,6 +68117,23 @@ paths: required: false schema: type: string + requestBody: + required: false + content: + application/json: + examples: + response-if-content-is-a-file-github-object: + summary: Content is a file using the object media type + response-if-content-is-a-directory-github-object: + summary: Content is a directory using the object media type + response-if-content-is-a-file: + summary: Content is a file + response-if-content-is-a-directory: + summary: Content is a directory + response-if-content-is-a-symlink: + summary: Content is a symlink + response-if-content-is-a-submodule: + summary: Content is a submodule responses: '200': description: Response @@ -68245,7 +68262,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &475 + response-if-content-is-a-file-github-object: &475 summary: Response if content is a file value: type: file @@ -68263,7 +68280,7 @@ paths: git: https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1 self: https://api.github.com/repos/octokit/octokit.rb/contents/README.md html: https://github.com/octokit/octokit.rb/blob/master/README.md - response-if-content-is-a-directory: + response-if-content-is-a-directory-github-object: summary: Response if content is a directory and the application/vnd.github.v3.object media type is requested value: @@ -69767,8 +69784,19 @@ paths: description: An optional comment associated with dismissing the alert. maxLength: 280 - required: - - state + assignees: + type: array + description: |- + Usernames to assign to this Dependabot Alert. + Pass one or more user logins to _replace_ the set of assignees on this alert. + Send an empty array (`[]`) to clear all assignees from the alert. + items: + type: string + anyOf: + - required: + - state + - required: + - assignees additionalProperties: false examples: default: @@ -74724,7 +74752,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &761 + last_response: &760 title: Hook Response type: object properties: @@ -75775,7 +75803,7 @@ paths: parameters: - *327 - *328 - - &690 + - &689 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76209,7 +76237,7 @@ paths: type: array items: *526 examples: - default: &683 + default: &682 value: - id: 1 repository: @@ -90614,7 +90642,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &783 + items: &782 type: object properties: type: @@ -92827,160 +92855,6 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos - "/repos/{owner}/{repo}/tags/protection": - get: - summary: Closing down - List tag protection states for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#get-all-repository-rulesets)" endpoint instead. - - This returns the tag protection states of a repository. - - This information is only available to repository administrators. - tags: - - repos - operationId: repos/list-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository - parameters: - - *327 - - *328 - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: &647 - title: Tag protection - description: Tag protection - type: object - properties: - id: - type: integer - example: 2 - created_at: - type: string - example: '2011-01-26T19:01:12Z' - updated_at: - type: string - example: '2011-01-26T19:01:12Z' - enabled: - type: boolean - example: true - pattern: - type: string - example: v1.* - required: - - pattern - examples: - default: - value: - - id: 2 - pattern: v1.* - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - post: - summary: Closing down - Create a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#create-a-repository-ruleset)" endpoint instead. - - This creates a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/create-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository - parameters: - - *327 - - *328 - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - pattern: - type: string - description: An optional glob pattern to match against when enforcing - tag protection. - required: - - pattern - examples: - default: - value: - pattern: v1.* - responses: - '201': - description: Response - content: - application/json: - schema: *647 - examples: - default: - value: - enabled: true - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": - delete: - summary: Closing down - Delete a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset)" endpoint instead. - - This deletes a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/delete-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository - parameters: - - *327 - - *328 - - name: tag_protection_id - description: The unique identifier of the tag protection. - in: path - required: true - schema: - type: integer - responses: - '204': - description: Response - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true "/repos/{owner}/{repo}/tarball/{ref}": get: summary: Download a repository archive (tar) @@ -93077,7 +92951,7 @@ paths: description: Response content: application/json: - schema: &648 + schema: &647 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -93089,7 +92963,7 @@ paths: required: - names examples: - default: &649 + default: &648 value: names: - octocat @@ -93144,9 +93018,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *647 examples: - default: *649 + default: *648 '404': *6 '422': *7 x-github: @@ -93169,7 +93043,7 @@ paths: parameters: - *327 - *328 - - &650 + - &649 name: per description: The time frame to display results for. in: query @@ -93198,7 +93072,7 @@ paths: example: 128 clones: type: array - items: &651 + items: &650 title: Traffic type: object properties: @@ -93439,7 +93313,7 @@ paths: parameters: - *327 - *328 - - *650 + - *649 responses: '200': description: Response @@ -93458,7 +93332,7 @@ paths: example: 3782 views: type: array - items: *651 + items: *650 required: - uniques - count @@ -94227,7 +94101,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &652 + text_matches: &651 title: Search Result Text Matches type: array items: @@ -94389,7 +94263,7 @@ paths: enum: - author-date - committer-date - - &653 + - &652 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 @@ -94517,7 +94391,7 @@ paths: type: number node_id: type: string - text_matches: *652 + text_matches: *651 required: - sha - node_id @@ -94709,7 +94583,7 @@ paths: - interactions - created - updated - - *653 + - *652 - *17 - *19 - name: advanced_search @@ -94806,11 +94680,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: type: string state_reason: @@ -94842,7 +94716,7 @@ paths: type: string format: date-time nullable: true - text_matches: *652 + text_matches: *651 pull_request: type: object properties: @@ -95075,7 +94949,7 @@ paths: enum: - created - updated - - *653 + - *652 - *17 - *19 responses: @@ -95119,7 +94993,7 @@ paths: nullable: true score: type: number - text_matches: *652 + text_matches: *651 required: - id - node_id @@ -95204,7 +95078,7 @@ paths: - forks - help-wanted-issues - updated - - *653 + - *652 - *17 - *19 responses: @@ -95452,7 +95326,7 @@ paths: - admin - pull - push - text_matches: *652 + text_matches: *651 temp_clone_token: type: string allow_merge_commit: @@ -95752,7 +95626,7 @@ paths: type: string format: uri nullable: true - text_matches: *652 + text_matches: *651 related: type: array nullable: true @@ -95943,7 +95817,7 @@ paths: - followers - repositories - joined - - *653 + - *652 - *17 - *19 responses: @@ -96047,7 +95921,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *652 + text_matches: *651 blog: type: string nullable: true @@ -96126,7 +96000,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &657 + - &656 name: team_id description: The unique identifier of the team. in: path @@ -96167,7 +96041,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *657 + - *656 requestBody: required: true content: @@ -96267,7 +96141,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *657 + - *656 responses: '204': description: Response @@ -96296,7 +96170,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *657 + - *656 - *17 - *19 responses: @@ -96334,7 +96208,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *657 + - *656 - name: role description: Filters members returned by their role in the team. in: query @@ -96385,7 +96259,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *657 + - *656 - *63 responses: '204': @@ -96422,7 +96296,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *657 + - *656 - *63 responses: '204': @@ -96462,7 +96336,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *657 + - *656 - *63 responses: '204': @@ -96499,7 +96373,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *657 + - *656 - *63 responses: '200': @@ -96508,7 +96382,7 @@ paths: application/json: schema: *326 examples: - response-if-user-is-a-team-maintainer: *658 + response-if-user-is-a-team-maintainer: *657 '404': *6 x-github: githubCloudOnly: false @@ -96541,7 +96415,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *657 + - *656 - *63 requestBody: required: false @@ -96569,7 +96443,7 @@ paths: application/json: schema: *326 examples: - response-if-users-membership-with-team-is-now-pending: *659 + response-if-users-membership-with-team-is-now-pending: *658 '403': description: Forbidden if team synchronization is set up '422': @@ -96603,7 +96477,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *657 + - *656 - *63 responses: '204': @@ -96631,7 +96505,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *657 + - *656 - *17 - *19 responses: @@ -96673,7 +96547,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *657 + - *656 - *327 - *328 responses: @@ -96681,7 +96555,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *660 + schema: *659 examples: alternative-response-with-extra-repository-information: value: @@ -96832,7 +96706,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *657 + - *656 - *327 - *328 requestBody: @@ -96884,7 +96758,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *657 + - *656 - *327 - *328 responses: @@ -96911,7 +96785,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *657 + - *656 - *17 - *19 responses: @@ -96923,7 +96797,7 @@ paths: type: array items: *190 examples: - response-if-child-teams-exist: *661 + response-if-child-teams-exist: *660 headers: Link: *59 '404': *6 @@ -96956,7 +96830,7 @@ paths: application/json: schema: oneOf: - - &663 + - &662 title: Private User description: Private User type: object @@ -97159,7 +97033,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *662 + - *661 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -97312,7 +97186,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *662 examples: default: value: @@ -97710,7 +97584,7 @@ paths: type: integer secrets: type: array - items: &664 + items: &663 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97826,7 +97700,7 @@ paths: description: Response content: application/json: - schema: *664 + schema: *663 examples: default: value: @@ -97972,7 +97846,7 @@ paths: type: array items: *153 examples: - default: *665 + default: *664 '401': *25 '403': *29 '404': *6 @@ -98239,7 +98113,7 @@ paths: description: Response content: application/json: - schema: &666 + schema: &665 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -98280,7 +98154,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &667 + default: &666 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -98325,9 +98199,9 @@ paths: description: Response content: application/json: - schema: *666 + schema: *665 examples: - default: *667 + default: *666 '404': *6 x-github: githubCloudOnly: false @@ -98364,9 +98238,9 @@ paths: type: integer machines: type: array - items: *668 + items: *667 examples: - default: *669 + default: *668 '304': *37 '500': *113 '401': *25 @@ -99305,7 +99179,7 @@ paths: type: array items: *246 examples: - default: &680 + default: &679 value: - id: 197 name: hello_docker @@ -99406,7 +99280,7 @@ paths: application/json: schema: type: array - items: &670 + items: &669 title: Email description: Email type: object @@ -99471,9 +99345,9 @@ paths: application/json: schema: type: array - items: *670 + items: *669 examples: - default: &682 + default: &681 value: - email: octocat@github.com verified: true @@ -99548,7 +99422,7 @@ paths: application/json: schema: type: array - items: *670 + items: *669 examples: default: value: @@ -99804,7 +99678,7 @@ paths: application/json: schema: type: array - items: &671 + items: &670 title: GPG Key description: A unique encryption key type: object @@ -99935,7 +99809,7 @@ paths: - subkeys - revoked examples: - default: &698 + default: &697 value: - id: 3 name: Octocat's GPG Key @@ -100020,9 +99894,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *670 examples: - default: &672 + default: &671 value: id: 3 name: Octocat's GPG Key @@ -100079,7 +99953,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &673 + - &672 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -100091,9 +99965,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *670 examples: - default: *672 + default: *671 '404': *6 '304': *37 '403': *29 @@ -100116,7 +99990,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *673 + - *672 responses: '204': description: Response @@ -100573,7 +100447,7 @@ paths: application/json: schema: type: array - items: &674 + items: &673 title: Key description: Key type: object @@ -100674,9 +100548,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *673 examples: - default: &675 + default: &674 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -100715,9 +100589,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *673 examples: - default: *675 + default: *674 '404': *6 '304': *37 '403': *29 @@ -100773,7 +100647,7 @@ paths: application/json: schema: type: array - items: &676 + items: &675 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -100841,7 +100715,7 @@ paths: - account - plan examples: - default: &677 + default: &676 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -100903,9 +100777,9 @@ paths: application/json: schema: type: array - items: *676 + items: *675 examples: - default: *677 + default: *676 headers: Link: *59 '304': *37 @@ -101914,7 +101788,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *240 - - *678 + - *677 responses: '204': description: Response @@ -102029,7 +101903,7 @@ paths: - docker - nuget - container - - *679 + - *678 - *19 - *17 responses: @@ -102041,8 +101915,8 @@ paths: type: array items: *246 examples: - default: *680 - '400': *681 + default: *679 + '400': *680 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102071,7 +101945,7 @@ paths: application/json: schema: *246 examples: - default: &699 + default: &698 value: id: 40201 name: octo-name @@ -102433,9 +102307,9 @@ paths: application/json: schema: type: array - items: *670 + items: *669 examples: - default: *682 + default: *681 headers: Link: *59 '304': *37 @@ -102548,7 +102422,7 @@ paths: type: array items: *71 examples: - default: &689 + default: &688 summary: Default response value: - id: 1296269 @@ -102894,7 +102768,7 @@ paths: type: array items: *526 examples: - default: *683 + default: *682 headers: Link: *59 '304': *37 @@ -102973,7 +102847,7 @@ paths: application/json: schema: type: array - items: &684 + items: &683 title: Social account description: Social media account type: object @@ -102988,7 +102862,7 @@ paths: - provider - url examples: - default: &685 + default: &684 value: - provider: twitter url: https://twitter.com/github @@ -103050,9 +102924,9 @@ paths: application/json: schema: type: array - items: *684 + items: *683 examples: - default: *685 + default: *684 '422': *15 '304': *37 '404': *6 @@ -103139,7 +103013,7 @@ paths: application/json: schema: type: array - items: &686 + items: &685 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -103159,7 +103033,7 @@ paths: - title - created_at examples: - default: &717 + default: &716 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103223,9 +103097,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *685 examples: - default: &687 + default: &686 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103255,7 +103129,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &688 + - &687 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -103267,9 +103141,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *685 examples: - default: *687 + default: *686 '404': *6 '304': *37 '403': *29 @@ -103292,7 +103166,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *688 + - *687 responses: '204': description: Response @@ -103321,7 +103195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &718 + - &717 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 @@ -103346,11 +103220,11 @@ paths: type: array items: *71 examples: - default-response: *689 + default-response: *688 application/vnd.github.v3.star+json: schema: type: array - items: &719 + items: &718 title: Starred Repository description: Starred Repository type: object @@ -103719,10 +103593,10 @@ paths: application/json: schema: oneOf: - - *663 - *662 + - *661 examples: - default-response: &693 + default-response: &692 summary: Default response value: login: octocat @@ -103757,7 +103631,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &694 + response-with-git-hub-plan-information: &693 summary: Response with GitHub plan information value: login: octocat @@ -103814,7 +103688,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &691 + - &690 name: user_id description: The unique identifier of the user. in: path @@ -103880,7 +103754,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *690 + - *689 - *17 responses: '200': @@ -103915,7 +103789,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *691 + - *690 - *264 requestBody: required: true @@ -103987,7 +103861,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *692 + schema: *691 examples: table_view: summary: Response for creating a table view @@ -104039,11 +103913,11 @@ paths: application/json: schema: oneOf: - - *663 - *662 + - *661 examples: - default-response: *693 - response-with-git-hub-plan-information: *694 + default-response: *692 + response-with-git-hub-plan-information: *693 '404': *6 x-github: githubCloudOnly: false @@ -104093,8 +103967,8 @@ paths: required: - subject_digests examples: - default: *695 - withPredicateType: *696 + default: *694 + withPredicateType: *695 responses: '200': description: Response @@ -104147,7 +104021,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *697 + default: *696 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104393,7 +104267,7 @@ paths: type: array items: *246 examples: - default: *680 + default: *679 '403': *29 '401': *25 x-github: @@ -104777,9 +104651,9 @@ paths: application/json: schema: type: array - items: *671 + items: *670 examples: - default: *698 + default: *697 headers: Link: *59 x-github: @@ -105007,7 +104881,7 @@ paths: - docker - nuget - container - - *679 + - *678 - *63 - *19 - *17 @@ -105020,10 +104894,10 @@ paths: type: array items: *246 examples: - default: *680 + default: *679 '403': *29 '401': *25 - '400': *681 + '400': *680 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105053,7 +104927,7 @@ paths: application/json: schema: *246 examples: - default: *699 + default: *698 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105402,7 +105276,7 @@ paths: type: array items: *268 examples: - default: *700 + default: *699 headers: Link: *59 '304': *37 @@ -105462,7 +105336,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *701 + items: *700 required: - name - data_type @@ -105478,7 +105352,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *702 + iteration_configuration: *701 required: - name - data_type @@ -105500,8 +105374,8 @@ paths: value: name: Due date data_type: date - single_select_field: *703 - iteration_field: *704 + single_select_field: *702 + iteration_field: *703 responses: '201': description: Response @@ -105509,11 +105383,11 @@ paths: application/json: schema: *268 examples: - text_field: *705 - number_field: *706 - date_field: *707 - single_select_field: *708 - iteration_field: *709 + text_field: *704 + number_field: *705 + date_field: *706 + single_select_field: *707 + iteration_field: *708 '304': *37 '403': *29 '401': *25 @@ -105535,7 +105409,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *264 - - *710 + - *709 - *63 responses: '200': @@ -105544,7 +105418,7 @@ paths: application/json: schema: *268 examples: - default: *711 + default: *710 headers: Link: *59 '304': *37 @@ -105898,7 +105772,7 @@ paths: parameters: - *264 - *63 - - *712 + - *711 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -106173,7 +106047,7 @@ paths: - *116 - *118 - *117 - - *713 + - *712 - *119 responses: '200': @@ -106304,7 +106178,7 @@ paths: parameters: - *63 - *116 - - *714 + - *713 - *117 responses: '200': @@ -106403,9 +106277,9 @@ paths: - *116 - *118 - *117 - - *715 + - *714 - *119 - - *716 + - *715 responses: '200': description: Response when getting a billing usage summary @@ -106539,9 +106413,9 @@ paths: application/json: schema: type: array - items: *684 + items: *683 examples: - default: *685 + default: *684 headers: Link: *59 x-github: @@ -106571,9 +106445,9 @@ paths: application/json: schema: type: array - items: *686 + items: *685 examples: - default: *717 + default: *716 headers: Link: *59 x-github: @@ -106598,7 +106472,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *63 - - *718 + - *717 - *53 - *17 - *19 @@ -106610,11 +106484,11 @@ paths: schema: anyOf: - type: array - items: *719 + items: *718 - type: array items: *71 examples: - default-response: *689 + default-response: *688 headers: Link: *59 x-github: @@ -106773,7 +106647,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &720 + enterprise: &719 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -106831,7 +106705,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &721 + installation: &720 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -106850,7 +106724,7 @@ x-webhooks: required: - id - node_id - organization: &722 + organization: &721 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -106910,13 +106784,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &723 + repository: &722 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &755 + properties: &754 id: description: Unique identifier of the repository example: 42 @@ -107611,7 +107485,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &756 + required: &755 - archive_url - assignees_url - blobs_url @@ -107762,10 +107636,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -107841,11 +107715,11 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - rule: &724 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + rule: &723 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -108068,11 +107942,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - rule: *724 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + rule: *723 sender: *4 required: - action @@ -108255,11 +108129,11 @@ x-webhooks: - everyone required: - from - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - rule: *724 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + rule: *723 sender: *4 required: - action @@ -108343,7 +108217,7 @@ x-webhooks: type: string enum: - completed - check_run: &726 + check_run: &725 title: CheckRun description: A check performed on the code of a given code change type: object @@ -108434,7 +108308,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *725 + deployment: *724 details_url: example: https://example.com type: string @@ -108519,10 +108393,10 @@ x-webhooks: - output - app - pull_requests - installation: *721 - enterprise: *720 - organization: *722 - repository: *723 + installation: *720 + enterprise: *719 + organization: *721 + repository: *722 sender: *4 required: - check_run @@ -108913,11 +108787,11 @@ x-webhooks: type: string enum: - created - check_run: *726 - installation: *721 - enterprise: *720 - organization: *722 - repository: *723 + check_run: *725 + installation: *720 + enterprise: *719 + organization: *721 + repository: *722 sender: *4 required: - check_run @@ -109311,11 +109185,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *726 - installation: *721 - enterprise: *720 - organization: *722 - repository: *723 + check_run: *725 + installation: *720 + enterprise: *719 + organization: *721 + repository: *722 requested_action: description: The action requested by the user. type: object @@ -109718,11 +109592,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *726 - installation: *721 - enterprise: *720 - organization: *722 - repository: *723 + check_run: *725 + installation: *720 + enterprise: *719 + organization: *721 + repository: *722 sender: *4 required: - check_run @@ -110692,10 +110566,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -111384,10 +111258,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -112070,10 +111944,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -112384,20 +112258,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &727 + commit_oid: &726 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: *720 - installation: *721 - organization: *722 - ref: &728 + enterprise: *719 + installation: *720 + organization: *721 + ref: &727 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: *723 + repository: *722 sender: *4 required: - action @@ -112792,12 +112666,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *727 - enterprise: *720 - installation: *721 - organization: *722 - ref: *728 - repository: *723 + commit_oid: *726 + enterprise: *719 + installation: *720 + organization: *721 + ref: *727 + repository: *722 sender: *4 required: - action @@ -113063,12 +112937,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *727 - enterprise: *720 - installation: *721 - organization: *722 - ref: *728 - repository: *723 + commit_oid: *726 + enterprise: *719 + installation: *720 + organization: *721 + ref: *727 + repository: *722 sender: *4 required: - action @@ -113400,12 +113274,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *727 - enterprise: *720 - installation: *721 - organization: *722 - ref: *728 - repository: *723 + commit_oid: *726 + enterprise: *719 + installation: *720 + organization: *721 + ref: *727 + repository: *722 sender: *4 required: - action @@ -113679,16 +113553,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *723 + repository: *722 sender: *4 required: - action @@ -113925,12 +113799,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *727 - enterprise: *720 - installation: *721 - organization: *722 - ref: *728 - repository: *723 + commit_oid: *726 + enterprise: *719 + installation: *720 + organization: *721 + ref: *727 + repository: *722 sender: *4 required: - action @@ -114241,10 +114115,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -114499,10 +114373,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -114582,18 +114456,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *722 - pusher_type: &729 + organization: *721 + pusher_type: &728 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &730 + ref: &729 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -114603,7 +114477,7 @@ x-webhooks: enum: - tag - branch - repository: *723 + repository: *722 sender: *4 required: - ref @@ -114686,9 +114560,9 @@ x-webhooks: enum: - created definition: *276 - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 sender: *4 required: - action @@ -114773,9 +114647,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 sender: *4 required: - action @@ -114853,9 +114727,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *276 - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 sender: *4 required: - action @@ -114933,9 +114807,9 @@ x-webhooks: enum: - updated definition: *276 - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 sender: *4 required: - action @@ -115012,10 +114886,10 @@ x-webhooks: type: string enum: - updated - enterprise: *720 - installation: *721 - repository: *723 - organization: *722 + enterprise: *719 + installation: *720 + repository: *722 + organization: *721 sender: *4 new_property_values: type: array @@ -115100,18 +114974,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *720 - installation: *721 - organization: *722 - pusher_type: *729 - ref: *730 + enterprise: *719 + installation: *720 + organization: *721 + pusher_type: *728 + ref: *729 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *723 + repository: *722 sender: *4 required: - ref @@ -115192,10 +115066,10 @@ x-webhooks: enum: - assignees_changed alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115276,10 +115150,10 @@ x-webhooks: enum: - auto_dismissed alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115361,10 +115235,10 @@ x-webhooks: enum: - auto_reopened alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115446,10 +115320,10 @@ x-webhooks: enum: - created alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115529,10 +115403,10 @@ x-webhooks: enum: - dismissed alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115612,10 +115486,10 @@ x-webhooks: enum: - fixed alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115696,10 +115570,10 @@ x-webhooks: enum: - reintroduced alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115779,10 +115653,10 @@ x-webhooks: enum: - reopened alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115859,9 +115733,9 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - key: &731 + enterprise: *719 + installation: *720 + key: &730 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -115897,8 +115771,8 @@ x-webhooks: - verified - created_at - read_only - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -115975,11 +115849,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - key: *731 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + key: *730 + organization: *721 + repository: *722 sender: *4 required: - action @@ -116535,12 +116409,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - workflow: &737 + workflow: &736 title: Workflow type: object nullable: true @@ -117281,15 +117155,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *732 - required: *733 + properties: *731 + required: *732 nullable: true pull_requests: type: array items: *576 - repository: *723 - organization: *722 - installation: *721 + repository: *722 + organization: *721 + installation: *720 sender: *4 responses: '200': @@ -117360,7 +117234,7 @@ x-webhooks: type: string enum: - approved - approver: &734 + approver: &733 type: object properties: avatar_url: @@ -117403,11 +117277,11 @@ x-webhooks: type: string comment: type: string - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - reviewers: &735 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + reviewers: &734 type: array items: type: object @@ -117486,7 +117360,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &736 + workflow_job_run: &735 type: object properties: conclusion: @@ -118217,18 +118091,18 @@ x-webhooks: type: string enum: - rejected - approver: *734 + approver: *733 comment: type: string - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - reviewers: *735 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + reviewers: *734 sender: *4 since: type: string - workflow_job_run: *736 + workflow_job_run: *735 workflow_job_runs: type: array items: @@ -118932,13 +118806,13 @@ x-webhooks: type: string enum: - requested - enterprise: *720 + enterprise: *719 environment: type: string - installation: *721 - organization: *722 - repository: *723 - requestor: &742 + installation: *720 + organization: *721 + repository: *722 + requestor: &741 title: User type: object nullable: true @@ -120827,12 +120701,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - workflow: *737 + workflow: *736 workflow_run: title: Deployment Workflow Run type: object @@ -121512,7 +121386,7 @@ x-webhooks: type: string enum: - answered - answer: &740 + answer: &739 type: object properties: author_association: @@ -121669,11 +121543,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -121800,11 +121674,11 @@ x-webhooks: - from required: - category - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -121887,11 +121761,11 @@ x-webhooks: type: string enum: - closed - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -121973,7 +121847,7 @@ x-webhooks: type: string enum: - created - comment: &739 + comment: &738 type: object properties: author_association: @@ -122130,11 +122004,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122217,12 +122091,12 @@ x-webhooks: type: string enum: - deleted - comment: *739 - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + comment: *738 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122317,12 +122191,12 @@ x-webhooks: - from required: - body - comment: *739 - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + comment: *738 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122406,11 +122280,11 @@ x-webhooks: type: string enum: - created - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122492,11 +122366,11 @@ x-webhooks: type: string enum: - deleted - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122596,11 +122470,11 @@ x-webhooks: type: string required: - from - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122682,10 +122556,10 @@ x-webhooks: type: string enum: - labeled - discussion: *738 - enterprise: *720 - installation: *721 - label: &741 + discussion: *737 + enterprise: *719 + installation: *720 + label: &740 title: Label type: object properties: @@ -122717,8 +122591,8 @@ x-webhooks: - color - default - description - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122801,11 +122675,11 @@ x-webhooks: type: string enum: - locked - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122887,11 +122761,11 @@ x-webhooks: type: string enum: - pinned - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122973,11 +122847,11 @@ x-webhooks: type: string enum: - reopened - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123062,16 +122936,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *738 - new_repository: *723 + new_discussion: *737 + new_repository: *722 required: - new_discussion - new_repository - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123154,10 +123028,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *738 - old_answer: *740 - organization: *722 - repository: *723 + discussion: *737 + old_answer: *739 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123239,12 +123113,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *738 - enterprise: *720 - installation: *721 - label: *741 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123327,11 +123201,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123413,11 +123287,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123490,7 +123364,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *720 + enterprise: *719 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -124150,9 +124024,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - forkee @@ -124298,9 +124172,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pages: description: The pages that were updated. type: array @@ -124337,7 +124211,7 @@ x-webhooks: - action - sha - html_url - repository: *723 + repository: *722 sender: *4 required: - pages @@ -124413,10 +124287,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories: &743 + organization: *721 + repositories: &742 description: An array of repository objects that the installation can access. type: array @@ -124442,8 +124316,8 @@ x-webhooks: - name - full_name - private - repository: *723 - requester: *742 + repository: *722 + requester: *741 sender: *4 required: - action @@ -124518,11 +124392,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories: *743 - repository: *723 + organization: *721 + repositories: *742 + repository: *722 requester: nullable: true sender: *4 @@ -124598,11 +124472,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories: *743 - repository: *723 + organization: *721 + repositories: *742 + repository: *722 requester: nullable: true sender: *4 @@ -124678,10 +124552,10 @@ x-webhooks: type: string enum: - added - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories_added: &744 + organization: *721 + repositories_added: &743 description: An array of repository objects, which were added to the installation. type: array @@ -124727,15 +124601,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *723 - repository_selection: &745 + repository: *722 + repository_selection: &744 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *742 + requester: *741 sender: *4 required: - action @@ -124814,10 +124688,10 @@ x-webhooks: type: string enum: - removed - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories_added: *744 + organization: *721 + repositories_added: *743 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -124844,9 +124718,9 @@ x-webhooks: - name - full_name - private - repository: *723 - repository_selection: *745 - requester: *742 + repository: *722 + repository_selection: *744 + requester: *741 sender: *4 required: - action @@ -124925,11 +124799,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories: *743 - repository: *723 + organization: *721 + repositories: *742 + repository: *722 requester: nullable: true sender: *4 @@ -125107,10 +124981,10 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 target_type: type: string @@ -125189,11 +125063,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories: *743 - repository: *723 + organization: *721 + repositories: *742 + repository: *722 requester: nullable: true sender: *4 @@ -125453,8 +125327,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -126243,8 +126117,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 state: description: State of the issue; either 'open' or 'closed' type: string @@ -126593,8 +126467,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -126674,7 +126548,7 @@ x-webhooks: type: string enum: - deleted - comment: &746 + comment: &745 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -126847,8 +126721,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -127633,8 +127507,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 state: description: State of the issue; either 'open' or 'closed' type: string @@ -127985,8 +127859,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -128066,7 +127940,7 @@ x-webhooks: type: string enum: - edited - changes: &775 + changes: &774 description: The changes to the comment. type: object properties: @@ -128078,9 +127952,9 @@ x-webhooks: type: string required: - from - comment: *746 - enterprise: *720 - installation: *721 + comment: *745 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128868,8 +128742,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129218,8 +129092,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -129300,9 +129174,9 @@ x-webhooks: type: string enum: - pinned - comment: *746 - enterprise: *720 - installation: *721 + comment: *745 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130092,8 +129966,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130444,8 +130318,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -130525,9 +130399,9 @@ x-webhooks: type: string enum: - unpinned - comment: *746 - enterprise: *720 - installation: *721 + comment: *745 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131317,8 +131191,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131669,8 +131543,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -131759,9 +131633,9 @@ x-webhooks: type: number blocking_issue: *77 blocking_issue_repo: *71 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -131850,9 +131724,9 @@ x-webhooks: type: number blocking_issue: *77 blocking_issue_repo: *71 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -131940,9 +131814,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -132031,9 +131905,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -132113,10 +131987,10 @@ x-webhooks: type: string enum: - assigned - assignee: *742 - enterprise: *720 - installation: *721 - issue: &749 + assignee: *741 + enterprise: *719 + installation: *720 + issue: &748 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -132908,11 +132782,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133029,8 +132903,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -133110,8 +132984,8 @@ x-webhooks: type: string enum: - closed - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133908,11 +133782,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134164,8 +134038,8 @@ x-webhooks: required: - state - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -134244,8 +134118,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135033,11 +134907,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135153,8 +135027,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -135233,8 +135107,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136044,11 +135918,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136143,7 +136017,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &747 + milestone: &746 title: Milestone description: A collection of related issues and pull requests. type: object @@ -136281,8 +136155,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -136381,8 +136255,8 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137174,11 +137048,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137295,9 +137169,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *741 - organization: *722 - repository: *723 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -137377,8 +137251,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138169,11 +138043,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138290,9 +138164,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *741 - organization: *722 - repository: *723 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -138372,8 +138246,8 @@ x-webhooks: type: string enum: - locked - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139188,11 +139062,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139286,8 +139160,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -139366,8 +139240,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140176,11 +140050,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140274,9 +140148,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *747 - organization: *722 - repository: *723 + milestone: *746 + organization: *721 + repository: *722 sender: *4 required: - action @@ -141139,11 +141013,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141724,8 +141598,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142509,11 +142383,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142637,8 +142511,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -142718,9 +142592,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *720 - installation: *721 - issue: &748 + enterprise: *719 + installation: *720 + issue: &747 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143506,11 +143380,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143626,8 +143500,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -143706,8 +143580,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144520,11 +144394,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144619,8 +144493,8 @@ x-webhooks: user_view_type: type: string type: *228 - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -145489,11 +145363,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146088,11 +145962,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *720 - installation: *721 - issue: *748 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + issue: *747 + organization: *721 + repository: *722 sender: *4 required: - action @@ -146172,12 +146046,12 @@ x-webhooks: type: string enum: - typed - enterprise: *720 - installation: *721 - issue: *749 + enterprise: *719 + installation: *720 + issue: *748 type: *228 - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -146258,7 +146132,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &778 + assignee: &777 title: User type: object nullable: true @@ -146328,11 +146202,11 @@ x-webhooks: required: - login - id - enterprise: *720 - installation: *721 - issue: *749 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + issue: *748 + organization: *721 + repository: *722 sender: *4 required: - action @@ -146411,12 +146285,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *720 - installation: *721 - issue: *749 - label: *741 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + issue: *748 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -146496,8 +146370,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147310,11 +147184,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147408,8 +147282,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147489,11 +147363,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *720 - installation: *721 - issue: *748 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + issue: *747 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147572,12 +147446,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *720 - installation: *721 - issue: *749 + enterprise: *719 + installation: *720 + issue: *748 type: *228 - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147657,11 +147531,11 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - label: *741 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147739,11 +147613,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - label: *741 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147853,11 +147727,11 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - label: *741 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147939,9 +147813,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *720 - installation: *721 - marketplace_purchase: &750 + enterprise: *719 + installation: *720 + marketplace_purchase: &749 title: Marketplace Purchase type: object required: @@ -148024,8 +147898,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *722 - previous_marketplace_purchase: &751 + organization: *721 + previous_marketplace_purchase: &750 title: Marketplace Purchase type: object properties: @@ -148105,7 +147979,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148185,10 +148059,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *720 - installation: *721 - marketplace_purchase: *750 - organization: *722 + enterprise: *719 + installation: *720 + marketplace_purchase: *749 + organization: *721 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148271,7 +148145,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148353,10 +148227,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *720 - installation: *721 - marketplace_purchase: *750 - organization: *722 + enterprise: *719 + installation: *720 + marketplace_purchase: *749 + organization: *721 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148438,7 +148312,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148519,8 +148393,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 marketplace_purchase: title: Marketplace Purchase type: object @@ -148602,9 +148476,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *722 - previous_marketplace_purchase: *751 - repository: *723 + organization: *721 + previous_marketplace_purchase: *750 + repository: *722 sender: *4 required: - action @@ -148684,12 +148558,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *720 - installation: *721 - marketplace_purchase: *750 - organization: *722 - previous_marketplace_purchase: *751 - repository: *723 + enterprise: *719 + installation: *720 + marketplace_purchase: *749 + organization: *721 + previous_marketplace_purchase: *750 + repository: *722 sender: *4 required: - action @@ -148791,11 +148665,11 @@ x-webhooks: type: string required: - to - enterprise: *720 - installation: *721 - member: *742 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + member: *741 + organization: *721 + repository: *722 sender: *4 required: - action @@ -148895,11 +148769,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *720 - installation: *721 - member: *742 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + member: *741 + organization: *721 + repository: *722 sender: *4 required: - action @@ -148978,11 +148852,11 @@ x-webhooks: type: string enum: - removed - enterprise: *720 - installation: *721 - member: *742 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + member: *741 + organization: *721 + repository: *722 sender: *4 required: - action @@ -149060,11 +148934,11 @@ x-webhooks: type: string enum: - added - enterprise: *720 - installation: *721 - member: *742 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + member: *741 + organization: *721 + repository: *722 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149140,7 +149014,7 @@ x-webhooks: required: - login - id - team: &752 + team: &751 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -149363,11 +149237,11 @@ x-webhooks: type: string enum: - removed - enterprise: *720 - installation: *721 - member: *742 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + member: *741 + organization: *721 + repository: *722 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149444,7 +149318,7 @@ x-webhooks: required: - login - id - team: *752 + team: *751 required: - action - scope @@ -149526,8 +149400,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *721 - merge_group: &754 + installation: *720 + merge_group: &753 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -149546,15 +149420,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *753 + head_commit: *752 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -149640,10 +149514,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *721 - merge_group: *754 - organization: *722 - repository: *723 + installation: *720 + merge_group: *753 + organization: *721 + repository: *722 sender: *4 required: - action @@ -149716,7 +149590,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 + enterprise: *719 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -149825,16 +149699,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *721 - organization: *722 + installation: *720 + organization: *721 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *755 - required: *756 + properties: *754 + required: *755 nullable: true sender: *4 required: @@ -149915,11 +149789,11 @@ x-webhooks: type: string enum: - closed - enterprise: *720 - installation: *721 - milestone: *747 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + milestone: *746 + organization: *721 + repository: *722 sender: *4 required: - action @@ -149998,9 +149872,9 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - milestone: &757 + enterprise: *719 + installation: *720 + milestone: &756 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150137,8 +150011,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150217,11 +150091,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - milestone: *747 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + milestone: *746 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150331,11 +150205,11 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - milestone: *747 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + milestone: *746 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150415,11 +150289,11 @@ x-webhooks: type: string enum: - opened - enterprise: *720 - installation: *721 - milestone: *757 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + milestone: *756 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150498,11 +150372,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *742 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + blocked_user: *741 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150581,11 +150455,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *742 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + blocked_user: *741 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150664,9 +150538,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - membership: &758 + enterprise: *719 + installation: *720 + membership: &757 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -150773,8 +150647,8 @@ x-webhooks: - role - organization_url - user - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150852,11 +150726,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *720 - installation: *721 - membership: *758 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + membership: *757 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150935,8 +150809,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -151052,10 +150926,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 - user: *742 + user: *741 required: - action - invitation @@ -151133,11 +151007,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *720 - installation: *721 - membership: *758 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + membership: *757 + organization: *721 + repository: *722 sender: *4 required: - action @@ -151224,11 +151098,11 @@ x-webhooks: properties: from: type: string - enterprise: *720 - installation: *721 - membership: *758 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + membership: *757 + organization: *721 + repository: *722 sender: *4 required: - action @@ -151305,9 +151179,9 @@ x-webhooks: type: string enum: - published - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 package: description: Information about the package. type: object @@ -151806,7 +151680,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &759 + items: &758 title: Ruby Gems metadata type: object properties: @@ -151901,7 +151775,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -151977,9 +151851,9 @@ x-webhooks: type: string enum: - updated - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 package: description: Information about the package. type: object @@ -152332,7 +152206,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *759 + items: *758 source_url: type: string format: uri @@ -152402,7 +152276,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -152578,12 +152452,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *720 + enterprise: *719 id: type: integer - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - id @@ -152660,7 +152534,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &760 + personal_access_token_request: &759 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -152806,10 +152680,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *720 - organization: *722 + enterprise: *719 + organization: *721 sender: *4 - installation: *721 + installation: *720 required: - action - personal_access_token_request @@ -152886,11 +152760,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *760 - enterprise: *720 - organization: *722 + personal_access_token_request: *759 + enterprise: *719 + organization: *721 sender: *4 - installation: *721 + installation: *720 required: - action - personal_access_token_request @@ -152966,11 +152840,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *760 - enterprise: *720 - organization: *722 + personal_access_token_request: *759 + enterprise: *719 + organization: *721 sender: *4 - installation: *721 + installation: *720 required: - action - personal_access_token_request @@ -153045,11 +152919,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *760 - organization: *722 - enterprise: *720 + personal_access_token_request: *759 + organization: *721 + enterprise: *719 sender: *4 - installation: *721 + installation: *720 required: - action - personal_access_token_request @@ -153154,7 +153028,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *761 + last_response: *760 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -153186,8 +153060,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 zen: description: Random string of GitHub zen. @@ -153432,10 +153306,10 @@ x-webhooks: - from required: - note - enterprise: *720 - installation: *721 - organization: *722 - project_card: &762 + enterprise: *719 + installation: *720 + organization: *721 + project_card: &761 title: Project Card type: object properties: @@ -153554,7 +153428,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -153635,11 +153509,11 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - project_card: *762 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project_card: *761 + repository: *722 sender: *4 required: - action @@ -153719,9 +153593,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 project_card: title: Project Card type: object @@ -153849,8 +153723,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *755 - required: *756 + properties: *754 + required: *755 nullable: true sender: *4 required: @@ -153944,11 +153818,11 @@ x-webhooks: - from required: - note - enterprise: *720 - installation: *721 - organization: *722 - project_card: *762 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project_card: *761 + repository: *722 sender: *4 required: - action @@ -154042,9 +153916,9 @@ x-webhooks: - from required: - column_id - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 project_card: allOf: - title: Project Card @@ -154234,7 +154108,7 @@ x-webhooks: type: string required: - after_id - repository: *723 + repository: *722 sender: *4 required: - action @@ -154314,10 +154188,10 @@ x-webhooks: type: string enum: - closed - enterprise: *720 - installation: *721 - organization: *722 - project: &764 + enterprise: *719 + installation: *720 + organization: *721 + project: &763 title: Project type: object properties: @@ -154441,7 +154315,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -154521,10 +154395,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - project_column: &763 + enterprise: *719 + installation: *720 + organization: *721 + project_column: &762 title: Project Column type: object properties: @@ -154563,7 +154437,7 @@ x-webhooks: - name - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -154642,18 +154516,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - project_column: *763 + enterprise: *719 + installation: *720 + organization: *721 + project_column: *762 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *755 - required: *756 + properties: *754 + required: *755 nullable: true sender: *4 required: @@ -154743,11 +154617,11 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - organization: *722 - project_column: *763 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project_column: *762 + repository: *722 sender: *4 required: - action @@ -154827,11 +154701,11 @@ x-webhooks: type: string enum: - moved - enterprise: *720 - installation: *721 - organization: *722 - project_column: *763 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project_column: *762 + repository: *722 sender: *4 required: - action @@ -154911,11 +154785,11 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - project: *764 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project: *763 + repository: *722 sender: *4 required: - action @@ -154995,18 +154869,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - project: *764 + enterprise: *719 + installation: *720 + organization: *721 + project: *763 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *755 - required: *756 + properties: *754 + required: *755 nullable: true sender: *4 required: @@ -155108,11 +154982,11 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - organization: *722 - project: *764 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project: *763 + repository: *722 sender: *4 required: - action @@ -155191,11 +155065,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *720 - installation: *721 - organization: *722 - project: *764 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project: *763 + repository: *722 sender: *4 required: - action @@ -155276,8 +155150,8 @@ x-webhooks: type: string enum: - closed - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155359,8 +155233,8 @@ x-webhooks: type: string enum: - created - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155442,8 +155316,8 @@ x-webhooks: type: string enum: - deleted - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155561,8 +155435,8 @@ x-webhooks: type: string to: type: string - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155646,7 +155520,7 @@ x-webhooks: type: string enum: - archived - changes: &768 + changes: &767 type: object properties: archived_at: @@ -155660,9 +155534,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *721 - organization: *722 - projects_v2_item: &765 + installation: *720 + organization: *721 + projects_v2_item: &764 title: Projects v2 Item description: An item belonging to a project type: object @@ -155797,9 +155671,9 @@ x-webhooks: nullable: true to: type: string - installation: *721 - organization: *722 - projects_v2_item: *765 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -155881,9 +155755,9 @@ x-webhooks: type: string enum: - created - installation: *721 - organization: *722 - projects_v2_item: *765 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -155964,9 +155838,9 @@ x-webhooks: type: string enum: - deleted - installation: *721 - organization: *722 - projects_v2_item: *765 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -156072,7 +155946,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &766 + - &765 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -156094,7 +155968,7 @@ x-webhooks: required: - id - name - - &767 + - &766 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -156128,8 +156002,8 @@ x-webhooks: oneOf: - type: string - type: integer + - *765 - *766 - - *767 required: - field_value - type: object @@ -156145,9 +156019,9 @@ x-webhooks: nullable: true required: - body - installation: *721 - organization: *722 - projects_v2_item: *765 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -156242,9 +156116,9 @@ x-webhooks: to: type: string nullable: true - installation: *721 - organization: *722 - projects_v2_item: *765 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -156327,10 +156201,10 @@ x-webhooks: type: string enum: - restored - changes: *768 - installation: *721 - organization: *722 - projects_v2_item: *765 + changes: *767 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -156412,8 +156286,8 @@ x-webhooks: type: string enum: - reopened - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -156495,14 +156369,14 @@ x-webhooks: type: string enum: - created - installation: *721 - organization: *722 - projects_v2_status_update: &771 + installation: *720 + organization: *721 + projects_v2_status_update: &770 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *769 - required: *770 + properties: *768 + required: *769 sender: *4 required: - action @@ -156583,9 +156457,9 @@ x-webhooks: type: string enum: - deleted - installation: *721 - organization: *722 - projects_v2_status_update: *771 + installation: *720 + organization: *721 + projects_v2_status_update: *770 sender: *4 required: - action @@ -156721,9 +156595,9 @@ x-webhooks: type: string format: date nullable: true - installation: *721 - organization: *722 - projects_v2_status_update: *771 + installation: *720 + organization: *721 + projects_v2_status_update: *770 sender: *4 required: - action @@ -156794,10 +156668,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - repository @@ -156874,13 +156748,13 @@ x-webhooks: type: string enum: - assigned - assignee: *742 - enterprise: *720 - installation: *721 - number: &772 + assignee: *741 + enterprise: *719 + installation: *720 + number: &771 description: The pull request number. type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -159185,7 +159059,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -159267,11 +159141,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -161571,7 +161445,7 @@ x-webhooks: - draft reason: type: string - repository: *723 + repository: *722 sender: *4 required: - action @@ -161653,11 +161527,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -163957,7 +163831,7 @@ x-webhooks: - draft reason: type: string - repository: *723 + repository: *722 sender: *4 required: - action @@ -164039,11 +163913,11 @@ x-webhooks: type: string enum: - closed - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: &773 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: &772 allOf: - *576 - type: object @@ -164107,7 +163981,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *723 + repository: *722 sender: *4 required: - action @@ -164188,12 +164062,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: *773 - repository: *723 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: *772 + repository: *722 sender: *4 required: - action @@ -164273,11 +164147,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *720 + enterprise: *719 milestone: *560 - number: *772 - organization: *722 - pull_request: &774 + number: *771 + organization: *721 + pull_request: &773 title: Pull Request type: object properties: @@ -166562,7 +166436,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -166641,11 +166515,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -168949,7 +168823,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *723 + repository: *722 sender: *4 required: - action @@ -169073,12 +168947,12 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: *773 - repository: *723 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: *772 + repository: *722 sender: *4 required: - action @@ -169158,11 +169032,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -171451,7 +171325,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -171531,11 +171405,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *720 - installation: *721 - label: *741 - number: *772 - organization: *722 + enterprise: *719 + installation: *720 + label: *740 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -173839,7 +173713,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -173920,10 +173794,10 @@ x-webhooks: type: string enum: - locked - enterprise: *720 - installation: *721 - number: *772 - organization: *722 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -176225,7 +176099,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -176305,12 +176179,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *720 + enterprise: *719 milestone: *560 - number: *772 - organization: *722 - pull_request: *774 - repository: *723 + number: *771 + organization: *721 + pull_request: *773 + repository: *722 sender: *4 required: - action @@ -176389,12 +176263,12 @@ x-webhooks: type: string enum: - opened - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: *773 - repository: *723 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: *772 + repository: *722 sender: *4 required: - action @@ -176475,12 +176349,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: *773 - repository: *723 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: *772 + repository: *722 sender: *4 required: - action @@ -176560,12 +176434,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: *773 - repository: *723 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: *772 + repository: *722 sender: *4 required: - action @@ -176931,9 +176805,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: type: object properties: @@ -179125,7 +178999,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -179205,7 +179079,7 @@ x-webhooks: type: string enum: - deleted - comment: &776 + comment: &775 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -179490,9 +179364,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: type: object properties: @@ -181672,7 +181546,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -181752,11 +181626,11 @@ x-webhooks: type: string enum: - edited - changes: *775 - comment: *776 - enterprise: *720 - installation: *721 - organization: *722 + changes: *774 + comment: *775 + enterprise: *719 + installation: *720 + organization: *721 pull_request: type: object properties: @@ -183939,7 +183813,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -184020,9 +183894,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: title: Simple Pull Request type: object @@ -186217,7 +186091,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 + repository: *722 review: description: The review that was affected. type: object @@ -186464,9 +186338,9 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: title: Simple Pull Request type: object @@ -188520,8 +188394,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 - review: &777 + repository: *722 + review: &776 description: The review that was affected. type: object properties: @@ -188754,12 +188628,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: description: The pull request number. type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -191064,7 +190938,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_reviewer: title: User type: object @@ -191148,12 +191022,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: description: The pull request number. type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -193465,7 +193339,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_team: title: Team description: Groups of organization members that gives permissions @@ -193657,12 +193531,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: description: The pull request number. type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -195969,7 +195843,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_reviewer: title: User type: object @@ -196054,12 +195928,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: description: The pull request number. type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -198357,7 +198231,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_team: title: Team description: Groups of organization members that gives permissions @@ -198538,9 +198412,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: title: Simple Pull Request type: object @@ -200737,8 +200611,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 - review: *777 + repository: *722 + review: *776 sender: *4 required: - action @@ -200818,9 +200692,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: title: Simple Pull Request type: object @@ -202912,7 +202786,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 + repository: *722 sender: *4 thread: type: object @@ -203299,9 +203173,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: title: Simple Pull Request type: object @@ -205379,7 +205253,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 + repository: *722 sender: *4 thread: type: object @@ -205769,10 +205643,10 @@ x-webhooks: type: string before: type: string - enterprise: *720 - installation: *721 - number: *772 - organization: *722 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -208065,7 +207939,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -208147,11 +208021,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *778 - enterprise: *720 - installation: *721 - number: *772 - organization: *722 + assignee: *777 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -210456,7 +210330,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -210535,11 +210409,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *720 - installation: *721 - label: *741 - number: *772 - organization: *722 + enterprise: *719 + installation: *720 + label: *740 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -212834,7 +212708,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -212915,10 +212789,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *720 - installation: *721 - number: *772 - organization: *722 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -215205,7 +215079,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -215405,7 +215279,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *720 + enterprise: *719 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -215497,8 +215371,8 @@ x-webhooks: - url - author - committer - installation: *721 - organization: *722 + installation: *720 + organization: *721 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -216084,9 +215958,9 @@ x-webhooks: type: string enum: - published - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 registry_package: type: object properties: @@ -216532,7 +216406,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *759 + items: *758 summary: type: string tag_name: @@ -216586,7 +216460,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -216664,9 +216538,9 @@ x-webhooks: type: string enum: - updated - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 registry_package: type: object properties: @@ -216974,7 +216848,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *759 + items: *758 summary: type: string tag_name: @@ -217023,7 +216897,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -217100,10 +216974,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - release: &779 + enterprise: *719 + installation: *720 + organization: *721 + release: &778 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -217421,7 +217295,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *723 + repository: *722 sender: *4 required: - action @@ -217498,11 +217372,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - release: *779 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + release: *778 + repository: *722 sender: *4 required: - action @@ -217619,11 +217493,11 @@ x-webhooks: type: boolean required: - to - enterprise: *720 - installation: *721 - organization: *722 - release: *779 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + release: *778 + repository: *722 sender: *4 required: - action @@ -217701,9 +217575,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -218025,7 +217899,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *723 + repository: *722 sender: *4 required: - action @@ -218101,10 +217975,10 @@ x-webhooks: type: string enum: - published - enterprise: *720 - installation: *721 - organization: *722 - release: &780 + enterprise: *719 + installation: *720 + organization: *721 + release: &779 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218423,7 +218297,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *723 + repository: *722 sender: *4 required: - action @@ -218499,11 +218373,11 @@ x-webhooks: type: string enum: - released - enterprise: *720 - installation: *721 - organization: *722 - release: *779 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + release: *778 + repository: *722 sender: *4 required: - action @@ -218579,11 +218453,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *720 - installation: *721 - organization: *722 - release: *780 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + release: *779 + repository: *722 sender: *4 required: - action @@ -218659,10 +218533,10 @@ x-webhooks: type: string enum: - published - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 repository_advisory: *640 sender: *4 required: @@ -218739,10 +218613,10 @@ x-webhooks: type: string enum: - reported - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 repository_advisory: *640 sender: *4 required: @@ -218819,10 +218693,10 @@ x-webhooks: type: string enum: - archived - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -218899,10 +218773,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -218980,10 +218854,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219067,10 +218941,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219182,10 +219056,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219257,10 +219131,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 status: type: string @@ -219341,10 +219215,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219421,10 +219295,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219518,10 +219392,10 @@ x-webhooks: - name required: - repository - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219601,10 +219475,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 repository_ruleset: *310 sender: *4 required: @@ -219683,10 +219557,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 repository_ruleset: *310 sender: *4 required: @@ -219765,10 +219639,10 @@ x-webhooks: type: string enum: - edited - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 repository_ruleset: *310 changes: type: object @@ -220073,10 +219947,10 @@ x-webhooks: - from required: - owner - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220154,10 +220028,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220235,7 +220109,7 @@ x-webhooks: type: string enum: - create - alert: &781 + alert: &780 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -220357,10 +220231,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220566,10 +220440,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220647,11 +220521,11 @@ x-webhooks: type: string enum: - reopen - alert: *781 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *780 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220850,10 +220724,10 @@ x-webhooks: enum: - fixed - open - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220931,7 +220805,7 @@ x-webhooks: type: string enum: - assigned - alert: &782 + alert: &781 type: object properties: number: *171 @@ -221050,10 +220924,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221131,11 +221005,11 @@ x-webhooks: type: string enum: - created - alert: *782 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *781 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221216,11 +221090,11 @@ x-webhooks: type: string enum: - created - alert: *782 - installation: *721 - location: *783 - organization: *722 - repository: *723 + alert: *781 + installation: *720 + location: *782 + organization: *721 + repository: *722 sender: *4 required: - location @@ -221458,11 +221332,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *782 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *781 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221540,11 +221414,11 @@ x-webhooks: type: string enum: - reopened - alert: *782 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *781 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221622,11 +221496,11 @@ x-webhooks: type: string enum: - resolved - alert: *782 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *781 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221704,12 +221578,12 @@ x-webhooks: type: string enum: - unassigned - alert: *782 + alert: *781 assignee: *4 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221787,11 +221661,11 @@ x-webhooks: type: string enum: - validated - alert: *782 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *781 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221917,10 +221791,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *723 - enterprise: *720 - installation: *721 - organization: *722 + repository: *722 + enterprise: *719 + installation: *720 + organization: *721 sender: *4 required: - action @@ -221998,11 +221872,11 @@ x-webhooks: type: string enum: - published - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - security_advisory: &784 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + security_advisory: &783 description: The details of the security advisory, including summary, description, and severity. type: object @@ -222185,11 +222059,11 @@ x-webhooks: type: string enum: - updated - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - security_advisory: *784 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + security_advisory: *783 sender: *4 required: - action @@ -222262,10 +222136,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -222450,9 +222324,9 @@ x-webhooks: type: object properties: security_and_analysis: *283 - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: *330 sender: *4 required: @@ -222531,12 +222405,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: &785 + sponsorship: &784 type: object properties: created_at: @@ -222837,12 +222711,12 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - sponsorship @@ -222930,12 +222804,12 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -223012,17 +222886,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &786 + effective_date: &785 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: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - sponsorship @@ -223096,7 +222970,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &787 + changes: &786 type: object properties: tier: @@ -223140,13 +223014,13 @@ x-webhooks: - from required: - tier - effective_date: *786 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + effective_date: *785 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -223223,13 +223097,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *787 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + changes: *786 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -223303,10 +223177,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -223389,10 +223263,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -223812,15 +223686,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *720 + enterprise: *719 id: description: The unique identifier of the status. type: integer - installation: *721 + installation: *720 name: type: string - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 sha: description: The Commit SHA. @@ -223935,9 +223809,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -224027,9 +223901,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -224119,9 +223993,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -224211,9 +224085,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -224290,12 +224164,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - team: &788 + team: &787 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -224518,9 +224392,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: title: Repository description: A git repository @@ -224978,7 +224852,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -225054,9 +224928,9 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: title: Repository description: A git repository @@ -225514,7 +225388,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -225591,9 +225465,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: title: Repository description: A git repository @@ -226051,7 +225925,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -226195,9 +226069,9 @@ x-webhooks: - from required: - permissions - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: title: Repository description: A git repository @@ -226655,7 +226529,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - changes @@ -226733,9 +226607,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: title: Repository description: A git repository @@ -227193,7 +227067,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -227269,10 +227143,10 @@ x-webhooks: type: string enum: - started - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -227345,16 +227219,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *720 + enterprise: *719 inputs: type: object nullable: true additionalProperties: true - installation: *721 - organization: *722 + installation: *720 + organization: *721 ref: type: string - repository: *723 + repository: *722 sender: *4 workflow: type: string @@ -227436,10 +227310,10 @@ x-webhooks: type: string enum: - completed - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 workflow_job: allOf: @@ -227755,10 +227629,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 workflow_job: allOf: @@ -228097,10 +227971,10 @@ x-webhooks: type: string enum: - queued - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 workflow_job: type: object @@ -228314,10 +228188,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 workflow_job: type: object @@ -228533,12 +228407,12 @@ x-webhooks: type: string enum: - completed - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - workflow: *737 + workflow: *736 workflow_run: title: Workflow Run type: object @@ -229537,12 +229411,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - workflow: *737 + workflow: *736 workflow_run: title: Workflow Run type: object @@ -230526,12 +230400,12 @@ x-webhooks: type: string enum: - requested - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - workflow: *737 + workflow: *736 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index 0ea8674d4..20405d9b7 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -316489,6 +316489,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + "response-if-content-is-a-file-github-object": { + "summary": "Content is a file using the object media type" + }, + "response-if-content-is-a-directory-github-object": { + "summary": "Content is a directory using the object media type" + }, + "response-if-content-is-a-file": { + "summary": "Content is a file" + }, + "response-if-content-is-a-directory": { + "summary": "Content is a directory" + }, + "response-if-content-is-a-symlink": { + "summary": "Content is a symlink" + }, + "response-if-content-is-a-submodule": { + "summary": "Content is a submodule" + } + } + } + } + }, "responses": { "200": { "description": "Response", @@ -316656,7 +316683,7 @@ ] }, "examples": { - "response-if-content-is-a-file": { + "response-if-content-is-a-file-github-object": { "summary": "Response if content is a file", "value": { "type": "file", @@ -316677,7 +316704,7 @@ } } }, - "response-if-content-is-a-directory": { + "response-if-content-is-a-directory-github-object": { "summary": "Response if content is a directory and the application/vnd.github.v3.object media type is requested", "value": { "type": "dir", @@ -321351,10 +321378,26 @@ "type": "string", "description": "An optional comment associated with dismissing the alert.", "maxLength": 280 + }, + "assignees": { + "type": "array", + "description": "Usernames to assign to this Dependabot Alert.\nPass one or more user logins to _replace_ the set of assignees on this alert.\nSend an empty array (`[]`) to clear all assignees from the alert.", + "items": { + "type": "string" + } } }, - "required": [ - "state" + "anyOf": [ + { + "required": [ + "state" + ] + }, + { + "required": [ + "assignees" + ] + } ], "additionalProperties": false }, @@ -538861,427 +538904,6 @@ } } }, - "/repos/{owner}/{repo}/tags/protection": { - "get": { - "summary": "Closing down - List tag protection states for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#get-all-repository-rulesets)\" endpoint instead.\n\nThis returns the tag protection states of a repository.\n\nThis information is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/list-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository" - }, - "parameters": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - } - }, - "examples": { - "default": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - } - } - } - } - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - }, - "post": { - "summary": "Closing down - Create a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#create-a-repository-ruleset)\" endpoint instead.\n\nThis creates a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/create-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository" - }, - "parameters": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "pattern": { - "type": "string", - "description": "An optional glob pattern to match against when enforcing tag protection." - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "pattern": "v1.*" - } - } - } - } - } - }, - "responses": { - "201": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "enabled": true - } - } - } - } - } - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": { - "delete": { - "summary": "Closing down - Delete a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset)\" endpoint instead.\n\nThis deletes a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/delete-tag-protection", - "externalDocs": { - "description": "API method documentation", - "url": "https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository" - }, - "parameters": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "tag_protection_id", - "description": "The unique identifier of the tag protection.", - "in": "path", - "required": true, - "schema": { - "type": "integer" - } - } - ], - "responses": { - "204": { - "description": "Response" - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, "/repos/{owner}/{repo}/tarball/{ref}": { "get": { "summary": "Download a repository archive (tar)", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index 71edf358f..27f070906 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -10569,7 +10569,7 @@ paths: properties: action: type: string - discussion: &738 + discussion: &737 title: Discussion description: A Discussion in a repository. type: object @@ -11313,7 +11313,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &654 + sub_issues_summary: &653 title: Sub-issues Summary type: object properties: @@ -11426,7 +11426,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &655 + issue_dependencies_summary: &654 title: Issue Dependencies Summary type: object properties: @@ -11445,7 +11445,7 @@ paths: - total_blocking issue_field_values: type: array - items: &656 + items: &655 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12870,7 +12870,7 @@ paths: url: type: string format: uri - user: &662 + user: &661 title: Public User description: Public User type: object @@ -18320,7 +18320,7 @@ paths: required: false schema: type: string - - &713 + - &712 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -18466,7 +18466,7 @@ paths: parameters: - *67 - *116 - - &714 + - &713 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -18578,7 +18578,7 @@ paths: - *116 - *118 - *117 - - &715 + - &714 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -18586,7 +18586,7 @@ paths: schema: type: string - *119 - - &716 + - &715 name: sku description: The SKU to query for usage. in: query @@ -22159,7 +22159,7 @@ paths: type: array items: *153 examples: - default: &665 + default: &664 value: total_count: 1 repositories: @@ -25100,12 +25100,12 @@ paths: required: - subject_digests examples: - default: &695 + default: &694 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &696 + withPredicateType: &695 value: subject_digests: - sha256:abc123 @@ -25163,7 +25163,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &697 + default: &696 value: attestations_subject_digests: - sha256:abc: @@ -34759,7 +34759,7 @@ paths: parameters: - *67 - *240 - - &678 + - &677 name: repo_name description: repo_name parameter in: path @@ -35800,7 +35800,7 @@ paths: - nuget - container - *67 - - &679 + - &678 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -35841,7 +35841,7 @@ paths: default: *247 '403': *29 '401': *25 - '400': &681 + '400': &680 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -37633,7 +37633,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &769 + properties: &768 id: type: number description: The unique identifier of the status update. @@ -37681,7 +37681,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &770 + required: &769 - id - node_id - created_at @@ -38499,7 +38499,7 @@ paths: - updated_at - project_url examples: - default: &700 + default: &699 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38676,7 +38676,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &701 + items: &700 type: object properties: name: @@ -38713,7 +38713,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &702 + iteration_configuration: &701 type: object description: The configuration for iteration fields. properties: @@ -38763,7 +38763,7 @@ paths: value: name: Due date data_type: date - single_select_field: &703 + single_select_field: &702 summary: Create a single select field value: name: Priority @@ -38790,7 +38790,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &704 + iteration_field: &703 summary: Create an iteration field value: name: Sprint @@ -38816,7 +38816,7 @@ paths: application/json: schema: *268 examples: - text_field: &705 + text_field: &704 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -38825,7 +38825,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: &706 + number_field: &705 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -38834,7 +38834,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: &707 + date_field: &706 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -38843,7 +38843,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: &708 + single_select_field: &707 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38877,7 +38877,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &709 + iteration_field: &708 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -38923,7 +38923,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *264 - - &710 + - &709 name: field_id description: The unique identifier of the field. in: path @@ -38938,7 +38938,7 @@ paths: application/json: schema: *268 examples: - default: &711 + default: &710 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40135,7 +40135,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &692 + schema: &691 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -40312,7 +40312,7 @@ paths: parameters: - *264 - *67 - - &712 + - &711 name: view_number description: The number that identifies the project view. in: path @@ -47408,7 +47408,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &658 + response-if-user-is-a-team-maintainer: &657 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47473,7 +47473,7 @@ paths: application/json: schema: *326 examples: - response-if-users-membership-with-team-is-now-pending: &659 + response-if-users-membership-with-team-is-now-pending: &658 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47587,7 +47587,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &660 + schema: &659 title: Team Repository description: A team's access to a repository. type: object @@ -48244,7 +48244,7 @@ paths: type: array items: *190 examples: - response-if-child-teams-exist: &661 + response-if-child-teams-exist: &660 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -53444,7 +53444,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &732 + properties: &731 url: type: string format: uri @@ -53529,7 +53529,7 @@ paths: nullable: true properties: *72 required: *73 - required: &733 + required: &732 - id - node_id - sha @@ -59140,7 +59140,7 @@ paths: check. type: array items: *82 - deployment: &725 + deployment: &724 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60052,7 +60052,7 @@ paths: type: string format: date-time nullable: true - head_commit: &753 + head_commit: &752 title: Simple Commit description: A commit. type: object @@ -64323,14 +64323,14 @@ paths: type: integer machines: type: array - items: &668 + items: &667 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *449 required: *450 examples: - default: &669 + default: &668 value: total_count: 2 machines: @@ -68117,6 +68117,23 @@ paths: required: false schema: type: string + requestBody: + required: false + content: + application/json: + examples: + response-if-content-is-a-file-github-object: + summary: Content is a file using the object media type + response-if-content-is-a-directory-github-object: + summary: Content is a directory using the object media type + response-if-content-is-a-file: + summary: Content is a file + response-if-content-is-a-directory: + summary: Content is a directory + response-if-content-is-a-symlink: + summary: Content is a symlink + response-if-content-is-a-submodule: + summary: Content is a submodule responses: '200': description: Response @@ -68245,7 +68262,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &475 + response-if-content-is-a-file-github-object: &475 summary: Response if content is a file value: type: file @@ -68263,7 +68280,7 @@ paths: git: https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1 self: https://api.github.com/repos/octokit/octokit.rb/contents/README.md html: https://github.com/octokit/octokit.rb/blob/master/README.md - response-if-content-is-a-directory: + response-if-content-is-a-directory-github-object: summary: Response if content is a directory and the application/vnd.github.v3.object media type is requested value: @@ -69767,8 +69784,19 @@ paths: description: An optional comment associated with dismissing the alert. maxLength: 280 - required: - - state + assignees: + type: array + description: |- + Usernames to assign to this Dependabot Alert. + Pass one or more user logins to _replace_ the set of assignees on this alert. + Send an empty array (`[]`) to clear all assignees from the alert. + items: + type: string + anyOf: + - required: + - state + - required: + - assignees additionalProperties: false examples: default: @@ -74724,7 +74752,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &761 + last_response: &760 title: Hook Response type: object properties: @@ -75775,7 +75803,7 @@ paths: parameters: - *327 - *328 - - &690 + - &689 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76209,7 +76237,7 @@ paths: type: array items: *526 examples: - default: &683 + default: &682 value: - id: 1 repository: @@ -90614,7 +90642,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &783 + items: &782 type: object properties: type: @@ -92827,160 +92855,6 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos - "/repos/{owner}/{repo}/tags/protection": - get: - summary: Closing down - List tag protection states for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#get-all-repository-rulesets)" endpoint instead. - - This returns the tag protection states of a repository. - - This information is only available to repository administrators. - tags: - - repos - operationId: repos/list-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository - parameters: - - *327 - - *328 - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: &647 - title: Tag protection - description: Tag protection - type: object - properties: - id: - type: integer - example: 2 - created_at: - type: string - example: '2011-01-26T19:01:12Z' - updated_at: - type: string - example: '2011-01-26T19:01:12Z' - enabled: - type: boolean - example: true - pattern: - type: string - example: v1.* - required: - - pattern - examples: - default: - value: - - id: 2 - pattern: v1.* - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - post: - summary: Closing down - Create a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#create-a-repository-ruleset)" endpoint instead. - - This creates a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/create-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository - parameters: - - *327 - - *328 - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - pattern: - type: string - description: An optional glob pattern to match against when enforcing - tag protection. - required: - - pattern - examples: - default: - value: - pattern: v1.* - responses: - '201': - description: Response - content: - application/json: - schema: *647 - examples: - default: - value: - enabled: true - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": - delete: - summary: Closing down - Delete a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset)" endpoint instead. - - This deletes a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/delete-tag-protection - externalDocs: - description: API method documentation - url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository - parameters: - - *327 - - *328 - - name: tag_protection_id - description: The unique identifier of the tag protection. - in: path - required: true - schema: - type: integer - responses: - '204': - description: Response - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true "/repos/{owner}/{repo}/tarball/{ref}": get: summary: Download a repository archive (tar) @@ -93077,7 +92951,7 @@ paths: description: Response content: application/json: - schema: &648 + schema: &647 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -93089,7 +92963,7 @@ paths: required: - names examples: - default: &649 + default: &648 value: names: - octocat @@ -93144,9 +93018,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *647 examples: - default: *649 + default: *648 '404': *6 '422': *7 x-github: @@ -93169,7 +93043,7 @@ paths: parameters: - *327 - *328 - - &650 + - &649 name: per description: The time frame to display results for. in: query @@ -93198,7 +93072,7 @@ paths: example: 128 clones: type: array - items: &651 + items: &650 title: Traffic type: object properties: @@ -93439,7 +93313,7 @@ paths: parameters: - *327 - *328 - - *650 + - *649 responses: '200': description: Response @@ -93458,7 +93332,7 @@ paths: example: 3782 views: type: array - items: *651 + items: *650 required: - uniques - count @@ -94227,7 +94101,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &652 + text_matches: &651 title: Search Result Text Matches type: array items: @@ -94389,7 +94263,7 @@ paths: enum: - author-date - committer-date - - &653 + - &652 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 @@ -94517,7 +94391,7 @@ paths: type: number node_id: type: string - text_matches: *652 + text_matches: *651 required: - sha - node_id @@ -94709,7 +94583,7 @@ paths: - interactions - created - updated - - *653 + - *652 - *17 - *19 - name: advanced_search @@ -94806,11 +94680,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: type: string state_reason: @@ -94842,7 +94716,7 @@ paths: type: string format: date-time nullable: true - text_matches: *652 + text_matches: *651 pull_request: type: object properties: @@ -95075,7 +94949,7 @@ paths: enum: - created - updated - - *653 + - *652 - *17 - *19 responses: @@ -95119,7 +94993,7 @@ paths: nullable: true score: type: number - text_matches: *652 + text_matches: *651 required: - id - node_id @@ -95204,7 +95078,7 @@ paths: - forks - help-wanted-issues - updated - - *653 + - *652 - *17 - *19 responses: @@ -95452,7 +95326,7 @@ paths: - admin - pull - push - text_matches: *652 + text_matches: *651 temp_clone_token: type: string allow_merge_commit: @@ -95752,7 +95626,7 @@ paths: type: string format: uri nullable: true - text_matches: *652 + text_matches: *651 related: type: array nullable: true @@ -95943,7 +95817,7 @@ paths: - followers - repositories - joined - - *653 + - *652 - *17 - *19 responses: @@ -96047,7 +95921,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *652 + text_matches: *651 blog: type: string nullable: true @@ -96126,7 +96000,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &657 + - &656 name: team_id description: The unique identifier of the team. in: path @@ -96167,7 +96041,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *657 + - *656 requestBody: required: true content: @@ -96267,7 +96141,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *657 + - *656 responses: '204': description: Response @@ -96296,7 +96170,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *657 + - *656 - *17 - *19 responses: @@ -96334,7 +96208,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *657 + - *656 - name: role description: Filters members returned by their role in the team. in: query @@ -96385,7 +96259,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *657 + - *656 - *63 responses: '204': @@ -96422,7 +96296,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *657 + - *656 - *63 responses: '204': @@ -96462,7 +96336,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *657 + - *656 - *63 responses: '204': @@ -96499,7 +96373,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *657 + - *656 - *63 responses: '200': @@ -96508,7 +96382,7 @@ paths: application/json: schema: *326 examples: - response-if-user-is-a-team-maintainer: *658 + response-if-user-is-a-team-maintainer: *657 '404': *6 x-github: githubCloudOnly: false @@ -96541,7 +96415,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *657 + - *656 - *63 requestBody: required: false @@ -96569,7 +96443,7 @@ paths: application/json: schema: *326 examples: - response-if-users-membership-with-team-is-now-pending: *659 + response-if-users-membership-with-team-is-now-pending: *658 '403': description: Forbidden if team synchronization is set up '422': @@ -96603,7 +96477,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *657 + - *656 - *63 responses: '204': @@ -96631,7 +96505,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *657 + - *656 - *17 - *19 responses: @@ -96673,7 +96547,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *657 + - *656 - *327 - *328 responses: @@ -96681,7 +96555,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *660 + schema: *659 examples: alternative-response-with-extra-repository-information: value: @@ -96832,7 +96706,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *657 + - *656 - *327 - *328 requestBody: @@ -96884,7 +96758,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *657 + - *656 - *327 - *328 responses: @@ -96911,7 +96785,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *657 + - *656 - *17 - *19 responses: @@ -96923,7 +96797,7 @@ paths: type: array items: *190 examples: - response-if-child-teams-exist: *661 + response-if-child-teams-exist: *660 headers: Link: *59 '404': *6 @@ -96956,7 +96830,7 @@ paths: application/json: schema: oneOf: - - &663 + - &662 title: Private User description: Private User type: object @@ -97159,7 +97033,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *662 + - *661 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -97312,7 +97186,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *662 examples: default: value: @@ -97710,7 +97584,7 @@ paths: type: integer secrets: type: array - items: &664 + items: &663 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97826,7 +97700,7 @@ paths: description: Response content: application/json: - schema: *664 + schema: *663 examples: default: value: @@ -97972,7 +97846,7 @@ paths: type: array items: *153 examples: - default: *665 + default: *664 '401': *25 '403': *29 '404': *6 @@ -98239,7 +98113,7 @@ paths: description: Response content: application/json: - schema: &666 + schema: &665 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -98280,7 +98154,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &667 + default: &666 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -98325,9 +98199,9 @@ paths: description: Response content: application/json: - schema: *666 + schema: *665 examples: - default: *667 + default: *666 '404': *6 x-github: githubCloudOnly: false @@ -98364,9 +98238,9 @@ paths: type: integer machines: type: array - items: *668 + items: *667 examples: - default: *669 + default: *668 '304': *37 '500': *113 '401': *25 @@ -99305,7 +99179,7 @@ paths: type: array items: *246 examples: - default: &680 + default: &679 value: - id: 197 name: hello_docker @@ -99406,7 +99280,7 @@ paths: application/json: schema: type: array - items: &670 + items: &669 title: Email description: Email type: object @@ -99471,9 +99345,9 @@ paths: application/json: schema: type: array - items: *670 + items: *669 examples: - default: &682 + default: &681 value: - email: octocat@github.com verified: true @@ -99548,7 +99422,7 @@ paths: application/json: schema: type: array - items: *670 + items: *669 examples: default: value: @@ -99804,7 +99678,7 @@ paths: application/json: schema: type: array - items: &671 + items: &670 title: GPG Key description: A unique encryption key type: object @@ -99935,7 +99809,7 @@ paths: - subkeys - revoked examples: - default: &698 + default: &697 value: - id: 3 name: Octocat's GPG Key @@ -100020,9 +99894,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *670 examples: - default: &672 + default: &671 value: id: 3 name: Octocat's GPG Key @@ -100079,7 +99953,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &673 + - &672 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -100091,9 +99965,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *670 examples: - default: *672 + default: *671 '404': *6 '304': *37 '403': *29 @@ -100116,7 +99990,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *673 + - *672 responses: '204': description: Response @@ -100573,7 +100447,7 @@ paths: application/json: schema: type: array - items: &674 + items: &673 title: Key description: Key type: object @@ -100674,9 +100548,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *673 examples: - default: &675 + default: &674 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -100715,9 +100589,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *673 examples: - default: *675 + default: *674 '404': *6 '304': *37 '403': *29 @@ -100773,7 +100647,7 @@ paths: application/json: schema: type: array - items: &676 + items: &675 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -100841,7 +100715,7 @@ paths: - account - plan examples: - default: &677 + default: &676 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -100903,9 +100777,9 @@ paths: application/json: schema: type: array - items: *676 + items: *675 examples: - default: *677 + default: *676 headers: Link: *59 '304': *37 @@ -101914,7 +101788,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *240 - - *678 + - *677 responses: '204': description: Response @@ -102029,7 +101903,7 @@ paths: - docker - nuget - container - - *679 + - *678 - *19 - *17 responses: @@ -102041,8 +101915,8 @@ paths: type: array items: *246 examples: - default: *680 - '400': *681 + default: *679 + '400': *680 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102071,7 +101945,7 @@ paths: application/json: schema: *246 examples: - default: &699 + default: &698 value: id: 40201 name: octo-name @@ -102433,9 +102307,9 @@ paths: application/json: schema: type: array - items: *670 + items: *669 examples: - default: *682 + default: *681 headers: Link: *59 '304': *37 @@ -102548,7 +102422,7 @@ paths: type: array items: *71 examples: - default: &689 + default: &688 summary: Default response value: - id: 1296269 @@ -102894,7 +102768,7 @@ paths: type: array items: *526 examples: - default: *683 + default: *682 headers: Link: *59 '304': *37 @@ -102973,7 +102847,7 @@ paths: application/json: schema: type: array - items: &684 + items: &683 title: Social account description: Social media account type: object @@ -102988,7 +102862,7 @@ paths: - provider - url examples: - default: &685 + default: &684 value: - provider: twitter url: https://twitter.com/github @@ -103050,9 +102924,9 @@ paths: application/json: schema: type: array - items: *684 + items: *683 examples: - default: *685 + default: *684 '422': *15 '304': *37 '404': *6 @@ -103139,7 +103013,7 @@ paths: application/json: schema: type: array - items: &686 + items: &685 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -103159,7 +103033,7 @@ paths: - title - created_at examples: - default: &717 + default: &716 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103223,9 +103097,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *685 examples: - default: &687 + default: &686 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103255,7 +103129,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &688 + - &687 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -103267,9 +103141,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *685 examples: - default: *687 + default: *686 '404': *6 '304': *37 '403': *29 @@ -103292,7 +103166,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *688 + - *687 responses: '204': description: Response @@ -103321,7 +103195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &718 + - &717 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 @@ -103346,11 +103220,11 @@ paths: type: array items: *71 examples: - default-response: *689 + default-response: *688 application/vnd.github.v3.star+json: schema: type: array - items: &719 + items: &718 title: Starred Repository description: Starred Repository type: object @@ -103719,10 +103593,10 @@ paths: application/json: schema: oneOf: - - *663 - *662 + - *661 examples: - default-response: &693 + default-response: &692 summary: Default response value: login: octocat @@ -103757,7 +103631,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &694 + response-with-git-hub-plan-information: &693 summary: Response with GitHub plan information value: login: octocat @@ -103814,7 +103688,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &691 + - &690 name: user_id description: The unique identifier of the user. in: path @@ -103880,7 +103754,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *690 + - *689 - *17 responses: '200': @@ -103915,7 +103789,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *691 + - *690 - *264 requestBody: required: true @@ -103987,7 +103861,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *692 + schema: *691 examples: table_view: summary: Response for creating a table view @@ -104039,11 +103913,11 @@ paths: application/json: schema: oneOf: - - *663 - *662 + - *661 examples: - default-response: *693 - response-with-git-hub-plan-information: *694 + default-response: *692 + response-with-git-hub-plan-information: *693 '404': *6 x-github: githubCloudOnly: false @@ -104093,8 +103967,8 @@ paths: required: - subject_digests examples: - default: *695 - withPredicateType: *696 + default: *694 + withPredicateType: *695 responses: '200': description: Response @@ -104147,7 +104021,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *697 + default: *696 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104393,7 +104267,7 @@ paths: type: array items: *246 examples: - default: *680 + default: *679 '403': *29 '401': *25 x-github: @@ -104777,9 +104651,9 @@ paths: application/json: schema: type: array - items: *671 + items: *670 examples: - default: *698 + default: *697 headers: Link: *59 x-github: @@ -105007,7 +104881,7 @@ paths: - docker - nuget - container - - *679 + - *678 - *63 - *19 - *17 @@ -105020,10 +104894,10 @@ paths: type: array items: *246 examples: - default: *680 + default: *679 '403': *29 '401': *25 - '400': *681 + '400': *680 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105053,7 +104927,7 @@ paths: application/json: schema: *246 examples: - default: *699 + default: *698 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105402,7 +105276,7 @@ paths: type: array items: *268 examples: - default: *700 + default: *699 headers: Link: *59 '304': *37 @@ -105462,7 +105336,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *701 + items: *700 required: - name - data_type @@ -105478,7 +105352,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *702 + iteration_configuration: *701 required: - name - data_type @@ -105500,8 +105374,8 @@ paths: value: name: Due date data_type: date - single_select_field: *703 - iteration_field: *704 + single_select_field: *702 + iteration_field: *703 responses: '201': description: Response @@ -105509,11 +105383,11 @@ paths: application/json: schema: *268 examples: - text_field: *705 - number_field: *706 - date_field: *707 - single_select_field: *708 - iteration_field: *709 + text_field: *704 + number_field: *705 + date_field: *706 + single_select_field: *707 + iteration_field: *708 '304': *37 '403': *29 '401': *25 @@ -105535,7 +105409,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *264 - - *710 + - *709 - *63 responses: '200': @@ -105544,7 +105418,7 @@ paths: application/json: schema: *268 examples: - default: *711 + default: *710 headers: Link: *59 '304': *37 @@ -105898,7 +105772,7 @@ paths: parameters: - *264 - *63 - - *712 + - *711 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -106173,7 +106047,7 @@ paths: - *116 - *118 - *117 - - *713 + - *712 - *119 responses: '200': @@ -106304,7 +106178,7 @@ paths: parameters: - *63 - *116 - - *714 + - *713 - *117 responses: '200': @@ -106403,9 +106277,9 @@ paths: - *116 - *118 - *117 - - *715 + - *714 - *119 - - *716 + - *715 responses: '200': description: Response when getting a billing usage summary @@ -106539,9 +106413,9 @@ paths: application/json: schema: type: array - items: *684 + items: *683 examples: - default: *685 + default: *684 headers: Link: *59 x-github: @@ -106571,9 +106445,9 @@ paths: application/json: schema: type: array - items: *686 + items: *685 examples: - default: *717 + default: *716 headers: Link: *59 x-github: @@ -106598,7 +106472,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *63 - - *718 + - *717 - *53 - *17 - *19 @@ -106610,11 +106484,11 @@ paths: schema: anyOf: - type: array - items: *719 + items: *718 - type: array items: *71 examples: - default-response: *689 + default-response: *688 headers: Link: *59 x-github: @@ -106773,7 +106647,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &720 + enterprise: &719 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -106831,7 +106705,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &721 + installation: &720 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -106850,7 +106724,7 @@ x-webhooks: required: - id - node_id - organization: &722 + organization: &721 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -106910,13 +106784,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &723 + repository: &722 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &755 + properties: &754 id: description: Unique identifier of the repository example: 42 @@ -107611,7 +107485,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &756 + required: &755 - archive_url - assignees_url - blobs_url @@ -107762,10 +107636,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -107841,11 +107715,11 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - rule: &724 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + rule: &723 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -108068,11 +107942,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - rule: *724 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + rule: *723 sender: *4 required: - action @@ -108255,11 +108129,11 @@ x-webhooks: - everyone required: - from - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - rule: *724 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + rule: *723 sender: *4 required: - action @@ -108343,7 +108217,7 @@ x-webhooks: type: string enum: - completed - check_run: &726 + check_run: &725 title: CheckRun description: A check performed on the code of a given code change type: object @@ -108434,7 +108308,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *725 + deployment: *724 details_url: example: https://example.com type: string @@ -108519,10 +108393,10 @@ x-webhooks: - output - app - pull_requests - installation: *721 - enterprise: *720 - organization: *722 - repository: *723 + installation: *720 + enterprise: *719 + organization: *721 + repository: *722 sender: *4 required: - check_run @@ -108913,11 +108787,11 @@ x-webhooks: type: string enum: - created - check_run: *726 - installation: *721 - enterprise: *720 - organization: *722 - repository: *723 + check_run: *725 + installation: *720 + enterprise: *719 + organization: *721 + repository: *722 sender: *4 required: - check_run @@ -109311,11 +109185,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *726 - installation: *721 - enterprise: *720 - organization: *722 - repository: *723 + check_run: *725 + installation: *720 + enterprise: *719 + organization: *721 + repository: *722 requested_action: description: The action requested by the user. type: object @@ -109718,11 +109592,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *726 - installation: *721 - enterprise: *720 - organization: *722 - repository: *723 + check_run: *725 + installation: *720 + enterprise: *719 + organization: *721 + repository: *722 sender: *4 required: - check_run @@ -110692,10 +110566,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -111384,10 +111258,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -112070,10 +111944,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -112384,20 +112258,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &727 + commit_oid: &726 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: *720 - installation: *721 - organization: *722 - ref: &728 + enterprise: *719 + installation: *720 + organization: *721 + ref: &727 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: *723 + repository: *722 sender: *4 required: - action @@ -112792,12 +112666,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *727 - enterprise: *720 - installation: *721 - organization: *722 - ref: *728 - repository: *723 + commit_oid: *726 + enterprise: *719 + installation: *720 + organization: *721 + ref: *727 + repository: *722 sender: *4 required: - action @@ -113063,12 +112937,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *727 - enterprise: *720 - installation: *721 - organization: *722 - ref: *728 - repository: *723 + commit_oid: *726 + enterprise: *719 + installation: *720 + organization: *721 + ref: *727 + repository: *722 sender: *4 required: - action @@ -113400,12 +113274,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *727 - enterprise: *720 - installation: *721 - organization: *722 - ref: *728 - repository: *723 + commit_oid: *726 + enterprise: *719 + installation: *720 + organization: *721 + ref: *727 + repository: *722 sender: *4 required: - action @@ -113679,16 +113553,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *723 + repository: *722 sender: *4 required: - action @@ -113925,12 +113799,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *727 - enterprise: *720 - installation: *721 - organization: *722 - ref: *728 - repository: *723 + commit_oid: *726 + enterprise: *719 + installation: *720 + organization: *721 + ref: *727 + repository: *722 sender: *4 required: - action @@ -114241,10 +114115,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -114499,10 +114373,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -114582,18 +114456,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *722 - pusher_type: &729 + organization: *721 + pusher_type: &728 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &730 + ref: &729 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -114603,7 +114477,7 @@ x-webhooks: enum: - tag - branch - repository: *723 + repository: *722 sender: *4 required: - ref @@ -114686,9 +114560,9 @@ x-webhooks: enum: - created definition: *276 - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 sender: *4 required: - action @@ -114773,9 +114647,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 sender: *4 required: - action @@ -114853,9 +114727,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *276 - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 sender: *4 required: - action @@ -114933,9 +114807,9 @@ x-webhooks: enum: - updated definition: *276 - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 sender: *4 required: - action @@ -115012,10 +114886,10 @@ x-webhooks: type: string enum: - updated - enterprise: *720 - installation: *721 - repository: *723 - organization: *722 + enterprise: *719 + installation: *720 + repository: *722 + organization: *721 sender: *4 new_property_values: type: array @@ -115100,18 +114974,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *720 - installation: *721 - organization: *722 - pusher_type: *729 - ref: *730 + enterprise: *719 + installation: *720 + organization: *721 + pusher_type: *728 + ref: *729 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *723 + repository: *722 sender: *4 required: - ref @@ -115192,10 +115066,10 @@ x-webhooks: enum: - assignees_changed alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115276,10 +115150,10 @@ x-webhooks: enum: - auto_dismissed alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115361,10 +115235,10 @@ x-webhooks: enum: - auto_reopened alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115446,10 +115320,10 @@ x-webhooks: enum: - created alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115529,10 +115403,10 @@ x-webhooks: enum: - dismissed alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115612,10 +115486,10 @@ x-webhooks: enum: - fixed alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115696,10 +115570,10 @@ x-webhooks: enum: - reintroduced alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115779,10 +115653,10 @@ x-webhooks: enum: - reopened alert: *482 - installation: *721 - organization: *722 - enterprise: *720 - repository: *723 + installation: *720 + organization: *721 + enterprise: *719 + repository: *722 sender: *4 required: - action @@ -115859,9 +115733,9 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - key: &731 + enterprise: *719 + installation: *720 + key: &730 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -115897,8 +115771,8 @@ x-webhooks: - verified - created_at - read_only - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -115975,11 +115849,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - key: *731 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + key: *730 + organization: *721 + repository: *722 sender: *4 required: - action @@ -116535,12 +116409,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - workflow: &737 + workflow: &736 title: Workflow type: object nullable: true @@ -117281,15 +117155,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *732 - required: *733 + properties: *731 + required: *732 nullable: true pull_requests: type: array items: *576 - repository: *723 - organization: *722 - installation: *721 + repository: *722 + organization: *721 + installation: *720 sender: *4 responses: '200': @@ -117360,7 +117234,7 @@ x-webhooks: type: string enum: - approved - approver: &734 + approver: &733 type: object properties: avatar_url: @@ -117403,11 +117277,11 @@ x-webhooks: type: string comment: type: string - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - reviewers: &735 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + reviewers: &734 type: array items: type: object @@ -117486,7 +117360,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &736 + workflow_job_run: &735 type: object properties: conclusion: @@ -118217,18 +118091,18 @@ x-webhooks: type: string enum: - rejected - approver: *734 + approver: *733 comment: type: string - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - reviewers: *735 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + reviewers: *734 sender: *4 since: type: string - workflow_job_run: *736 + workflow_job_run: *735 workflow_job_runs: type: array items: @@ -118932,13 +118806,13 @@ x-webhooks: type: string enum: - requested - enterprise: *720 + enterprise: *719 environment: type: string - installation: *721 - organization: *722 - repository: *723 - requestor: &742 + installation: *720 + organization: *721 + repository: *722 + requestor: &741 title: User type: object nullable: true @@ -120827,12 +120701,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - workflow: *737 + workflow: *736 workflow_run: title: Deployment Workflow Run type: object @@ -121512,7 +121386,7 @@ x-webhooks: type: string enum: - answered - answer: &740 + answer: &739 type: object properties: author_association: @@ -121669,11 +121543,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -121800,11 +121674,11 @@ x-webhooks: - from required: - category - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -121887,11 +121761,11 @@ x-webhooks: type: string enum: - closed - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -121973,7 +121847,7 @@ x-webhooks: type: string enum: - created - comment: &739 + comment: &738 type: object properties: author_association: @@ -122130,11 +122004,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122217,12 +122091,12 @@ x-webhooks: type: string enum: - deleted - comment: *739 - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + comment: *738 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122317,12 +122191,12 @@ x-webhooks: - from required: - body - comment: *739 - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + comment: *738 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122406,11 +122280,11 @@ x-webhooks: type: string enum: - created - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122492,11 +122366,11 @@ x-webhooks: type: string enum: - deleted - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122596,11 +122470,11 @@ x-webhooks: type: string required: - from - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122682,10 +122556,10 @@ x-webhooks: type: string enum: - labeled - discussion: *738 - enterprise: *720 - installation: *721 - label: &741 + discussion: *737 + enterprise: *719 + installation: *720 + label: &740 title: Label type: object properties: @@ -122717,8 +122591,8 @@ x-webhooks: - color - default - description - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122801,11 +122675,11 @@ x-webhooks: type: string enum: - locked - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122887,11 +122761,11 @@ x-webhooks: type: string enum: - pinned - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122973,11 +122847,11 @@ x-webhooks: type: string enum: - reopened - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123062,16 +122936,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *738 - new_repository: *723 + new_discussion: *737 + new_repository: *722 required: - new_discussion - new_repository - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123154,10 +123028,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *738 - old_answer: *740 - organization: *722 - repository: *723 + discussion: *737 + old_answer: *739 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123239,12 +123113,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *738 - enterprise: *720 - installation: *721 - label: *741 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123327,11 +123201,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123413,11 +123287,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *738 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + discussion: *737 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -123490,7 +123364,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *720 + enterprise: *719 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -124150,9 +124024,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - forkee @@ -124298,9 +124172,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pages: description: The pages that were updated. type: array @@ -124337,7 +124211,7 @@ x-webhooks: - action - sha - html_url - repository: *723 + repository: *722 sender: *4 required: - pages @@ -124413,10 +124287,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories: &743 + organization: *721 + repositories: &742 description: An array of repository objects that the installation can access. type: array @@ -124442,8 +124316,8 @@ x-webhooks: - name - full_name - private - repository: *723 - requester: *742 + repository: *722 + requester: *741 sender: *4 required: - action @@ -124518,11 +124392,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories: *743 - repository: *723 + organization: *721 + repositories: *742 + repository: *722 requester: nullable: true sender: *4 @@ -124598,11 +124472,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories: *743 - repository: *723 + organization: *721 + repositories: *742 + repository: *722 requester: nullable: true sender: *4 @@ -124678,10 +124552,10 @@ x-webhooks: type: string enum: - added - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories_added: &744 + organization: *721 + repositories_added: &743 description: An array of repository objects, which were added to the installation. type: array @@ -124727,15 +124601,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *723 - repository_selection: &745 + repository: *722 + repository_selection: &744 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *742 + requester: *741 sender: *4 required: - action @@ -124814,10 +124688,10 @@ x-webhooks: type: string enum: - removed - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories_added: *744 + organization: *721 + repositories_added: *743 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -124844,9 +124718,9 @@ x-webhooks: - name - full_name - private - repository: *723 - repository_selection: *745 - requester: *742 + repository: *722 + repository_selection: *744 + requester: *741 sender: *4 required: - action @@ -124925,11 +124799,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories: *743 - repository: *723 + organization: *721 + repositories: *742 + repository: *722 requester: nullable: true sender: *4 @@ -125107,10 +124981,10 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 target_type: type: string @@ -125189,11 +125063,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *720 + enterprise: *719 installation: *22 - organization: *722 - repositories: *743 - repository: *723 + organization: *721 + repositories: *742 + repository: *722 requester: nullable: true sender: *4 @@ -125453,8 +125327,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -126243,8 +126117,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 state: description: State of the issue; either 'open' or 'closed' type: string @@ -126593,8 +126467,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -126674,7 +126548,7 @@ x-webhooks: type: string enum: - deleted - comment: &746 + comment: &745 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -126847,8 +126721,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -127633,8 +127507,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 state: description: State of the issue; either 'open' or 'closed' type: string @@ -127985,8 +127859,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -128066,7 +127940,7 @@ x-webhooks: type: string enum: - edited - changes: &775 + changes: &774 description: The changes to the comment. type: object properties: @@ -128078,9 +127952,9 @@ x-webhooks: type: string required: - from - comment: *746 - enterprise: *720 - installation: *721 + comment: *745 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128868,8 +128742,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129218,8 +129092,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -129300,9 +129174,9 @@ x-webhooks: type: string enum: - pinned - comment: *746 - enterprise: *720 - installation: *721 + comment: *745 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130092,8 +129966,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130444,8 +130318,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -130525,9 +130399,9 @@ x-webhooks: type: string enum: - unpinned - comment: *746 - enterprise: *720 - installation: *721 + comment: *745 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131317,8 +131191,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131669,8 +131543,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -131759,9 +131633,9 @@ x-webhooks: type: number blocking_issue: *77 blocking_issue_repo: *71 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -131850,9 +131724,9 @@ x-webhooks: type: number blocking_issue: *77 blocking_issue_repo: *71 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -131940,9 +131814,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -132031,9 +131905,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -132113,10 +131987,10 @@ x-webhooks: type: string enum: - assigned - assignee: *742 - enterprise: *720 - installation: *721 - issue: &749 + assignee: *741 + enterprise: *719 + installation: *720 + issue: &748 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -132908,11 +132782,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133029,8 +132903,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -133110,8 +132984,8 @@ x-webhooks: type: string enum: - closed - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133908,11 +133782,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134164,8 +134038,8 @@ x-webhooks: required: - state - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -134244,8 +134118,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135033,11 +134907,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135153,8 +135027,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -135233,8 +135107,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136044,11 +135918,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136143,7 +136017,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &747 + milestone: &746 title: Milestone description: A collection of related issues and pull requests. type: object @@ -136281,8 +136155,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -136381,8 +136255,8 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137174,11 +137048,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137295,9 +137169,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *741 - organization: *722 - repository: *723 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -137377,8 +137251,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138169,11 +138043,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138290,9 +138164,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *741 - organization: *722 - repository: *723 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -138372,8 +138246,8 @@ x-webhooks: type: string enum: - locked - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139188,11 +139062,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139286,8 +139160,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -139366,8 +139240,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140176,11 +140050,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140274,9 +140148,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *747 - organization: *722 - repository: *723 + milestone: *746 + organization: *721 + repository: *722 sender: *4 required: - action @@ -141139,11 +141013,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141724,8 +141598,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142509,11 +142383,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142637,8 +142511,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -142718,9 +142592,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *720 - installation: *721 - issue: &748 + enterprise: *719 + installation: *720 + issue: &747 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143506,11 +143380,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143626,8 +143500,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -143706,8 +143580,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144520,11 +144394,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144619,8 +144493,8 @@ x-webhooks: user_view_type: type: string type: *228 - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -145489,11 +145363,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146088,11 +145962,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *720 - installation: *721 - issue: *748 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + issue: *747 + organization: *721 + repository: *722 sender: *4 required: - action @@ -146172,12 +146046,12 @@ x-webhooks: type: string enum: - typed - enterprise: *720 - installation: *721 - issue: *749 + enterprise: *719 + installation: *720 + issue: *748 type: *228 - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -146258,7 +146132,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &778 + assignee: &777 title: User type: object nullable: true @@ -146328,11 +146202,11 @@ x-webhooks: required: - login - id - enterprise: *720 - installation: *721 - issue: *749 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + issue: *748 + organization: *721 + repository: *722 sender: *4 required: - action @@ -146411,12 +146285,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *720 - installation: *721 - issue: *749 - label: *741 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + issue: *748 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -146496,8 +146370,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147310,11 +147184,11 @@ x-webhooks: properties: *78 required: *79 nullable: true - sub_issues_summary: *654 - issue_dependencies_summary: *655 + sub_issues_summary: *653 + issue_dependencies_summary: *654 issue_field_values: type: array - items: *656 + items: *655 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147408,8 +147282,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147489,11 +147363,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *720 - installation: *721 - issue: *748 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + issue: *747 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147572,12 +147446,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *720 - installation: *721 - issue: *749 + enterprise: *719 + installation: *720 + issue: *748 type: *228 - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147657,11 +147531,11 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - label: *741 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147739,11 +147613,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - label: *741 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147853,11 +147727,11 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - label: *741 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + label: *740 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147939,9 +147813,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *720 - installation: *721 - marketplace_purchase: &750 + enterprise: *719 + installation: *720 + marketplace_purchase: &749 title: Marketplace Purchase type: object required: @@ -148024,8 +147898,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *722 - previous_marketplace_purchase: &751 + organization: *721 + previous_marketplace_purchase: &750 title: Marketplace Purchase type: object properties: @@ -148105,7 +147979,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148185,10 +148059,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *720 - installation: *721 - marketplace_purchase: *750 - organization: *722 + enterprise: *719 + installation: *720 + marketplace_purchase: *749 + organization: *721 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148271,7 +148145,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148353,10 +148227,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *720 - installation: *721 - marketplace_purchase: *750 - organization: *722 + enterprise: *719 + installation: *720 + marketplace_purchase: *749 + organization: *721 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148438,7 +148312,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148519,8 +148393,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 marketplace_purchase: title: Marketplace Purchase type: object @@ -148602,9 +148476,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *722 - previous_marketplace_purchase: *751 - repository: *723 + organization: *721 + previous_marketplace_purchase: *750 + repository: *722 sender: *4 required: - action @@ -148684,12 +148558,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *720 - installation: *721 - marketplace_purchase: *750 - organization: *722 - previous_marketplace_purchase: *751 - repository: *723 + enterprise: *719 + installation: *720 + marketplace_purchase: *749 + organization: *721 + previous_marketplace_purchase: *750 + repository: *722 sender: *4 required: - action @@ -148791,11 +148665,11 @@ x-webhooks: type: string required: - to - enterprise: *720 - installation: *721 - member: *742 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + member: *741 + organization: *721 + repository: *722 sender: *4 required: - action @@ -148895,11 +148769,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *720 - installation: *721 - member: *742 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + member: *741 + organization: *721 + repository: *722 sender: *4 required: - action @@ -148978,11 +148852,11 @@ x-webhooks: type: string enum: - removed - enterprise: *720 - installation: *721 - member: *742 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + member: *741 + organization: *721 + repository: *722 sender: *4 required: - action @@ -149060,11 +148934,11 @@ x-webhooks: type: string enum: - added - enterprise: *720 - installation: *721 - member: *742 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + member: *741 + organization: *721 + repository: *722 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149140,7 +149014,7 @@ x-webhooks: required: - login - id - team: &752 + team: &751 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -149363,11 +149237,11 @@ x-webhooks: type: string enum: - removed - enterprise: *720 - installation: *721 - member: *742 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + member: *741 + organization: *721 + repository: *722 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149444,7 +149318,7 @@ x-webhooks: required: - login - id - team: *752 + team: *751 required: - action - scope @@ -149526,8 +149400,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *721 - merge_group: &754 + installation: *720 + merge_group: &753 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -149546,15 +149420,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *753 + head_commit: *752 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -149640,10 +149514,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *721 - merge_group: *754 - organization: *722 - repository: *723 + installation: *720 + merge_group: *753 + organization: *721 + repository: *722 sender: *4 required: - action @@ -149716,7 +149590,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 + enterprise: *719 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -149825,16 +149699,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *721 - organization: *722 + installation: *720 + organization: *721 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *755 - required: *756 + properties: *754 + required: *755 nullable: true sender: *4 required: @@ -149915,11 +149789,11 @@ x-webhooks: type: string enum: - closed - enterprise: *720 - installation: *721 - milestone: *747 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + milestone: *746 + organization: *721 + repository: *722 sender: *4 required: - action @@ -149998,9 +149872,9 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - milestone: &757 + enterprise: *719 + installation: *720 + milestone: &756 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150137,8 +150011,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150217,11 +150091,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - milestone: *747 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + milestone: *746 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150331,11 +150205,11 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - milestone: *747 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + milestone: *746 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150415,11 +150289,11 @@ x-webhooks: type: string enum: - opened - enterprise: *720 - installation: *721 - milestone: *757 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + milestone: *756 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150498,11 +150372,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *742 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + blocked_user: *741 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150581,11 +150455,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *742 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + blocked_user: *741 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150664,9 +150538,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - membership: &758 + enterprise: *719 + installation: *720 + membership: &757 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -150773,8 +150647,8 @@ x-webhooks: - role - organization_url - user - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150852,11 +150726,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *720 - installation: *721 - membership: *758 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + membership: *757 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150935,8 +150809,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -151052,10 +150926,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 - user: *742 + user: *741 required: - action - invitation @@ -151133,11 +151007,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *720 - installation: *721 - membership: *758 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + membership: *757 + organization: *721 + repository: *722 sender: *4 required: - action @@ -151224,11 +151098,11 @@ x-webhooks: properties: from: type: string - enterprise: *720 - installation: *721 - membership: *758 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + membership: *757 + organization: *721 + repository: *722 sender: *4 required: - action @@ -151305,9 +151179,9 @@ x-webhooks: type: string enum: - published - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 package: description: Information about the package. type: object @@ -151806,7 +151680,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &759 + items: &758 title: Ruby Gems metadata type: object properties: @@ -151901,7 +151775,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -151977,9 +151851,9 @@ x-webhooks: type: string enum: - updated - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 package: description: Information about the package. type: object @@ -152332,7 +152206,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *759 + items: *758 source_url: type: string format: uri @@ -152402,7 +152276,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -152578,12 +152452,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *720 + enterprise: *719 id: type: integer - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - id @@ -152660,7 +152534,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &760 + personal_access_token_request: &759 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -152806,10 +152680,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *720 - organization: *722 + enterprise: *719 + organization: *721 sender: *4 - installation: *721 + installation: *720 required: - action - personal_access_token_request @@ -152886,11 +152760,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *760 - enterprise: *720 - organization: *722 + personal_access_token_request: *759 + enterprise: *719 + organization: *721 sender: *4 - installation: *721 + installation: *720 required: - action - personal_access_token_request @@ -152966,11 +152840,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *760 - enterprise: *720 - organization: *722 + personal_access_token_request: *759 + enterprise: *719 + organization: *721 sender: *4 - installation: *721 + installation: *720 required: - action - personal_access_token_request @@ -153045,11 +152919,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *760 - organization: *722 - enterprise: *720 + personal_access_token_request: *759 + organization: *721 + enterprise: *719 sender: *4 - installation: *721 + installation: *720 required: - action - personal_access_token_request @@ -153154,7 +153028,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *761 + last_response: *760 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -153186,8 +153060,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 zen: description: Random string of GitHub zen. @@ -153432,10 +153306,10 @@ x-webhooks: - from required: - note - enterprise: *720 - installation: *721 - organization: *722 - project_card: &762 + enterprise: *719 + installation: *720 + organization: *721 + project_card: &761 title: Project Card type: object properties: @@ -153554,7 +153428,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -153635,11 +153509,11 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - project_card: *762 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project_card: *761 + repository: *722 sender: *4 required: - action @@ -153719,9 +153593,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 project_card: title: Project Card type: object @@ -153849,8 +153723,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *755 - required: *756 + properties: *754 + required: *755 nullable: true sender: *4 required: @@ -153944,11 +153818,11 @@ x-webhooks: - from required: - note - enterprise: *720 - installation: *721 - organization: *722 - project_card: *762 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project_card: *761 + repository: *722 sender: *4 required: - action @@ -154042,9 +153916,9 @@ x-webhooks: - from required: - column_id - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 project_card: allOf: - title: Project Card @@ -154234,7 +154108,7 @@ x-webhooks: type: string required: - after_id - repository: *723 + repository: *722 sender: *4 required: - action @@ -154314,10 +154188,10 @@ x-webhooks: type: string enum: - closed - enterprise: *720 - installation: *721 - organization: *722 - project: &764 + enterprise: *719 + installation: *720 + organization: *721 + project: &763 title: Project type: object properties: @@ -154441,7 +154315,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -154521,10 +154395,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - project_column: &763 + enterprise: *719 + installation: *720 + organization: *721 + project_column: &762 title: Project Column type: object properties: @@ -154563,7 +154437,7 @@ x-webhooks: - name - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -154642,18 +154516,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - project_column: *763 + enterprise: *719 + installation: *720 + organization: *721 + project_column: *762 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *755 - required: *756 + properties: *754 + required: *755 nullable: true sender: *4 required: @@ -154743,11 +154617,11 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - organization: *722 - project_column: *763 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project_column: *762 + repository: *722 sender: *4 required: - action @@ -154827,11 +154701,11 @@ x-webhooks: type: string enum: - moved - enterprise: *720 - installation: *721 - organization: *722 - project_column: *763 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project_column: *762 + repository: *722 sender: *4 required: - action @@ -154911,11 +154785,11 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - project: *764 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project: *763 + repository: *722 sender: *4 required: - action @@ -154995,18 +154869,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - project: *764 + enterprise: *719 + installation: *720 + organization: *721 + project: *763 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *755 - required: *756 + properties: *754 + required: *755 nullable: true sender: *4 required: @@ -155108,11 +154982,11 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - organization: *722 - project: *764 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project: *763 + repository: *722 sender: *4 required: - action @@ -155191,11 +155065,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *720 - installation: *721 - organization: *722 - project: *764 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + project: *763 + repository: *722 sender: *4 required: - action @@ -155276,8 +155150,8 @@ x-webhooks: type: string enum: - closed - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155359,8 +155233,8 @@ x-webhooks: type: string enum: - created - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155442,8 +155316,8 @@ x-webhooks: type: string enum: - deleted - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155561,8 +155435,8 @@ x-webhooks: type: string to: type: string - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155646,7 +155520,7 @@ x-webhooks: type: string enum: - archived - changes: &768 + changes: &767 type: object properties: archived_at: @@ -155660,9 +155534,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *721 - organization: *722 - projects_v2_item: &765 + installation: *720 + organization: *721 + projects_v2_item: &764 title: Projects v2 Item description: An item belonging to a project type: object @@ -155797,9 +155671,9 @@ x-webhooks: nullable: true to: type: string - installation: *721 - organization: *722 - projects_v2_item: *765 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -155881,9 +155755,9 @@ x-webhooks: type: string enum: - created - installation: *721 - organization: *722 - projects_v2_item: *765 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -155964,9 +155838,9 @@ x-webhooks: type: string enum: - deleted - installation: *721 - organization: *722 - projects_v2_item: *765 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -156072,7 +155946,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &766 + - &765 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -156094,7 +155968,7 @@ x-webhooks: required: - id - name - - &767 + - &766 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -156128,8 +156002,8 @@ x-webhooks: oneOf: - type: string - type: integer + - *765 - *766 - - *767 required: - field_value - type: object @@ -156145,9 +156019,9 @@ x-webhooks: nullable: true required: - body - installation: *721 - organization: *722 - projects_v2_item: *765 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -156242,9 +156116,9 @@ x-webhooks: to: type: string nullable: true - installation: *721 - organization: *722 - projects_v2_item: *765 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -156327,10 +156201,10 @@ x-webhooks: type: string enum: - restored - changes: *768 - installation: *721 - organization: *722 - projects_v2_item: *765 + changes: *767 + installation: *720 + organization: *721 + projects_v2_item: *764 sender: *4 required: - action @@ -156412,8 +156286,8 @@ x-webhooks: type: string enum: - reopened - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -156495,14 +156369,14 @@ x-webhooks: type: string enum: - created - installation: *721 - organization: *722 - projects_v2_status_update: &771 + installation: *720 + organization: *721 + projects_v2_status_update: &770 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *769 - required: *770 + properties: *768 + required: *769 sender: *4 required: - action @@ -156583,9 +156457,9 @@ x-webhooks: type: string enum: - deleted - installation: *721 - organization: *722 - projects_v2_status_update: *771 + installation: *720 + organization: *721 + projects_v2_status_update: *770 sender: *4 required: - action @@ -156721,9 +156595,9 @@ x-webhooks: type: string format: date nullable: true - installation: *721 - organization: *722 - projects_v2_status_update: *771 + installation: *720 + organization: *721 + projects_v2_status_update: *770 sender: *4 required: - action @@ -156794,10 +156668,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - repository @@ -156874,13 +156748,13 @@ x-webhooks: type: string enum: - assigned - assignee: *742 - enterprise: *720 - installation: *721 - number: &772 + assignee: *741 + enterprise: *719 + installation: *720 + number: &771 description: The pull request number. type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -159185,7 +159059,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -159267,11 +159141,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -161571,7 +161445,7 @@ x-webhooks: - draft reason: type: string - repository: *723 + repository: *722 sender: *4 required: - action @@ -161653,11 +161527,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -163957,7 +163831,7 @@ x-webhooks: - draft reason: type: string - repository: *723 + repository: *722 sender: *4 required: - action @@ -164039,11 +163913,11 @@ x-webhooks: type: string enum: - closed - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: &773 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: &772 allOf: - *576 - type: object @@ -164107,7 +163981,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *723 + repository: *722 sender: *4 required: - action @@ -164188,12 +164062,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: *773 - repository: *723 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: *772 + repository: *722 sender: *4 required: - action @@ -164273,11 +164147,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *720 + enterprise: *719 milestone: *560 - number: *772 - organization: *722 - pull_request: &774 + number: *771 + organization: *721 + pull_request: &773 title: Pull Request type: object properties: @@ -166562,7 +166436,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -166641,11 +166515,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -168949,7 +168823,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *723 + repository: *722 sender: *4 required: - action @@ -169073,12 +168947,12 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: *773 - repository: *723 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: *772 + repository: *722 sender: *4 required: - action @@ -169158,11 +169032,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -171451,7 +171325,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -171531,11 +171405,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *720 - installation: *721 - label: *741 - number: *772 - organization: *722 + enterprise: *719 + installation: *720 + label: *740 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -173839,7 +173713,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -173920,10 +173794,10 @@ x-webhooks: type: string enum: - locked - enterprise: *720 - installation: *721 - number: *772 - organization: *722 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -176225,7 +176099,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -176305,12 +176179,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *720 + enterprise: *719 milestone: *560 - number: *772 - organization: *722 - pull_request: *774 - repository: *723 + number: *771 + organization: *721 + pull_request: *773 + repository: *722 sender: *4 required: - action @@ -176389,12 +176263,12 @@ x-webhooks: type: string enum: - opened - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: *773 - repository: *723 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: *772 + repository: *722 sender: *4 required: - action @@ -176475,12 +176349,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: *773 - repository: *723 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: *772 + repository: *722 sender: *4 required: - action @@ -176560,12 +176434,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *720 - installation: *721 - number: *772 - organization: *722 - pull_request: *773 - repository: *723 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 + pull_request: *772 + repository: *722 sender: *4 required: - action @@ -176931,9 +176805,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: type: object properties: @@ -179125,7 +178999,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -179205,7 +179079,7 @@ x-webhooks: type: string enum: - deleted - comment: &776 + comment: &775 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -179490,9 +179364,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: type: object properties: @@ -181672,7 +181546,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -181752,11 +181626,11 @@ x-webhooks: type: string enum: - edited - changes: *775 - comment: *776 - enterprise: *720 - installation: *721 - organization: *722 + changes: *774 + comment: *775 + enterprise: *719 + installation: *720 + organization: *721 pull_request: type: object properties: @@ -183939,7 +183813,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -184020,9 +183894,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: title: Simple Pull Request type: object @@ -186217,7 +186091,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 + repository: *722 review: description: The review that was affected. type: object @@ -186464,9 +186338,9 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: title: Simple Pull Request type: object @@ -188520,8 +188394,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 - review: &777 + repository: *722 + review: &776 description: The review that was affected. type: object properties: @@ -188754,12 +188628,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: description: The pull request number. type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -191064,7 +190938,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_reviewer: title: User type: object @@ -191148,12 +191022,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: description: The pull request number. type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -193465,7 +193339,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_team: title: Team description: Groups of organization members that gives permissions @@ -193657,12 +193531,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: description: The pull request number. type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -195969,7 +195843,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_reviewer: title: User type: object @@ -196054,12 +195928,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *720 - installation: *721 + enterprise: *719 + installation: *720 number: description: The pull request number. type: integer - organization: *722 + organization: *721 pull_request: title: Pull Request type: object @@ -198357,7 +198231,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_team: title: Team description: Groups of organization members that gives permissions @@ -198538,9 +198412,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: title: Simple Pull Request type: object @@ -200737,8 +200611,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 - review: *777 + repository: *722 + review: *776 sender: *4 required: - action @@ -200818,9 +200692,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: title: Simple Pull Request type: object @@ -202912,7 +202786,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 + repository: *722 sender: *4 thread: type: object @@ -203299,9 +203173,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 pull_request: title: Simple Pull Request type: object @@ -205379,7 +205253,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 + repository: *722 sender: *4 thread: type: object @@ -205769,10 +205643,10 @@ x-webhooks: type: string before: type: string - enterprise: *720 - installation: *721 - number: *772 - organization: *722 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -208065,7 +207939,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -208147,11 +208021,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *778 - enterprise: *720 - installation: *721 - number: *772 - organization: *722 + assignee: *777 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -210456,7 +210330,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -210535,11 +210409,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *720 - installation: *721 - label: *741 - number: *772 - organization: *722 + enterprise: *719 + installation: *720 + label: *740 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -212834,7 +212708,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -212915,10 +212789,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *720 - installation: *721 - number: *772 - organization: *722 + enterprise: *719 + installation: *720 + number: *771 + organization: *721 pull_request: title: Pull Request type: object @@ -215205,7 +215079,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -215405,7 +215279,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *720 + enterprise: *719 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -215497,8 +215371,8 @@ x-webhooks: - url - author - committer - installation: *721 - organization: *722 + installation: *720 + organization: *721 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -216084,9 +215958,9 @@ x-webhooks: type: string enum: - published - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 registry_package: type: object properties: @@ -216532,7 +216406,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *759 + items: *758 summary: type: string tag_name: @@ -216586,7 +216460,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -216664,9 +216538,9 @@ x-webhooks: type: string enum: - updated - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 registry_package: type: object properties: @@ -216974,7 +216848,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *759 + items: *758 summary: type: string tag_name: @@ -217023,7 +216897,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -217100,10 +216974,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - release: &779 + enterprise: *719 + installation: *720 + organization: *721 + release: &778 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -217421,7 +217295,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *723 + repository: *722 sender: *4 required: - action @@ -217498,11 +217372,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - release: *779 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + release: *778 + repository: *722 sender: *4 required: - action @@ -217619,11 +217493,11 @@ x-webhooks: type: boolean required: - to - enterprise: *720 - installation: *721 - organization: *722 - release: *779 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + release: *778 + repository: *722 sender: *4 required: - action @@ -217701,9 +217575,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -218025,7 +217899,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *723 + repository: *722 sender: *4 required: - action @@ -218101,10 +217975,10 @@ x-webhooks: type: string enum: - published - enterprise: *720 - installation: *721 - organization: *722 - release: &780 + enterprise: *719 + installation: *720 + organization: *721 + release: &779 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218423,7 +218297,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *723 + repository: *722 sender: *4 required: - action @@ -218499,11 +218373,11 @@ x-webhooks: type: string enum: - released - enterprise: *720 - installation: *721 - organization: *722 - release: *779 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + release: *778 + repository: *722 sender: *4 required: - action @@ -218579,11 +218453,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *720 - installation: *721 - organization: *722 - release: *780 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + release: *779 + repository: *722 sender: *4 required: - action @@ -218659,10 +218533,10 @@ x-webhooks: type: string enum: - published - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 repository_advisory: *640 sender: *4 required: @@ -218739,10 +218613,10 @@ x-webhooks: type: string enum: - reported - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 repository_advisory: *640 sender: *4 required: @@ -218819,10 +218693,10 @@ x-webhooks: type: string enum: - archived - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -218899,10 +218773,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -218980,10 +218854,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219067,10 +218941,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219182,10 +219056,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219257,10 +219131,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 status: type: string @@ -219341,10 +219215,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219421,10 +219295,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219518,10 +219392,10 @@ x-webhooks: - name required: - repository - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -219601,10 +219475,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 repository_ruleset: *310 sender: *4 required: @@ -219683,10 +219557,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 repository_ruleset: *310 sender: *4 required: @@ -219765,10 +219639,10 @@ x-webhooks: type: string enum: - edited - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 repository_ruleset: *310 changes: type: object @@ -220073,10 +219947,10 @@ x-webhooks: - from required: - owner - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220154,10 +220028,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220235,7 +220109,7 @@ x-webhooks: type: string enum: - create - alert: &781 + alert: &780 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -220357,10 +220231,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220566,10 +220440,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220647,11 +220521,11 @@ x-webhooks: type: string enum: - reopen - alert: *781 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *780 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220850,10 +220724,10 @@ x-webhooks: enum: - fixed - open - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -220931,7 +220805,7 @@ x-webhooks: type: string enum: - assigned - alert: &782 + alert: &781 type: object properties: number: *171 @@ -221050,10 +220924,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221131,11 +221005,11 @@ x-webhooks: type: string enum: - created - alert: *782 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *781 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221216,11 +221090,11 @@ x-webhooks: type: string enum: - created - alert: *782 - installation: *721 - location: *783 - organization: *722 - repository: *723 + alert: *781 + installation: *720 + location: *782 + organization: *721 + repository: *722 sender: *4 required: - location @@ -221458,11 +221332,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *782 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *781 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221540,11 +221414,11 @@ x-webhooks: type: string enum: - reopened - alert: *782 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *781 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221622,11 +221496,11 @@ x-webhooks: type: string enum: - resolved - alert: *782 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *781 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221704,12 +221578,12 @@ x-webhooks: type: string enum: - unassigned - alert: *782 + alert: *781 assignee: *4 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221787,11 +221661,11 @@ x-webhooks: type: string enum: - validated - alert: *782 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + alert: *781 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -221917,10 +221791,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *723 - enterprise: *720 - installation: *721 - organization: *722 + repository: *722 + enterprise: *719 + installation: *720 + organization: *721 sender: *4 required: - action @@ -221998,11 +221872,11 @@ x-webhooks: type: string enum: - published - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - security_advisory: &784 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + security_advisory: &783 description: The details of the security advisory, including summary, description, and severity. type: object @@ -222185,11 +222059,11 @@ x-webhooks: type: string enum: - updated - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 - security_advisory: *784 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 + security_advisory: *783 sender: *4 required: - action @@ -222262,10 +222136,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -222450,9 +222324,9 @@ x-webhooks: type: object properties: security_and_analysis: *283 - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: *330 sender: *4 required: @@ -222531,12 +222405,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: &785 + sponsorship: &784 type: object properties: created_at: @@ -222837,12 +222711,12 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - sponsorship @@ -222930,12 +222804,12 @@ x-webhooks: type: string required: - from - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -223012,17 +222886,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &786 + effective_date: &785 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: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - sponsorship @@ -223096,7 +222970,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &787 + changes: &786 type: object properties: tier: @@ -223140,13 +223014,13 @@ x-webhooks: - from required: - tier - effective_date: *786 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + effective_date: *785 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -223223,13 +223097,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *787 - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + changes: *786 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - sponsorship: *785 + sponsorship: *784 required: - action - changes @@ -223303,10 +223177,10 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -223389,10 +223263,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -223812,15 +223686,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *720 + enterprise: *719 id: description: The unique identifier of the status. type: integer - installation: *721 + installation: *720 name: type: string - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 sha: description: The Commit SHA. @@ -223935,9 +223809,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -224027,9 +223901,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -224119,9 +223993,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -224211,9 +224085,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *721 - organization: *722 - repository: *723 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -224290,12 +224164,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - team: &788 + team: &787 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -224518,9 +224392,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: title: Repository description: A git repository @@ -224978,7 +224852,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -225054,9 +224928,9 @@ x-webhooks: type: string enum: - created - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: title: Repository description: A git repository @@ -225514,7 +225388,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -225591,9 +225465,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: title: Repository description: A git repository @@ -226051,7 +225925,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -226195,9 +226069,9 @@ x-webhooks: - from required: - permissions - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: title: Repository description: A git repository @@ -226655,7 +226529,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - changes @@ -226733,9 +226607,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *720 - installation: *721 - organization: *722 + enterprise: *719 + installation: *720 + organization: *721 repository: title: Repository description: A git repository @@ -227193,7 +227067,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -227269,10 +227143,10 @@ x-webhooks: type: string enum: - started - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 required: - action @@ -227345,16 +227219,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *720 + enterprise: *719 inputs: type: object nullable: true additionalProperties: true - installation: *721 - organization: *722 + installation: *720 + organization: *721 ref: type: string - repository: *723 + repository: *722 sender: *4 workflow: type: string @@ -227436,10 +227310,10 @@ x-webhooks: type: string enum: - completed - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 workflow_job: allOf: @@ -227755,10 +227629,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 workflow_job: allOf: @@ -228097,10 +227971,10 @@ x-webhooks: type: string enum: - queued - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 workflow_job: type: object @@ -228314,10 +228188,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 workflow_job: type: object @@ -228533,12 +228407,12 @@ x-webhooks: type: string enum: - completed - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - workflow: *737 + workflow: *736 workflow_run: title: Workflow Run type: object @@ -229537,12 +229411,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - workflow: *737 + workflow: *736 workflow_run: title: Workflow Run type: object @@ -230526,12 +230400,12 @@ x-webhooks: type: string enum: - requested - enterprise: *720 - installation: *721 - organization: *722 - repository: *723 + enterprise: *719 + installation: *720 + organization: *721 + repository: *722 sender: *4 - workflow: *737 + workflow: *736 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index d35f47cd2..6cb4b1649 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -373499,6 +373499,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + "response-if-content-is-a-file-github-object": { + "summary": "Content is a file using the object media type" + }, + "response-if-content-is-a-directory-github-object": { + "summary": "Content is a directory using the object media type" + }, + "response-if-content-is-a-file": { + "summary": "Content is a file" + }, + "response-if-content-is-a-directory": { + "summary": "Content is a directory" + }, + "response-if-content-is-a-symlink": { + "summary": "Content is a symlink" + }, + "response-if-content-is-a-submodule": { + "summary": "Content is a submodule" + } + } + } + } + }, "responses": { "200": { "description": "Response", @@ -373666,7 +373693,7 @@ ] }, "examples": { - "response-if-content-is-a-file": { + "response-if-content-is-a-file-github-object": { "summary": "Response if content is a file", "value": { "type": "file", @@ -373687,7 +373714,7 @@ } } }, - "response-if-content-is-a-directory": { + "response-if-content-is-a-directory-github-object": { "summary": "Response if content is a directory and the application/vnd.github.v3.object media type is requested", "value": { "type": "dir", @@ -378361,10 +378388,26 @@ "type": "string", "description": "An optional comment associated with dismissing the alert.", "maxLength": 280 + }, + "assignees": { + "type": "array", + "description": "Usernames to assign to this Dependabot Alert.\nPass one or more user logins to _replace_ the set of assignees on this alert.\nSend an empty array (`[]`) to clear all assignees from the alert.", + "items": { + "type": "string" + } } }, - "required": [ - "state" + "anyOf": [ + { + "required": [ + "state" + ] + }, + { + "required": [ + "assignees" + ] + } ], "additionalProperties": false }, @@ -599936,427 +599979,6 @@ } } }, - "/repos/{owner}/{repo}/tags/protection": { - "get": { - "summary": "Closing down - List tag protection states for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-all-repository-rulesets)\" endpoint instead.\n\nThis returns the tag protection states of a repository.\n\nThis information is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/list-tag-protection", - "externalDocs": { - "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": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - } - }, - "examples": { - "default": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - } - } - } - } - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - }, - "post": { - "summary": "Closing down - Create a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#create-a-repository-ruleset)\" endpoint instead.\n\nThis creates a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/create-tag-protection", - "externalDocs": { - "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": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "pattern": { - "type": "string", - "description": "An optional glob pattern to match against when enforcing tag protection." - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "pattern": "v1.*" - } - } - } - } - } - }, - "responses": { - "201": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "enabled": true - } - } - } - } - } - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": { - "delete": { - "summary": "Closing down - Delete a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#delete-a-repository-ruleset)\" endpoint instead.\n\nThis deletes a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/delete-tag-protection", - "externalDocs": { - "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": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "tag_protection_id", - "description": "The unique identifier of the tag protection.", - "in": "path", - "required": true, - "schema": { - "type": "integer" - } - } - ], - "responses": { - "204": { - "description": "Response" - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, "/repos/{owner}/{repo}/tarball/{ref}": { "get": { "summary": "Download a repository archive (tar)", @@ -612802,7 +612424,7 @@ }, "put": { "summary": "Set SCIM information for a provisioned enterprise user", - "description": "Replaces an existing provisioned user's information.\n\nYou must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user, and their handle and email will be obfuscated.", + "description": "Replaces an existing provisioned user's information.\n\nYou must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated.\n>\n> ```\n>{\n> \"schemas\": [\n> \"urn:ietf:params:scim:schemas:core:2.0:User\"\n> ],\n> \"externalId\": \"E012345\",\n> \"active\": false,\n> \"userName\": \"E012345\",\n> \"name\": {\n> \"familyName\": \"Octocat\",\n> \"givenName\": \"Mona\",\n> \"middleName\": \"Lisa\"\n> },\n> \"displayName\": \"Mona Lisa\",\n> \"emails\": [\n> {\n> \"value\": \"mlisa@example.com\",\n> \"type\": \"work\",\n> \"primary\": true\n> }\n> ],\n> \"roles\": [\n> {\n> \"value\": \"User\"\n> }\n> ]\n>}\n> ```", "operationId": "enterprise-admin/set-information-for-provisioned-enterprise-user", "tags": [ "enterprise-admin" @@ -613531,7 +613153,7 @@ }, "patch": { "summary": "Update an attribute for a SCIM enterprise user", - "description": "Update a provisioned user's individual attributes.\n\nTo modify a user's attributes, you'll need to provide a `Operations` JSON formatted request that includes at least one of the following actions: add, remove, or replace. For specific examples and more information on the SCIM operations format, please refer to the [SCIM specification](https://tools.ietf.org/html/rfc7644#section-3.5.2).\n\n> [!NOTE]\n> Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `\"path\": \"emails[type eq \\\"work\\\"]\"` will be ineffective.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user, and their handle and email will be obfuscated.\n> ```\n> {\n> \"Operations\":[{\n> \"op\":\"replace\",\n> \"value\":{\n> \"active\":false\n> }\n> }]\n> }\n> ```", + "description": "Update a provisioned user's individual attributes.\n\nTo modify a user's attributes, you'll need to provide a `Operations` JSON formatted request that includes at least one of the following actions: add, remove, or replace. For specific examples and more information on the SCIM operations format, please refer to the [SCIM specification](https://tools.ietf.org/html/rfc7644#section-3.5.2).\n\n> [!NOTE]\n> Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `\"path\": \"emails[type eq \\\"work\\\"]\"` will be ineffective.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated.\n>\n> ```\n> {\n> \"schemas\": [\n> \"urn:ietf:params:scim:api:messages:2.0:PatchOp\"\n> ],\n> \"Operations\": [\n> {\n> \"op\": \"replace\",\n> \"value\": {\n> \"active\": false\n> }\n> }\n> ]\n> }\n> ```", "operationId": "enterprise-admin/update-attribute-for-enterprise-user", "tags": [ "enterprise-admin" diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 8f69c66fe..eb2eb7cc1 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1713,7 +1713,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &769 + schema: &768 title: Scim Error description: Scim Error type: object @@ -8912,7 +8912,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &770 + '401': &769 description: Authorization failure '404': *6 x-github: @@ -25444,7 +25444,7 @@ paths: properties: action: type: string - discussion: &879 + discussion: &878 title: Discussion description: A Discussion in a repository. type: object @@ -26188,7 +26188,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &797 + sub_issues_summary: &796 title: Sub-issues Summary type: object properties: @@ -26301,7 +26301,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &798 + issue_dependencies_summary: &797 title: Issue Dependencies Summary type: object properties: @@ -26320,7 +26320,7 @@ paths: - total_blocking issue_field_values: type: array - items: &799 + items: &798 title: Issue Field Value description: A value assigned to an issue field type: object @@ -27733,7 +27733,7 @@ paths: url: type: string format: uri - user: &805 + user: &804 title: Public User description: Public User type: object @@ -35784,7 +35784,7 @@ paths: type: array items: *288 examples: - default: &808 + default: &807 value: total_count: 1 repositories: @@ -38495,12 +38495,12 @@ paths: required: - subject_digests examples: - default: &838 + default: &837 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &839 + withPredicateType: &838 value: subject_digests: - sha256:abc123 @@ -38558,7 +38558,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &840 + default: &839 value: attestations_subject_digests: - sha256:abc: @@ -48892,7 +48892,7 @@ paths: parameters: - *87 - *387 - - &821 + - &820 name: repo_name description: repo_name parameter in: path @@ -50220,7 +50220,7 @@ paths: - nuget - container - *87 - - &822 + - &821 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -50261,7 +50261,7 @@ paths: default: *393 '403': *29 '401': *25 - '400': &824 + '400': &823 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -52053,7 +52053,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &915 + properties: &914 id: type: number description: The unique identifier of the status update. @@ -52101,7 +52101,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &916 + required: &915 - id - node_id - created_at @@ -52919,7 +52919,7 @@ paths: - updated_at - project_url examples: - default: &843 + default: &842 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53096,7 +53096,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &844 + items: &843 type: object properties: name: @@ -53133,7 +53133,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &845 + iteration_configuration: &844 type: object description: The configuration for iteration fields. properties: @@ -53183,7 +53183,7 @@ paths: value: name: Due date data_type: date - single_select_field: &846 + single_select_field: &845 summary: Create a single select field value: name: Priority @@ -53210,7 +53210,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &847 + iteration_field: &846 summary: Create an iteration field value: name: Sprint @@ -53236,7 +53236,7 @@ paths: application/json: schema: *414 examples: - text_field: &848 + text_field: &847 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -53245,7 +53245,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: &849 + number_field: &848 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -53254,7 +53254,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: &850 + date_field: &849 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -53263,7 +53263,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: &851 + single_select_field: &850 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53297,7 +53297,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &852 + iteration_field: &851 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -53343,7 +53343,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - *410 - - &853 + - &852 name: field_id description: The unique identifier of the field. in: path @@ -53358,7 +53358,7 @@ paths: application/json: schema: *414 examples: - default: &854 + default: &853 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -54555,7 +54555,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &835 + schema: &834 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -54732,7 +54732,7 @@ paths: parameters: - *410 - *87 - - &855 + - &854 name: view_number description: The number that identifies the project view. in: path @@ -59924,7 +59924,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &801 + response-if-user-is-a-team-maintainer: &800 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -59989,7 +59989,7 @@ paths: application/json: schema: *461 examples: - response-if-users-membership-with-team-is-now-pending: &802 + response-if-users-membership-with-team-is-now-pending: &801 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -60103,7 +60103,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &803 + schema: &802 title: Team Repository description: A team's access to a repository. type: object @@ -60869,7 +60869,7 @@ paths: type: array items: *317 examples: - response-if-child-teams-exist: &804 + response-if-child-teams-exist: &803 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -66092,7 +66092,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &873 + properties: &872 url: type: string format: uri @@ -66177,7 +66177,7 @@ paths: nullable: true properties: *220 required: *221 - required: &874 + required: &873 - id - node_id - sha @@ -72117,7 +72117,7 @@ paths: check. type: array items: *230 - deployment: &866 + deployment: &865 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -73029,7 +73029,7 @@ paths: type: string format: date-time nullable: true - head_commit: &899 + head_commit: &898 title: Simple Commit description: A commit. type: object @@ -77300,14 +77300,14 @@ paths: type: integer machines: type: array - items: &811 + items: &810 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *567 required: *568 examples: - default: &812 + default: &811 value: total_count: 2 machines: @@ -81094,6 +81094,23 @@ paths: required: false schema: type: string + requestBody: + required: false + content: + application/json: + examples: + response-if-content-is-a-file-github-object: + summary: Content is a file using the object media type + response-if-content-is-a-directory-github-object: + summary: Content is a directory using the object media type + response-if-content-is-a-file: + summary: Content is a file + response-if-content-is-a-directory: + summary: Content is a directory + response-if-content-is-a-symlink: + summary: Content is a symlink + response-if-content-is-a-submodule: + summary: Content is a submodule responses: '200': description: Response @@ -81222,7 +81239,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &593 + response-if-content-is-a-file-github-object: &593 summary: Response if content is a file value: type: file @@ -81240,7 +81257,7 @@ paths: git: https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1 self: https://api.github.com/repos/octokit/octokit.rb/contents/README.md html: https://github.com/octokit/octokit.rb/blob/master/README.md - response-if-content-is-a-directory: + response-if-content-is-a-directory-github-object: summary: Response if content is a directory and the application/vnd.github.v3.object media type is requested value: @@ -82744,8 +82761,19 @@ paths: description: An optional comment associated with dismissing the alert. maxLength: 280 - required: - - state + assignees: + type: array + description: |- + Usernames to assign to this Dependabot Alert. + Pass one or more user logins to _replace_ the set of assignees on this alert. + Send an empty array (`[]`) to clear all assignees from the alert. + items: + type: string + anyOf: + - required: + - state + - required: + - assignees additionalProperties: false examples: default: @@ -88357,7 +88385,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &907 + last_response: &906 title: Hook Response type: object properties: @@ -89408,7 +89436,7 @@ paths: parameters: - *462 - *463 - - &833 + - &832 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -89842,7 +89870,7 @@ paths: type: array items: *653 examples: - default: &826 + default: &825 value: - id: 1 repository: @@ -104294,7 +104322,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &929 + items: &928 type: object properties: type: @@ -106507,160 +106535,6 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos - "/repos/{owner}/{repo}/tags/protection": - get: - summary: Closing down - List tag protection states for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-all-repository-rulesets)" endpoint instead. - - This returns the tag protection states of a repository. - - This information is only available to repository administrators. - tags: - - repos - operationId: repos/list-tag-protection - externalDocs: - 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: - - *462 - - *463 - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: &764 - title: Tag protection - description: Tag protection - type: object - properties: - id: - type: integer - example: 2 - created_at: - type: string - example: '2011-01-26T19:01:12Z' - updated_at: - type: string - example: '2011-01-26T19:01:12Z' - enabled: - type: boolean - example: true - pattern: - type: string - example: v1.* - required: - - pattern - examples: - default: - value: - - id: 2 - pattern: v1.* - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - post: - summary: Closing down - Create a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#create-a-repository-ruleset)" endpoint instead. - - This creates a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/create-tag-protection - externalDocs: - 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: - - *462 - - *463 - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - pattern: - type: string - description: An optional glob pattern to match against when enforcing - tag protection. - required: - - pattern - examples: - default: - value: - pattern: v1.* - responses: - '201': - description: Response - content: - application/json: - schema: *764 - examples: - default: - value: - enabled: true - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": - delete: - summary: Closing down - Delete a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#delete-a-repository-ruleset)" endpoint instead. - - This deletes a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/delete-tag-protection - externalDocs: - 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: - - *462 - - *463 - - name: tag_protection_id - description: The unique identifier of the tag protection. - in: path - required: true - schema: - type: integer - responses: - '204': - description: Response - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true "/repos/{owner}/{repo}/tarball/{ref}": get: summary: Download a repository archive (tar) @@ -106757,7 +106631,7 @@ paths: description: Response content: application/json: - schema: &765 + schema: &764 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -106769,7 +106643,7 @@ paths: required: - names examples: - default: &766 + default: &765 value: names: - octocat @@ -106824,9 +106698,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *764 examples: - default: *766 + default: *765 '404': *6 '422': *7 x-github: @@ -106849,7 +106723,7 @@ paths: parameters: - *462 - *463 - - &767 + - &766 name: per description: The time frame to display results for. in: query @@ -106878,7 +106752,7 @@ paths: example: 128 clones: type: array - items: &768 + items: &767 title: Traffic type: object properties: @@ -107119,7 +106993,7 @@ paths: parameters: - *462 - *463 - - *767 + - *766 responses: '200': description: Response @@ -107138,7 +107012,7 @@ paths: example: 3782 views: type: array - items: *768 + items: *767 required: - uniques - count @@ -107810,7 +107684,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &776 + - &775 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -107819,7 +107693,7 @@ paths: schema: type: string example: members - - &781 + - &780 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -107830,7 +107704,7 @@ paths: default: 1 format: int32 example: 1 - - &782 + - &781 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -107872,7 +107746,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &771 + items: &770 allOf: - type: object required: @@ -107947,7 +107821,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: &783 + meta: &782 type: object description: The metadata associated with the creation/updates to the user. @@ -108007,30 +107881,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &772 + '400': &771 description: Bad request content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 - '401': *770 - '403': &773 + schema: *768 + '401': *769 + '403': &772 description: Permission denied - '429': &774 + '429': &773 description: Too many requests content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 - '500': &775 + schema: *768 + '500': &774 description: Internal server error content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 + schema: *768 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108054,7 +107928,7 @@ paths: required: true content: application/json: - schema: &779 + schema: &778 type: object required: - schemas @@ -108114,9 +107988,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *771 + schema: *770 examples: - group: &777 + group: &776 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -108135,13 +108009,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': *772 - '401': *770 - '403': *773 - '409': &780 + '400': *771 + '401': *769 + '403': *772 + '409': &779 description: Duplicate record detected - '429': *774 - '500': *775 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108158,7 +108032,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: - - &778 + - &777 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -108166,22 +108040,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *776 + - *775 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *771 + schema: *770 examples: - default: *777 - '400': *772 - '401': *770 - '403': *773 + default: *776 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '429': *774 - '500': *775 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108200,13 +108074,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: - - *778 + - *777 - *41 requestBody: required: true content: application/json: - schema: *779 + schema: *778 examples: group: summary: Group @@ -108232,17 +108106,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *771 + schema: *770 examples: - group: *777 - groupWithMembers: *777 - '400': *772 - '401': *770 - '403': *773 + group: *776 + groupWithMembers: *776 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *779 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108266,13 +108140,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: - - *778 + - *777 - *41 requestBody: required: true content: application/json: - schema: &790 + schema: &789 type: object required: - Operations @@ -108332,17 +108206,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *771 + schema: *770 examples: - updateGroup: *777 - addMembers: *777 - '400': *772 - '401': *770 - '403': *773 + updateGroup: *776 + addMembers: *776 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *779 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108358,17 +108232,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: - - *778 + - *777 - *41 responses: '204': description: Group was deleted, no content - '400': *772 - '401': *770 - '403': *773 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '429': *774 - '500': *775 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108402,8 +108276,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' + - *780 - *781 - - *782 - *41 responses: '200': @@ -108436,7 +108310,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &785 + items: &784 allOf: - type: object required: @@ -108515,7 +108389,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &784 + roles: &783 type: array description: The roles assigned to the user. items: @@ -108571,7 +108445,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *783 + meta: *782 startIndex: type: integer description: A starting index for the returned page @@ -108608,11 +108482,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *772 - '401': *770 - '403': *773 - '429': *774 - '500': *775 + '400': *771 + '401': *769 + '403': *772 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108636,7 +108510,7 @@ paths: required: true content: application/json: - schema: &788 + schema: &787 type: object required: - schemas @@ -108718,9 +108592,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *784 + roles: *783 examples: - user: &789 + user: &788 summary: User value: schemas: @@ -108767,9 +108641,9 @@ paths: description: User has been created content: application/scim+json: - schema: *785 + schema: *784 examples: - user: &786 + user: &785 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -108795,13 +108669,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: *786 - '400': *772 - '401': *770 - '403': *773 - '409': *780 - '429': *774 - '500': *775 + enterpriseOwner: *785 + '400': *771 + '401': *769 + '403': *772 + '409': *779 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108818,7 +108692,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: - - &787 + - &786 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -108831,15 +108705,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *785 + schema: *784 examples: - default: *786 - '400': *772 - '401': *770 - '403': *773 + default: *785 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '429': *774 - '500': *775 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108853,7 +108727,36 @@ paths: You must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint. > [!WARNING] - > Setting `active: false` will suspend a user, and their handle and email will be obfuscated. + > Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated. + > + > ``` + >{ + > "schemas": [ + > "urn:ietf:params:scim:schemas:core:2.0:User" + > ], + > "externalId": "E012345", + > "active": false, + > "userName": "E012345", + > "name": { + > "familyName": "Octocat", + > "givenName": "Mona", + > "middleName": "Lisa" + > }, + > "displayName": "Mona Lisa", + > "emails": [ + > { + > "value": "mlisa@example.com", + > "type": "work", + > "primary": true + > } + > ], + > "roles": [ + > { + > "value": "User" + > } + > ] + >} + > ``` operationId: enterprise-admin/set-information-for-provisioned-enterprise-user tags: - enterprise-admin @@ -108861,30 +108764,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: - - *787 + - *786 - *41 requestBody: required: true content: application/json: - schema: *788 + schema: *787 examples: - user: *789 + user: *788 responses: '200': description: User was updated content: application/scim+json: - schema: *785 + schema: *784 examples: - user: *786 - '400': *772 - '401': *770 - '403': *773 + user: *785 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *779 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108901,15 +108804,21 @@ paths: > Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `"path": "emails[type eq \"work\"]"` will be ineffective. > [!WARNING] - > Setting `active: false` will suspend a user, and their handle and email will be obfuscated. + > Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated. + > > ``` > { - > "Operations":[{ - > "op":"replace", - > "value":{ - > "active":false + > "schemas": [ + > "urn:ietf:params:scim:api:messages:2.0:PatchOp" + > ], + > "Operations": [ + > { + > "op": "replace", + > "value": { + > "active": false + > } > } - > }] + > ] > } > ``` operationId: enterprise-admin/update-attribute-for-enterprise-user @@ -108919,13 +108828,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: - - *787 + - *786 - *41 requestBody: required: true content: application/json: - schema: *790 + schema: *789 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -108965,18 +108874,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *785 + schema: *784 examples: - userMultiValuedProperties: *786 - userSingleValuedProperties: *786 - disableUser: *786 - '400': *772 - '401': *770 - '403': *773 + userMultiValuedProperties: *785 + userSingleValuedProperties: *785 + disableUser: *785 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *779 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108996,17 +108905,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: - - *787 + - *786 - *41 responses: '204': description: User was deleted, no content - '400': *772 - '401': *770 - '403': *773 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '429': *774 - '500': *775 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109093,7 +109002,7 @@ paths: example: 1 Resources: type: array - items: &791 + items: &790 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -109324,22 +109233,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &792 + '404': &791 description: Resource not found content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 - '403': &793 + schema: *768 + '403': &792 description: Forbidden content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 - '400': *772 - '429': *774 + schema: *768 + '400': *771 + '429': *773 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -109365,9 +109274,9 @@ paths: description: Response content: application/scim+json: - schema: *791 + schema: *790 examples: - default: &794 + default: &793 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -109390,17 +109299,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *792 - '403': *793 - '500': *775 + '404': *791 + '403': *792 + '500': *774 '409': description: Conflict content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 - '400': *772 + schema: *768 + '400': *771 requestBody: required: true content: @@ -109498,17 +109407,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *87 - - *787 + - *786 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *790 examples: - default: *794 - '404': *792 - '403': *793 + default: *793 + '404': *791 + '403': *792 '304': *37 x-github: githubCloudOnly: true @@ -109532,18 +109441,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *87 - - *787 + - *786 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *790 examples: - default: *794 + default: *793 '304': *37 - '404': *792 - '403': *793 + '404': *791 + '403': *792 requestBody: required: true content: @@ -109656,19 +109565,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *87 - - *787 + - *786 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *790 examples: - default: *794 + default: *793 '304': *37 - '404': *792 - '403': *793 - '400': *772 + '404': *791 + '403': *792 + '400': *771 '429': description: Response content: @@ -109759,12 +109668,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *87 - - *787 + - *786 responses: '204': description: Response - '404': *792 - '403': *793 + '404': *791 + '403': *792 '304': *37 x-github: githubCloudOnly: true @@ -109897,7 +109806,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &795 + text_matches: &794 title: Search Result Text Matches type: array items: @@ -110060,7 +109969,7 @@ paths: enum: - author-date - committer-date - - &796 + - &795 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 @@ -110188,7 +110097,7 @@ paths: type: number node_id: type: string - text_matches: *795 + text_matches: *794 required: - sha - node_id @@ -110381,7 +110290,7 @@ paths: - interactions - created - updated - - *796 + - *795 - *17 - *19 - name: advanced_search @@ -110478,11 +110387,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: type: string state_reason: @@ -110514,7 +110423,7 @@ paths: type: string format: date-time nullable: true - text_matches: *795 + text_matches: *794 pull_request: type: object properties: @@ -110747,7 +110656,7 @@ paths: enum: - created - updated - - *796 + - *795 - *17 - *19 responses: @@ -110791,7 +110700,7 @@ paths: nullable: true score: type: number - text_matches: *795 + text_matches: *794 required: - id - node_id @@ -110877,7 +110786,7 @@ paths: - forks - help-wanted-issues - updated - - *796 + - *795 - *17 - *19 responses: @@ -111125,7 +111034,7 @@ paths: - admin - pull - push - text_matches: *795 + text_matches: *794 temp_clone_token: type: string allow_merge_commit: @@ -111426,7 +111335,7 @@ paths: type: string format: uri nullable: true - text_matches: *795 + text_matches: *794 related: type: array nullable: true @@ -111619,7 +111528,7 @@ paths: - followers - repositories - joined - - *796 + - *795 - *17 - *19 responses: @@ -111723,7 +111632,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *795 + text_matches: *794 blog: type: string nullable: true @@ -111802,7 +111711,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &800 + - &799 name: team_id description: The unique identifier of the team. in: path @@ -111843,7 +111752,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *800 + - *799 requestBody: required: true content: @@ -111943,7 +111852,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *800 + - *799 responses: '204': description: Response @@ -111972,7 +111881,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *800 + - *799 - *17 - *19 responses: @@ -112010,7 +111919,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *800 + - *799 - name: role description: Filters members returned by their role in the team. in: query @@ -112061,7 +111970,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *800 + - *799 - *143 responses: '204': @@ -112098,7 +112007,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *800 + - *799 - *143 responses: '204': @@ -112138,7 +112047,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *800 + - *799 - *143 responses: '204': @@ -112175,7 +112084,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *800 + - *799 - *143 responses: '200': @@ -112184,7 +112093,7 @@ paths: application/json: schema: *461 examples: - response-if-user-is-a-team-maintainer: *801 + response-if-user-is-a-team-maintainer: *800 '404': *6 x-github: githubCloudOnly: false @@ -112217,7 +112126,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: - - *800 + - *799 - *143 requestBody: required: false @@ -112245,7 +112154,7 @@ paths: application/json: schema: *461 examples: - response-if-users-membership-with-team-is-now-pending: *802 + response-if-users-membership-with-team-is-now-pending: *801 '403': description: Forbidden if team synchronization is set up '422': @@ -112279,7 +112188,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: - - *800 + - *799 - *143 responses: '204': @@ -112307,7 +112216,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *800 + - *799 - *17 - *19 responses: @@ -112349,7 +112258,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *800 + - *799 - *462 - *463 responses: @@ -112357,7 +112266,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *803 + schema: *802 examples: alternative-response-with-extra-repository-information: value: @@ -112508,7 +112417,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *800 + - *799 - *462 - *463 requestBody: @@ -112560,7 +112469,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *800 + - *799 - *462 - *463 responses: @@ -112591,7 +112500,7 @@ 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: - - *800 + - *799 responses: '200': description: Response @@ -112626,7 +112535,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: - - *800 + - *799 requestBody: required: true content: @@ -112714,7 +112623,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *800 + - *799 - *17 - *19 responses: @@ -112726,7 +112635,7 @@ paths: type: array items: *317 examples: - response-if-child-teams-exist: *804 + response-if-child-teams-exist: *803 headers: Link: *47 '404': *6 @@ -112759,7 +112668,7 @@ paths: application/json: schema: oneOf: - - &806 + - &805 title: Private User description: Private User type: object @@ -112962,7 +112871,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *805 + - *804 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -113115,7 +113024,7 @@ paths: description: Response content: application/json: - schema: *806 + schema: *805 examples: default: value: @@ -113513,7 +113422,7 @@ paths: type: integer secrets: type: array - items: &807 + items: &806 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -113629,7 +113538,7 @@ paths: description: Response content: application/json: - schema: *807 + schema: *806 examples: default: value: @@ -113775,7 +113684,7 @@ paths: type: array items: *288 examples: - default: *808 + default: *807 '401': *25 '403': *29 '404': *6 @@ -114042,7 +113951,7 @@ paths: description: Response content: application/json: - schema: &809 + schema: &808 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -114083,7 +113992,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &810 + default: &809 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -114128,9 +114037,9 @@ paths: description: Response content: application/json: - schema: *809 + schema: *808 examples: - default: *810 + default: *809 '404': *6 x-github: githubCloudOnly: false @@ -114167,9 +114076,9 @@ paths: type: integer machines: type: array - items: *811 + items: *810 examples: - default: *812 + default: *811 '304': *37 '500': *40 '401': *25 @@ -115108,7 +115017,7 @@ paths: type: array items: *392 examples: - default: &823 + default: &822 value: - id: 197 name: hello_docker @@ -115209,7 +115118,7 @@ paths: application/json: schema: type: array - items: &813 + items: &812 title: Email description: Email type: object @@ -115274,9 +115183,9 @@ paths: application/json: schema: type: array - items: *813 + items: *812 examples: - default: &825 + default: &824 value: - email: octocat@github.com verified: true @@ -115351,7 +115260,7 @@ paths: application/json: schema: type: array - items: *813 + items: *812 examples: default: value: @@ -115607,7 +115516,7 @@ paths: application/json: schema: type: array - items: &814 + items: &813 title: GPG Key description: A unique encryption key type: object @@ -115738,7 +115647,7 @@ paths: - subkeys - revoked examples: - default: &841 + default: &840 value: - id: 3 name: Octocat's GPG Key @@ -115823,9 +115732,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *813 examples: - default: &815 + default: &814 value: id: 3 name: Octocat's GPG Key @@ -115882,7 +115791,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: - - &816 + - &815 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -115894,9 +115803,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *813 examples: - default: *815 + default: *814 '404': *6 '304': *37 '403': *29 @@ -115919,7 +115828,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: - - *816 + - *815 responses: '204': description: Response @@ -116376,7 +116285,7 @@ paths: application/json: schema: type: array - items: &817 + items: &816 title: Key description: Key type: object @@ -116477,9 +116386,9 @@ paths: description: Response content: application/json: - schema: *817 + schema: *816 examples: - default: &818 + default: &817 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -116518,9 +116427,9 @@ paths: description: Response content: application/json: - schema: *817 + schema: *816 examples: - default: *818 + default: *817 '404': *6 '304': *37 '403': *29 @@ -116576,7 +116485,7 @@ paths: application/json: schema: type: array - items: &819 + items: &818 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -116644,7 +116553,7 @@ paths: - account - plan examples: - default: &820 + default: &819 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -116706,9 +116615,9 @@ paths: application/json: schema: type: array - items: *819 + items: *818 examples: - default: *820 + default: *819 headers: Link: *47 '304': *37 @@ -117717,7 +117626,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *387 - - *821 + - *820 responses: '204': description: Response @@ -117832,7 +117741,7 @@ paths: - docker - nuget - container - - *822 + - *821 - *19 - *17 responses: @@ -117844,8 +117753,8 @@ paths: type: array items: *392 examples: - default: *823 - '400': *824 + default: *822 + '400': *823 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117874,7 +117783,7 @@ paths: application/json: schema: *392 examples: - default: &842 + default: &841 value: id: 40201 name: octo-name @@ -118236,9 +118145,9 @@ paths: application/json: schema: type: array - items: *813 + items: *812 examples: - default: *825 + default: *824 headers: Link: *47 '304': *37 @@ -118351,7 +118260,7 @@ paths: type: array items: *78 examples: - default: &832 + default: &831 summary: Default response value: - id: 1296269 @@ -118697,7 +118606,7 @@ paths: type: array items: *653 examples: - default: *826 + default: *825 headers: Link: *47 '304': *37 @@ -118776,7 +118685,7 @@ paths: application/json: schema: type: array - items: &827 + items: &826 title: Social account description: Social media account type: object @@ -118791,7 +118700,7 @@ paths: - provider - url examples: - default: &828 + default: &827 value: - provider: twitter url: https://twitter.com/github @@ -118853,9 +118762,9 @@ paths: application/json: schema: type: array - items: *827 + items: *826 examples: - default: *828 + default: *827 '422': *15 '304': *37 '404': *6 @@ -118942,7 +118851,7 @@ paths: application/json: schema: type: array - items: &829 + items: &828 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -118962,7 +118871,7 @@ paths: - title - created_at examples: - default: &856 + default: &855 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -119026,9 +118935,9 @@ paths: description: Response content: application/json: - schema: *829 + schema: *828 examples: - default: &830 + default: &829 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -119058,7 +118967,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: - - &831 + - &830 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -119070,9 +118979,9 @@ paths: description: Response content: application/json: - schema: *829 + schema: *828 examples: - default: *830 + default: *829 '404': *6 '304': *37 '403': *29 @@ -119095,7 +119004,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: - - *831 + - *830 responses: '204': description: Response @@ -119124,7 +119033,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: - - &857 + - &856 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 @@ -119149,11 +119058,11 @@ paths: type: array items: *78 examples: - default-response: *832 + default-response: *831 application/vnd.github.v3.star+json: schema: type: array - items: &858 + items: &857 title: Starred Repository description: Starred Repository type: object @@ -119522,10 +119431,10 @@ paths: application/json: schema: oneOf: - - *806 - *805 + - *804 examples: - default-response: &836 + default-response: &835 summary: Default response value: login: octocat @@ -119560,7 +119469,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &837 + response-with-git-hub-plan-information: &836 summary: Response with GitHub plan information value: login: octocat @@ -119617,7 +119526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &834 + - &833 name: user_id description: The unique identifier of the user. in: path @@ -119683,7 +119592,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *833 + - *832 - *17 responses: '200': @@ -119718,7 +119627,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *834 + - *833 - *410 requestBody: required: true @@ -119790,7 +119699,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *835 + schema: *834 examples: table_view: summary: Response for creating a table view @@ -119842,11 +119751,11 @@ paths: application/json: schema: oneOf: - - *806 - *805 + - *804 examples: - default-response: *836 - response-with-git-hub-plan-information: *837 + default-response: *835 + response-with-git-hub-plan-information: *836 '404': *6 x-github: githubCloudOnly: false @@ -119896,8 +119805,8 @@ paths: required: - subject_digests examples: - default: *838 - withPredicateType: *839 + default: *837 + withPredicateType: *838 responses: '200': description: Response @@ -119950,7 +119859,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *840 + default: *839 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -120196,7 +120105,7 @@ paths: type: array items: *392 examples: - default: *823 + default: *822 '403': *29 '401': *25 x-github: @@ -120580,9 +120489,9 @@ paths: application/json: schema: type: array - items: *814 + items: *813 examples: - default: *841 + default: *840 headers: Link: *47 x-github: @@ -120810,7 +120719,7 @@ paths: - docker - nuget - container - - *822 + - *821 - *143 - *19 - *17 @@ -120823,10 +120732,10 @@ paths: type: array items: *392 examples: - default: *823 + default: *822 '403': *29 '401': *25 - '400': *824 + '400': *823 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120856,7 +120765,7 @@ paths: application/json: schema: *392 examples: - default: *842 + default: *841 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121205,7 +121114,7 @@ paths: type: array items: *414 examples: - default: *843 + default: *842 headers: Link: *47 '304': *37 @@ -121265,7 +121174,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *844 + items: *843 required: - name - data_type @@ -121281,7 +121190,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *845 + iteration_configuration: *844 required: - name - data_type @@ -121303,8 +121212,8 @@ paths: value: name: Due date data_type: date - single_select_field: *846 - iteration_field: *847 + single_select_field: *845 + iteration_field: *846 responses: '201': description: Response @@ -121312,11 +121221,11 @@ paths: application/json: schema: *414 examples: - text_field: *848 - number_field: *849 - date_field: *850 - single_select_field: *851 - iteration_field: *852 + text_field: *847 + number_field: *848 + date_field: *849 + single_select_field: *850 + iteration_field: *851 '304': *37 '403': *29 '401': *25 @@ -121338,7 +121247,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - *410 - - *853 + - *852 - *143 responses: '200': @@ -121347,7 +121256,7 @@ paths: application/json: schema: *414 examples: - default: *854 + default: *853 headers: Link: *47 '304': *37 @@ -121701,7 +121610,7 @@ paths: parameters: - *410 - *143 - - *855 + - *854 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -121980,9 +121889,9 @@ paths: application/json: schema: type: array - items: *827 + items: *826 examples: - default: *828 + default: *827 headers: Link: *47 x-github: @@ -122012,9 +121921,9 @@ paths: application/json: schema: type: array - items: *829 + items: *828 examples: - default: *856 + default: *855 headers: Link: *47 x-github: @@ -122039,7 +121948,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *143 - - *857 + - *856 - *110 - *17 - *19 @@ -122051,11 +121960,11 @@ paths: schema: anyOf: - type: array - items: *858 + items: *857 - type: array items: *78 examples: - default-response: *832 + default-response: *831 headers: Link: *47 x-github: @@ -122214,7 +122123,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &859 + enterprise: &858 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -122272,7 +122181,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &860 + installation: &859 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -122291,7 +122200,7 @@ x-webhooks: required: - id - node_id - organization: &861 + organization: &860 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -122351,13 +122260,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &862 + repository: &861 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &901 + properties: &900 id: description: Unique identifier of the repository example: 42 @@ -123052,7 +122961,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &902 + required: &901 - archive_url - assignees_url - blobs_url @@ -123203,10 +123112,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -123282,11 +123191,11 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - rule: &863 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: &862 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) @@ -123509,11 +123418,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - rule: *863 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: *862 sender: *4 required: - action @@ -123696,11 +123605,11 @@ x-webhooks: - everyone required: - from - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - rule: *863 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: *862 sender: *4 required: - action @@ -123773,7 +123682,7 @@ x-webhooks: required: true content: application/json: - schema: &885 + schema: &884 title: Exemption request cancellation event type: object properties: @@ -123781,11 +123690,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - exemption_request: &864 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: &863 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -124054,7 +123963,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &865 + items: &864 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -124164,7 +124073,7 @@ x-webhooks: required: true content: application/json: - schema: &886 + schema: &885 title: Exemption request completed event type: object properties: @@ -124172,11 +124081,11 @@ x-webhooks: type: string enum: - completed - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - exemption_request: *864 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 sender: *4 required: - action @@ -124248,7 +124157,7 @@ x-webhooks: required: true content: application/json: - schema: &883 + schema: &882 title: Exemption request created event type: object properties: @@ -124256,11 +124165,11 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - exemption_request: *864 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 sender: *4 required: - action @@ -124332,7 +124241,7 @@ x-webhooks: required: true content: application/json: - schema: &887 + schema: &886 title: Exemption response dismissed event type: object properties: @@ -124340,12 +124249,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - exemption_request: *864 - exemption_response: *865 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 + exemption_response: *864 sender: *4 required: - action @@ -124419,7 +124328,7 @@ x-webhooks: required: true content: application/json: - schema: &884 + schema: &883 title: Exemption response submitted event type: object properties: @@ -124427,12 +124336,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - exemption_request: *864 - exemption_response: *865 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 + exemption_response: *864 sender: *4 required: - action @@ -124516,7 +124425,7 @@ x-webhooks: type: string enum: - completed - check_run: &867 + check_run: &866 title: CheckRun description: A check performed on the code of a given code change type: object @@ -124607,7 +124516,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *866 + deployment: *865 details_url: example: https://example.com type: string @@ -124692,10 +124601,10 @@ x-webhooks: - output - app - pull_requests - installation: *860 - enterprise: *859 - organization: *861 - repository: *862 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -125086,11 +124995,11 @@ x-webhooks: type: string enum: - created - check_run: *867 - installation: *860 - enterprise: *859 - organization: *861 - repository: *862 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -125484,11 +125393,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *867 - installation: *860 - enterprise: *859 - organization: *861 - repository: *862 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 requested_action: description: The action requested by the user. type: object @@ -125891,11 +125800,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *867 - installation: *860 - enterprise: *859 - organization: *861 - repository: *862 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -126865,10 +126774,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -127557,10 +127466,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -128243,10 +128152,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -128557,20 +128466,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &868 + commit_oid: &867 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: *859 - installation: *860 - organization: *861 - ref: &869 + enterprise: *858 + installation: *859 + organization: *860 + ref: &868 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: *862 + repository: *861 sender: *4 required: - action @@ -128965,12 +128874,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *868 - enterprise: *859 - installation: *860 - organization: *861 - ref: *869 - repository: *862 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -129236,12 +129145,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *868 - enterprise: *859 - installation: *860 - organization: *861 - ref: *869 - repository: *862 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -129573,12 +129482,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *868 - enterprise: *859 - installation: *860 - organization: *861 - ref: *869 - repository: *862 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -129852,16 +129761,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *862 + repository: *861 sender: *4 required: - action @@ -130098,12 +130007,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *868 - enterprise: *859 - installation: *860 - organization: *861 - ref: *869 - repository: *862 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -130414,10 +130323,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -130672,10 +130581,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -130755,18 +130664,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *861 - pusher_type: &870 + organization: *860 + pusher_type: &869 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &871 + ref: &870 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -130776,7 +130685,7 @@ x-webhooks: enum: - tag - branch - repository: *862 + repository: *861 sender: *4 required: - ref @@ -130859,9 +130768,9 @@ x-webhooks: enum: - created definition: *157 - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -130946,9 +130855,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -131026,9 +130935,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *157 - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -131106,9 +131015,9 @@ x-webhooks: enum: - updated definition: *157 - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -131185,10 +131094,10 @@ x-webhooks: type: string enum: - updated - enterprise: *859 - installation: *860 - repository: *862 - organization: *861 + enterprise: *858 + installation: *859 + repository: *861 + organization: *860 sender: *4 new_property_values: type: array @@ -131273,18 +131182,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *859 - installation: *860 - organization: *861 - pusher_type: *870 - ref: *871 + enterprise: *858 + installation: *859 + organization: *860 + pusher_type: *869 + ref: *870 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *862 + repository: *861 sender: *4 required: - ref @@ -131365,10 +131274,10 @@ x-webhooks: enum: - assignees_changed alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131449,10 +131358,10 @@ x-webhooks: enum: - auto_dismissed alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131534,10 +131443,10 @@ x-webhooks: enum: - auto_reopened alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131619,10 +131528,10 @@ x-webhooks: enum: - created alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131702,10 +131611,10 @@ x-webhooks: enum: - dismissed alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131785,10 +131694,10 @@ x-webhooks: enum: - fixed alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131869,10 +131778,10 @@ x-webhooks: enum: - reintroduced alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131952,10 +131861,10 @@ x-webhooks: enum: - reopened alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -132032,9 +131941,9 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - key: &872 + enterprise: *858 + installation: *859 + key: &871 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -132070,8 +131979,8 @@ x-webhooks: - verified - created_at - read_only - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -132148,11 +132057,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - key: *872 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + key: *871 + organization: *860 + repository: *861 sender: *4 required: - action @@ -132708,12 +132617,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: &878 + workflow: &877 title: Workflow type: object nullable: true @@ -133454,15 +133363,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *873 - required: *874 + properties: *872 + required: *873 nullable: true pull_requests: type: array items: *705 - repository: *862 - organization: *861 - installation: *860 + repository: *861 + organization: *860 + installation: *859 sender: *4 responses: '200': @@ -133533,7 +133442,7 @@ x-webhooks: type: string enum: - approved - approver: &875 + approver: &874 type: object properties: avatar_url: @@ -133576,11 +133485,11 @@ x-webhooks: type: string comment: type: string - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - reviewers: &876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + reviewers: &875 type: array items: type: object @@ -133659,7 +133568,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &877 + workflow_job_run: &876 type: object properties: conclusion: @@ -134390,18 +134299,18 @@ x-webhooks: type: string enum: - rejected - approver: *875 + approver: *874 comment: type: string - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - reviewers: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + reviewers: *875 sender: *4 since: type: string - workflow_job_run: *877 + workflow_job_run: *876 workflow_job_runs: type: array items: @@ -135105,13 +135014,13 @@ x-webhooks: type: string enum: - requested - enterprise: *859 + enterprise: *858 environment: type: string - installation: *860 - organization: *861 - repository: *862 - requestor: &888 + installation: *859 + organization: *860 + repository: *861 + requestor: &887 title: User type: object nullable: true @@ -137000,12 +136909,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *878 + workflow: *877 workflow_run: title: Deployment Workflow Run type: object @@ -137685,7 +137594,7 @@ x-webhooks: type: string enum: - answered - answer: &881 + answer: &880 type: object properties: author_association: @@ -137842,11 +137751,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -137973,11 +137882,11 @@ x-webhooks: - from required: - category - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138060,11 +137969,11 @@ x-webhooks: type: string enum: - closed - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138146,7 +138055,7 @@ x-webhooks: type: string enum: - created - comment: &880 + comment: &879 type: object properties: author_association: @@ -138303,11 +138212,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138390,12 +138299,12 @@ x-webhooks: type: string enum: - deleted - comment: *880 - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + comment: *879 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138490,12 +138399,12 @@ x-webhooks: - from required: - body - comment: *880 - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + comment: *879 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138579,11 +138488,11 @@ x-webhooks: type: string enum: - created - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138665,11 +138574,11 @@ x-webhooks: type: string enum: - deleted - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138769,11 +138678,11 @@ x-webhooks: type: string required: - from - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138855,10 +138764,10 @@ x-webhooks: type: string enum: - labeled - discussion: *879 - enterprise: *859 - installation: *860 - label: &882 + discussion: *878 + enterprise: *858 + installation: *859 + label: &881 title: Label type: object properties: @@ -138890,8 +138799,8 @@ x-webhooks: - color - default - description - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138974,11 +138883,11 @@ x-webhooks: type: string enum: - locked - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139060,11 +138969,11 @@ x-webhooks: type: string enum: - pinned - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139146,11 +139055,11 @@ x-webhooks: type: string enum: - reopened - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139235,16 +139144,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *879 - new_repository: *862 + new_discussion: *878 + new_repository: *861 required: - new_discussion - new_repository - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139327,10 +139236,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *879 - old_answer: *881 - organization: *861 - repository: *862 + discussion: *878 + old_answer: *880 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139412,12 +139321,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *879 - enterprise: *859 - installation: *860 - label: *882 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139500,11 +139409,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139586,11 +139495,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139659,7 +139568,7 @@ x-webhooks: required: true content: application/json: - schema: *883 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139722,7 +139631,7 @@ x-webhooks: required: true content: application/json: - schema: *884 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139785,7 +139694,7 @@ x-webhooks: required: true content: application/json: - schema: *885 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139848,7 +139757,7 @@ x-webhooks: required: true content: application/json: - schema: *883 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139911,7 +139820,7 @@ x-webhooks: required: true content: application/json: - schema: *884 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139977,7 +139886,7 @@ x-webhooks: required: true content: application/json: - schema: *885 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140043,7 +139952,7 @@ x-webhooks: required: true content: application/json: - schema: *886 + schema: *885 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140109,7 +140018,7 @@ x-webhooks: required: true content: application/json: - schema: *883 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140175,7 +140084,7 @@ x-webhooks: required: true content: application/json: - schema: *887 + schema: *886 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140241,7 +140150,7 @@ x-webhooks: required: true content: application/json: - schema: *884 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140306,7 +140215,7 @@ x-webhooks: required: true content: application/json: - schema: *885 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140371,7 +140280,7 @@ x-webhooks: required: true content: application/json: - schema: *886 + schema: *885 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140436,7 +140345,7 @@ x-webhooks: required: true content: application/json: - schema: *883 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140501,7 +140410,7 @@ x-webhooks: required: true content: application/json: - schema: *887 + schema: *886 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140567,7 +140476,7 @@ x-webhooks: required: true content: application/json: - schema: *884 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140634,7 +140543,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *859 + enterprise: *858 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -141294,9 +141203,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - forkee @@ -141442,9 +141351,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pages: description: The pages that were updated. type: array @@ -141481,7 +141390,7 @@ x-webhooks: - action - sha - html_url - repository: *862 + repository: *861 sender: *4 required: - pages @@ -141557,10 +141466,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories: &889 + organization: *860 + repositories: &888 description: An array of repository objects that the installation can access. type: array @@ -141586,8 +141495,8 @@ x-webhooks: - name - full_name - private - repository: *862 - requester: *888 + repository: *861 + requester: *887 sender: *4 required: - action @@ -141662,11 +141571,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories: *889 - repository: *862 + organization: *860 + repositories: *888 + repository: *861 requester: nullable: true sender: *4 @@ -141742,11 +141651,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories: *889 - repository: *862 + organization: *860 + repositories: *888 + repository: *861 requester: nullable: true sender: *4 @@ -141822,10 +141731,10 @@ x-webhooks: type: string enum: - added - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories_added: &890 + organization: *860 + repositories_added: &889 description: An array of repository objects, which were added to the installation. type: array @@ -141871,15 +141780,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *862 - repository_selection: &891 + repository: *861 + repository_selection: &890 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *888 + requester: *887 sender: *4 required: - action @@ -141958,10 +141867,10 @@ x-webhooks: type: string enum: - removed - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories_added: *890 + organization: *860 + repositories_added: *889 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -141988,9 +141897,9 @@ x-webhooks: - name - full_name - private - repository: *862 - repository_selection: *891 - requester: *888 + repository: *861 + repository_selection: *890 + requester: *887 sender: *4 required: - action @@ -142069,11 +141978,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories: *889 - repository: *862 + organization: *860 + repositories: *888 + repository: *861 requester: nullable: true sender: *4 @@ -142252,10 +142161,10 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 target_type: type: string @@ -142334,11 +142243,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories: *889 - repository: *862 + organization: *860 + repositories: *888 + repository: *861 requester: nullable: true sender: *4 @@ -142598,8 +142507,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -143388,8 +143297,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143738,8 +143647,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -143819,7 +143728,7 @@ x-webhooks: type: string enum: - deleted - comment: &892 + comment: &891 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -143992,8 +143901,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -144778,8 +144687,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145130,8 +145039,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -145211,7 +145120,7 @@ x-webhooks: type: string enum: - edited - changes: &921 + changes: &920 description: The changes to the comment. type: object properties: @@ -145223,9 +145132,9 @@ x-webhooks: type: string required: - from - comment: *892 - enterprise: *859 - installation: *860 + comment: *891 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -146013,8 +145922,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146363,8 +146272,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -146445,9 +146354,9 @@ x-webhooks: type: string enum: - pinned - comment: *892 - enterprise: *859 - installation: *860 + comment: *891 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147237,8 +147146,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147589,8 +147498,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -147670,9 +147579,9 @@ x-webhooks: type: string enum: - unpinned - comment: *892 - enterprise: *859 - installation: *860 + comment: *891 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148462,8 +148371,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148814,8 +148723,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -148904,9 +148813,9 @@ x-webhooks: type: number blocking_issue: *225 blocking_issue_repo: *78 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -148995,9 +148904,9 @@ x-webhooks: type: number blocking_issue: *225 blocking_issue_repo: *78 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -149085,9 +148994,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -149176,9 +149085,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -149258,10 +149167,10 @@ x-webhooks: type: string enum: - assigned - assignee: *888 - enterprise: *859 - installation: *860 - issue: &895 + assignee: *887 + enterprise: *858 + installation: *859 + issue: &894 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -150053,11 +149962,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150174,8 +150083,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -150255,8 +150164,8 @@ x-webhooks: type: string enum: - closed - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -151053,11 +150962,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151309,8 +151218,8 @@ x-webhooks: required: - state - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -151389,8 +151298,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152178,11 +152087,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152298,8 +152207,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152378,8 +152287,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153189,11 +153098,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153288,7 +153197,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &893 + milestone: &892 title: Milestone description: A collection of related issues and pull requests. type: object @@ -153426,8 +153335,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153526,8 +153435,8 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154319,11 +154228,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154440,9 +154349,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *882 - organization: *861 - repository: *862 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -154522,8 +154431,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155314,11 +155223,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155435,9 +155344,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *882 - organization: *861 - repository: *862 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -155517,8 +155426,8 @@ x-webhooks: type: string enum: - locked - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156333,11 +156242,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156431,8 +156340,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -156511,8 +156420,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157321,11 +157230,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157419,9 +157328,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *893 - organization: *861 - repository: *862 + milestone: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -158284,11 +158193,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158869,8 +158778,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159654,11 +159563,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159782,8 +159691,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -159863,9 +159772,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *859 - installation: *860 - issue: &894 + enterprise: *858 + installation: *859 + issue: &893 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -160651,11 +160560,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160771,8 +160680,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -160851,8 +160760,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -161665,11 +161574,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161764,8 +161673,8 @@ x-webhooks: user_view_type: type: string type: *376 - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -162634,11 +162543,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163233,11 +163142,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *859 - installation: *860 - issue: *894 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + issue: *893 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163317,12 +163226,12 @@ x-webhooks: type: string enum: - typed - enterprise: *859 - installation: *860 - issue: *895 + enterprise: *858 + installation: *859 + issue: *894 type: *376 - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163403,7 +163312,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &924 + assignee: &923 title: User type: object nullable: true @@ -163473,11 +163382,11 @@ x-webhooks: required: - login - id - enterprise: *859 - installation: *860 - issue: *895 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + issue: *894 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163556,12 +163465,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *859 - installation: *860 - issue: *895 - label: *882 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + issue: *894 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163641,8 +163550,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -164455,11 +164364,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164553,8 +164462,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164634,11 +164543,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *859 - installation: *860 - issue: *894 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + issue: *893 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164717,12 +164626,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *859 - installation: *860 - issue: *895 + enterprise: *858 + installation: *859 + issue: *894 type: *376 - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164802,11 +164711,11 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - label: *882 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164884,11 +164793,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - label: *882 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164998,11 +164907,11 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - label: *882 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -165084,9 +164993,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *859 - installation: *860 - marketplace_purchase: &896 + enterprise: *858 + installation: *859 + marketplace_purchase: &895 title: Marketplace Purchase type: object required: @@ -165169,8 +165078,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *861 - previous_marketplace_purchase: &897 + organization: *860 + previous_marketplace_purchase: &896 title: Marketplace Purchase type: object properties: @@ -165250,7 +165159,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165330,10 +165239,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *859 - installation: *860 - marketplace_purchase: *896 - organization: *861 + enterprise: *858 + installation: *859 + marketplace_purchase: *895 + organization: *860 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165416,7 +165325,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165498,10 +165407,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *859 - installation: *860 - marketplace_purchase: *896 - organization: *861 + enterprise: *858 + installation: *859 + marketplace_purchase: *895 + organization: *860 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165583,7 +165492,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165664,8 +165573,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 marketplace_purchase: title: Marketplace Purchase type: object @@ -165747,9 +165656,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *861 - previous_marketplace_purchase: *897 - repository: *862 + organization: *860 + previous_marketplace_purchase: *896 + repository: *861 sender: *4 required: - action @@ -165829,12 +165738,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *859 - installation: *860 - marketplace_purchase: *896 - organization: *861 - previous_marketplace_purchase: *897 - repository: *862 + enterprise: *858 + installation: *859 + marketplace_purchase: *895 + organization: *860 + previous_marketplace_purchase: *896 + repository: *861 sender: *4 required: - action @@ -165936,11 +165845,11 @@ x-webhooks: type: string required: - to - enterprise: *859 - installation: *860 - member: *888 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + member: *887 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166040,11 +165949,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *859 - installation: *860 - member: *888 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + member: *887 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166123,11 +166032,11 @@ x-webhooks: type: string enum: - removed - enterprise: *859 - installation: *860 - member: *888 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + member: *887 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166205,11 +166114,11 @@ x-webhooks: type: string enum: - added - enterprise: *859 - installation: *860 - member: *888 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + member: *887 + organization: *860 + repository: *861 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166285,7 +166194,7 @@ x-webhooks: required: - login - id - team: &898 + team: &897 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -166508,11 +166417,11 @@ x-webhooks: type: string enum: - removed - enterprise: *859 - installation: *860 - member: *888 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + member: *887 + organization: *860 + repository: *861 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166589,7 +166498,7 @@ x-webhooks: required: - login - id - team: *898 + team: *897 required: - action - scope @@ -166671,8 +166580,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *860 - merge_group: &900 + installation: *859 + merge_group: &899 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -166691,15 +166600,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *899 + head_commit: *898 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166785,10 +166694,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *860 - merge_group: *900 - organization: *861 - repository: *862 + installation: *859 + merge_group: *899 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166861,7 +166770,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 + enterprise: *858 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -166970,16 +166879,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *860 - organization: *861 + installation: *859 + organization: *860 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *901 - required: *902 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -167060,11 +166969,11 @@ x-webhooks: type: string enum: - closed - enterprise: *859 - installation: *860 - milestone: *893 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + milestone: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167143,9 +167052,9 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - milestone: &903 + enterprise: *858 + installation: *859 + milestone: &902 title: Milestone description: A collection of related issues and pull requests. type: object @@ -167282,8 +167191,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167362,11 +167271,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - milestone: *893 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + milestone: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167476,11 +167385,11 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - milestone: *893 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + milestone: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167560,11 +167469,11 @@ x-webhooks: type: string enum: - opened - enterprise: *859 - installation: *860 - milestone: *903 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + milestone: *902 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167643,11 +167552,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *888 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + blocked_user: *887 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167726,11 +167635,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *888 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + blocked_user: *887 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167806,7 +167715,7 @@ x-webhooks: enum: - created definition: *151 - enterprise: *859 + enterprise: *858 sender: *4 required: - action @@ -167886,8 +167795,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 sender: *4 required: - action @@ -167960,8 +167869,8 @@ x-webhooks: enum: - updated definition: *151 - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 sender: *4 required: - action @@ -168033,9 +167942,9 @@ x-webhooks: type: string enum: - updated - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 new_property_values: type: array @@ -168123,9 +168032,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - membership: &904 + enterprise: *858 + installation: *859 + membership: &903 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -168232,8 +168141,8 @@ x-webhooks: - role - organization_url - user - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168311,11 +168220,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *859 - installation: *860 - membership: *904 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + membership: *903 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168394,8 +168303,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -168511,10 +168420,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 - user: *888 + user: *887 required: - action - invitation @@ -168592,11 +168501,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *859 - installation: *860 - membership: *904 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + membership: *903 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168683,11 +168592,11 @@ x-webhooks: properties: from: type: string - enterprise: *859 - installation: *860 - membership: *904 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + membership: *903 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168765,9 +168674,9 @@ x-webhooks: type: string enum: - published - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 package: description: Information about the package. type: object @@ -169266,7 +169175,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &905 + items: &904 title: Ruby Gems metadata type: object properties: @@ -169361,7 +169270,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -169438,9 +169347,9 @@ x-webhooks: type: string enum: - updated - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 package: description: Information about the package. type: object @@ -169793,7 +169702,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *905 + items: *904 source_url: type: string format: uri @@ -169863,7 +169772,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -170039,12 +169948,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *859 + enterprise: *858 id: type: integer - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - id @@ -170121,7 +170030,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &906 + personal_access_token_request: &905 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -170267,10 +170176,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *859 - organization: *861 + enterprise: *858 + organization: *860 sender: *4 - installation: *860 + installation: *859 required: - action - personal_access_token_request @@ -170347,11 +170256,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *906 - enterprise: *859 - organization: *861 + personal_access_token_request: *905 + enterprise: *858 + organization: *860 sender: *4 - installation: *860 + installation: *859 required: - action - personal_access_token_request @@ -170427,11 +170336,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *906 - enterprise: *859 - organization: *861 + personal_access_token_request: *905 + enterprise: *858 + organization: *860 sender: *4 - installation: *860 + installation: *859 required: - action - personal_access_token_request @@ -170506,11 +170415,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *906 - organization: *861 - enterprise: *859 + personal_access_token_request: *905 + organization: *860 + enterprise: *858 sender: *4 - installation: *860 + installation: *859 required: - action - personal_access_token_request @@ -170615,7 +170524,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *907 + last_response: *906 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -170647,8 +170556,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 zen: description: Random string of GitHub zen. @@ -170893,10 +170802,10 @@ x-webhooks: - from required: - note - enterprise: *859 - installation: *860 - organization: *861 - project_card: &908 + enterprise: *858 + installation: *859 + organization: *860 + project_card: &907 title: Project Card type: object properties: @@ -171015,7 +170924,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -171096,11 +171005,11 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - project_card: *908 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project_card: *907 + repository: *861 sender: *4 required: - action @@ -171180,9 +171089,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 project_card: title: Project Card type: object @@ -171310,8 +171219,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *901 - required: *902 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -171405,11 +171314,11 @@ x-webhooks: - from required: - note - enterprise: *859 - installation: *860 - organization: *861 - project_card: *908 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project_card: *907 + repository: *861 sender: *4 required: - action @@ -171503,9 +171412,9 @@ x-webhooks: - from required: - column_id - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 project_card: allOf: - title: Project Card @@ -171695,7 +171604,7 @@ x-webhooks: type: string required: - after_id - repository: *862 + repository: *861 sender: *4 required: - action @@ -171775,10 +171684,10 @@ x-webhooks: type: string enum: - closed - enterprise: *859 - installation: *860 - organization: *861 - project: &910 + enterprise: *858 + installation: *859 + organization: *860 + project: &909 title: Project type: object properties: @@ -171902,7 +171811,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -171982,10 +171891,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - project_column: &909 + enterprise: *858 + installation: *859 + organization: *860 + project_column: &908 title: Project Column type: object properties: @@ -172024,7 +171933,7 @@ x-webhooks: - name - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -172103,18 +172012,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - project_column: *909 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *908 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *901 - required: *902 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -172204,11 +172113,11 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - organization: *861 - project_column: *909 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *908 + repository: *861 sender: *4 required: - action @@ -172288,11 +172197,11 @@ x-webhooks: type: string enum: - moved - enterprise: *859 - installation: *860 - organization: *861 - project_column: *909 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *908 + repository: *861 sender: *4 required: - action @@ -172372,11 +172281,11 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - project: *910 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project: *909 + repository: *861 sender: *4 required: - action @@ -172456,18 +172365,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - project: *910 + enterprise: *858 + installation: *859 + organization: *860 + project: *909 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *901 - required: *902 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -172569,11 +172478,11 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - organization: *861 - project: *910 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project: *909 + repository: *861 sender: *4 required: - action @@ -172652,11 +172561,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *859 - installation: *860 - organization: *861 - project: *910 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project: *909 + repository: *861 sender: *4 required: - action @@ -172737,8 +172646,8 @@ x-webhooks: type: string enum: - closed - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -172820,8 +172729,8 @@ x-webhooks: type: string enum: - created - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -172903,8 +172812,8 @@ x-webhooks: type: string enum: - deleted - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173022,8 +172931,8 @@ x-webhooks: type: string to: type: string - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173107,7 +173016,7 @@ x-webhooks: type: string enum: - archived - changes: &914 + changes: &913 type: object properties: archived_at: @@ -173121,9 +173030,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *860 - organization: *861 - projects_v2_item: &911 + installation: *859 + organization: *860 + projects_v2_item: &910 title: Projects v2 Item description: An item belonging to a project type: object @@ -173258,9 +173167,9 @@ x-webhooks: nullable: true to: type: string - installation: *860 - organization: *861 - projects_v2_item: *911 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173342,9 +173251,9 @@ x-webhooks: type: string enum: - created - installation: *860 - organization: *861 - projects_v2_item: *911 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173425,9 +173334,9 @@ x-webhooks: type: string enum: - deleted - installation: *860 - organization: *861 - projects_v2_item: *911 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173533,7 +173442,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &912 + - &911 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -173555,7 +173464,7 @@ x-webhooks: required: - id - name - - &913 + - &912 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -173589,8 +173498,8 @@ x-webhooks: oneOf: - type: string - type: integer + - *911 - *912 - - *913 required: - field_value - type: object @@ -173606,9 +173515,9 @@ x-webhooks: nullable: true required: - body - installation: *860 - organization: *861 - projects_v2_item: *911 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173703,9 +173612,9 @@ x-webhooks: to: type: string nullable: true - installation: *860 - organization: *861 - projects_v2_item: *911 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173788,10 +173697,10 @@ x-webhooks: type: string enum: - restored - changes: *914 - installation: *860 - organization: *861 - projects_v2_item: *911 + changes: *913 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173873,8 +173782,8 @@ x-webhooks: type: string enum: - reopened - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173956,14 +173865,14 @@ x-webhooks: type: string enum: - created - installation: *860 - organization: *861 - projects_v2_status_update: &917 + installation: *859 + organization: *860 + projects_v2_status_update: &916 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *915 - required: *916 + properties: *914 + required: *915 sender: *4 required: - action @@ -174044,9 +173953,9 @@ x-webhooks: type: string enum: - deleted - installation: *860 - organization: *861 - projects_v2_status_update: *917 + installation: *859 + organization: *860 + projects_v2_status_update: *916 sender: *4 required: - action @@ -174182,9 +174091,9 @@ x-webhooks: type: string format: date nullable: true - installation: *860 - organization: *861 - projects_v2_status_update: *917 + installation: *859 + organization: *860 + projects_v2_status_update: *916 sender: *4 required: - action @@ -174255,10 +174164,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - repository @@ -174335,13 +174244,13 @@ x-webhooks: type: string enum: - assigned - assignee: *888 - enterprise: *859 - installation: *860 - number: &918 + assignee: *887 + enterprise: *858 + installation: *859 + number: &917 description: The pull request number. type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -176646,7 +176555,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -176728,11 +176637,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -179032,7 +178941,7 @@ x-webhooks: - draft reason: type: string - repository: *862 + repository: *861 sender: *4 required: - action @@ -179114,11 +179023,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -181418,7 +181327,7 @@ x-webhooks: - draft reason: type: string - repository: *862 + repository: *861 sender: *4 required: - action @@ -181500,11 +181409,11 @@ x-webhooks: type: string enum: - closed - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: &919 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: &918 allOf: - *705 - type: object @@ -181568,7 +181477,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *862 + repository: *861 sender: *4 required: - action @@ -181649,12 +181558,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: *919 - repository: *862 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: *918 + repository: *861 sender: *4 required: - action @@ -181734,11 +181643,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *859 + enterprise: *858 milestone: *687 - number: *918 - organization: *861 - pull_request: &920 + number: *917 + organization: *860 + pull_request: &919 title: Pull Request type: object properties: @@ -184023,7 +183932,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -184102,11 +184011,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -186410,7 +186319,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *862 + repository: *861 sender: *4 required: - action @@ -186534,12 +186443,12 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: *919 - repository: *862 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: *918 + repository: *861 sender: *4 required: - action @@ -186619,11 +186528,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -188912,7 +188821,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -188992,11 +188901,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *859 - installation: *860 - label: *882 - number: *918 - organization: *861 + enterprise: *858 + installation: *859 + label: *881 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -191300,7 +191209,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -191381,10 +191290,10 @@ x-webhooks: type: string enum: - locked - enterprise: *859 - installation: *860 - number: *918 - organization: *861 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -193686,7 +193595,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -193766,12 +193675,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *859 + enterprise: *858 milestone: *687 - number: *918 - organization: *861 - pull_request: *920 - repository: *862 + number: *917 + organization: *860 + pull_request: *919 + repository: *861 sender: *4 required: - action @@ -193850,12 +193759,12 @@ x-webhooks: type: string enum: - opened - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: *919 - repository: *862 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: *918 + repository: *861 sender: *4 required: - action @@ -193936,12 +193845,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: *919 - repository: *862 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: *918 + repository: *861 sender: *4 required: - action @@ -194021,12 +193930,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: *919 - repository: *862 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: *918 + repository: *861 sender: *4 required: - action @@ -194392,9 +194301,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -196586,7 +196495,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -196666,7 +196575,7 @@ x-webhooks: type: string enum: - deleted - comment: &922 + comment: &921 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. @@ -196951,9 +196860,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -199133,7 +199042,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -199213,11 +199122,11 @@ x-webhooks: type: string enum: - edited - changes: *921 - comment: *922 - enterprise: *859 - installation: *860 - organization: *861 + changes: *920 + comment: *921 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -201400,7 +201309,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -201481,9 +201390,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -203678,7 +203587,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 + repository: *861 review: description: The review that was affected. type: object @@ -203925,9 +203834,9 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -205981,8 +205890,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 - review: &923 + repository: *861 + review: &922 description: The review that was affected. type: object properties: @@ -206215,12 +206124,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -208525,7 +208434,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_reviewer: title: User type: object @@ -208609,12 +208518,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -210926,7 +210835,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_team: title: Team description: Groups of organization members that gives permissions @@ -211118,12 +211027,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -213430,7 +213339,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_reviewer: title: User type: object @@ -213515,12 +213424,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -215818,7 +215727,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_team: title: Team description: Groups of organization members that gives permissions @@ -215999,9 +215908,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -218198,8 +218107,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 - review: *923 + repository: *861 + review: *922 sender: *4 required: - action @@ -218279,9 +218188,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -220373,7 +220282,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 + repository: *861 sender: *4 thread: type: object @@ -220760,9 +220669,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -222840,7 +222749,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 + repository: *861 sender: *4 thread: type: object @@ -223230,10 +223139,10 @@ x-webhooks: type: string before: type: string - enterprise: *859 - installation: *860 - number: *918 - organization: *861 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -225526,7 +225435,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -225608,11 +225517,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *924 - enterprise: *859 - installation: *860 - number: *918 - organization: *861 + assignee: *923 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -227917,7 +227826,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -227996,11 +227905,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *859 - installation: *860 - label: *882 - number: *918 - organization: *861 + enterprise: *858 + installation: *859 + label: *881 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -230295,7 +230204,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -230376,10 +230285,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *859 - installation: *860 - number: *918 - organization: *861 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -232666,7 +232575,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -232866,7 +232775,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *859 + enterprise: *858 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -232958,8 +232867,8 @@ x-webhooks: - url - author - committer - installation: *860 - organization: *861 + installation: *859 + organization: *860 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -233545,9 +233454,9 @@ x-webhooks: type: string enum: - published - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 registry_package: type: object properties: @@ -233993,7 +233902,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *905 + items: *904 summary: type: string tag_name: @@ -234047,7 +233956,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -234125,9 +234034,9 @@ x-webhooks: type: string enum: - updated - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 registry_package: type: object properties: @@ -234435,7 +234344,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *905 + items: *904 summary: type: string tag_name: @@ -234484,7 +234393,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -234561,10 +234470,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - release: &925 + enterprise: *858 + installation: *859 + organization: *860 + release: &924 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -234882,7 +234791,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *862 + repository: *861 sender: *4 required: - action @@ -234959,11 +234868,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - release: *925 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + release: *924 + repository: *861 sender: *4 required: - action @@ -235080,11 +234989,11 @@ x-webhooks: type: boolean required: - to - enterprise: *859 - installation: *860 - organization: *861 - release: *925 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + release: *924 + repository: *861 sender: *4 required: - action @@ -235162,9 +235071,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -235486,7 +235395,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *862 + repository: *861 sender: *4 required: - action @@ -235562,10 +235471,10 @@ x-webhooks: type: string enum: - published - enterprise: *859 - installation: *860 - organization: *861 - release: &926 + enterprise: *858 + installation: *859 + organization: *860 + release: &925 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -235884,7 +235793,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *862 + repository: *861 sender: *4 required: - action @@ -235960,11 +235869,11 @@ x-webhooks: type: string enum: - released - enterprise: *859 - installation: *860 - organization: *861 - release: *925 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + release: *924 + repository: *861 sender: *4 required: - action @@ -236040,11 +235949,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *859 - installation: *860 - organization: *861 - release: *926 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + release: *925 + repository: *861 sender: *4 required: - action @@ -236120,10 +236029,10 @@ x-webhooks: type: string enum: - published - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_advisory: *757 sender: *4 required: @@ -236200,10 +236109,10 @@ x-webhooks: type: string enum: - reported - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_advisory: *757 sender: *4 required: @@ -236280,10 +236189,10 @@ x-webhooks: type: string enum: - archived - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236360,10 +236269,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236441,10 +236350,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236528,10 +236437,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236643,10 +236552,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236718,10 +236627,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 status: type: string @@ -236802,10 +236711,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236882,10 +236791,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236979,10 +236888,10 @@ x-webhooks: - name required: - repository - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -237062,10 +236971,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *191 sender: *4 required: @@ -237144,10 +237053,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *191 sender: *4 required: @@ -237226,10 +237135,10 @@ x-webhooks: type: string enum: - edited - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *191 changes: type: object @@ -237534,10 +237443,10 @@ x-webhooks: - from required: - owner - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -237615,10 +237524,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -237696,7 +237605,7 @@ x-webhooks: type: string enum: - create - alert: &927 + alert: &926 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -237818,10 +237727,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238027,10 +237936,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238108,11 +238017,11 @@ x-webhooks: type: string enum: - reopen - alert: *927 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *926 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238311,10 +238220,10 @@ x-webhooks: enum: - fixed - open - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238392,7 +238301,7 @@ x-webhooks: type: string enum: - assigned - alert: &928 + alert: &927 type: object properties: number: *128 @@ -238511,10 +238420,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238592,11 +238501,11 @@ x-webhooks: type: string enum: - created - alert: *928 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *927 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238677,11 +238586,11 @@ x-webhooks: type: string enum: - created - alert: *928 - installation: *860 - location: *929 - organization: *861 - repository: *862 + alert: *927 + installation: *859 + location: *928 + organization: *860 + repository: *861 sender: *4 required: - location @@ -238919,11 +238828,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *928 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *927 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -239001,11 +238910,11 @@ x-webhooks: type: string enum: - reopened - alert: *928 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *927 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -239083,11 +238992,11 @@ x-webhooks: type: string enum: - resolved - alert: *928 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *927 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -239165,12 +239074,12 @@ x-webhooks: type: string enum: - unassigned - alert: *928 + alert: *927 assignee: *4 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -239248,11 +239157,11 @@ x-webhooks: type: string enum: - validated - alert: *928 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *927 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -239378,10 +239287,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *862 - enterprise: *859 - installation: *860 - organization: *861 + repository: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -239459,11 +239368,11 @@ x-webhooks: type: string enum: - published - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - security_advisory: &930 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + security_advisory: &929 description: The details of the security advisory, including summary, description, and severity. type: object @@ -239646,11 +239555,11 @@ x-webhooks: type: string enum: - updated - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - security_advisory: *930 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + security_advisory: *929 sender: *4 required: - action @@ -239723,10 +239632,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -239911,9 +239820,9 @@ x-webhooks: type: object properties: security_and_analysis: *425 - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: *467 sender: *4 required: @@ -239992,12 +239901,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: &931 + sponsorship: &930 type: object properties: created_at: @@ -240298,12 +240207,12 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *931 + sponsorship: *930 required: - action - sponsorship @@ -240391,12 +240300,12 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *931 + sponsorship: *930 required: - action - changes @@ -240473,17 +240382,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &932 + effective_date: &931 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: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *931 + sponsorship: *930 required: - action - sponsorship @@ -240557,7 +240466,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &933 + changes: &932 type: object properties: tier: @@ -240601,13 +240510,13 @@ x-webhooks: - from required: - tier - effective_date: *932 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + effective_date: *931 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *931 + sponsorship: *930 required: - action - changes @@ -240684,13 +240593,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *933 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + changes: *932 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *931 + sponsorship: *930 required: - action - changes @@ -240764,10 +240673,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -240850,10 +240759,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -241273,15 +241182,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *859 + enterprise: *858 id: description: The unique identifier of the status. type: integer - installation: *860 + installation: *859 name: type: string - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 sha: description: The Commit SHA. @@ -241396,9 +241305,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -241488,9 +241397,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -241580,9 +241489,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -241672,9 +241581,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -241751,12 +241660,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - team: &934 + team: &933 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -241979,9 +241888,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -242439,7 +242348,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -242515,9 +242424,9 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -242975,7 +242884,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -243052,9 +242961,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -243512,7 +243421,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -243656,9 +243565,9 @@ x-webhooks: - from required: - permissions - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -244116,7 +244025,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - changes @@ -244194,9 +244103,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -244654,7 +244563,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -244730,10 +244639,10 @@ x-webhooks: type: string enum: - started - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -244806,16 +244715,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *859 + enterprise: *858 inputs: type: object nullable: true additionalProperties: true - installation: *860 - organization: *861 + installation: *859 + organization: *860 ref: type: string - repository: *862 + repository: *861 sender: *4 workflow: type: string @@ -244897,10 +244806,10 @@ x-webhooks: type: string enum: - completed - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: allOf: @@ -245216,10 +245125,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: allOf: @@ -245558,10 +245467,10 @@ x-webhooks: type: string enum: - queued - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: type: object @@ -245775,10 +245684,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: type: object @@ -245994,12 +245903,12 @@ x-webhooks: type: string enum: - completed - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *878 + workflow: *877 workflow_run: title: Workflow Run type: object @@ -246998,12 +246907,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *878 + workflow: *877 workflow_run: title: Workflow Run type: object @@ -247987,12 +247896,12 @@ x-webhooks: type: string enum: - requested - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *878 + workflow: *877 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.deref.json b/descriptions/ghec/dereferenced/ghec.deref.json index d35f47cd2..6cb4b1649 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.json +++ b/descriptions/ghec/dereferenced/ghec.deref.json @@ -373499,6 +373499,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + "response-if-content-is-a-file-github-object": { + "summary": "Content is a file using the object media type" + }, + "response-if-content-is-a-directory-github-object": { + "summary": "Content is a directory using the object media type" + }, + "response-if-content-is-a-file": { + "summary": "Content is a file" + }, + "response-if-content-is-a-directory": { + "summary": "Content is a directory" + }, + "response-if-content-is-a-symlink": { + "summary": "Content is a symlink" + }, + "response-if-content-is-a-submodule": { + "summary": "Content is a submodule" + } + } + } + } + }, "responses": { "200": { "description": "Response", @@ -373666,7 +373693,7 @@ ] }, "examples": { - "response-if-content-is-a-file": { + "response-if-content-is-a-file-github-object": { "summary": "Response if content is a file", "value": { "type": "file", @@ -373687,7 +373714,7 @@ } } }, - "response-if-content-is-a-directory": { + "response-if-content-is-a-directory-github-object": { "summary": "Response if content is a directory and the application/vnd.github.v3.object media type is requested", "value": { "type": "dir", @@ -378361,10 +378388,26 @@ "type": "string", "description": "An optional comment associated with dismissing the alert.", "maxLength": 280 + }, + "assignees": { + "type": "array", + "description": "Usernames to assign to this Dependabot Alert.\nPass one or more user logins to _replace_ the set of assignees on this alert.\nSend an empty array (`[]`) to clear all assignees from the alert.", + "items": { + "type": "string" + } } }, - "required": [ - "state" + "anyOf": [ + { + "required": [ + "state" + ] + }, + { + "required": [ + "assignees" + ] + } ], "additionalProperties": false }, @@ -599936,427 +599979,6 @@ } } }, - "/repos/{owner}/{repo}/tags/protection": { - "get": { - "summary": "Closing down - List tag protection states for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-all-repository-rulesets)\" endpoint instead.\n\nThis returns the tag protection states of a repository.\n\nThis information is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/list-tag-protection", - "externalDocs": { - "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": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - } - }, - "examples": { - "default": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - } - } - } - } - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - }, - "post": { - "summary": "Closing down - Create a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#create-a-repository-ruleset)\" endpoint instead.\n\nThis creates a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/create-tag-protection", - "externalDocs": { - "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": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "pattern": { - "type": "string", - "description": "An optional glob pattern to match against when enforcing tag protection." - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "pattern": "v1.*" - } - } - } - } - } - }, - "responses": { - "201": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "enabled": true - } - } - } - } - } - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": { - "delete": { - "summary": "Closing down - Delete a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#delete-a-repository-ruleset)\" endpoint instead.\n\nThis deletes a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/delete-tag-protection", - "externalDocs": { - "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": [ - { - "name": "owner", - "description": "The account owner of the repository. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "repo", - "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", - "in": "path", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "tag_protection_id", - "description": "The unique identifier of the tag protection.", - "in": "path", - "required": true, - "schema": { - "type": "integer" - } - } - ], - "responses": { - "204": { - "description": "Response" - }, - "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" - } - } - } - } - } - }, - "404": { - "description": "Resource not found", - "content": { - "application/json": { - "schema": { - "title": "Basic Error", - "description": "Basic Error", - "type": "object", - "properties": { - "message": { - "type": "string" - }, - "documentation_url": { - "type": "string" - }, - "url": { - "type": "string" - }, - "status": { - "type": "string" - } - } - } - } - } - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, "/repos/{owner}/{repo}/tarball/{ref}": { "get": { "summary": "Download a repository archive (tar)", @@ -612802,7 +612424,7 @@ }, "put": { "summary": "Set SCIM information for a provisioned enterprise user", - "description": "Replaces an existing provisioned user's information.\n\nYou must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user, and their handle and email will be obfuscated.", + "description": "Replaces an existing provisioned user's information.\n\nYou must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated.\n>\n> ```\n>{\n> \"schemas\": [\n> \"urn:ietf:params:scim:schemas:core:2.0:User\"\n> ],\n> \"externalId\": \"E012345\",\n> \"active\": false,\n> \"userName\": \"E012345\",\n> \"name\": {\n> \"familyName\": \"Octocat\",\n> \"givenName\": \"Mona\",\n> \"middleName\": \"Lisa\"\n> },\n> \"displayName\": \"Mona Lisa\",\n> \"emails\": [\n> {\n> \"value\": \"mlisa@example.com\",\n> \"type\": \"work\",\n> \"primary\": true\n> }\n> ],\n> \"roles\": [\n> {\n> \"value\": \"User\"\n> }\n> ]\n>}\n> ```", "operationId": "enterprise-admin/set-information-for-provisioned-enterprise-user", "tags": [ "enterprise-admin" @@ -613531,7 +613153,7 @@ }, "patch": { "summary": "Update an attribute for a SCIM enterprise user", - "description": "Update a provisioned user's individual attributes.\n\nTo modify a user's attributes, you'll need to provide a `Operations` JSON formatted request that includes at least one of the following actions: add, remove, or replace. For specific examples and more information on the SCIM operations format, please refer to the [SCIM specification](https://tools.ietf.org/html/rfc7644#section-3.5.2).\n\n> [!NOTE]\n> Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `\"path\": \"emails[type eq \\\"work\\\"]\"` will be ineffective.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user, and their handle and email will be obfuscated.\n> ```\n> {\n> \"Operations\":[{\n> \"op\":\"replace\",\n> \"value\":{\n> \"active\":false\n> }\n> }]\n> }\n> ```", + "description": "Update a provisioned user's individual attributes.\n\nTo modify a user's attributes, you'll need to provide a `Operations` JSON formatted request that includes at least one of the following actions: add, remove, or replace. For specific examples and more information on the SCIM operations format, please refer to the [SCIM specification](https://tools.ietf.org/html/rfc7644#section-3.5.2).\n\n> [!NOTE]\n> Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `\"path\": \"emails[type eq \\\"work\\\"]\"` will be ineffective.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated.\n>\n> ```\n> {\n> \"schemas\": [\n> \"urn:ietf:params:scim:api:messages:2.0:PatchOp\"\n> ],\n> \"Operations\": [\n> {\n> \"op\": \"replace\",\n> \"value\": {\n> \"active\": false\n> }\n> }\n> ]\n> }\n> ```", "operationId": "enterprise-admin/update-attribute-for-enterprise-user", "tags": [ "enterprise-admin" diff --git a/descriptions/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index 8f69c66fe..eb2eb7cc1 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.deref.yaml @@ -1713,7 +1713,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &769 + schema: &768 title: Scim Error description: Scim Error type: object @@ -8912,7 +8912,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &770 + '401': &769 description: Authorization failure '404': *6 x-github: @@ -25444,7 +25444,7 @@ paths: properties: action: type: string - discussion: &879 + discussion: &878 title: Discussion description: A Discussion in a repository. type: object @@ -26188,7 +26188,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &797 + sub_issues_summary: &796 title: Sub-issues Summary type: object properties: @@ -26301,7 +26301,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &798 + issue_dependencies_summary: &797 title: Issue Dependencies Summary type: object properties: @@ -26320,7 +26320,7 @@ paths: - total_blocking issue_field_values: type: array - items: &799 + items: &798 title: Issue Field Value description: A value assigned to an issue field type: object @@ -27733,7 +27733,7 @@ paths: url: type: string format: uri - user: &805 + user: &804 title: Public User description: Public User type: object @@ -35784,7 +35784,7 @@ paths: type: array items: *288 examples: - default: &808 + default: &807 value: total_count: 1 repositories: @@ -38495,12 +38495,12 @@ paths: required: - subject_digests examples: - default: &838 + default: &837 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &839 + withPredicateType: &838 value: subject_digests: - sha256:abc123 @@ -38558,7 +38558,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &840 + default: &839 value: attestations_subject_digests: - sha256:abc: @@ -48892,7 +48892,7 @@ paths: parameters: - *87 - *387 - - &821 + - &820 name: repo_name description: repo_name parameter in: path @@ -50220,7 +50220,7 @@ paths: - nuget - container - *87 - - &822 + - &821 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -50261,7 +50261,7 @@ paths: default: *393 '403': *29 '401': *25 - '400': &824 + '400': &823 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -52053,7 +52053,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &915 + properties: &914 id: type: number description: The unique identifier of the status update. @@ -52101,7 +52101,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &916 + required: &915 - id - node_id - created_at @@ -52919,7 +52919,7 @@ paths: - updated_at - project_url examples: - default: &843 + default: &842 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53096,7 +53096,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &844 + items: &843 type: object properties: name: @@ -53133,7 +53133,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &845 + iteration_configuration: &844 type: object description: The configuration for iteration fields. properties: @@ -53183,7 +53183,7 @@ paths: value: name: Due date data_type: date - single_select_field: &846 + single_select_field: &845 summary: Create a single select field value: name: Priority @@ -53210,7 +53210,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &847 + iteration_field: &846 summary: Create an iteration field value: name: Sprint @@ -53236,7 +53236,7 @@ paths: application/json: schema: *414 examples: - text_field: &848 + text_field: &847 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -53245,7 +53245,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: &849 + number_field: &848 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -53254,7 +53254,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: &850 + date_field: &849 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -53263,7 +53263,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: &851 + single_select_field: &850 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53297,7 +53297,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &852 + iteration_field: &851 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -53343,7 +53343,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - *410 - - &853 + - &852 name: field_id description: The unique identifier of the field. in: path @@ -53358,7 +53358,7 @@ paths: application/json: schema: *414 examples: - default: &854 + default: &853 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -54555,7 +54555,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &835 + schema: &834 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -54732,7 +54732,7 @@ paths: parameters: - *410 - *87 - - &855 + - &854 name: view_number description: The number that identifies the project view. in: path @@ -59924,7 +59924,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &801 + response-if-user-is-a-team-maintainer: &800 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -59989,7 +59989,7 @@ paths: application/json: schema: *461 examples: - response-if-users-membership-with-team-is-now-pending: &802 + response-if-users-membership-with-team-is-now-pending: &801 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -60103,7 +60103,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &803 + schema: &802 title: Team Repository description: A team's access to a repository. type: object @@ -60869,7 +60869,7 @@ paths: type: array items: *317 examples: - response-if-child-teams-exist: &804 + response-if-child-teams-exist: &803 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -66092,7 +66092,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &873 + properties: &872 url: type: string format: uri @@ -66177,7 +66177,7 @@ paths: nullable: true properties: *220 required: *221 - required: &874 + required: &873 - id - node_id - sha @@ -72117,7 +72117,7 @@ paths: check. type: array items: *230 - deployment: &866 + deployment: &865 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -73029,7 +73029,7 @@ paths: type: string format: date-time nullable: true - head_commit: &899 + head_commit: &898 title: Simple Commit description: A commit. type: object @@ -77300,14 +77300,14 @@ paths: type: integer machines: type: array - items: &811 + items: &810 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *567 required: *568 examples: - default: &812 + default: &811 value: total_count: 2 machines: @@ -81094,6 +81094,23 @@ paths: required: false schema: type: string + requestBody: + required: false + content: + application/json: + examples: + response-if-content-is-a-file-github-object: + summary: Content is a file using the object media type + response-if-content-is-a-directory-github-object: + summary: Content is a directory using the object media type + response-if-content-is-a-file: + summary: Content is a file + response-if-content-is-a-directory: + summary: Content is a directory + response-if-content-is-a-symlink: + summary: Content is a symlink + response-if-content-is-a-submodule: + summary: Content is a submodule responses: '200': description: Response @@ -81222,7 +81239,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &593 + response-if-content-is-a-file-github-object: &593 summary: Response if content is a file value: type: file @@ -81240,7 +81257,7 @@ paths: git: https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1 self: https://api.github.com/repos/octokit/octokit.rb/contents/README.md html: https://github.com/octokit/octokit.rb/blob/master/README.md - response-if-content-is-a-directory: + response-if-content-is-a-directory-github-object: summary: Response if content is a directory and the application/vnd.github.v3.object media type is requested value: @@ -82744,8 +82761,19 @@ paths: description: An optional comment associated with dismissing the alert. maxLength: 280 - required: - - state + assignees: + type: array + description: |- + Usernames to assign to this Dependabot Alert. + Pass one or more user logins to _replace_ the set of assignees on this alert. + Send an empty array (`[]`) to clear all assignees from the alert. + items: + type: string + anyOf: + - required: + - state + - required: + - assignees additionalProperties: false examples: default: @@ -88357,7 +88385,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &907 + last_response: &906 title: Hook Response type: object properties: @@ -89408,7 +89436,7 @@ paths: parameters: - *462 - *463 - - &833 + - &832 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -89842,7 +89870,7 @@ paths: type: array items: *653 examples: - default: &826 + default: &825 value: - id: 1 repository: @@ -104294,7 +104322,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &929 + items: &928 type: object properties: type: @@ -106507,160 +106535,6 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos - "/repos/{owner}/{repo}/tags/protection": - get: - summary: Closing down - List tag protection states for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-all-repository-rulesets)" endpoint instead. - - This returns the tag protection states of a repository. - - This information is only available to repository administrators. - tags: - - repos - operationId: repos/list-tag-protection - externalDocs: - 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: - - *462 - - *463 - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: &764 - title: Tag protection - description: Tag protection - type: object - properties: - id: - type: integer - example: 2 - created_at: - type: string - example: '2011-01-26T19:01:12Z' - updated_at: - type: string - example: '2011-01-26T19:01:12Z' - enabled: - type: boolean - example: true - pattern: - type: string - example: v1.* - required: - - pattern - examples: - default: - value: - - id: 2 - pattern: v1.* - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - post: - summary: Closing down - Create a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#create-a-repository-ruleset)" endpoint instead. - - This creates a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/create-tag-protection - externalDocs: - 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: - - *462 - - *463 - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - pattern: - type: string - description: An optional glob pattern to match against when enforcing - tag protection. - required: - - pattern - examples: - default: - value: - pattern: v1.* - responses: - '201': - description: Response - content: - application/json: - schema: *764 - examples: - default: - value: - enabled: true - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": - delete: - summary: Closing down - Delete a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#delete-a-repository-ruleset)" endpoint instead. - - This deletes a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/delete-tag-protection - externalDocs: - 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: - - *462 - - *463 - - name: tag_protection_id - description: The unique identifier of the tag protection. - in: path - required: true - schema: - type: integer - responses: - '204': - description: Response - '403': *29 - '404': *6 - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true "/repos/{owner}/{repo}/tarball/{ref}": get: summary: Download a repository archive (tar) @@ -106757,7 +106631,7 @@ paths: description: Response content: application/json: - schema: &765 + schema: &764 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -106769,7 +106643,7 @@ paths: required: - names examples: - default: &766 + default: &765 value: names: - octocat @@ -106824,9 +106698,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *764 examples: - default: *766 + default: *765 '404': *6 '422': *7 x-github: @@ -106849,7 +106723,7 @@ paths: parameters: - *462 - *463 - - &767 + - &766 name: per description: The time frame to display results for. in: query @@ -106878,7 +106752,7 @@ paths: example: 128 clones: type: array - items: &768 + items: &767 title: Traffic type: object properties: @@ -107119,7 +106993,7 @@ paths: parameters: - *462 - *463 - - *767 + - *766 responses: '200': description: Response @@ -107138,7 +107012,7 @@ paths: example: 3782 views: type: array - items: *768 + items: *767 required: - uniques - count @@ -107810,7 +107684,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &776 + - &775 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -107819,7 +107693,7 @@ paths: schema: type: string example: members - - &781 + - &780 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -107830,7 +107704,7 @@ paths: default: 1 format: int32 example: 1 - - &782 + - &781 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -107872,7 +107746,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &771 + items: &770 allOf: - type: object required: @@ -107947,7 +107821,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: &783 + meta: &782 type: object description: The metadata associated with the creation/updates to the user. @@ -108007,30 +107881,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &772 + '400': &771 description: Bad request content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 - '401': *770 - '403': &773 + schema: *768 + '401': *769 + '403': &772 description: Permission denied - '429': &774 + '429': &773 description: Too many requests content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 - '500': &775 + schema: *768 + '500': &774 description: Internal server error content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 + schema: *768 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108054,7 +107928,7 @@ paths: required: true content: application/json: - schema: &779 + schema: &778 type: object required: - schemas @@ -108114,9 +107988,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *771 + schema: *770 examples: - group: &777 + group: &776 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -108135,13 +108009,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': *772 - '401': *770 - '403': *773 - '409': &780 + '400': *771 + '401': *769 + '403': *772 + '409': &779 description: Duplicate record detected - '429': *774 - '500': *775 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108158,7 +108032,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: - - &778 + - &777 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -108166,22 +108040,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *776 + - *775 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *771 + schema: *770 examples: - default: *777 - '400': *772 - '401': *770 - '403': *773 + default: *776 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '429': *774 - '500': *775 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108200,13 +108074,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: - - *778 + - *777 - *41 requestBody: required: true content: application/json: - schema: *779 + schema: *778 examples: group: summary: Group @@ -108232,17 +108106,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *771 + schema: *770 examples: - group: *777 - groupWithMembers: *777 - '400': *772 - '401': *770 - '403': *773 + group: *776 + groupWithMembers: *776 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *779 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108266,13 +108140,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: - - *778 + - *777 - *41 requestBody: required: true content: application/json: - schema: &790 + schema: &789 type: object required: - Operations @@ -108332,17 +108206,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *771 + schema: *770 examples: - updateGroup: *777 - addMembers: *777 - '400': *772 - '401': *770 - '403': *773 + updateGroup: *776 + addMembers: *776 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *779 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108358,17 +108232,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: - - *778 + - *777 - *41 responses: '204': description: Group was deleted, no content - '400': *772 - '401': *770 - '403': *773 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '429': *774 - '500': *775 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108402,8 +108276,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' + - *780 - *781 - - *782 - *41 responses: '200': @@ -108436,7 +108310,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &785 + items: &784 allOf: - type: object required: @@ -108515,7 +108389,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &784 + roles: &783 type: array description: The roles assigned to the user. items: @@ -108571,7 +108445,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *783 + meta: *782 startIndex: type: integer description: A starting index for the returned page @@ -108608,11 +108482,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *772 - '401': *770 - '403': *773 - '429': *774 - '500': *775 + '400': *771 + '401': *769 + '403': *772 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108636,7 +108510,7 @@ paths: required: true content: application/json: - schema: &788 + schema: &787 type: object required: - schemas @@ -108718,9 +108592,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *784 + roles: *783 examples: - user: &789 + user: &788 summary: User value: schemas: @@ -108767,9 +108641,9 @@ paths: description: User has been created content: application/scim+json: - schema: *785 + schema: *784 examples: - user: &786 + user: &785 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -108795,13 +108669,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: *786 - '400': *772 - '401': *770 - '403': *773 - '409': *780 - '429': *774 - '500': *775 + enterpriseOwner: *785 + '400': *771 + '401': *769 + '403': *772 + '409': *779 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108818,7 +108692,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: - - &787 + - &786 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -108831,15 +108705,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *785 + schema: *784 examples: - default: *786 - '400': *772 - '401': *770 - '403': *773 + default: *785 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '429': *774 - '500': *775 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108853,7 +108727,36 @@ paths: You must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint. > [!WARNING] - > Setting `active: false` will suspend a user, and their handle and email will be obfuscated. + > Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated. + > + > ``` + >{ + > "schemas": [ + > "urn:ietf:params:scim:schemas:core:2.0:User" + > ], + > "externalId": "E012345", + > "active": false, + > "userName": "E012345", + > "name": { + > "familyName": "Octocat", + > "givenName": "Mona", + > "middleName": "Lisa" + > }, + > "displayName": "Mona Lisa", + > "emails": [ + > { + > "value": "mlisa@example.com", + > "type": "work", + > "primary": true + > } + > ], + > "roles": [ + > { + > "value": "User" + > } + > ] + >} + > ``` operationId: enterprise-admin/set-information-for-provisioned-enterprise-user tags: - enterprise-admin @@ -108861,30 +108764,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: - - *787 + - *786 - *41 requestBody: required: true content: application/json: - schema: *788 + schema: *787 examples: - user: *789 + user: *788 responses: '200': description: User was updated content: application/scim+json: - schema: *785 + schema: *784 examples: - user: *786 - '400': *772 - '401': *770 - '403': *773 + user: *785 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *779 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108901,15 +108804,21 @@ paths: > Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `"path": "emails[type eq \"work\"]"` will be ineffective. > [!WARNING] - > Setting `active: false` will suspend a user, and their handle and email will be obfuscated. + > Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated. + > > ``` > { - > "Operations":[{ - > "op":"replace", - > "value":{ - > "active":false + > "schemas": [ + > "urn:ietf:params:scim:api:messages:2.0:PatchOp" + > ], + > "Operations": [ + > { + > "op": "replace", + > "value": { + > "active": false + > } > } - > }] + > ] > } > ``` operationId: enterprise-admin/update-attribute-for-enterprise-user @@ -108919,13 +108828,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: - - *787 + - *786 - *41 requestBody: required: true content: application/json: - schema: *790 + schema: *789 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -108965,18 +108874,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *785 + schema: *784 examples: - userMultiValuedProperties: *786 - userSingleValuedProperties: *786 - disableUser: *786 - '400': *772 - '401': *770 - '403': *773 + userMultiValuedProperties: *785 + userSingleValuedProperties: *785 + disableUser: *785 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *779 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108996,17 +108905,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: - - *787 + - *786 - *41 responses: '204': description: User was deleted, no content - '400': *772 - '401': *770 - '403': *773 + '400': *771 + '401': *769 + '403': *772 '404': *6 - '429': *774 - '500': *775 + '429': *773 + '500': *774 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109093,7 +109002,7 @@ paths: example: 1 Resources: type: array - items: &791 + items: &790 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -109324,22 +109233,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &792 + '404': &791 description: Resource not found content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 - '403': &793 + schema: *768 + '403': &792 description: Forbidden content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 - '400': *772 - '429': *774 + schema: *768 + '400': *771 + '429': *773 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -109365,9 +109274,9 @@ paths: description: Response content: application/scim+json: - schema: *791 + schema: *790 examples: - default: &794 + default: &793 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -109390,17 +109299,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *792 - '403': *793 - '500': *775 + '404': *791 + '403': *792 + '500': *774 '409': description: Conflict content: application/json: - schema: *769 + schema: *768 application/scim+json: - schema: *769 - '400': *772 + schema: *768 + '400': *771 requestBody: required: true content: @@ -109498,17 +109407,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *87 - - *787 + - *786 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *790 examples: - default: *794 - '404': *792 - '403': *793 + default: *793 + '404': *791 + '403': *792 '304': *37 x-github: githubCloudOnly: true @@ -109532,18 +109441,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *87 - - *787 + - *786 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *790 examples: - default: *794 + default: *793 '304': *37 - '404': *792 - '403': *793 + '404': *791 + '403': *792 requestBody: required: true content: @@ -109656,19 +109565,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *87 - - *787 + - *786 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *790 examples: - default: *794 + default: *793 '304': *37 - '404': *792 - '403': *793 - '400': *772 + '404': *791 + '403': *792 + '400': *771 '429': description: Response content: @@ -109759,12 +109668,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *87 - - *787 + - *786 responses: '204': description: Response - '404': *792 - '403': *793 + '404': *791 + '403': *792 '304': *37 x-github: githubCloudOnly: true @@ -109897,7 +109806,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &795 + text_matches: &794 title: Search Result Text Matches type: array items: @@ -110060,7 +109969,7 @@ paths: enum: - author-date - committer-date - - &796 + - &795 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 @@ -110188,7 +110097,7 @@ paths: type: number node_id: type: string - text_matches: *795 + text_matches: *794 required: - sha - node_id @@ -110381,7 +110290,7 @@ paths: - interactions - created - updated - - *796 + - *795 - *17 - *19 - name: advanced_search @@ -110478,11 +110387,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: type: string state_reason: @@ -110514,7 +110423,7 @@ paths: type: string format: date-time nullable: true - text_matches: *795 + text_matches: *794 pull_request: type: object properties: @@ -110747,7 +110656,7 @@ paths: enum: - created - updated - - *796 + - *795 - *17 - *19 responses: @@ -110791,7 +110700,7 @@ paths: nullable: true score: type: number - text_matches: *795 + text_matches: *794 required: - id - node_id @@ -110877,7 +110786,7 @@ paths: - forks - help-wanted-issues - updated - - *796 + - *795 - *17 - *19 responses: @@ -111125,7 +111034,7 @@ paths: - admin - pull - push - text_matches: *795 + text_matches: *794 temp_clone_token: type: string allow_merge_commit: @@ -111426,7 +111335,7 @@ paths: type: string format: uri nullable: true - text_matches: *795 + text_matches: *794 related: type: array nullable: true @@ -111619,7 +111528,7 @@ paths: - followers - repositories - joined - - *796 + - *795 - *17 - *19 responses: @@ -111723,7 +111632,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *795 + text_matches: *794 blog: type: string nullable: true @@ -111802,7 +111711,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &800 + - &799 name: team_id description: The unique identifier of the team. in: path @@ -111843,7 +111752,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *800 + - *799 requestBody: required: true content: @@ -111943,7 +111852,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *800 + - *799 responses: '204': description: Response @@ -111972,7 +111881,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *800 + - *799 - *17 - *19 responses: @@ -112010,7 +111919,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *800 + - *799 - name: role description: Filters members returned by their role in the team. in: query @@ -112061,7 +111970,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *800 + - *799 - *143 responses: '204': @@ -112098,7 +112007,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *800 + - *799 - *143 responses: '204': @@ -112138,7 +112047,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *800 + - *799 - *143 responses: '204': @@ -112175,7 +112084,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *800 + - *799 - *143 responses: '200': @@ -112184,7 +112093,7 @@ paths: application/json: schema: *461 examples: - response-if-user-is-a-team-maintainer: *801 + response-if-user-is-a-team-maintainer: *800 '404': *6 x-github: githubCloudOnly: false @@ -112217,7 +112126,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: - - *800 + - *799 - *143 requestBody: required: false @@ -112245,7 +112154,7 @@ paths: application/json: schema: *461 examples: - response-if-users-membership-with-team-is-now-pending: *802 + response-if-users-membership-with-team-is-now-pending: *801 '403': description: Forbidden if team synchronization is set up '422': @@ -112279,7 +112188,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: - - *800 + - *799 - *143 responses: '204': @@ -112307,7 +112216,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *800 + - *799 - *17 - *19 responses: @@ -112349,7 +112258,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *800 + - *799 - *462 - *463 responses: @@ -112357,7 +112266,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *803 + schema: *802 examples: alternative-response-with-extra-repository-information: value: @@ -112508,7 +112417,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *800 + - *799 - *462 - *463 requestBody: @@ -112560,7 +112469,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *800 + - *799 - *462 - *463 responses: @@ -112591,7 +112500,7 @@ 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: - - *800 + - *799 responses: '200': description: Response @@ -112626,7 +112535,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: - - *800 + - *799 requestBody: required: true content: @@ -112714,7 +112623,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *800 + - *799 - *17 - *19 responses: @@ -112726,7 +112635,7 @@ paths: type: array items: *317 examples: - response-if-child-teams-exist: *804 + response-if-child-teams-exist: *803 headers: Link: *47 '404': *6 @@ -112759,7 +112668,7 @@ paths: application/json: schema: oneOf: - - &806 + - &805 title: Private User description: Private User type: object @@ -112962,7 +112871,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *805 + - *804 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -113115,7 +113024,7 @@ paths: description: Response content: application/json: - schema: *806 + schema: *805 examples: default: value: @@ -113513,7 +113422,7 @@ paths: type: integer secrets: type: array - items: &807 + items: &806 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -113629,7 +113538,7 @@ paths: description: Response content: application/json: - schema: *807 + schema: *806 examples: default: value: @@ -113775,7 +113684,7 @@ paths: type: array items: *288 examples: - default: *808 + default: *807 '401': *25 '403': *29 '404': *6 @@ -114042,7 +113951,7 @@ paths: description: Response content: application/json: - schema: &809 + schema: &808 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -114083,7 +113992,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &810 + default: &809 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -114128,9 +114037,9 @@ paths: description: Response content: application/json: - schema: *809 + schema: *808 examples: - default: *810 + default: *809 '404': *6 x-github: githubCloudOnly: false @@ -114167,9 +114076,9 @@ paths: type: integer machines: type: array - items: *811 + items: *810 examples: - default: *812 + default: *811 '304': *37 '500': *40 '401': *25 @@ -115108,7 +115017,7 @@ paths: type: array items: *392 examples: - default: &823 + default: &822 value: - id: 197 name: hello_docker @@ -115209,7 +115118,7 @@ paths: application/json: schema: type: array - items: &813 + items: &812 title: Email description: Email type: object @@ -115274,9 +115183,9 @@ paths: application/json: schema: type: array - items: *813 + items: *812 examples: - default: &825 + default: &824 value: - email: octocat@github.com verified: true @@ -115351,7 +115260,7 @@ paths: application/json: schema: type: array - items: *813 + items: *812 examples: default: value: @@ -115607,7 +115516,7 @@ paths: application/json: schema: type: array - items: &814 + items: &813 title: GPG Key description: A unique encryption key type: object @@ -115738,7 +115647,7 @@ paths: - subkeys - revoked examples: - default: &841 + default: &840 value: - id: 3 name: Octocat's GPG Key @@ -115823,9 +115732,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *813 examples: - default: &815 + default: &814 value: id: 3 name: Octocat's GPG Key @@ -115882,7 +115791,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: - - &816 + - &815 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -115894,9 +115803,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *813 examples: - default: *815 + default: *814 '404': *6 '304': *37 '403': *29 @@ -115919,7 +115828,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: - - *816 + - *815 responses: '204': description: Response @@ -116376,7 +116285,7 @@ paths: application/json: schema: type: array - items: &817 + items: &816 title: Key description: Key type: object @@ -116477,9 +116386,9 @@ paths: description: Response content: application/json: - schema: *817 + schema: *816 examples: - default: &818 + default: &817 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -116518,9 +116427,9 @@ paths: description: Response content: application/json: - schema: *817 + schema: *816 examples: - default: *818 + default: *817 '404': *6 '304': *37 '403': *29 @@ -116576,7 +116485,7 @@ paths: application/json: schema: type: array - items: &819 + items: &818 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -116644,7 +116553,7 @@ paths: - account - plan examples: - default: &820 + default: &819 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -116706,9 +116615,9 @@ paths: application/json: schema: type: array - items: *819 + items: *818 examples: - default: *820 + default: *819 headers: Link: *47 '304': *37 @@ -117717,7 +117626,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *387 - - *821 + - *820 responses: '204': description: Response @@ -117832,7 +117741,7 @@ paths: - docker - nuget - container - - *822 + - *821 - *19 - *17 responses: @@ -117844,8 +117753,8 @@ paths: type: array items: *392 examples: - default: *823 - '400': *824 + default: *822 + '400': *823 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117874,7 +117783,7 @@ paths: application/json: schema: *392 examples: - default: &842 + default: &841 value: id: 40201 name: octo-name @@ -118236,9 +118145,9 @@ paths: application/json: schema: type: array - items: *813 + items: *812 examples: - default: *825 + default: *824 headers: Link: *47 '304': *37 @@ -118351,7 +118260,7 @@ paths: type: array items: *78 examples: - default: &832 + default: &831 summary: Default response value: - id: 1296269 @@ -118697,7 +118606,7 @@ paths: type: array items: *653 examples: - default: *826 + default: *825 headers: Link: *47 '304': *37 @@ -118776,7 +118685,7 @@ paths: application/json: schema: type: array - items: &827 + items: &826 title: Social account description: Social media account type: object @@ -118791,7 +118700,7 @@ paths: - provider - url examples: - default: &828 + default: &827 value: - provider: twitter url: https://twitter.com/github @@ -118853,9 +118762,9 @@ paths: application/json: schema: type: array - items: *827 + items: *826 examples: - default: *828 + default: *827 '422': *15 '304': *37 '404': *6 @@ -118942,7 +118851,7 @@ paths: application/json: schema: type: array - items: &829 + items: &828 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -118962,7 +118871,7 @@ paths: - title - created_at examples: - default: &856 + default: &855 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -119026,9 +118935,9 @@ paths: description: Response content: application/json: - schema: *829 + schema: *828 examples: - default: &830 + default: &829 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -119058,7 +118967,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: - - &831 + - &830 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -119070,9 +118979,9 @@ paths: description: Response content: application/json: - schema: *829 + schema: *828 examples: - default: *830 + default: *829 '404': *6 '304': *37 '403': *29 @@ -119095,7 +119004,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: - - *831 + - *830 responses: '204': description: Response @@ -119124,7 +119033,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: - - &857 + - &856 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 @@ -119149,11 +119058,11 @@ paths: type: array items: *78 examples: - default-response: *832 + default-response: *831 application/vnd.github.v3.star+json: schema: type: array - items: &858 + items: &857 title: Starred Repository description: Starred Repository type: object @@ -119522,10 +119431,10 @@ paths: application/json: schema: oneOf: - - *806 - *805 + - *804 examples: - default-response: &836 + default-response: &835 summary: Default response value: login: octocat @@ -119560,7 +119469,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &837 + response-with-git-hub-plan-information: &836 summary: Response with GitHub plan information value: login: octocat @@ -119617,7 +119526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &834 + - &833 name: user_id description: The unique identifier of the user. in: path @@ -119683,7 +119592,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *833 + - *832 - *17 responses: '200': @@ -119718,7 +119627,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *834 + - *833 - *410 requestBody: required: true @@ -119790,7 +119699,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *835 + schema: *834 examples: table_view: summary: Response for creating a table view @@ -119842,11 +119751,11 @@ paths: application/json: schema: oneOf: - - *806 - *805 + - *804 examples: - default-response: *836 - response-with-git-hub-plan-information: *837 + default-response: *835 + response-with-git-hub-plan-information: *836 '404': *6 x-github: githubCloudOnly: false @@ -119896,8 +119805,8 @@ paths: required: - subject_digests examples: - default: *838 - withPredicateType: *839 + default: *837 + withPredicateType: *838 responses: '200': description: Response @@ -119950,7 +119859,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *840 + default: *839 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -120196,7 +120105,7 @@ paths: type: array items: *392 examples: - default: *823 + default: *822 '403': *29 '401': *25 x-github: @@ -120580,9 +120489,9 @@ paths: application/json: schema: type: array - items: *814 + items: *813 examples: - default: *841 + default: *840 headers: Link: *47 x-github: @@ -120810,7 +120719,7 @@ paths: - docker - nuget - container - - *822 + - *821 - *143 - *19 - *17 @@ -120823,10 +120732,10 @@ paths: type: array items: *392 examples: - default: *823 + default: *822 '403': *29 '401': *25 - '400': *824 + '400': *823 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120856,7 +120765,7 @@ paths: application/json: schema: *392 examples: - default: *842 + default: *841 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121205,7 +121114,7 @@ paths: type: array items: *414 examples: - default: *843 + default: *842 headers: Link: *47 '304': *37 @@ -121265,7 +121174,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *844 + items: *843 required: - name - data_type @@ -121281,7 +121190,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *845 + iteration_configuration: *844 required: - name - data_type @@ -121303,8 +121212,8 @@ paths: value: name: Due date data_type: date - single_select_field: *846 - iteration_field: *847 + single_select_field: *845 + iteration_field: *846 responses: '201': description: Response @@ -121312,11 +121221,11 @@ paths: application/json: schema: *414 examples: - text_field: *848 - number_field: *849 - date_field: *850 - single_select_field: *851 - iteration_field: *852 + text_field: *847 + number_field: *848 + date_field: *849 + single_select_field: *850 + iteration_field: *851 '304': *37 '403': *29 '401': *25 @@ -121338,7 +121247,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - *410 - - *853 + - *852 - *143 responses: '200': @@ -121347,7 +121256,7 @@ paths: application/json: schema: *414 examples: - default: *854 + default: *853 headers: Link: *47 '304': *37 @@ -121701,7 +121610,7 @@ paths: parameters: - *410 - *143 - - *855 + - *854 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -121980,9 +121889,9 @@ paths: application/json: schema: type: array - items: *827 + items: *826 examples: - default: *828 + default: *827 headers: Link: *47 x-github: @@ -122012,9 +121921,9 @@ paths: application/json: schema: type: array - items: *829 + items: *828 examples: - default: *856 + default: *855 headers: Link: *47 x-github: @@ -122039,7 +121948,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *143 - - *857 + - *856 - *110 - *17 - *19 @@ -122051,11 +121960,11 @@ paths: schema: anyOf: - type: array - items: *858 + items: *857 - type: array items: *78 examples: - default-response: *832 + default-response: *831 headers: Link: *47 x-github: @@ -122214,7 +122123,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &859 + enterprise: &858 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -122272,7 +122181,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &860 + installation: &859 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -122291,7 +122200,7 @@ x-webhooks: required: - id - node_id - organization: &861 + organization: &860 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -122351,13 +122260,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &862 + repository: &861 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &901 + properties: &900 id: description: Unique identifier of the repository example: 42 @@ -123052,7 +122961,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &902 + required: &901 - archive_url - assignees_url - blobs_url @@ -123203,10 +123112,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -123282,11 +123191,11 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - rule: &863 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: &862 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) @@ -123509,11 +123418,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - rule: *863 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: *862 sender: *4 required: - action @@ -123696,11 +123605,11 @@ x-webhooks: - everyone required: - from - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - rule: *863 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: *862 sender: *4 required: - action @@ -123773,7 +123682,7 @@ x-webhooks: required: true content: application/json: - schema: &885 + schema: &884 title: Exemption request cancellation event type: object properties: @@ -123781,11 +123690,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - exemption_request: &864 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: &863 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -124054,7 +123963,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &865 + items: &864 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -124164,7 +124073,7 @@ x-webhooks: required: true content: application/json: - schema: &886 + schema: &885 title: Exemption request completed event type: object properties: @@ -124172,11 +124081,11 @@ x-webhooks: type: string enum: - completed - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - exemption_request: *864 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 sender: *4 required: - action @@ -124248,7 +124157,7 @@ x-webhooks: required: true content: application/json: - schema: &883 + schema: &882 title: Exemption request created event type: object properties: @@ -124256,11 +124165,11 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - exemption_request: *864 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 sender: *4 required: - action @@ -124332,7 +124241,7 @@ x-webhooks: required: true content: application/json: - schema: &887 + schema: &886 title: Exemption response dismissed event type: object properties: @@ -124340,12 +124249,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - exemption_request: *864 - exemption_response: *865 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 + exemption_response: *864 sender: *4 required: - action @@ -124419,7 +124328,7 @@ x-webhooks: required: true content: application/json: - schema: &884 + schema: &883 title: Exemption response submitted event type: object properties: @@ -124427,12 +124336,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - exemption_request: *864 - exemption_response: *865 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 + exemption_response: *864 sender: *4 required: - action @@ -124516,7 +124425,7 @@ x-webhooks: type: string enum: - completed - check_run: &867 + check_run: &866 title: CheckRun description: A check performed on the code of a given code change type: object @@ -124607,7 +124516,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *866 + deployment: *865 details_url: example: https://example.com type: string @@ -124692,10 +124601,10 @@ x-webhooks: - output - app - pull_requests - installation: *860 - enterprise: *859 - organization: *861 - repository: *862 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -125086,11 +124995,11 @@ x-webhooks: type: string enum: - created - check_run: *867 - installation: *860 - enterprise: *859 - organization: *861 - repository: *862 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -125484,11 +125393,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *867 - installation: *860 - enterprise: *859 - organization: *861 - repository: *862 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 requested_action: description: The action requested by the user. type: object @@ -125891,11 +125800,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *867 - installation: *860 - enterprise: *859 - organization: *861 - repository: *862 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -126865,10 +126774,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -127557,10 +127466,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -128243,10 +128152,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -128557,20 +128466,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &868 + commit_oid: &867 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: *859 - installation: *860 - organization: *861 - ref: &869 + enterprise: *858 + installation: *859 + organization: *860 + ref: &868 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: *862 + repository: *861 sender: *4 required: - action @@ -128965,12 +128874,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *868 - enterprise: *859 - installation: *860 - organization: *861 - ref: *869 - repository: *862 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -129236,12 +129145,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *868 - enterprise: *859 - installation: *860 - organization: *861 - ref: *869 - repository: *862 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -129573,12 +129482,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *868 - enterprise: *859 - installation: *860 - organization: *861 - ref: *869 - repository: *862 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -129852,16 +129761,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *862 + repository: *861 sender: *4 required: - action @@ -130098,12 +130007,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *868 - enterprise: *859 - installation: *860 - organization: *861 - ref: *869 - repository: *862 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -130414,10 +130323,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -130672,10 +130581,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -130755,18 +130664,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *861 - pusher_type: &870 + organization: *860 + pusher_type: &869 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &871 + ref: &870 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -130776,7 +130685,7 @@ x-webhooks: enum: - tag - branch - repository: *862 + repository: *861 sender: *4 required: - ref @@ -130859,9 +130768,9 @@ x-webhooks: enum: - created definition: *157 - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -130946,9 +130855,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -131026,9 +130935,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *157 - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -131106,9 +131015,9 @@ x-webhooks: enum: - updated definition: *157 - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -131185,10 +131094,10 @@ x-webhooks: type: string enum: - updated - enterprise: *859 - installation: *860 - repository: *862 - organization: *861 + enterprise: *858 + installation: *859 + repository: *861 + organization: *860 sender: *4 new_property_values: type: array @@ -131273,18 +131182,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *859 - installation: *860 - organization: *861 - pusher_type: *870 - ref: *871 + enterprise: *858 + installation: *859 + organization: *860 + pusher_type: *869 + ref: *870 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *862 + repository: *861 sender: *4 required: - ref @@ -131365,10 +131274,10 @@ x-webhooks: enum: - assignees_changed alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131449,10 +131358,10 @@ x-webhooks: enum: - auto_dismissed alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131534,10 +131443,10 @@ x-webhooks: enum: - auto_reopened alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131619,10 +131528,10 @@ x-webhooks: enum: - created alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131702,10 +131611,10 @@ x-webhooks: enum: - dismissed alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131785,10 +131694,10 @@ x-webhooks: enum: - fixed alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131869,10 +131778,10 @@ x-webhooks: enum: - reintroduced alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -131952,10 +131861,10 @@ x-webhooks: enum: - reopened alert: *600 - installation: *860 - organization: *861 - enterprise: *859 - repository: *862 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -132032,9 +131941,9 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - key: &872 + enterprise: *858 + installation: *859 + key: &871 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -132070,8 +131979,8 @@ x-webhooks: - verified - created_at - read_only - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -132148,11 +132057,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - key: *872 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + key: *871 + organization: *860 + repository: *861 sender: *4 required: - action @@ -132708,12 +132617,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: &878 + workflow: &877 title: Workflow type: object nullable: true @@ -133454,15 +133363,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *873 - required: *874 + properties: *872 + required: *873 nullable: true pull_requests: type: array items: *705 - repository: *862 - organization: *861 - installation: *860 + repository: *861 + organization: *860 + installation: *859 sender: *4 responses: '200': @@ -133533,7 +133442,7 @@ x-webhooks: type: string enum: - approved - approver: &875 + approver: &874 type: object properties: avatar_url: @@ -133576,11 +133485,11 @@ x-webhooks: type: string comment: type: string - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - reviewers: &876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + reviewers: &875 type: array items: type: object @@ -133659,7 +133568,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &877 + workflow_job_run: &876 type: object properties: conclusion: @@ -134390,18 +134299,18 @@ x-webhooks: type: string enum: - rejected - approver: *875 + approver: *874 comment: type: string - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - reviewers: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + reviewers: *875 sender: *4 since: type: string - workflow_job_run: *877 + workflow_job_run: *876 workflow_job_runs: type: array items: @@ -135105,13 +135014,13 @@ x-webhooks: type: string enum: - requested - enterprise: *859 + enterprise: *858 environment: type: string - installation: *860 - organization: *861 - repository: *862 - requestor: &888 + installation: *859 + organization: *860 + repository: *861 + requestor: &887 title: User type: object nullable: true @@ -137000,12 +136909,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *878 + workflow: *877 workflow_run: title: Deployment Workflow Run type: object @@ -137685,7 +137594,7 @@ x-webhooks: type: string enum: - answered - answer: &881 + answer: &880 type: object properties: author_association: @@ -137842,11 +137751,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -137973,11 +137882,11 @@ x-webhooks: - from required: - category - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138060,11 +137969,11 @@ x-webhooks: type: string enum: - closed - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138146,7 +138055,7 @@ x-webhooks: type: string enum: - created - comment: &880 + comment: &879 type: object properties: author_association: @@ -138303,11 +138212,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138390,12 +138299,12 @@ x-webhooks: type: string enum: - deleted - comment: *880 - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + comment: *879 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138490,12 +138399,12 @@ x-webhooks: - from required: - body - comment: *880 - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + comment: *879 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138579,11 +138488,11 @@ x-webhooks: type: string enum: - created - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138665,11 +138574,11 @@ x-webhooks: type: string enum: - deleted - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138769,11 +138678,11 @@ x-webhooks: type: string required: - from - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138855,10 +138764,10 @@ x-webhooks: type: string enum: - labeled - discussion: *879 - enterprise: *859 - installation: *860 - label: &882 + discussion: *878 + enterprise: *858 + installation: *859 + label: &881 title: Label type: object properties: @@ -138890,8 +138799,8 @@ x-webhooks: - color - default - description - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138974,11 +138883,11 @@ x-webhooks: type: string enum: - locked - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139060,11 +138969,11 @@ x-webhooks: type: string enum: - pinned - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139146,11 +139055,11 @@ x-webhooks: type: string enum: - reopened - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139235,16 +139144,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *879 - new_repository: *862 + new_discussion: *878 + new_repository: *861 required: - new_discussion - new_repository - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139327,10 +139236,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *879 - old_answer: *881 - organization: *861 - repository: *862 + discussion: *878 + old_answer: *880 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139412,12 +139321,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *879 - enterprise: *859 - installation: *860 - label: *882 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139500,11 +139409,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139586,11 +139495,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *879 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + discussion: *878 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -139659,7 +139568,7 @@ x-webhooks: required: true content: application/json: - schema: *883 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139722,7 +139631,7 @@ x-webhooks: required: true content: application/json: - schema: *884 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139785,7 +139694,7 @@ x-webhooks: required: true content: application/json: - schema: *885 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139848,7 +139757,7 @@ x-webhooks: required: true content: application/json: - schema: *883 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139911,7 +139820,7 @@ x-webhooks: required: true content: application/json: - schema: *884 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139977,7 +139886,7 @@ x-webhooks: required: true content: application/json: - schema: *885 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140043,7 +139952,7 @@ x-webhooks: required: true content: application/json: - schema: *886 + schema: *885 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140109,7 +140018,7 @@ x-webhooks: required: true content: application/json: - schema: *883 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140175,7 +140084,7 @@ x-webhooks: required: true content: application/json: - schema: *887 + schema: *886 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140241,7 +140150,7 @@ x-webhooks: required: true content: application/json: - schema: *884 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140306,7 +140215,7 @@ x-webhooks: required: true content: application/json: - schema: *885 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140371,7 +140280,7 @@ x-webhooks: required: true content: application/json: - schema: *886 + schema: *885 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140436,7 +140345,7 @@ x-webhooks: required: true content: application/json: - schema: *883 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140501,7 +140410,7 @@ x-webhooks: required: true content: application/json: - schema: *887 + schema: *886 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140567,7 +140476,7 @@ x-webhooks: required: true content: application/json: - schema: *884 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140634,7 +140543,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *859 + enterprise: *858 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -141294,9 +141203,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - forkee @@ -141442,9 +141351,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pages: description: The pages that were updated. type: array @@ -141481,7 +141390,7 @@ x-webhooks: - action - sha - html_url - repository: *862 + repository: *861 sender: *4 required: - pages @@ -141557,10 +141466,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories: &889 + organization: *860 + repositories: &888 description: An array of repository objects that the installation can access. type: array @@ -141586,8 +141495,8 @@ x-webhooks: - name - full_name - private - repository: *862 - requester: *888 + repository: *861 + requester: *887 sender: *4 required: - action @@ -141662,11 +141571,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories: *889 - repository: *862 + organization: *860 + repositories: *888 + repository: *861 requester: nullable: true sender: *4 @@ -141742,11 +141651,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories: *889 - repository: *862 + organization: *860 + repositories: *888 + repository: *861 requester: nullable: true sender: *4 @@ -141822,10 +141731,10 @@ x-webhooks: type: string enum: - added - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories_added: &890 + organization: *860 + repositories_added: &889 description: An array of repository objects, which were added to the installation. type: array @@ -141871,15 +141780,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *862 - repository_selection: &891 + repository: *861 + repository_selection: &890 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *888 + requester: *887 sender: *4 required: - action @@ -141958,10 +141867,10 @@ x-webhooks: type: string enum: - removed - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories_added: *890 + organization: *860 + repositories_added: *889 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -141988,9 +141897,9 @@ x-webhooks: - name - full_name - private - repository: *862 - repository_selection: *891 - requester: *888 + repository: *861 + repository_selection: *890 + requester: *887 sender: *4 required: - action @@ -142069,11 +141978,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories: *889 - repository: *862 + organization: *860 + repositories: *888 + repository: *861 requester: nullable: true sender: *4 @@ -142252,10 +142161,10 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 target_type: type: string @@ -142334,11 +142243,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *859 + enterprise: *858 installation: *22 - organization: *861 - repositories: *889 - repository: *862 + organization: *860 + repositories: *888 + repository: *861 requester: nullable: true sender: *4 @@ -142598,8 +142507,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -143388,8 +143297,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143738,8 +143647,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -143819,7 +143728,7 @@ x-webhooks: type: string enum: - deleted - comment: &892 + comment: &891 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -143992,8 +143901,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -144778,8 +144687,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145130,8 +145039,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -145211,7 +145120,7 @@ x-webhooks: type: string enum: - edited - changes: &921 + changes: &920 description: The changes to the comment. type: object properties: @@ -145223,9 +145132,9 @@ x-webhooks: type: string required: - from - comment: *892 - enterprise: *859 - installation: *860 + comment: *891 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -146013,8 +145922,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146363,8 +146272,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -146445,9 +146354,9 @@ x-webhooks: type: string enum: - pinned - comment: *892 - enterprise: *859 - installation: *860 + comment: *891 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147237,8 +147146,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147589,8 +147498,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -147670,9 +147579,9 @@ x-webhooks: type: string enum: - unpinned - comment: *892 - enterprise: *859 - installation: *860 + comment: *891 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148462,8 +148371,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148814,8 +148723,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -148904,9 +148813,9 @@ x-webhooks: type: number blocking_issue: *225 blocking_issue_repo: *78 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -148995,9 +148904,9 @@ x-webhooks: type: number blocking_issue: *225 blocking_issue_repo: *78 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -149085,9 +148994,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -149176,9 +149085,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -149258,10 +149167,10 @@ x-webhooks: type: string enum: - assigned - assignee: *888 - enterprise: *859 - installation: *860 - issue: &895 + assignee: *887 + enterprise: *858 + installation: *859 + issue: &894 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -150053,11 +149962,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150174,8 +150083,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -150255,8 +150164,8 @@ x-webhooks: type: string enum: - closed - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -151053,11 +150962,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151309,8 +151218,8 @@ x-webhooks: required: - state - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -151389,8 +151298,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152178,11 +152087,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152298,8 +152207,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152378,8 +152287,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153189,11 +153098,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153288,7 +153197,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &893 + milestone: &892 title: Milestone description: A collection of related issues and pull requests. type: object @@ -153426,8 +153335,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153526,8 +153435,8 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154319,11 +154228,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154440,9 +154349,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *882 - organization: *861 - repository: *862 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -154522,8 +154431,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155314,11 +155223,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155435,9 +155344,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *882 - organization: *861 - repository: *862 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -155517,8 +155426,8 @@ x-webhooks: type: string enum: - locked - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156333,11 +156242,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156431,8 +156340,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -156511,8 +156420,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157321,11 +157230,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157419,9 +157328,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *893 - organization: *861 - repository: *862 + milestone: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -158284,11 +158193,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158869,8 +158778,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159654,11 +159563,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159782,8 +159691,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -159863,9 +159772,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *859 - installation: *860 - issue: &894 + enterprise: *858 + installation: *859 + issue: &893 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -160651,11 +160560,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160771,8 +160680,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -160851,8 +160760,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -161665,11 +161574,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161764,8 +161673,8 @@ x-webhooks: user_view_type: type: string type: *376 - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -162634,11 +162543,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163233,11 +163142,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *859 - installation: *860 - issue: *894 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + issue: *893 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163317,12 +163226,12 @@ x-webhooks: type: string enum: - typed - enterprise: *859 - installation: *860 - issue: *895 + enterprise: *858 + installation: *859 + issue: *894 type: *376 - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163403,7 +163312,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &924 + assignee: &923 title: User type: object nullable: true @@ -163473,11 +163382,11 @@ x-webhooks: required: - login - id - enterprise: *859 - installation: *860 - issue: *895 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + issue: *894 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163556,12 +163465,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *859 - installation: *860 - issue: *895 - label: *882 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + issue: *894 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163641,8 +163550,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -164455,11 +164364,11 @@ x-webhooks: properties: *226 required: *227 nullable: true - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *796 + issue_dependencies_summary: *797 issue_field_values: type: array - items: *799 + items: *798 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164553,8 +164462,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164634,11 +164543,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *859 - installation: *860 - issue: *894 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + issue: *893 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164717,12 +164626,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *859 - installation: *860 - issue: *895 + enterprise: *858 + installation: *859 + issue: *894 type: *376 - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164802,11 +164711,11 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - label: *882 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164884,11 +164793,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - label: *882 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164998,11 +164907,11 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - label: *882 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + label: *881 + organization: *860 + repository: *861 sender: *4 required: - action @@ -165084,9 +164993,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *859 - installation: *860 - marketplace_purchase: &896 + enterprise: *858 + installation: *859 + marketplace_purchase: &895 title: Marketplace Purchase type: object required: @@ -165169,8 +165078,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *861 - previous_marketplace_purchase: &897 + organization: *860 + previous_marketplace_purchase: &896 title: Marketplace Purchase type: object properties: @@ -165250,7 +165159,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165330,10 +165239,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *859 - installation: *860 - marketplace_purchase: *896 - organization: *861 + enterprise: *858 + installation: *859 + marketplace_purchase: *895 + organization: *860 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165416,7 +165325,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165498,10 +165407,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *859 - installation: *860 - marketplace_purchase: *896 - organization: *861 + enterprise: *858 + installation: *859 + marketplace_purchase: *895 + organization: *860 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165583,7 +165492,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165664,8 +165573,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 marketplace_purchase: title: Marketplace Purchase type: object @@ -165747,9 +165656,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *861 - previous_marketplace_purchase: *897 - repository: *862 + organization: *860 + previous_marketplace_purchase: *896 + repository: *861 sender: *4 required: - action @@ -165829,12 +165738,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *859 - installation: *860 - marketplace_purchase: *896 - organization: *861 - previous_marketplace_purchase: *897 - repository: *862 + enterprise: *858 + installation: *859 + marketplace_purchase: *895 + organization: *860 + previous_marketplace_purchase: *896 + repository: *861 sender: *4 required: - action @@ -165936,11 +165845,11 @@ x-webhooks: type: string required: - to - enterprise: *859 - installation: *860 - member: *888 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + member: *887 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166040,11 +165949,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *859 - installation: *860 - member: *888 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + member: *887 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166123,11 +166032,11 @@ x-webhooks: type: string enum: - removed - enterprise: *859 - installation: *860 - member: *888 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + member: *887 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166205,11 +166114,11 @@ x-webhooks: type: string enum: - added - enterprise: *859 - installation: *860 - member: *888 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + member: *887 + organization: *860 + repository: *861 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166285,7 +166194,7 @@ x-webhooks: required: - login - id - team: &898 + team: &897 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -166508,11 +166417,11 @@ x-webhooks: type: string enum: - removed - enterprise: *859 - installation: *860 - member: *888 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + member: *887 + organization: *860 + repository: *861 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166589,7 +166498,7 @@ x-webhooks: required: - login - id - team: *898 + team: *897 required: - action - scope @@ -166671,8 +166580,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *860 - merge_group: &900 + installation: *859 + merge_group: &899 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -166691,15 +166600,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *899 + head_commit: *898 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166785,10 +166694,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *860 - merge_group: *900 - organization: *861 - repository: *862 + installation: *859 + merge_group: *899 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166861,7 +166770,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 + enterprise: *858 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -166970,16 +166879,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *860 - organization: *861 + installation: *859 + organization: *860 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *901 - required: *902 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -167060,11 +166969,11 @@ x-webhooks: type: string enum: - closed - enterprise: *859 - installation: *860 - milestone: *893 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + milestone: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167143,9 +167052,9 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - milestone: &903 + enterprise: *858 + installation: *859 + milestone: &902 title: Milestone description: A collection of related issues and pull requests. type: object @@ -167282,8 +167191,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167362,11 +167271,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - milestone: *893 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + milestone: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167476,11 +167385,11 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - milestone: *893 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + milestone: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167560,11 +167469,11 @@ x-webhooks: type: string enum: - opened - enterprise: *859 - installation: *860 - milestone: *903 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + milestone: *902 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167643,11 +167552,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *888 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + blocked_user: *887 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167726,11 +167635,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *888 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + blocked_user: *887 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167806,7 +167715,7 @@ x-webhooks: enum: - created definition: *151 - enterprise: *859 + enterprise: *858 sender: *4 required: - action @@ -167886,8 +167795,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 sender: *4 required: - action @@ -167960,8 +167869,8 @@ x-webhooks: enum: - updated definition: *151 - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 sender: *4 required: - action @@ -168033,9 +167942,9 @@ x-webhooks: type: string enum: - updated - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 new_property_values: type: array @@ -168123,9 +168032,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - membership: &904 + enterprise: *858 + installation: *859 + membership: &903 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -168232,8 +168141,8 @@ x-webhooks: - role - organization_url - user - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168311,11 +168220,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *859 - installation: *860 - membership: *904 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + membership: *903 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168394,8 +168303,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -168511,10 +168420,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 - user: *888 + user: *887 required: - action - invitation @@ -168592,11 +168501,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *859 - installation: *860 - membership: *904 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + membership: *903 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168683,11 +168592,11 @@ x-webhooks: properties: from: type: string - enterprise: *859 - installation: *860 - membership: *904 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + membership: *903 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168765,9 +168674,9 @@ x-webhooks: type: string enum: - published - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 package: description: Information about the package. type: object @@ -169266,7 +169175,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &905 + items: &904 title: Ruby Gems metadata type: object properties: @@ -169361,7 +169270,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -169438,9 +169347,9 @@ x-webhooks: type: string enum: - updated - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 package: description: Information about the package. type: object @@ -169793,7 +169702,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *905 + items: *904 source_url: type: string format: uri @@ -169863,7 +169772,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -170039,12 +169948,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *859 + enterprise: *858 id: type: integer - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - id @@ -170121,7 +170030,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &906 + personal_access_token_request: &905 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -170267,10 +170176,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *859 - organization: *861 + enterprise: *858 + organization: *860 sender: *4 - installation: *860 + installation: *859 required: - action - personal_access_token_request @@ -170347,11 +170256,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *906 - enterprise: *859 - organization: *861 + personal_access_token_request: *905 + enterprise: *858 + organization: *860 sender: *4 - installation: *860 + installation: *859 required: - action - personal_access_token_request @@ -170427,11 +170336,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *906 - enterprise: *859 - organization: *861 + personal_access_token_request: *905 + enterprise: *858 + organization: *860 sender: *4 - installation: *860 + installation: *859 required: - action - personal_access_token_request @@ -170506,11 +170415,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *906 - organization: *861 - enterprise: *859 + personal_access_token_request: *905 + organization: *860 + enterprise: *858 sender: *4 - installation: *860 + installation: *859 required: - action - personal_access_token_request @@ -170615,7 +170524,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *907 + last_response: *906 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -170647,8 +170556,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 zen: description: Random string of GitHub zen. @@ -170893,10 +170802,10 @@ x-webhooks: - from required: - note - enterprise: *859 - installation: *860 - organization: *861 - project_card: &908 + enterprise: *858 + installation: *859 + organization: *860 + project_card: &907 title: Project Card type: object properties: @@ -171015,7 +170924,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -171096,11 +171005,11 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - project_card: *908 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project_card: *907 + repository: *861 sender: *4 required: - action @@ -171180,9 +171089,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 project_card: title: Project Card type: object @@ -171310,8 +171219,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *901 - required: *902 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -171405,11 +171314,11 @@ x-webhooks: - from required: - note - enterprise: *859 - installation: *860 - organization: *861 - project_card: *908 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project_card: *907 + repository: *861 sender: *4 required: - action @@ -171503,9 +171412,9 @@ x-webhooks: - from required: - column_id - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 project_card: allOf: - title: Project Card @@ -171695,7 +171604,7 @@ x-webhooks: type: string required: - after_id - repository: *862 + repository: *861 sender: *4 required: - action @@ -171775,10 +171684,10 @@ x-webhooks: type: string enum: - closed - enterprise: *859 - installation: *860 - organization: *861 - project: &910 + enterprise: *858 + installation: *859 + organization: *860 + project: &909 title: Project type: object properties: @@ -171902,7 +171811,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -171982,10 +171891,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - project_column: &909 + enterprise: *858 + installation: *859 + organization: *860 + project_column: &908 title: Project Column type: object properties: @@ -172024,7 +171933,7 @@ x-webhooks: - name - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -172103,18 +172012,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - project_column: *909 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *908 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *901 - required: *902 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -172204,11 +172113,11 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - organization: *861 - project_column: *909 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *908 + repository: *861 sender: *4 required: - action @@ -172288,11 +172197,11 @@ x-webhooks: type: string enum: - moved - enterprise: *859 - installation: *860 - organization: *861 - project_column: *909 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *908 + repository: *861 sender: *4 required: - action @@ -172372,11 +172281,11 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - project: *910 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project: *909 + repository: *861 sender: *4 required: - action @@ -172456,18 +172365,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - project: *910 + enterprise: *858 + installation: *859 + organization: *860 + project: *909 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *901 - required: *902 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -172569,11 +172478,11 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - organization: *861 - project: *910 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project: *909 + repository: *861 sender: *4 required: - action @@ -172652,11 +172561,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *859 - installation: *860 - organization: *861 - project: *910 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + project: *909 + repository: *861 sender: *4 required: - action @@ -172737,8 +172646,8 @@ x-webhooks: type: string enum: - closed - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -172820,8 +172729,8 @@ x-webhooks: type: string enum: - created - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -172903,8 +172812,8 @@ x-webhooks: type: string enum: - deleted - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173022,8 +172931,8 @@ x-webhooks: type: string to: type: string - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173107,7 +173016,7 @@ x-webhooks: type: string enum: - archived - changes: &914 + changes: &913 type: object properties: archived_at: @@ -173121,9 +173030,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *860 - organization: *861 - projects_v2_item: &911 + installation: *859 + organization: *860 + projects_v2_item: &910 title: Projects v2 Item description: An item belonging to a project type: object @@ -173258,9 +173167,9 @@ x-webhooks: nullable: true to: type: string - installation: *860 - organization: *861 - projects_v2_item: *911 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173342,9 +173251,9 @@ x-webhooks: type: string enum: - created - installation: *860 - organization: *861 - projects_v2_item: *911 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173425,9 +173334,9 @@ x-webhooks: type: string enum: - deleted - installation: *860 - organization: *861 - projects_v2_item: *911 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173533,7 +173442,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &912 + - &911 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -173555,7 +173464,7 @@ x-webhooks: required: - id - name - - &913 + - &912 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -173589,8 +173498,8 @@ x-webhooks: oneOf: - type: string - type: integer + - *911 - *912 - - *913 required: - field_value - type: object @@ -173606,9 +173515,9 @@ x-webhooks: nullable: true required: - body - installation: *860 - organization: *861 - projects_v2_item: *911 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173703,9 +173612,9 @@ x-webhooks: to: type: string nullable: true - installation: *860 - organization: *861 - projects_v2_item: *911 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173788,10 +173697,10 @@ x-webhooks: type: string enum: - restored - changes: *914 - installation: *860 - organization: *861 - projects_v2_item: *911 + changes: *913 + installation: *859 + organization: *860 + projects_v2_item: *910 sender: *4 required: - action @@ -173873,8 +173782,8 @@ x-webhooks: type: string enum: - reopened - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173956,14 +173865,14 @@ x-webhooks: type: string enum: - created - installation: *860 - organization: *861 - projects_v2_status_update: &917 + installation: *859 + organization: *860 + projects_v2_status_update: &916 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *915 - required: *916 + properties: *914 + required: *915 sender: *4 required: - action @@ -174044,9 +173953,9 @@ x-webhooks: type: string enum: - deleted - installation: *860 - organization: *861 - projects_v2_status_update: *917 + installation: *859 + organization: *860 + projects_v2_status_update: *916 sender: *4 required: - action @@ -174182,9 +174091,9 @@ x-webhooks: type: string format: date nullable: true - installation: *860 - organization: *861 - projects_v2_status_update: *917 + installation: *859 + organization: *860 + projects_v2_status_update: *916 sender: *4 required: - action @@ -174255,10 +174164,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - repository @@ -174335,13 +174244,13 @@ x-webhooks: type: string enum: - assigned - assignee: *888 - enterprise: *859 - installation: *860 - number: &918 + assignee: *887 + enterprise: *858 + installation: *859 + number: &917 description: The pull request number. type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -176646,7 +176555,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -176728,11 +176637,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -179032,7 +178941,7 @@ x-webhooks: - draft reason: type: string - repository: *862 + repository: *861 sender: *4 required: - action @@ -179114,11 +179023,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -181418,7 +181327,7 @@ x-webhooks: - draft reason: type: string - repository: *862 + repository: *861 sender: *4 required: - action @@ -181500,11 +181409,11 @@ x-webhooks: type: string enum: - closed - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: &919 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: &918 allOf: - *705 - type: object @@ -181568,7 +181477,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *862 + repository: *861 sender: *4 required: - action @@ -181649,12 +181558,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: *919 - repository: *862 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: *918 + repository: *861 sender: *4 required: - action @@ -181734,11 +181643,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *859 + enterprise: *858 milestone: *687 - number: *918 - organization: *861 - pull_request: &920 + number: *917 + organization: *860 + pull_request: &919 title: Pull Request type: object properties: @@ -184023,7 +183932,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -184102,11 +184011,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -186410,7 +186319,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *862 + repository: *861 sender: *4 required: - action @@ -186534,12 +186443,12 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: *919 - repository: *862 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: *918 + repository: *861 sender: *4 required: - action @@ -186619,11 +186528,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -188912,7 +188821,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -188992,11 +188901,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *859 - installation: *860 - label: *882 - number: *918 - organization: *861 + enterprise: *858 + installation: *859 + label: *881 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -191300,7 +191209,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -191381,10 +191290,10 @@ x-webhooks: type: string enum: - locked - enterprise: *859 - installation: *860 - number: *918 - organization: *861 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -193686,7 +193595,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -193766,12 +193675,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *859 + enterprise: *858 milestone: *687 - number: *918 - organization: *861 - pull_request: *920 - repository: *862 + number: *917 + organization: *860 + pull_request: *919 + repository: *861 sender: *4 required: - action @@ -193850,12 +193759,12 @@ x-webhooks: type: string enum: - opened - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: *919 - repository: *862 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: *918 + repository: *861 sender: *4 required: - action @@ -193936,12 +193845,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: *919 - repository: *862 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: *918 + repository: *861 sender: *4 required: - action @@ -194021,12 +193930,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *859 - installation: *860 - number: *918 - organization: *861 - pull_request: *919 - repository: *862 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 + pull_request: *918 + repository: *861 sender: *4 required: - action @@ -194392,9 +194301,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -196586,7 +196495,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -196666,7 +196575,7 @@ x-webhooks: type: string enum: - deleted - comment: &922 + comment: &921 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. @@ -196951,9 +196860,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -199133,7 +199042,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -199213,11 +199122,11 @@ x-webhooks: type: string enum: - edited - changes: *921 - comment: *922 - enterprise: *859 - installation: *860 - organization: *861 + changes: *920 + comment: *921 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -201400,7 +201309,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -201481,9 +201390,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -203678,7 +203587,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 + repository: *861 review: description: The review that was affected. type: object @@ -203925,9 +203834,9 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -205981,8 +205890,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 - review: &923 + repository: *861 + review: &922 description: The review that was affected. type: object properties: @@ -206215,12 +206124,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -208525,7 +208434,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_reviewer: title: User type: object @@ -208609,12 +208518,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -210926,7 +210835,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_team: title: Team description: Groups of organization members that gives permissions @@ -211118,12 +211027,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -213430,7 +213339,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_reviewer: title: User type: object @@ -213515,12 +213424,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *861 + organization: *860 pull_request: title: Pull Request type: object @@ -215818,7 +215727,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_team: title: Team description: Groups of organization members that gives permissions @@ -215999,9 +215908,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -218198,8 +218107,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 - review: *923 + repository: *861 + review: *922 sender: *4 required: - action @@ -218279,9 +218188,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -220373,7 +220282,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 + repository: *861 sender: *4 thread: type: object @@ -220760,9 +220669,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -222840,7 +222749,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 + repository: *861 sender: *4 thread: type: object @@ -223230,10 +223139,10 @@ x-webhooks: type: string before: type: string - enterprise: *859 - installation: *860 - number: *918 - organization: *861 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -225526,7 +225435,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -225608,11 +225517,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *924 - enterprise: *859 - installation: *860 - number: *918 - organization: *861 + assignee: *923 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -227917,7 +227826,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -227996,11 +227905,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *859 - installation: *860 - label: *882 - number: *918 - organization: *861 + enterprise: *858 + installation: *859 + label: *881 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -230295,7 +230204,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -230376,10 +230285,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *859 - installation: *860 - number: *918 - organization: *861 + enterprise: *858 + installation: *859 + number: *917 + organization: *860 pull_request: title: Pull Request type: object @@ -232666,7 +232575,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -232866,7 +232775,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *859 + enterprise: *858 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -232958,8 +232867,8 @@ x-webhooks: - url - author - committer - installation: *860 - organization: *861 + installation: *859 + organization: *860 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -233545,9 +233454,9 @@ x-webhooks: type: string enum: - published - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 registry_package: type: object properties: @@ -233993,7 +233902,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *905 + items: *904 summary: type: string tag_name: @@ -234047,7 +233956,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -234125,9 +234034,9 @@ x-webhooks: type: string enum: - updated - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 registry_package: type: object properties: @@ -234435,7 +234344,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *905 + items: *904 summary: type: string tag_name: @@ -234484,7 +234393,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -234561,10 +234470,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - release: &925 + enterprise: *858 + installation: *859 + organization: *860 + release: &924 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -234882,7 +234791,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *862 + repository: *861 sender: *4 required: - action @@ -234959,11 +234868,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - release: *925 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + release: *924 + repository: *861 sender: *4 required: - action @@ -235080,11 +234989,11 @@ x-webhooks: type: boolean required: - to - enterprise: *859 - installation: *860 - organization: *861 - release: *925 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + release: *924 + repository: *861 sender: *4 required: - action @@ -235162,9 +235071,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -235486,7 +235395,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *862 + repository: *861 sender: *4 required: - action @@ -235562,10 +235471,10 @@ x-webhooks: type: string enum: - published - enterprise: *859 - installation: *860 - organization: *861 - release: &926 + enterprise: *858 + installation: *859 + organization: *860 + release: &925 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -235884,7 +235793,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *862 + repository: *861 sender: *4 required: - action @@ -235960,11 +235869,11 @@ x-webhooks: type: string enum: - released - enterprise: *859 - installation: *860 - organization: *861 - release: *925 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + release: *924 + repository: *861 sender: *4 required: - action @@ -236040,11 +235949,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *859 - installation: *860 - organization: *861 - release: *926 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + release: *925 + repository: *861 sender: *4 required: - action @@ -236120,10 +236029,10 @@ x-webhooks: type: string enum: - published - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_advisory: *757 sender: *4 required: @@ -236200,10 +236109,10 @@ x-webhooks: type: string enum: - reported - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_advisory: *757 sender: *4 required: @@ -236280,10 +236189,10 @@ x-webhooks: type: string enum: - archived - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236360,10 +236269,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236441,10 +236350,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236528,10 +236437,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236643,10 +236552,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236718,10 +236627,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 status: type: string @@ -236802,10 +236711,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236882,10 +236791,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -236979,10 +236888,10 @@ x-webhooks: - name required: - repository - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -237062,10 +236971,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *191 sender: *4 required: @@ -237144,10 +237053,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *191 sender: *4 required: @@ -237226,10 +237135,10 @@ x-webhooks: type: string enum: - edited - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *191 changes: type: object @@ -237534,10 +237443,10 @@ x-webhooks: - from required: - owner - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -237615,10 +237524,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -237696,7 +237605,7 @@ x-webhooks: type: string enum: - create - alert: &927 + alert: &926 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -237818,10 +237727,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238027,10 +237936,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238108,11 +238017,11 @@ x-webhooks: type: string enum: - reopen - alert: *927 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *926 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238311,10 +238220,10 @@ x-webhooks: enum: - fixed - open - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238392,7 +238301,7 @@ x-webhooks: type: string enum: - assigned - alert: &928 + alert: &927 type: object properties: number: *128 @@ -238511,10 +238420,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238592,11 +238501,11 @@ x-webhooks: type: string enum: - created - alert: *928 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *927 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -238677,11 +238586,11 @@ x-webhooks: type: string enum: - created - alert: *928 - installation: *860 - location: *929 - organization: *861 - repository: *862 + alert: *927 + installation: *859 + location: *928 + organization: *860 + repository: *861 sender: *4 required: - location @@ -238919,11 +238828,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *928 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *927 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -239001,11 +238910,11 @@ x-webhooks: type: string enum: - reopened - alert: *928 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *927 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -239083,11 +238992,11 @@ x-webhooks: type: string enum: - resolved - alert: *928 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *927 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -239165,12 +239074,12 @@ x-webhooks: type: string enum: - unassigned - alert: *928 + alert: *927 assignee: *4 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -239248,11 +239157,11 @@ x-webhooks: type: string enum: - validated - alert: *928 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + alert: *927 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -239378,10 +239287,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *862 - enterprise: *859 - installation: *860 - organization: *861 + repository: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -239459,11 +239368,11 @@ x-webhooks: type: string enum: - published - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - security_advisory: &930 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + security_advisory: &929 description: The details of the security advisory, including summary, description, and severity. type: object @@ -239646,11 +239555,11 @@ x-webhooks: type: string enum: - updated - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 - security_advisory: *930 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + security_advisory: *929 sender: *4 required: - action @@ -239723,10 +239632,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -239911,9 +239820,9 @@ x-webhooks: type: object properties: security_and_analysis: *425 - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: *467 sender: *4 required: @@ -239992,12 +239901,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: &931 + sponsorship: &930 type: object properties: created_at: @@ -240298,12 +240207,12 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *931 + sponsorship: *930 required: - action - sponsorship @@ -240391,12 +240300,12 @@ x-webhooks: type: string required: - from - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *931 + sponsorship: *930 required: - action - changes @@ -240473,17 +240382,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &932 + effective_date: &931 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: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *931 + sponsorship: *930 required: - action - sponsorship @@ -240557,7 +240466,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &933 + changes: &932 type: object properties: tier: @@ -240601,13 +240510,13 @@ x-webhooks: - from required: - tier - effective_date: *932 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + effective_date: *931 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *931 + sponsorship: *930 required: - action - changes @@ -240684,13 +240593,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *933 - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + changes: *932 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *931 + sponsorship: *930 required: - action - changes @@ -240764,10 +240673,10 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -240850,10 +240759,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -241273,15 +241182,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *859 + enterprise: *858 id: description: The unique identifier of the status. type: integer - installation: *860 + installation: *859 name: type: string - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 sha: description: The Commit SHA. @@ -241396,9 +241305,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -241488,9 +241397,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -241580,9 +241489,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -241672,9 +241581,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *225 - installation: *860 - organization: *861 - repository: *862 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -241751,12 +241660,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - team: &934 + team: &933 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -241979,9 +241888,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -242439,7 +242348,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -242515,9 +242424,9 @@ x-webhooks: type: string enum: - created - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -242975,7 +242884,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -243052,9 +242961,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -243512,7 +243421,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -243656,9 +243565,9 @@ x-webhooks: - from required: - permissions - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -244116,7 +244025,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - changes @@ -244194,9 +244103,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *859 - installation: *860 - organization: *861 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -244654,7 +244563,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -244730,10 +244639,10 @@ x-webhooks: type: string enum: - started - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -244806,16 +244715,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *859 + enterprise: *858 inputs: type: object nullable: true additionalProperties: true - installation: *860 - organization: *861 + installation: *859 + organization: *860 ref: type: string - repository: *862 + repository: *861 sender: *4 workflow: type: string @@ -244897,10 +244806,10 @@ x-webhooks: type: string enum: - completed - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: allOf: @@ -245216,10 +245125,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: allOf: @@ -245558,10 +245467,10 @@ x-webhooks: type: string enum: - queued - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: type: object @@ -245775,10 +245684,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: type: object @@ -245994,12 +245903,12 @@ x-webhooks: type: string enum: - completed - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *878 + workflow: *877 workflow_run: title: Workflow Run type: object @@ -246998,12 +246907,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *878 + workflow: *877 workflow_run: title: Workflow Run type: object @@ -247987,12 +247896,12 @@ x-webhooks: type: string enum: - requested - enterprise: *859 - installation: *860 - organization: *861 - repository: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *878 + workflow: *877 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/ghec.2022-11-28.json b/descriptions/ghec/ghec.2022-11-28.json index 51d748f93..9fad11b24 100644 --- a/descriptions/ghec/ghec.2022-11-28.json +++ b/descriptions/ghec/ghec.2022-11-28.json @@ -56772,6 +56772,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + "response-if-content-is-a-file-github-object": { + "summary": "Content is a file using the object media type" + }, + "response-if-content-is-a-directory-github-object": { + "summary": "Content is a directory using the object media type" + }, + "response-if-content-is-a-file": { + "summary": "Content is a file" + }, + "response-if-content-is-a-directory": { + "summary": "Content is a directory" + }, + "response-if-content-is-a-symlink": { + "summary": "Content is a symlink" + }, + "response-if-content-is-a-submodule": { + "summary": "Content is a submodule" + } + } + } + } + }, "responses": { "200": { "description": "Response", @@ -56781,10 +56808,10 @@ "$ref": "#/components/schemas/content-tree" }, "examples": { - "response-if-content-is-a-file": { + "response-if-content-is-a-file-github-object": { "$ref": "#/components/examples/content-file-response-if-content-is-a-file" }, - "response-if-content-is-a-directory": { + "response-if-content-is-a-directory-github-object": { "$ref": "#/components/examples/content-file-response-if-content-is-a-directory-object" } } @@ -57467,10 +57494,26 @@ "type": "string", "description": "An optional comment associated with dismissing the alert.", "maxLength": 280 + }, + "assignees": { + "type": "array", + "description": "Usernames to assign to this Dependabot Alert.\nPass one or more user logins to _replace_ the set of assignees on this alert.\nSend an empty array (`[]`) to clear all assignees from the alert.", + "items": { + "type": "string" + } } }, - "required": [ - "state" + "anyOf": [ + { + "required": [ + "state" + ] + }, + { + "required": [ + "assignees" + ] + } ], "additionalProperties": false }, @@ -76696,186 +76739,6 @@ } } }, - "/repos/{owner}/{repo}/tags/protection": { - "get": { - "summary": "Closing down - List tag protection states for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-all-repository-rulesets)\" endpoint instead.\n\nThis returns the tag protection states of a repository.\n\nThis information is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/list-tag-protection", - "externalDocs": { - "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": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/tag-protection" - } - }, - "examples": { - "default": { - "$ref": "#/components/examples/tag-protection-items" - } - } - } - } - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - }, - "post": { - "summary": "Closing down - Create a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#create-a-repository-ruleset)\" endpoint instead.\n\nThis creates a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/create-tag-protection", - "externalDocs": { - "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": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "pattern": { - "type": "string", - "description": "An optional glob pattern to match against when enforcing tag protection." - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "pattern": "v1.*" - } - } - } - } - } - }, - "responses": { - "201": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/tag-protection" - }, - "examples": { - "default": { - "$ref": "#/components/examples/tag-protection" - } - } - } - } - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": { - "delete": { - "summary": "Closing down - Delete a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#delete-a-repository-ruleset)\" endpoint instead.\n\nThis deletes a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/delete-tag-protection", - "externalDocs": { - "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": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - }, - { - "$ref": "#/components/parameters/tag-protection-id" - } - ], - "responses": { - "204": { - "description": "Response" - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, "/repos/{owner}/{repo}/tarball/{ref}": { "get": { "summary": "Download a repository archive (tar)", @@ -78475,7 +78338,7 @@ }, "put": { "summary": "Set SCIM information for a provisioned enterprise user", - "description": "Replaces an existing provisioned user's information.\n\nYou must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user, and their handle and email will be obfuscated.", + "description": "Replaces an existing provisioned user's information.\n\nYou must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated.\n>\n> ```\n>{\n> \"schemas\": [\n> \"urn:ietf:params:scim:schemas:core:2.0:User\"\n> ],\n> \"externalId\": \"E012345\",\n> \"active\": false,\n> \"userName\": \"E012345\",\n> \"name\": {\n> \"familyName\": \"Octocat\",\n> \"givenName\": \"Mona\",\n> \"middleName\": \"Lisa\"\n> },\n> \"displayName\": \"Mona Lisa\",\n> \"emails\": [\n> {\n> \"value\": \"mlisa@example.com\",\n> \"type\": \"work\",\n> \"primary\": true\n> }\n> ],\n> \"roles\": [\n> {\n> \"value\": \"User\"\n> }\n> ]\n>}\n> ```", "operationId": "enterprise-admin/set-information-for-provisioned-enterprise-user", "tags": [ "enterprise-admin" @@ -78554,7 +78417,7 @@ }, "patch": { "summary": "Update an attribute for a SCIM enterprise user", - "description": "Update a provisioned user's individual attributes.\n\nTo modify a user's attributes, you'll need to provide a `Operations` JSON formatted request that includes at least one of the following actions: add, remove, or replace. For specific examples and more information on the SCIM operations format, please refer to the [SCIM specification](https://tools.ietf.org/html/rfc7644#section-3.5.2).\n\n> [!NOTE]\n> Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `\"path\": \"emails[type eq \\\"work\\\"]\"` will be ineffective.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user, and their handle and email will be obfuscated.\n> ```\n> {\n> \"Operations\":[{\n> \"op\":\"replace\",\n> \"value\":{\n> \"active\":false\n> }\n> }]\n> }\n> ```", + "description": "Update a provisioned user's individual attributes.\n\nTo modify a user's attributes, you'll need to provide a `Operations` JSON formatted request that includes at least one of the following actions: add, remove, or replace. For specific examples and more information on the SCIM operations format, please refer to the [SCIM specification](https://tools.ietf.org/html/rfc7644#section-3.5.2).\n\n> [!NOTE]\n> Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `\"path\": \"emails[type eq \\\"work\\\"]\"` will be ineffective.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated.\n>\n> ```\n> {\n> \"schemas\": [\n> \"urn:ietf:params:scim:api:messages:2.0:PatchOp\"\n> ],\n> \"Operations\": [\n> {\n> \"op\": \"replace\",\n> \"value\": {\n> \"active\": false\n> }\n> }\n> ]\n> }\n> ```", "operationId": "enterprise-admin/update-attribute-for-enterprise-user", "tags": [ "enterprise-admin" @@ -155820,36 +155683,6 @@ "tarball_url" ] }, - "tag-protection": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - }, "topic": { "title": "Topic", "description": "A topic aggregates entities that are related to a subject.", @@ -333363,19 +333196,6 @@ } ] }, - "tag-protection-items": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - }, - "tag-protection": { - "value": { - "enabled": true - } - }, "topic": { "value": { "names": [ @@ -341477,15 +341297,6 @@ "type": "integer" } }, - "tag-protection-id": { - "name": "tag_protection_id", - "description": "The unique identifier of the tag protection.", - "in": "path", - "required": true, - "schema": { - "type": "integer" - } - }, "per": { "name": "per", "description": "The time frame to display results for.", diff --git a/descriptions/ghec/ghec.2022-11-28.yaml b/descriptions/ghec/ghec.2022-11-28.yaml index e7f1b7aa5..1cacc1578 100644 --- a/descriptions/ghec/ghec.2022-11-28.yaml +++ b/descriptions/ghec/ghec.2022-11-28.yaml @@ -41277,6 +41277,23 @@ paths: required: false schema: type: string + requestBody: + required: false + content: + application/json: + examples: + response-if-content-is-a-file-github-object: + summary: Content is a file using the object media type + response-if-content-is-a-directory-github-object: + summary: Content is a directory using the object media type + response-if-content-is-a-file: + summary: Content is a file + response-if-content-is-a-directory: + summary: Content is a directory + response-if-content-is-a-symlink: + summary: Content is a symlink + response-if-content-is-a-submodule: + summary: Content is a submodule responses: '200': description: Response @@ -41285,9 +41302,9 @@ paths: schema: "$ref": "#/components/schemas/content-tree" examples: - response-if-content-is-a-file: + response-if-content-is-a-file-github-object: "$ref": "#/components/examples/content-file-response-if-content-is-a-file" - response-if-content-is-a-directory: + response-if-content-is-a-directory-github-object: "$ref": "#/components/examples/content-file-response-if-content-is-a-directory-object" application/json: schema: @@ -41756,8 +41773,19 @@ paths: description: An optional comment associated with dismissing the alert. maxLength: 280 - required: - - state + assignees: + type: array + description: |- + Usernames to assign to this Dependabot Alert. + Pass one or more user logins to _replace_ the set of assignees on this alert. + Send an empty array (`[]`) to clear all assignees from the alert. + items: + type: string + anyOf: + - required: + - state + - required: + - assignees additionalProperties: false examples: default: @@ -55504,139 +55532,6 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos - "/repos/{owner}/{repo}/tags/protection": - get: - summary: Closing down - List tag protection states for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-all-repository-rulesets)" endpoint instead. - - This returns the tag protection states of a repository. - - This information is only available to repository administrators. - tags: - - repos - operationId: repos/list-tag-protection - externalDocs: - 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: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: - "$ref": "#/components/schemas/tag-protection" - examples: - default: - "$ref": "#/components/examples/tag-protection-items" - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - post: - summary: Closing down - Create a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#create-a-repository-ruleset)" endpoint instead. - - This creates a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/create-tag-protection - externalDocs: - 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: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - pattern: - type: string - description: An optional glob pattern to match against when enforcing - tag protection. - required: - - pattern - examples: - default: - value: - pattern: v1.* - responses: - '201': - description: Response - content: - application/json: - schema: - "$ref": "#/components/schemas/tag-protection" - examples: - default: - "$ref": "#/components/examples/tag-protection" - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": - delete: - summary: Closing down - Delete a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#delete-a-repository-ruleset)" endpoint instead. - - This deletes a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/delete-tag-protection - externalDocs: - 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: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - - "$ref": "#/components/parameters/tag-protection-id" - responses: - '204': - description: Response - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true "/repos/{owner}/{repo}/tarball/{ref}": get: summary: Download a repository archive (tar) @@ -56734,7 +56629,36 @@ paths: You must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint. > [!WARNING] - > Setting `active: false` will suspend a user, and their handle and email will be obfuscated. + > Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated. + > + > ``` + >{ + > "schemas": [ + > "urn:ietf:params:scim:schemas:core:2.0:User" + > ], + > "externalId": "E012345", + > "active": false, + > "userName": "E012345", + > "name": { + > "familyName": "Octocat", + > "givenName": "Mona", + > "middleName": "Lisa" + > }, + > "displayName": "Mona Lisa", + > "emails": [ + > { + > "value": "mlisa@example.com", + > "type": "work", + > "primary": true + > } + > ], + > "roles": [ + > { + > "value": "User" + > } + > ] + >} + > ``` operationId: enterprise-admin/set-information-for-provisioned-enterprise-user tags: - enterprise-admin @@ -56793,15 +56717,21 @@ paths: > Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `"path": "emails[type eq \"work\"]"` will be ineffective. > [!WARNING] - > Setting `active: false` will suspend a user, and their handle and email will be obfuscated. + > Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated. + > > ``` > { - > "Operations":[{ - > "op":"replace", - > "value":{ - > "active":false + > "schemas": [ + > "urn:ietf:params:scim:api:messages:2.0:PatchOp" + > ], + > "Operations": [ + > { + > "op": "replace", + > "value": { + > "active": false + > } > } - > }] + > ] > } > ``` operationId: enterprise-admin/update-attribute-for-enterprise-user @@ -114460,28 +114390,6 @@ components: - commit - zipball_url - tarball_url - tag-protection: - title: Tag protection - description: Tag protection - type: object - properties: - id: - type: integer - example: 2 - created_at: - type: string - example: '2011-01-26T19:01:12Z' - updated_at: - type: string - example: '2011-01-26T19:01:12Z' - enabled: - type: boolean - example: true - pattern: - type: string - example: v1.* - required: - - pattern topic: title: Topic description: A topic aggregates entities that are related to a subject. @@ -251259,13 +251167,6 @@ components: zipball_url: https://github.com/octocat/Hello-World/zipball/v0.1 tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= - tag-protection-items: - value: - - id: 2 - pattern: v1.* - tag-protection: - value: - enabled: true topic: value: names: @@ -258333,13 +258234,6 @@ components: required: true schema: type: integer - tag-protection-id: - name: tag_protection_id - description: The unique identifier of the tag protection. - in: path - required: true - schema: - type: integer per: name: per description: The time frame to display results for. diff --git a/descriptions/ghec/ghec.json b/descriptions/ghec/ghec.json index 51d748f93..9fad11b24 100644 --- a/descriptions/ghec/ghec.json +++ b/descriptions/ghec/ghec.json @@ -56772,6 +56772,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + "response-if-content-is-a-file-github-object": { + "summary": "Content is a file using the object media type" + }, + "response-if-content-is-a-directory-github-object": { + "summary": "Content is a directory using the object media type" + }, + "response-if-content-is-a-file": { + "summary": "Content is a file" + }, + "response-if-content-is-a-directory": { + "summary": "Content is a directory" + }, + "response-if-content-is-a-symlink": { + "summary": "Content is a symlink" + }, + "response-if-content-is-a-submodule": { + "summary": "Content is a submodule" + } + } + } + } + }, "responses": { "200": { "description": "Response", @@ -56781,10 +56808,10 @@ "$ref": "#/components/schemas/content-tree" }, "examples": { - "response-if-content-is-a-file": { + "response-if-content-is-a-file-github-object": { "$ref": "#/components/examples/content-file-response-if-content-is-a-file" }, - "response-if-content-is-a-directory": { + "response-if-content-is-a-directory-github-object": { "$ref": "#/components/examples/content-file-response-if-content-is-a-directory-object" } } @@ -57467,10 +57494,26 @@ "type": "string", "description": "An optional comment associated with dismissing the alert.", "maxLength": 280 + }, + "assignees": { + "type": "array", + "description": "Usernames to assign to this Dependabot Alert.\nPass one or more user logins to _replace_ the set of assignees on this alert.\nSend an empty array (`[]`) to clear all assignees from the alert.", + "items": { + "type": "string" + } } }, - "required": [ - "state" + "anyOf": [ + { + "required": [ + "state" + ] + }, + { + "required": [ + "assignees" + ] + } ], "additionalProperties": false }, @@ -76696,186 +76739,6 @@ } } }, - "/repos/{owner}/{repo}/tags/protection": { - "get": { - "summary": "Closing down - List tag protection states for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-all-repository-rulesets)\" endpoint instead.\n\nThis returns the tag protection states of a repository.\n\nThis information is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/list-tag-protection", - "externalDocs": { - "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": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - } - ], - "responses": { - "200": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/tag-protection" - } - }, - "examples": { - "default": { - "$ref": "#/components/examples/tag-protection-items" - } - } - } - } - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - }, - "post": { - "summary": "Closing down - Create a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#create-a-repository-ruleset)\" endpoint instead.\n\nThis creates a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/create-tag-protection", - "externalDocs": { - "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": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "pattern": { - "type": "string", - "description": "An optional glob pattern to match against when enforcing tag protection." - } - }, - "required": [ - "pattern" - ] - }, - "examples": { - "default": { - "value": { - "pattern": "v1.*" - } - } - } - } - } - }, - "responses": { - "201": { - "description": "Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/tag-protection" - }, - "examples": { - "default": { - "$ref": "#/components/examples/tag-protection" - } - } - } - } - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": { - "delete": { - "summary": "Closing down - Delete a tag protection state for a repository", - "description": "> [!WARNING]\n> **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the \"[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#delete-a-repository-ruleset)\" endpoint instead.\n\nThis deletes a tag protection state for a repository.\nThis endpoint is only available to repository administrators.", - "tags": [ - "repos" - ], - "operationId": "repos/delete-tag-protection", - "externalDocs": { - "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": [ - { - "$ref": "#/components/parameters/owner" - }, - { - "$ref": "#/components/parameters/repo" - }, - { - "$ref": "#/components/parameters/tag-protection-id" - } - ], - "responses": { - "204": { - "description": "Response" - }, - "403": { - "$ref": "#/components/responses/forbidden" - }, - "404": { - "$ref": "#/components/responses/not_found" - } - }, - "x-github": { - "githubCloudOnly": false, - "enabledForGitHubApps": true, - "category": "repos", - "subcategory": "tags", - "deprecationDate": "2024-05-29", - "removalDate": "2024-08-30" - }, - "deprecated": true - } - }, "/repos/{owner}/{repo}/tarball/{ref}": { "get": { "summary": "Download a repository archive (tar)", @@ -78475,7 +78338,7 @@ }, "put": { "summary": "Set SCIM information for a provisioned enterprise user", - "description": "Replaces an existing provisioned user's information.\n\nYou must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user, and their handle and email will be obfuscated.", + "description": "Replaces an existing provisioned user's information.\n\nYou must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated.\n>\n> ```\n>{\n> \"schemas\": [\n> \"urn:ietf:params:scim:schemas:core:2.0:User\"\n> ],\n> \"externalId\": \"E012345\",\n> \"active\": false,\n> \"userName\": \"E012345\",\n> \"name\": {\n> \"familyName\": \"Octocat\",\n> \"givenName\": \"Mona\",\n> \"middleName\": \"Lisa\"\n> },\n> \"displayName\": \"Mona Lisa\",\n> \"emails\": [\n> {\n> \"value\": \"mlisa@example.com\",\n> \"type\": \"work\",\n> \"primary\": true\n> }\n> ],\n> \"roles\": [\n> {\n> \"value\": \"User\"\n> }\n> ]\n>}\n> ```", "operationId": "enterprise-admin/set-information-for-provisioned-enterprise-user", "tags": [ "enterprise-admin" @@ -78554,7 +78417,7 @@ }, "patch": { "summary": "Update an attribute for a SCIM enterprise user", - "description": "Update a provisioned user's individual attributes.\n\nTo modify a user's attributes, you'll need to provide a `Operations` JSON formatted request that includes at least one of the following actions: add, remove, or replace. For specific examples and more information on the SCIM operations format, please refer to the [SCIM specification](https://tools.ietf.org/html/rfc7644#section-3.5.2).\n\n> [!NOTE]\n> Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `\"path\": \"emails[type eq \\\"work\\\"]\"` will be ineffective.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user, and their handle and email will be obfuscated.\n> ```\n> {\n> \"Operations\":[{\n> \"op\":\"replace\",\n> \"value\":{\n> \"active\":false\n> }\n> }]\n> }\n> ```", + "description": "Update a provisioned user's individual attributes.\n\nTo modify a user's attributes, you'll need to provide a `Operations` JSON formatted request that includes at least one of the following actions: add, remove, or replace. For specific examples and more information on the SCIM operations format, please refer to the [SCIM specification](https://tools.ietf.org/html/rfc7644#section-3.5.2).\n\n> [!NOTE]\n> Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `\"path\": \"emails[type eq \\\"work\\\"]\"` will be ineffective.\n\n> [!WARNING]\n> Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated.\n>\n> ```\n> {\n> \"schemas\": [\n> \"urn:ietf:params:scim:api:messages:2.0:PatchOp\"\n> ],\n> \"Operations\": [\n> {\n> \"op\": \"replace\",\n> \"value\": {\n> \"active\": false\n> }\n> }\n> ]\n> }\n> ```", "operationId": "enterprise-admin/update-attribute-for-enterprise-user", "tags": [ "enterprise-admin" @@ -155820,36 +155683,6 @@ "tarball_url" ] }, - "tag-protection": { - "title": "Tag protection", - "description": "Tag protection", - "type": "object", - "properties": { - "id": { - "type": "integer", - "example": 2 - }, - "created_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "updated_at": { - "type": "string", - "example": "2011-01-26T19:01:12Z" - }, - "enabled": { - "type": "boolean", - "example": true - }, - "pattern": { - "type": "string", - "example": "v1.*" - } - }, - "required": [ - "pattern" - ] - }, "topic": { "title": "Topic", "description": "A topic aggregates entities that are related to a subject.", @@ -333363,19 +333196,6 @@ } ] }, - "tag-protection-items": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - }, - "tag-protection": { - "value": { - "enabled": true - } - }, "topic": { "value": { "names": [ @@ -341477,15 +341297,6 @@ "type": "integer" } }, - "tag-protection-id": { - "name": "tag_protection_id", - "description": "The unique identifier of the tag protection.", - "in": "path", - "required": true, - "schema": { - "type": "integer" - } - }, "per": { "name": "per", "description": "The time frame to display results for.", diff --git a/descriptions/ghec/ghec.yaml b/descriptions/ghec/ghec.yaml index e7f1b7aa5..1cacc1578 100644 --- a/descriptions/ghec/ghec.yaml +++ b/descriptions/ghec/ghec.yaml @@ -41277,6 +41277,23 @@ paths: required: false schema: type: string + requestBody: + required: false + content: + application/json: + examples: + response-if-content-is-a-file-github-object: + summary: Content is a file using the object media type + response-if-content-is-a-directory-github-object: + summary: Content is a directory using the object media type + response-if-content-is-a-file: + summary: Content is a file + response-if-content-is-a-directory: + summary: Content is a directory + response-if-content-is-a-symlink: + summary: Content is a symlink + response-if-content-is-a-submodule: + summary: Content is a submodule responses: '200': description: Response @@ -41285,9 +41302,9 @@ paths: schema: "$ref": "#/components/schemas/content-tree" examples: - response-if-content-is-a-file: + response-if-content-is-a-file-github-object: "$ref": "#/components/examples/content-file-response-if-content-is-a-file" - response-if-content-is-a-directory: + response-if-content-is-a-directory-github-object: "$ref": "#/components/examples/content-file-response-if-content-is-a-directory-object" application/json: schema: @@ -41756,8 +41773,19 @@ paths: description: An optional comment associated with dismissing the alert. maxLength: 280 - required: - - state + assignees: + type: array + description: |- + Usernames to assign to this Dependabot Alert. + Pass one or more user logins to _replace_ the set of assignees on this alert. + Send an empty array (`[]`) to clear all assignees from the alert. + items: + type: string + anyOf: + - required: + - state + - required: + - assignees additionalProperties: false examples: default: @@ -55504,139 +55532,6 @@ paths: enabledForGitHubApps: true category: repos subcategory: repos - "/repos/{owner}/{repo}/tags/protection": - get: - summary: Closing down - List tag protection states for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-all-repository-rulesets)" endpoint instead. - - This returns the tag protection states of a repository. - - This information is only available to repository administrators. - tags: - - repos - operationId: repos/list-tag-protection - externalDocs: - 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: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - responses: - '200': - description: Response - content: - application/json: - schema: - type: array - items: - "$ref": "#/components/schemas/tag-protection" - examples: - default: - "$ref": "#/components/examples/tag-protection-items" - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - post: - summary: Closing down - Create a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#create-a-repository-ruleset)" endpoint instead. - - This creates a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/create-tag-protection - externalDocs: - 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: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - requestBody: - required: true - content: - application/json: - schema: - type: object - properties: - pattern: - type: string - description: An optional glob pattern to match against when enforcing - tag protection. - required: - - pattern - examples: - default: - value: - pattern: v1.* - responses: - '201': - description: Response - content: - application/json: - schema: - "$ref": "#/components/schemas/tag-protection" - examples: - default: - "$ref": "#/components/examples/tag-protection" - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true - "/repos/{owner}/{repo}/tags/protection/{tag_protection_id}": - delete: - summary: Closing down - Delete a tag protection state for a repository - description: |- - > [!WARNING] - > **Closing down notice:** This operation is closing down and will be removed after August 30, 2024. Use the "[Repository Rulesets](https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#delete-a-repository-ruleset)" endpoint instead. - - This deletes a tag protection state for a repository. - This endpoint is only available to repository administrators. - tags: - - repos - operationId: repos/delete-tag-protection - externalDocs: - 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: - - "$ref": "#/components/parameters/owner" - - "$ref": "#/components/parameters/repo" - - "$ref": "#/components/parameters/tag-protection-id" - responses: - '204': - description: Response - '403': - "$ref": "#/components/responses/forbidden" - '404': - "$ref": "#/components/responses/not_found" - x-github: - githubCloudOnly: false - enabledForGitHubApps: true - category: repos - subcategory: tags - deprecationDate: '2024-05-29' - removalDate: '2024-08-30' - deprecated: true "/repos/{owner}/{repo}/tarball/{ref}": get: summary: Download a repository archive (tar) @@ -56734,7 +56629,36 @@ paths: You must supply complete user information, just as you would when provisioning them initially. Any previously existing data not provided will be deleted. To update only a specific attribute, refer to the [Update an attribute for a SCIM user](#update-an-attribute-for-a-scim-enterprise-user) endpoint. > [!WARNING] - > Setting `active: false` will suspend a user, and their handle and email will be obfuscated. + > Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated. + > + > ``` + >{ + > "schemas": [ + > "urn:ietf:params:scim:schemas:core:2.0:User" + > ], + > "externalId": "E012345", + > "active": false, + > "userName": "E012345", + > "name": { + > "familyName": "Octocat", + > "givenName": "Mona", + > "middleName": "Lisa" + > }, + > "displayName": "Mona Lisa", + > "emails": [ + > { + > "value": "mlisa@example.com", + > "type": "work", + > "primary": true + > } + > ], + > "roles": [ + > { + > "value": "User" + > } + > ] + >} + > ``` operationId: enterprise-admin/set-information-for-provisioned-enterprise-user tags: - enterprise-admin @@ -56793,15 +56717,21 @@ paths: > Complex SCIM `path` selectors that include filters are not supported. For example, a `path` selector defined as `"path": "emails[type eq \"work\"]"` will be ineffective. > [!WARNING] - > Setting `active: false` will suspend a user, and their handle and email will be obfuscated. + > Setting `active: false` will suspend a user. As a result, their handle and primary email address will be obfuscated. + > > ``` > { - > "Operations":[{ - > "op":"replace", - > "value":{ - > "active":false + > "schemas": [ + > "urn:ietf:params:scim:api:messages:2.0:PatchOp" + > ], + > "Operations": [ + > { + > "op": "replace", + > "value": { + > "active": false + > } > } - > }] + > ] > } > ``` operationId: enterprise-admin/update-attribute-for-enterprise-user @@ -114460,28 +114390,6 @@ components: - commit - zipball_url - tarball_url - tag-protection: - title: Tag protection - description: Tag protection - type: object - properties: - id: - type: integer - example: 2 - created_at: - type: string - example: '2011-01-26T19:01:12Z' - updated_at: - type: string - example: '2011-01-26T19:01:12Z' - enabled: - type: boolean - example: true - pattern: - type: string - example: v1.* - required: - - pattern topic: title: Topic description: A topic aggregates entities that are related to a subject. @@ -251259,13 +251167,6 @@ components: zipball_url: https://github.com/octocat/Hello-World/zipball/v0.1 tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= - tag-protection-items: - value: - - id: 2 - pattern: v1.* - tag-protection: - value: - enabled: true topic: value: names: @@ -258333,13 +258234,6 @@ components: required: true schema: type: integer - tag-protection-id: - name: tag_protection_id - description: The unique identifier of the tag protection. - in: path - required: true - schema: - type: integer per: name: per description: The time frame to display results for. diff --git a/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.json b/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.json index 19d963a75..c54fed8a7 100644 --- a/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.json +++ b/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.json @@ -284209,6 +284209,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + "response-if-content-is-a-file-github-object": { + "summary": "Content is a file using the object media type" + }, + "response-if-content-is-a-directory-github-object": { + "summary": "Content is a directory using the object media type" + }, + "response-if-content-is-a-file": { + "summary": "Content is a file" + }, + "response-if-content-is-a-directory": { + "summary": "Content is a directory" + }, + "response-if-content-is-a-symlink": { + "summary": "Content is a symlink" + }, + "response-if-content-is-a-submodule": { + "summary": "Content is a submodule" + } + } + } + } + }, "responses": { "200": { "description": "Response", @@ -284376,7 +284403,7 @@ ] }, "examples": { - "response-if-content-is-a-file": { + "response-if-content-is-a-file-github-object": { "summary": "Response if content is a file", "value": { "type": "file", @@ -284397,7 +284424,7 @@ } } }, - "response-if-content-is-a-directory": { + "response-if-content-is-a-directory-github-object": { "summary": "Response if content is a directory and the application/vnd.github.v3.object media type is requested", "value": { "type": "dir", @@ -288748,10 +288775,26 @@ "type": "string", "description": "An optional comment associated with dismissing the alert.", "maxLength": 280 + }, + "assignees": { + "type": "array", + "description": "Usernames to assign to this Dependabot Alert.\nPass one or more user logins to _replace_ the set of assignees on this alert.\nSend an empty array (`[]`) to clear all assignees from the alert.", + "items": { + "type": "string" + } } }, - "required": [ - "state" + "anyOf": [ + { + "required": [ + "state" + ] + }, + { + "required": [ + "assignees" + ] + } ], "additionalProperties": false }, diff --git a/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml b/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml index 805846a50..0ce78d277 100644 --- a/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml +++ b/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml @@ -56944,6 +56944,23 @@ paths: required: false schema: type: string + requestBody: + required: false + content: + application/json: + examples: + response-if-content-is-a-file-github-object: + summary: Content is a file using the object media type + response-if-content-is-a-directory-github-object: + summary: Content is a directory using the object media type + response-if-content-is-a-file: + summary: Content is a file + response-if-content-is-a-directory: + summary: Content is a directory + response-if-content-is-a-symlink: + summary: Content is a symlink + response-if-content-is-a-submodule: + summary: Content is a submodule responses: '200': description: Response @@ -57072,7 +57089,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &412 + response-if-content-is-a-file-github-object: &412 summary: Response if content is a file value: type: file @@ -57090,7 +57107,7 @@ paths: git: https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1 self: https://api.github.com/repos/octokit/octokit.rb/contents/README.md html: https://github.com/octokit/octokit.rb/blob/master/README.md - response-if-content-is-a-directory: + response-if-content-is-a-directory-github-object: summary: Response if content is a directory and the application/vnd.github.v3.object media type is requested value: @@ -58569,8 +58586,19 @@ paths: description: An optional comment associated with dismissing the alert. maxLength: 280 - required: - - state + assignees: + type: array + description: |- + Usernames to assign to this Dependabot Alert. + Pass one or more user logins to _replace_ the set of assignees on this alert. + Send an empty array (`[]`) to clear all assignees from the alert. + items: + type: string + anyOf: + - required: + - state + - required: + - assignees additionalProperties: false examples: default: diff --git a/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.json b/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.json index 19d963a75..c54fed8a7 100644 --- a/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.json +++ b/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.json @@ -284209,6 +284209,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + "response-if-content-is-a-file-github-object": { + "summary": "Content is a file using the object media type" + }, + "response-if-content-is-a-directory-github-object": { + "summary": "Content is a directory using the object media type" + }, + "response-if-content-is-a-file": { + "summary": "Content is a file" + }, + "response-if-content-is-a-directory": { + "summary": "Content is a directory" + }, + "response-if-content-is-a-symlink": { + "summary": "Content is a symlink" + }, + "response-if-content-is-a-submodule": { + "summary": "Content is a submodule" + } + } + } + } + }, "responses": { "200": { "description": "Response", @@ -284376,7 +284403,7 @@ ] }, "examples": { - "response-if-content-is-a-file": { + "response-if-content-is-a-file-github-object": { "summary": "Response if content is a file", "value": { "type": "file", @@ -284397,7 +284424,7 @@ } } }, - "response-if-content-is-a-directory": { + "response-if-content-is-a-directory-github-object": { "summary": "Response if content is a directory and the application/vnd.github.v3.object media type is requested", "value": { "type": "dir", @@ -288748,10 +288775,26 @@ "type": "string", "description": "An optional comment associated with dismissing the alert.", "maxLength": 280 + }, + "assignees": { + "type": "array", + "description": "Usernames to assign to this Dependabot Alert.\nPass one or more user logins to _replace_ the set of assignees on this alert.\nSend an empty array (`[]`) to clear all assignees from the alert.", + "items": { + "type": "string" + } } }, - "required": [ - "state" + "anyOf": [ + { + "required": [ + "state" + ] + }, + { + "required": [ + "assignees" + ] + } ], "additionalProperties": false }, diff --git a/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.yaml b/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.yaml index 805846a50..0ce78d277 100644 --- a/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.yaml +++ b/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.yaml @@ -56944,6 +56944,23 @@ paths: required: false schema: type: string + requestBody: + required: false + content: + application/json: + examples: + response-if-content-is-a-file-github-object: + summary: Content is a file using the object media type + response-if-content-is-a-directory-github-object: + summary: Content is a directory using the object media type + response-if-content-is-a-file: + summary: Content is a file + response-if-content-is-a-directory: + summary: Content is a directory + response-if-content-is-a-symlink: + summary: Content is a symlink + response-if-content-is-a-submodule: + summary: Content is a submodule responses: '200': description: Response @@ -57072,7 +57089,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &412 + response-if-content-is-a-file-github-object: &412 summary: Response if content is a file value: type: file @@ -57090,7 +57107,7 @@ paths: git: https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1 self: https://api.github.com/repos/octokit/octokit.rb/contents/README.md html: https://github.com/octokit/octokit.rb/blob/master/README.md - response-if-content-is-a-directory: + response-if-content-is-a-directory-github-object: summary: Response if content is a directory and the application/vnd.github.v3.object media type is requested value: @@ -58569,8 +58586,19 @@ paths: description: An optional comment associated with dismissing the alert. maxLength: 280 - required: - - state + assignees: + type: array + description: |- + Usernames to assign to this Dependabot Alert. + Pass one or more user logins to _replace_ the set of assignees on this alert. + Send an empty array (`[]`) to clear all assignees from the alert. + items: + type: string + anyOf: + - required: + - state + - required: + - assignees additionalProperties: false examples: default: diff --git a/descriptions/ghes-3.14/ghes-3.14.2022-11-28.json b/descriptions/ghes-3.14/ghes-3.14.2022-11-28.json index e88c6d6e7..210fabb7f 100644 --- a/descriptions/ghes-3.14/ghes-3.14.2022-11-28.json +++ b/descriptions/ghes-3.14/ghes-3.14.2022-11-28.json @@ -37344,6 +37344,33 @@ } } ], + "requestBody": { + "required": false, + "content": { + "application/json": { + "examples": { + {"code":"deadline_exceeded","msg":"operation timed out"}