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..f8f1899ec 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" } } @@ -63028,186 +63055,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 +134103,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 +308450,6 @@ } ] }, - "tag-protection-items": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - }, - "tag-protection": { - "value": { - "enabled": true - } - }, "topic": { "value": { "names": [ @@ -316099,15 +315903,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..c9287479b 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: @@ -45707,139 +45724,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 +98737,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 +233224,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 +239778,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..f8f1899ec 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" } } @@ -63028,186 +63055,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 +134103,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 +308450,6 @@ } ] }, - "tag-protection-items": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - }, - "tag-protection": { - "value": { - "enabled": true - } - }, "topic": { "value": { "names": [ @@ -316099,15 +315903,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..c9287479b 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: @@ -45707,139 +45724,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 +98737,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 +233224,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 +239778,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..d9a11d771 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", @@ -538861,427 +538888,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..9f2f4de59 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: @@ -74724,7 +74741,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 +75792,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 +76226,7 @@ paths: type: array items: *526 examples: - default: &683 + default: &682 value: - id: 1 repository: @@ -90614,7 +90631,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &783 + items: &782 type: object properties: type: @@ -92827,160 +92844,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 +92940,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 +92952,7 @@ paths: required: - names examples: - default: &649 + default: &648 value: names: - octocat @@ -93144,9 +93007,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *647 examples: - default: *649 + default: *648 '404': *6 '422': *7 x-github: @@ -93169,7 +93032,7 @@ paths: parameters: - *327 - *328 - - &650 + - &649 name: per description: The time frame to display results for. in: query @@ -93198,7 +93061,7 @@ paths: example: 128 clones: type: array - items: &651 + items: &650 title: Traffic type: object properties: @@ -93439,7 +93302,7 @@ paths: parameters: - *327 - *328 - - *650 + - *649 responses: '200': description: Response @@ -93458,7 +93321,7 @@ paths: example: 3782 views: type: array - items: *651 + items: *650 required: - uniques - count @@ -94227,7 +94090,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &652 + text_matches: &651 title: Search Result Text Matches type: array items: @@ -94389,7 +94252,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 +94380,7 @@ paths: type: number node_id: type: string - text_matches: *652 + text_matches: *651 required: - sha - node_id @@ -94709,7 +94572,7 @@ paths: - interactions - created - updated - - *653 + - *652 - *17 - *19 - name: advanced_search @@ -94806,11 +94669,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 +94705,7 @@ paths: type: string format: date-time nullable: true - text_matches: *652 + text_matches: *651 pull_request: type: object properties: @@ -95075,7 +94938,7 @@ paths: enum: - created - updated - - *653 + - *652 - *17 - *19 responses: @@ -95119,7 +94982,7 @@ paths: nullable: true score: type: number - text_matches: *652 + text_matches: *651 required: - id - node_id @@ -95204,7 +95067,7 @@ paths: - forks - help-wanted-issues - updated - - *653 + - *652 - *17 - *19 responses: @@ -95452,7 +95315,7 @@ paths: - admin - pull - push - text_matches: *652 + text_matches: *651 temp_clone_token: type: string allow_merge_commit: @@ -95752,7 +95615,7 @@ paths: type: string format: uri nullable: true - text_matches: *652 + text_matches: *651 related: type: array nullable: true @@ -95943,7 +95806,7 @@ paths: - followers - repositories - joined - - *653 + - *652 - *17 - *19 responses: @@ -96047,7 +95910,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *652 + text_matches: *651 blog: type: string nullable: true @@ -96126,7 +95989,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 +96030,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 +96130,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 +96159,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 +96197,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 +96248,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 +96285,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 +96325,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 +96362,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 +96371,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 +96404,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 +96432,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 +96466,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 +96494,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 +96536,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 +96544,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 +96695,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 +96747,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 +96774,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 +96786,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 +96819,7 @@ paths: application/json: schema: oneOf: - - &663 + - &662 title: Private User description: Private User type: object @@ -97159,7 +97022,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 +97175,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *662 examples: default: value: @@ -97710,7 +97573,7 @@ paths: type: integer secrets: type: array - items: &664 + items: &663 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97826,7 +97689,7 @@ paths: description: Response content: application/json: - schema: *664 + schema: *663 examples: default: value: @@ -97972,7 +97835,7 @@ paths: type: array items: *153 examples: - default: *665 + default: *664 '401': *25 '403': *29 '404': *6 @@ -98239,7 +98102,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 +98143,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 +98188,9 @@ paths: description: Response content: application/json: - schema: *666 + schema: *665 examples: - default: *667 + default: *666 '404': *6 x-github: githubCloudOnly: false @@ -98364,9 +98227,9 @@ paths: type: integer machines: type: array - items: *668 + items: *667 examples: - default: *669 + default: *668 '304': *37 '500': *113 '401': *25 @@ -99305,7 +99168,7 @@ paths: type: array items: *246 examples: - default: &680 + default: &679 value: - id: 197 name: hello_docker @@ -99406,7 +99269,7 @@ paths: application/json: schema: type: array - items: &670 + items: &669 title: Email description: Email type: object @@ -99471,9 +99334,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 +99411,7 @@ paths: application/json: schema: type: array - items: *670 + items: *669 examples: default: value: @@ -99804,7 +99667,7 @@ paths: application/json: schema: type: array - items: &671 + items: &670 title: GPG Key description: A unique encryption key type: object @@ -99935,7 +99798,7 @@ paths: - subkeys - revoked examples: - default: &698 + default: &697 value: - id: 3 name: Octocat's GPG Key @@ -100020,9 +99883,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 +99942,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 +99954,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *670 examples: - default: *672 + default: *671 '404': *6 '304': *37 '403': *29 @@ -100116,7 +99979,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 +100436,7 @@ paths: application/json: schema: type: array - items: &674 + items: &673 title: Key description: Key type: object @@ -100674,9 +100537,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *673 examples: - default: &675 + default: &674 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -100715,9 +100578,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *673 examples: - default: *675 + default: *674 '404': *6 '304': *37 '403': *29 @@ -100773,7 +100636,7 @@ paths: application/json: schema: type: array - items: &676 + items: &675 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -100841,7 +100704,7 @@ paths: - account - plan examples: - default: &677 + default: &676 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -100903,9 +100766,9 @@ paths: application/json: schema: type: array - items: *676 + items: *675 examples: - default: *677 + default: *676 headers: Link: *59 '304': *37 @@ -101914,7 +101777,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *240 - - *678 + - *677 responses: '204': description: Response @@ -102029,7 +101892,7 @@ paths: - docker - nuget - container - - *679 + - *678 - *19 - *17 responses: @@ -102041,8 +101904,8 @@ paths: type: array items: *246 examples: - default: *680 - '400': *681 + default: *679 + '400': *680 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102071,7 +101934,7 @@ paths: application/json: schema: *246 examples: - default: &699 + default: &698 value: id: 40201 name: octo-name @@ -102433,9 +102296,9 @@ paths: application/json: schema: type: array - items: *670 + items: *669 examples: - default: *682 + default: *681 headers: Link: *59 '304': *37 @@ -102548,7 +102411,7 @@ paths: type: array items: *71 examples: - default: &689 + default: &688 summary: Default response value: - id: 1296269 @@ -102894,7 +102757,7 @@ paths: type: array items: *526 examples: - default: *683 + default: *682 headers: Link: *59 '304': *37 @@ -102973,7 +102836,7 @@ paths: application/json: schema: type: array - items: &684 + items: &683 title: Social account description: Social media account type: object @@ -102988,7 +102851,7 @@ paths: - provider - url examples: - default: &685 + default: &684 value: - provider: twitter url: https://twitter.com/github @@ -103050,9 +102913,9 @@ paths: application/json: schema: type: array - items: *684 + items: *683 examples: - default: *685 + default: *684 '422': *15 '304': *37 '404': *6 @@ -103139,7 +103002,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 +103022,7 @@ paths: - title - created_at examples: - default: &717 + default: &716 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103223,9 +103086,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *685 examples: - default: &687 + default: &686 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103255,7 +103118,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 +103130,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *685 examples: - default: *687 + default: *686 '404': *6 '304': *37 '403': *29 @@ -103292,7 +103155,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 +103184,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 +103209,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 +103582,10 @@ paths: application/json: schema: oneOf: - - *663 - *662 + - *661 examples: - default-response: &693 + default-response: &692 summary: Default response value: login: octocat @@ -103757,7 +103620,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 +103677,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 +103743,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *690 + - *689 - *17 responses: '200': @@ -103915,7 +103778,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 +103850,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 +103902,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 +103956,8 @@ paths: required: - subject_digests examples: - default: *695 - withPredicateType: *696 + default: *694 + withPredicateType: *695 responses: '200': description: Response @@ -104147,7 +104010,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 +104256,7 @@ paths: type: array items: *246 examples: - default: *680 + default: *679 '403': *29 '401': *25 x-github: @@ -104777,9 +104640,9 @@ paths: application/json: schema: type: array - items: *671 + items: *670 examples: - default: *698 + default: *697 headers: Link: *59 x-github: @@ -105007,7 +104870,7 @@ paths: - docker - nuget - container - - *679 + - *678 - *63 - *19 - *17 @@ -105020,10 +104883,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 +104916,7 @@ paths: application/json: schema: *246 examples: - default: *699 + default: *698 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105402,7 +105265,7 @@ paths: type: array items: *268 examples: - default: *700 + default: *699 headers: Link: *59 '304': *37 @@ -105462,7 +105325,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 +105341,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *702 + iteration_configuration: *701 required: - name - data_type @@ -105500,8 +105363,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 +105372,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 +105398,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *264 - - *710 + - *709 - *63 responses: '200': @@ -105544,7 +105407,7 @@ paths: application/json: schema: *268 examples: - default: *711 + default: *710 headers: Link: *59 '304': *37 @@ -105898,7 +105761,7 @@ paths: parameters: - *264 - *63 - - *712 + - *711 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -106173,7 +106036,7 @@ paths: - *116 - *118 - *117 - - *713 + - *712 - *119 responses: '200': @@ -106304,7 +106167,7 @@ paths: parameters: - *63 - *116 - - *714 + - *713 - *117 responses: '200': @@ -106403,9 +106266,9 @@ paths: - *116 - *118 - *117 - - *715 + - *714 - *119 - - *716 + - *715 responses: '200': description: Response when getting a billing usage summary @@ -106539,9 +106402,9 @@ paths: application/json: schema: type: array - items: *684 + items: *683 examples: - default: *685 + default: *684 headers: Link: *59 x-github: @@ -106571,9 +106434,9 @@ paths: application/json: schema: type: array - items: *686 + items: *685 examples: - default: *717 + default: *716 headers: Link: *59 x-github: @@ -106598,7 +106461,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 +106473,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 +106636,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 +106694,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 +106713,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 +106773,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 +107474,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 +107625,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 +107704,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 +107931,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 +108118,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 +108206,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 +108297,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *725 + deployment: *724 details_url: example: https://example.com type: string @@ -108519,10 +108382,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 +108776,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 +109174,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 +109581,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 +110555,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 +111247,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 +111933,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 +112247,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 +112655,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 +112926,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 +113263,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 +113542,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 +113788,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 +114104,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 +114362,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 +114445,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 +114466,7 @@ x-webhooks: enum: - tag - branch - repository: *723 + repository: *722 sender: *4 required: - ref @@ -114686,9 +114549,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 +114636,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 +114716,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 +114796,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 +114875,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 +114963,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 +115055,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 +115139,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 +115224,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 +115309,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 +115392,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 +115475,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 +115559,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 +115642,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 +115722,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 +115760,8 @@ x-webhooks: - verified - created_at - read_only - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -115975,11 +115838,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 +116398,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 +117144,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 +117223,7 @@ x-webhooks: type: string enum: - approved - approver: &734 + approver: &733 type: object properties: avatar_url: @@ -117403,11 +117266,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 +117349,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &736 + workflow_job_run: &735 type: object properties: conclusion: @@ -118217,18 +118080,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 +118795,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 +120690,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 +121375,7 @@ x-webhooks: type: string enum: - answered - answer: &740 + answer: &739 type: object properties: author_association: @@ -121669,11 +121532,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 +121663,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 +121750,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 +121836,7 @@ x-webhooks: type: string enum: - created - comment: &739 + comment: &738 type: object properties: author_association: @@ -122130,11 +121993,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 +122080,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 +122180,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 +122269,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 +122355,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 +122459,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 +122545,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 +122580,8 @@ x-webhooks: - color - default - description - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122801,11 +122664,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 +122750,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 +122836,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 +122925,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 +123017,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 +123102,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 +123190,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 +123276,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 +123353,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 +124013,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 +124161,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 +124200,7 @@ x-webhooks: - action - sha - html_url - repository: *723 + repository: *722 sender: *4 required: - pages @@ -124413,10 +124276,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 +124305,8 @@ x-webhooks: - name - full_name - private - repository: *723 - requester: *742 + repository: *722 + requester: *741 sender: *4 required: - action @@ -124518,11 +124381,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 +124461,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 +124541,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 +124590,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 +124677,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 +124707,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 +124788,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 +124970,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 +125052,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 +125316,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 +126106,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 +126456,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -126674,7 +126537,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 +126710,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 +127496,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 +127848,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -128066,7 +127929,7 @@ x-webhooks: type: string enum: - edited - changes: &775 + changes: &774 description: The changes to the comment. type: object properties: @@ -128078,9 +127941,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 +128731,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 +129081,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -129300,9 +129163,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 +129955,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 +130307,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -130525,9 +130388,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 +131180,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 +131532,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -131759,9 +131622,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 +131713,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 +131803,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 +131894,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 +131976,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 +132771,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 +132892,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -133110,8 +132973,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 +133771,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 +134027,8 @@ x-webhooks: required: - state - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -134244,8 +134107,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 +134896,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 +135016,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -135233,8 +135096,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 +135907,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 +136006,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 +136144,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -136381,8 +136244,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 +137037,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 +137158,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 +137240,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 +138032,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 +138153,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 +138235,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 +139051,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 +139149,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -139366,8 +139229,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 +140039,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 +140137,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 +141002,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 +141587,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 +142372,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 +142500,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -142718,9 +142581,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 +143369,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 +143489,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -143706,8 +143569,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 +144383,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 +144482,8 @@ x-webhooks: user_view_type: type: string type: *228 - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -145489,11 +145352,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 +145951,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 +146035,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 +146121,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &778 + assignee: &777 title: User type: object nullable: true @@ -146328,11 +146191,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 +146274,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 +146359,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 +147173,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 +147271,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147489,11 +147352,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 +147435,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 +147520,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 +147602,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 +147716,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 +147802,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 +147887,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 +147968,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148185,10 +148048,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 +148134,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148353,10 +148216,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 +148301,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148519,8 +148382,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 +148465,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 +148547,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 +148654,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 +148758,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 +148841,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 +148923,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 +149003,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 +149226,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 +149307,7 @@ x-webhooks: required: - login - id - team: *752 + team: *751 required: - action - scope @@ -149526,8 +149389,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 +149409,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 +149503,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 +149579,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 +149688,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 +149778,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 +149861,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 +150000,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150217,11 +150080,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 +150194,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 +150278,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 +150361,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 +150444,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 +150527,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 +150636,8 @@ x-webhooks: - role - organization_url - user - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150852,11 +150715,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 +150798,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 +150915,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 +150996,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 +151087,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 +151168,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 +151669,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &759 + items: &758 title: Ruby Gems metadata type: object properties: @@ -151901,7 +151764,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -151977,9 +151840,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 +152195,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *759 + items: *758 source_url: type: string format: uri @@ -152402,7 +152265,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -152578,12 +152441,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 +152523,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 +152669,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 +152749,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 +152829,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 +152908,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 +153017,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 +153049,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 +153295,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 +153417,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -153635,11 +153498,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 +153582,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 +153712,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 +153807,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 +153905,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 +154097,7 @@ x-webhooks: type: string required: - after_id - repository: *723 + repository: *722 sender: *4 required: - action @@ -154314,10 +154177,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 +154304,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -154521,10 +154384,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 +154426,7 @@ x-webhooks: - name - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -154642,18 +154505,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 +154606,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 +154690,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 +154774,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 +154858,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 +154971,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 +155054,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 +155139,8 @@ x-webhooks: type: string enum: - closed - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155359,8 +155222,8 @@ x-webhooks: type: string enum: - created - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155442,8 +155305,8 @@ x-webhooks: type: string enum: - deleted - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155561,8 +155424,8 @@ x-webhooks: type: string to: type: string - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155646,7 +155509,7 @@ x-webhooks: type: string enum: - archived - changes: &768 + changes: &767 type: object properties: archived_at: @@ -155660,9 +155523,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 +155660,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 +155744,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 +155827,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 +155935,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 +155957,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 +155991,8 @@ x-webhooks: oneOf: - type: string - type: integer + - *765 - *766 - - *767 required: - field_value - type: object @@ -156145,9 +156008,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 +156105,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 +156190,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 +156275,8 @@ x-webhooks: type: string enum: - reopened - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -156495,14 +156358,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 +156446,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 +156584,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 +156657,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 +156737,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 +159048,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -159267,11 +159130,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 +161434,7 @@ x-webhooks: - draft reason: type: string - repository: *723 + repository: *722 sender: *4 required: - action @@ -161653,11 +161516,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 +163820,7 @@ x-webhooks: - draft reason: type: string - repository: *723 + repository: *722 sender: *4 required: - action @@ -164039,11 +163902,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 +163970,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *723 + repository: *722 sender: *4 required: - action @@ -164188,12 +164051,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 +164136,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 +166425,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -166641,11 +166504,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 +168812,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *723 + repository: *722 sender: *4 required: - action @@ -169073,12 +168936,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 +169021,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 +171314,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -171531,11 +171394,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 +173702,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -173920,10 +173783,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 +176088,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -176305,12 +176168,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 +176252,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 +176338,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 +176423,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 +176794,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 +178988,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -179205,7 +179068,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 +179353,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 +181535,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -181752,11 +181615,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 +183802,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -184020,9 +183883,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 +186080,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 +186327,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 +188383,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 +188617,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 +190927,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_reviewer: title: User type: object @@ -191148,12 +191011,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 +193328,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 +193520,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 +195832,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_reviewer: title: User type: object @@ -196054,12 +195917,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 +198220,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 +198401,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 +200600,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 - review: *777 + repository: *722 + review: *776 sender: *4 required: - action @@ -200818,9 +200681,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 +202775,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 + repository: *722 sender: *4 thread: type: object @@ -203299,9 +203162,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 +205242,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 + repository: *722 sender: *4 thread: type: object @@ -205769,10 +205632,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 +207928,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -208147,11 +208010,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 +210319,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -210535,11 +210398,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 +212697,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -212915,10 +212778,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 +215068,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -215405,7 +215268,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 +215360,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 +215947,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 +216395,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *759 + items: *758 summary: type: string tag_name: @@ -216586,7 +216449,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -216664,9 +216527,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 +216837,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *759 + items: *758 summary: type: string tag_name: @@ -217023,7 +216886,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -217100,10 +216963,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 +217284,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *723 + repository: *722 sender: *4 required: - action @@ -217498,11 +217361,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 +217482,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 +217564,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 +217888,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *723 + repository: *722 sender: *4 required: - action @@ -218101,10 +217964,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 +218286,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *723 + repository: *722 sender: *4 required: - action @@ -218499,11 +218362,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 +218442,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 +218522,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 +218602,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 +218682,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 +218762,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 +218843,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 +218930,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 +219045,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 +219120,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 +219204,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 +219284,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 +219381,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 +219464,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 +219546,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 +219628,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 +219936,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 +220017,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 +220098,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 +220220,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 +220429,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 +220510,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 +220713,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 +220794,7 @@ x-webhooks: type: string enum: - assigned - alert: &782 + alert: &781 type: object properties: number: *171 @@ -221050,10 +220913,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 +220994,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 +221079,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 +221321,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 +221403,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 +221485,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 +221567,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 +221650,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 +221780,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 +221861,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 +222048,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 +222125,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 +222313,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 +222394,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 +222700,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 +222793,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 +222875,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 +222959,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &787 + changes: &786 type: object properties: tier: @@ -223140,13 +223003,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 +223086,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 +223166,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 +223252,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 +223675,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 +223798,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 +223890,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 +223982,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 +224074,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 +224153,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 +224381,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 +224841,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -225054,9 +224917,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 +225377,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -225591,9 +225454,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 +225914,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -226195,9 +226058,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 +226518,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - changes @@ -226733,9 +226596,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 +227056,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -227269,10 +227132,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 +227208,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 +227299,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 +227618,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 +227960,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 +228177,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 +228396,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 +229400,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 +230389,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..d9a11d771 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", @@ -538861,427 +538888,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..9f2f4de59 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: @@ -74724,7 +74741,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 +75792,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 +76226,7 @@ paths: type: array items: *526 examples: - default: &683 + default: &682 value: - id: 1 repository: @@ -90614,7 +90631,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &783 + items: &782 type: object properties: type: @@ -92827,160 +92844,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 +92940,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 +92952,7 @@ paths: required: - names examples: - default: &649 + default: &648 value: names: - octocat @@ -93144,9 +93007,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *647 examples: - default: *649 + default: *648 '404': *6 '422': *7 x-github: @@ -93169,7 +93032,7 @@ paths: parameters: - *327 - *328 - - &650 + - &649 name: per description: The time frame to display results for. in: query @@ -93198,7 +93061,7 @@ paths: example: 128 clones: type: array - items: &651 + items: &650 title: Traffic type: object properties: @@ -93439,7 +93302,7 @@ paths: parameters: - *327 - *328 - - *650 + - *649 responses: '200': description: Response @@ -93458,7 +93321,7 @@ paths: example: 3782 views: type: array - items: *651 + items: *650 required: - uniques - count @@ -94227,7 +94090,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &652 + text_matches: &651 title: Search Result Text Matches type: array items: @@ -94389,7 +94252,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 +94380,7 @@ paths: type: number node_id: type: string - text_matches: *652 + text_matches: *651 required: - sha - node_id @@ -94709,7 +94572,7 @@ paths: - interactions - created - updated - - *653 + - *652 - *17 - *19 - name: advanced_search @@ -94806,11 +94669,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 +94705,7 @@ paths: type: string format: date-time nullable: true - text_matches: *652 + text_matches: *651 pull_request: type: object properties: @@ -95075,7 +94938,7 @@ paths: enum: - created - updated - - *653 + - *652 - *17 - *19 responses: @@ -95119,7 +94982,7 @@ paths: nullable: true score: type: number - text_matches: *652 + text_matches: *651 required: - id - node_id @@ -95204,7 +95067,7 @@ paths: - forks - help-wanted-issues - updated - - *653 + - *652 - *17 - *19 responses: @@ -95452,7 +95315,7 @@ paths: - admin - pull - push - text_matches: *652 + text_matches: *651 temp_clone_token: type: string allow_merge_commit: @@ -95752,7 +95615,7 @@ paths: type: string format: uri nullable: true - text_matches: *652 + text_matches: *651 related: type: array nullable: true @@ -95943,7 +95806,7 @@ paths: - followers - repositories - joined - - *653 + - *652 - *17 - *19 responses: @@ -96047,7 +95910,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *652 + text_matches: *651 blog: type: string nullable: true @@ -96126,7 +95989,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 +96030,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 +96130,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 +96159,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 +96197,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 +96248,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 +96285,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 +96325,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 +96362,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 +96371,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 +96404,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 +96432,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 +96466,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 +96494,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 +96536,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 +96544,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 +96695,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 +96747,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 +96774,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 +96786,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 +96819,7 @@ paths: application/json: schema: oneOf: - - &663 + - &662 title: Private User description: Private User type: object @@ -97159,7 +97022,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 +97175,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *662 examples: default: value: @@ -97710,7 +97573,7 @@ paths: type: integer secrets: type: array - items: &664 + items: &663 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97826,7 +97689,7 @@ paths: description: Response content: application/json: - schema: *664 + schema: *663 examples: default: value: @@ -97972,7 +97835,7 @@ paths: type: array items: *153 examples: - default: *665 + default: *664 '401': *25 '403': *29 '404': *6 @@ -98239,7 +98102,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 +98143,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 +98188,9 @@ paths: description: Response content: application/json: - schema: *666 + schema: *665 examples: - default: *667 + default: *666 '404': *6 x-github: githubCloudOnly: false @@ -98364,9 +98227,9 @@ paths: type: integer machines: type: array - items: *668 + items: *667 examples: - default: *669 + default: *668 '304': *37 '500': *113 '401': *25 @@ -99305,7 +99168,7 @@ paths: type: array items: *246 examples: - default: &680 + default: &679 value: - id: 197 name: hello_docker @@ -99406,7 +99269,7 @@ paths: application/json: schema: type: array - items: &670 + items: &669 title: Email description: Email type: object @@ -99471,9 +99334,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 +99411,7 @@ paths: application/json: schema: type: array - items: *670 + items: *669 examples: default: value: @@ -99804,7 +99667,7 @@ paths: application/json: schema: type: array - items: &671 + items: &670 title: GPG Key description: A unique encryption key type: object @@ -99935,7 +99798,7 @@ paths: - subkeys - revoked examples: - default: &698 + default: &697 value: - id: 3 name: Octocat's GPG Key @@ -100020,9 +99883,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 +99942,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 +99954,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *670 examples: - default: *672 + default: *671 '404': *6 '304': *37 '403': *29 @@ -100116,7 +99979,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 +100436,7 @@ paths: application/json: schema: type: array - items: &674 + items: &673 title: Key description: Key type: object @@ -100674,9 +100537,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *673 examples: - default: &675 + default: &674 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -100715,9 +100578,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *673 examples: - default: *675 + default: *674 '404': *6 '304': *37 '403': *29 @@ -100773,7 +100636,7 @@ paths: application/json: schema: type: array - items: &676 + items: &675 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -100841,7 +100704,7 @@ paths: - account - plan examples: - default: &677 + default: &676 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -100903,9 +100766,9 @@ paths: application/json: schema: type: array - items: *676 + items: *675 examples: - default: *677 + default: *676 headers: Link: *59 '304': *37 @@ -101914,7 +101777,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *240 - - *678 + - *677 responses: '204': description: Response @@ -102029,7 +101892,7 @@ paths: - docker - nuget - container - - *679 + - *678 - *19 - *17 responses: @@ -102041,8 +101904,8 @@ paths: type: array items: *246 examples: - default: *680 - '400': *681 + default: *679 + '400': *680 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102071,7 +101934,7 @@ paths: application/json: schema: *246 examples: - default: &699 + default: &698 value: id: 40201 name: octo-name @@ -102433,9 +102296,9 @@ paths: application/json: schema: type: array - items: *670 + items: *669 examples: - default: *682 + default: *681 headers: Link: *59 '304': *37 @@ -102548,7 +102411,7 @@ paths: type: array items: *71 examples: - default: &689 + default: &688 summary: Default response value: - id: 1296269 @@ -102894,7 +102757,7 @@ paths: type: array items: *526 examples: - default: *683 + default: *682 headers: Link: *59 '304': *37 @@ -102973,7 +102836,7 @@ paths: application/json: schema: type: array - items: &684 + items: &683 title: Social account description: Social media account type: object @@ -102988,7 +102851,7 @@ paths: - provider - url examples: - default: &685 + default: &684 value: - provider: twitter url: https://twitter.com/github @@ -103050,9 +102913,9 @@ paths: application/json: schema: type: array - items: *684 + items: *683 examples: - default: *685 + default: *684 '422': *15 '304': *37 '404': *6 @@ -103139,7 +103002,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 +103022,7 @@ paths: - title - created_at examples: - default: &717 + default: &716 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103223,9 +103086,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *685 examples: - default: &687 + default: &686 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103255,7 +103118,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 +103130,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *685 examples: - default: *687 + default: *686 '404': *6 '304': *37 '403': *29 @@ -103292,7 +103155,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 +103184,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 +103209,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 +103582,10 @@ paths: application/json: schema: oneOf: - - *663 - *662 + - *661 examples: - default-response: &693 + default-response: &692 summary: Default response value: login: octocat @@ -103757,7 +103620,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 +103677,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 +103743,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *690 + - *689 - *17 responses: '200': @@ -103915,7 +103778,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 +103850,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 +103902,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 +103956,8 @@ paths: required: - subject_digests examples: - default: *695 - withPredicateType: *696 + default: *694 + withPredicateType: *695 responses: '200': description: Response @@ -104147,7 +104010,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 +104256,7 @@ paths: type: array items: *246 examples: - default: *680 + default: *679 '403': *29 '401': *25 x-github: @@ -104777,9 +104640,9 @@ paths: application/json: schema: type: array - items: *671 + items: *670 examples: - default: *698 + default: *697 headers: Link: *59 x-github: @@ -105007,7 +104870,7 @@ paths: - docker - nuget - container - - *679 + - *678 - *63 - *19 - *17 @@ -105020,10 +104883,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 +104916,7 @@ paths: application/json: schema: *246 examples: - default: *699 + default: *698 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105402,7 +105265,7 @@ paths: type: array items: *268 examples: - default: *700 + default: *699 headers: Link: *59 '304': *37 @@ -105462,7 +105325,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 +105341,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *702 + iteration_configuration: *701 required: - name - data_type @@ -105500,8 +105363,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 +105372,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 +105398,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *264 - - *710 + - *709 - *63 responses: '200': @@ -105544,7 +105407,7 @@ paths: application/json: schema: *268 examples: - default: *711 + default: *710 headers: Link: *59 '304': *37 @@ -105898,7 +105761,7 @@ paths: parameters: - *264 - *63 - - *712 + - *711 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -106173,7 +106036,7 @@ paths: - *116 - *118 - *117 - - *713 + - *712 - *119 responses: '200': @@ -106304,7 +106167,7 @@ paths: parameters: - *63 - *116 - - *714 + - *713 - *117 responses: '200': @@ -106403,9 +106266,9 @@ paths: - *116 - *118 - *117 - - *715 + - *714 - *119 - - *716 + - *715 responses: '200': description: Response when getting a billing usage summary @@ -106539,9 +106402,9 @@ paths: application/json: schema: type: array - items: *684 + items: *683 examples: - default: *685 + default: *684 headers: Link: *59 x-github: @@ -106571,9 +106434,9 @@ paths: application/json: schema: type: array - items: *686 + items: *685 examples: - default: *717 + default: *716 headers: Link: *59 x-github: @@ -106598,7 +106461,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 +106473,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 +106636,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 +106694,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 +106713,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 +106773,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 +107474,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 +107625,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 +107704,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 +107931,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 +108118,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 +108206,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 +108297,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *725 + deployment: *724 details_url: example: https://example.com type: string @@ -108519,10 +108382,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 +108776,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 +109174,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 +109581,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 +110555,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 +111247,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 +111933,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 +112247,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 +112655,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 +112926,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 +113263,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 +113542,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 +113788,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 +114104,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 +114362,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 +114445,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 +114466,7 @@ x-webhooks: enum: - tag - branch - repository: *723 + repository: *722 sender: *4 required: - ref @@ -114686,9 +114549,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 +114636,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 +114716,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 +114796,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 +114875,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 +114963,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 +115055,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 +115139,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 +115224,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 +115309,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 +115392,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 +115475,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 +115559,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 +115642,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 +115722,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 +115760,8 @@ x-webhooks: - verified - created_at - read_only - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -115975,11 +115838,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 +116398,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 +117144,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 +117223,7 @@ x-webhooks: type: string enum: - approved - approver: &734 + approver: &733 type: object properties: avatar_url: @@ -117403,11 +117266,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 +117349,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &736 + workflow_job_run: &735 type: object properties: conclusion: @@ -118217,18 +118080,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 +118795,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 +120690,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 +121375,7 @@ x-webhooks: type: string enum: - answered - answer: &740 + answer: &739 type: object properties: author_association: @@ -121669,11 +121532,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 +121663,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 +121750,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 +121836,7 @@ x-webhooks: type: string enum: - created - comment: &739 + comment: &738 type: object properties: author_association: @@ -122130,11 +121993,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 +122080,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 +122180,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 +122269,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 +122355,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 +122459,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 +122545,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 +122580,8 @@ x-webhooks: - color - default - description - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -122801,11 +122664,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 +122750,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 +122836,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 +122925,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 +123017,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 +123102,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 +123190,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 +123276,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 +123353,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 +124013,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 +124161,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 +124200,7 @@ x-webhooks: - action - sha - html_url - repository: *723 + repository: *722 sender: *4 required: - pages @@ -124413,10 +124276,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 +124305,8 @@ x-webhooks: - name - full_name - private - repository: *723 - requester: *742 + repository: *722 + requester: *741 sender: *4 required: - action @@ -124518,11 +124381,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 +124461,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 +124541,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 +124590,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 +124677,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 +124707,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 +124788,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 +124970,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 +125052,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 +125316,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 +126106,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 +126456,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -126674,7 +126537,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 +126710,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 +127496,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 +127848,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -128066,7 +127929,7 @@ x-webhooks: type: string enum: - edited - changes: &775 + changes: &774 description: The changes to the comment. type: object properties: @@ -128078,9 +127941,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 +128731,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 +129081,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -129300,9 +129163,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 +129955,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 +130307,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -130525,9 +130388,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 +131180,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 +131532,8 @@ x-webhooks: - state - locked - assignee - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -131759,9 +131622,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 +131713,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 +131803,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 +131894,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 +131976,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 +132771,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 +132892,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -133110,8 +132973,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 +133771,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 +134027,8 @@ x-webhooks: required: - state - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -134244,8 +134107,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 +134896,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 +135016,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -135233,8 +135096,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 +135907,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 +136006,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 +136144,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -136381,8 +136244,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 +137037,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 +137158,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 +137240,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 +138032,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 +138153,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 +138235,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 +139051,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 +139149,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -139366,8 +139229,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 +140039,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 +140137,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 +141002,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 +141587,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 +142372,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 +142500,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -142718,9 +142581,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 +143369,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 +143489,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -143706,8 +143569,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 +144383,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 +144482,8 @@ x-webhooks: user_view_type: type: string type: *228 - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -145489,11 +145352,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 +145951,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 +146035,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 +146121,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &778 + assignee: &777 title: User type: object nullable: true @@ -146328,11 +146191,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 +146274,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 +146359,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 +147173,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 +147271,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -147489,11 +147352,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 +147435,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 +147520,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 +147602,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 +147716,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 +147802,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 +147887,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 +147968,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148185,10 +148048,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 +148134,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148353,10 +148216,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 +148301,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *723 + repository: *722 sender: *4 required: - action @@ -148519,8 +148382,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 +148465,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 +148547,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 +148654,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 +148758,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 +148841,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 +148923,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 +149003,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 +149226,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 +149307,7 @@ x-webhooks: required: - login - id - team: *752 + team: *751 required: - action - scope @@ -149526,8 +149389,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 +149409,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 +149503,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 +149579,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 +149688,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 +149778,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 +149861,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 +150000,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150217,11 +150080,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 +150194,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 +150278,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 +150361,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 +150444,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 +150527,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 +150636,8 @@ x-webhooks: - role - organization_url - user - organization: *722 - repository: *723 + organization: *721 + repository: *722 sender: *4 required: - action @@ -150852,11 +150715,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 +150798,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 +150915,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 +150996,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 +151087,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 +151168,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 +151669,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &759 + items: &758 title: Ruby Gems metadata type: object properties: @@ -151901,7 +151764,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -151977,9 +151840,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 +152195,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *759 + items: *758 source_url: type: string format: uri @@ -152402,7 +152265,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -152578,12 +152441,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 +152523,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 +152669,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 +152749,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 +152829,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 +152908,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 +153017,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 +153049,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 +153295,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 +153417,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -153635,11 +153498,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 +153582,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 +153712,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 +153807,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 +153905,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 +154097,7 @@ x-webhooks: type: string required: - after_id - repository: *723 + repository: *722 sender: *4 required: - action @@ -154314,10 +154177,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 +154304,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -154521,10 +154384,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 +154426,7 @@ x-webhooks: - name - created_at - updated_at - repository: *723 + repository: *722 sender: *4 required: - action @@ -154642,18 +154505,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 +154606,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 +154690,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 +154774,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 +154858,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 +154971,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 +155054,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 +155139,8 @@ x-webhooks: type: string enum: - closed - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155359,8 +155222,8 @@ x-webhooks: type: string enum: - created - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155442,8 +155305,8 @@ x-webhooks: type: string enum: - deleted - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155561,8 +155424,8 @@ x-webhooks: type: string to: type: string - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -155646,7 +155509,7 @@ x-webhooks: type: string enum: - archived - changes: &768 + changes: &767 type: object properties: archived_at: @@ -155660,9 +155523,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 +155660,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 +155744,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 +155827,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 +155935,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 +155957,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 +155991,8 @@ x-webhooks: oneOf: - type: string - type: integer + - *765 - *766 - - *767 required: - field_value - type: object @@ -156145,9 +156008,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 +156105,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 +156190,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 +156275,8 @@ x-webhooks: type: string enum: - reopened - installation: *721 - organization: *722 + installation: *720 + organization: *721 projects_v2: *262 sender: *4 required: @@ -156495,14 +156358,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 +156446,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 +156584,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 +156657,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 +156737,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 +159048,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -159267,11 +159130,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 +161434,7 @@ x-webhooks: - draft reason: type: string - repository: *723 + repository: *722 sender: *4 required: - action @@ -161653,11 +161516,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 +163820,7 @@ x-webhooks: - draft reason: type: string - repository: *723 + repository: *722 sender: *4 required: - action @@ -164039,11 +163902,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 +163970,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *723 + repository: *722 sender: *4 required: - action @@ -164188,12 +164051,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 +164136,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 +166425,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -166641,11 +166504,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 +168812,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *723 + repository: *722 sender: *4 required: - action @@ -169073,12 +168936,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 +169021,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 +171314,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -171531,11 +171394,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 +173702,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -173920,10 +173783,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 +176088,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -176305,12 +176168,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 +176252,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 +176338,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 +176423,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 +176794,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 +178988,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -179205,7 +179068,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 +179353,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 +181535,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -181752,11 +181615,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 +183802,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *723 + repository: *722 sender: *4 required: - action @@ -184020,9 +183883,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 +186080,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 +186327,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 +188383,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 +188617,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 +190927,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_reviewer: title: User type: object @@ -191148,12 +191011,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 +193328,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 +193520,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 +195832,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 requested_reviewer: title: User type: object @@ -196054,12 +195917,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 +198220,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 +198401,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 +200600,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 - review: *777 + repository: *722 + review: *776 sender: *4 required: - action @@ -200818,9 +200681,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 +202775,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 + repository: *722 sender: *4 thread: type: object @@ -203299,9 +203162,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 +205242,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *723 + repository: *722 sender: *4 thread: type: object @@ -205769,10 +205632,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 +207928,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -208147,11 +208010,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 +210319,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -210535,11 +210398,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 +212697,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -212915,10 +212778,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 +215068,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *723 + repository: *722 sender: *4 required: - action @@ -215405,7 +215268,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 +215360,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 +215947,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 +216395,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *759 + items: *758 summary: type: string tag_name: @@ -216586,7 +216449,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -216664,9 +216527,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 +216837,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *759 + items: *758 summary: type: string tag_name: @@ -217023,7 +216886,7 @@ x-webhooks: - owner - package_version - registry - repository: *723 + repository: *722 sender: *4 required: - action @@ -217100,10 +216963,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 +217284,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *723 + repository: *722 sender: *4 required: - action @@ -217498,11 +217361,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 +217482,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 +217564,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 +217888,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *723 + repository: *722 sender: *4 required: - action @@ -218101,10 +217964,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 +218286,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *723 + repository: *722 sender: *4 required: - action @@ -218499,11 +218362,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 +218442,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 +218522,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 +218602,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 +218682,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 +218762,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 +218843,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 +218930,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 +219045,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 +219120,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 +219204,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 +219284,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 +219381,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 +219464,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 +219546,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 +219628,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 +219936,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 +220017,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 +220098,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 +220220,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 +220429,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 +220510,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 +220713,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 +220794,7 @@ x-webhooks: type: string enum: - assigned - alert: &782 + alert: &781 type: object properties: number: *171 @@ -221050,10 +220913,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 +220994,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 +221079,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 +221321,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 +221403,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 +221485,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 +221567,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 +221650,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 +221780,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 +221861,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 +222048,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 +222125,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 +222313,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 +222394,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 +222700,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 +222793,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 +222875,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 +222959,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &787 + changes: &786 type: object properties: tier: @@ -223140,13 +223003,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 +223086,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 +223166,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 +223252,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 +223675,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 +223798,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 +223890,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 +223982,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 +224074,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 +224153,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 +224381,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 +224841,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -225054,9 +224917,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 +225377,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -225591,9 +225454,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 +225914,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -226195,9 +226058,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 +226518,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - changes @@ -226733,9 +226596,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 +227056,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *788 + team: *787 required: - action - team @@ -227269,10 +227132,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 +227208,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 +227299,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 +227618,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 +227960,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 +228177,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 +228396,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 +229400,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 +230389,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..2db7f0013 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", @@ -599936,427 +599963,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)", diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 8f69c66fe..522887a8a 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: @@ -88357,7 +88374,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 +89425,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 +89859,7 @@ paths: type: array items: *653 examples: - default: &826 + default: &825 value: - id: 1 repository: @@ -104294,7 +104311,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &929 + items: &928 type: object properties: type: @@ -106507,160 +106524,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 +106620,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 +106632,7 @@ paths: required: - names examples: - default: &766 + default: &765 value: names: - octocat @@ -106824,9 +106687,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *764 examples: - default: *766 + default: *765 '404': *6 '422': *7 x-github: @@ -106849,7 +106712,7 @@ paths: parameters: - *462 - *463 - - &767 + - &766 name: per description: The time frame to display results for. in: query @@ -106878,7 +106741,7 @@ paths: example: 128 clones: type: array - items: &768 + items: &767 title: Traffic type: object properties: @@ -107119,7 +106982,7 @@ paths: parameters: - *462 - *463 - - *767 + - *766 responses: '200': description: Response @@ -107138,7 +107001,7 @@ paths: example: 3782 views: type: array - items: *768 + items: *767 required: - uniques - count @@ -107810,7 +107673,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 +107682,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 +107693,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 +107735,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &771 + items: &770 allOf: - type: object required: @@ -107947,7 +107810,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 +107870,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 +107917,7 @@ paths: required: true content: application/json: - schema: &779 + schema: &778 type: object required: - schemas @@ -108114,9 +107977,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 +107998,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 +108021,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 +108029,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 +108063,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 +108095,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 +108129,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 +108195,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 +108221,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 +108265,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' + - *780 - *781 - - *782 - *41 responses: '200': @@ -108436,7 +108299,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &785 + items: &784 allOf: - type: object required: @@ -108515,7 +108378,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 +108434,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 +108471,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 +108499,7 @@ paths: required: true content: application/json: - schema: &788 + schema: &787 type: object required: - schemas @@ -108718,9 +108581,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 +108630,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 +108658,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 +108681,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 +108694,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 @@ -108861,30 +108724,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 @@ -108919,13 +108782,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 +108828,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 +108859,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 +108956,7 @@ paths: example: 1 Resources: type: array - items: &791 + items: &790 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -109324,22 +109187,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 +109228,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 +109253,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 +109361,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 +109395,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 +109519,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 +109622,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 +109760,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &795 + text_matches: &794 title: Search Result Text Matches type: array items: @@ -110060,7 +109923,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 +110051,7 @@ paths: type: number node_id: type: string - text_matches: *795 + text_matches: *794 required: - sha - node_id @@ -110381,7 +110244,7 @@ paths: - interactions - created - updated - - *796 + - *795 - *17 - *19 - name: advanced_search @@ -110478,11 +110341,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 +110377,7 @@ paths: type: string format: date-time nullable: true - text_matches: *795 + text_matches: *794 pull_request: type: object properties: @@ -110747,7 +110610,7 @@ paths: enum: - created - updated - - *796 + - *795 - *17 - *19 responses: @@ -110791,7 +110654,7 @@ paths: nullable: true score: type: number - text_matches: *795 + text_matches: *794 required: - id - node_id @@ -110877,7 +110740,7 @@ paths: - forks - help-wanted-issues - updated - - *796 + - *795 - *17 - *19 responses: @@ -111125,7 +110988,7 @@ paths: - admin - pull - push - text_matches: *795 + text_matches: *794 temp_clone_token: type: string allow_merge_commit: @@ -111426,7 +111289,7 @@ paths: type: string format: uri nullable: true - text_matches: *795 + text_matches: *794 related: type: array nullable: true @@ -111619,7 +111482,7 @@ paths: - followers - repositories - joined - - *796 + - *795 - *17 - *19 responses: @@ -111723,7 +111586,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *795 + text_matches: *794 blog: type: string nullable: true @@ -111802,7 +111665,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 +111706,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 +111806,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 +111835,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 +111873,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 +111924,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 +111961,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 +112001,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 +112038,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 +112047,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 +112080,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 +112108,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 +112142,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 +112170,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 +112212,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 +112220,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 +112371,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 +112423,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 +112454,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 +112489,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 +112577,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 +112589,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 +112622,7 @@ paths: application/json: schema: oneOf: - - &806 + - &805 title: Private User description: Private User type: object @@ -112962,7 +112825,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 +112978,7 @@ paths: description: Response content: application/json: - schema: *806 + schema: *805 examples: default: value: @@ -113513,7 +113376,7 @@ paths: type: integer secrets: type: array - items: &807 + items: &806 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -113629,7 +113492,7 @@ paths: description: Response content: application/json: - schema: *807 + schema: *806 examples: default: value: @@ -113775,7 +113638,7 @@ paths: type: array items: *288 examples: - default: *808 + default: *807 '401': *25 '403': *29 '404': *6 @@ -114042,7 +113905,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 +113946,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 +113991,9 @@ paths: description: Response content: application/json: - schema: *809 + schema: *808 examples: - default: *810 + default: *809 '404': *6 x-github: githubCloudOnly: false @@ -114167,9 +114030,9 @@ paths: type: integer machines: type: array - items: *811 + items: *810 examples: - default: *812 + default: *811 '304': *37 '500': *40 '401': *25 @@ -115108,7 +114971,7 @@ paths: type: array items: *392 examples: - default: &823 + default: &822 value: - id: 197 name: hello_docker @@ -115209,7 +115072,7 @@ paths: application/json: schema: type: array - items: &813 + items: &812 title: Email description: Email type: object @@ -115274,9 +115137,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 +115214,7 @@ paths: application/json: schema: type: array - items: *813 + items: *812 examples: default: value: @@ -115607,7 +115470,7 @@ paths: application/json: schema: type: array - items: &814 + items: &813 title: GPG Key description: A unique encryption key type: object @@ -115738,7 +115601,7 @@ paths: - subkeys - revoked examples: - default: &841 + default: &840 value: - id: 3 name: Octocat's GPG Key @@ -115823,9 +115686,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 +115745,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 +115757,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *813 examples: - default: *815 + default: *814 '404': *6 '304': *37 '403': *29 @@ -115919,7 +115782,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 +116239,7 @@ paths: application/json: schema: type: array - items: &817 + items: &816 title: Key description: Key type: object @@ -116477,9 +116340,9 @@ paths: description: Response content: application/json: - schema: *817 + schema: *816 examples: - default: &818 + default: &817 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -116518,9 +116381,9 @@ paths: description: Response content: application/json: - schema: *817 + schema: *816 examples: - default: *818 + default: *817 '404': *6 '304': *37 '403': *29 @@ -116576,7 +116439,7 @@ paths: application/json: schema: type: array - items: &819 + items: &818 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -116644,7 +116507,7 @@ paths: - account - plan examples: - default: &820 + default: &819 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -116706,9 +116569,9 @@ paths: application/json: schema: type: array - items: *819 + items: *818 examples: - default: *820 + default: *819 headers: Link: *47 '304': *37 @@ -117717,7 +117580,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 +117695,7 @@ paths: - docker - nuget - container - - *822 + - *821 - *19 - *17 responses: @@ -117844,8 +117707,8 @@ paths: type: array items: *392 examples: - default: *823 - '400': *824 + default: *822 + '400': *823 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117874,7 +117737,7 @@ paths: application/json: schema: *392 examples: - default: &842 + default: &841 value: id: 40201 name: octo-name @@ -118236,9 +118099,9 @@ paths: application/json: schema: type: array - items: *813 + items: *812 examples: - default: *825 + default: *824 headers: Link: *47 '304': *37 @@ -118351,7 +118214,7 @@ paths: type: array items: *78 examples: - default: &832 + default: &831 summary: Default response value: - id: 1296269 @@ -118697,7 +118560,7 @@ paths: type: array items: *653 examples: - default: *826 + default: *825 headers: Link: *47 '304': *37 @@ -118776,7 +118639,7 @@ paths: application/json: schema: type: array - items: &827 + items: &826 title: Social account description: Social media account type: object @@ -118791,7 +118654,7 @@ paths: - provider - url examples: - default: &828 + default: &827 value: - provider: twitter url: https://twitter.com/github @@ -118853,9 +118716,9 @@ paths: application/json: schema: type: array - items: *827 + items: *826 examples: - default: *828 + default: *827 '422': *15 '304': *37 '404': *6 @@ -118942,7 +118805,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 +118825,7 @@ paths: - title - created_at examples: - default: &856 + default: &855 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -119026,9 +118889,9 @@ paths: description: Response content: application/json: - schema: *829 + schema: *828 examples: - default: &830 + default: &829 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -119058,7 +118921,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 +118933,9 @@ paths: description: Response content: application/json: - schema: *829 + schema: *828 examples: - default: *830 + default: *829 '404': *6 '304': *37 '403': *29 @@ -119095,7 +118958,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 +118987,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 +119012,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 +119385,10 @@ paths: application/json: schema: oneOf: - - *806 - *805 + - *804 examples: - default-response: &836 + default-response: &835 summary: Default response value: login: octocat @@ -119560,7 +119423,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 +119480,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 +119546,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 +119581,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 +119653,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 +119705,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 +119759,8 @@ paths: required: - subject_digests examples: - default: *838 - withPredicateType: *839 + default: *837 + withPredicateType: *838 responses: '200': description: Response @@ -119950,7 +119813,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 +120059,7 @@ paths: type: array items: *392 examples: - default: *823 + default: *822 '403': *29 '401': *25 x-github: @@ -120580,9 +120443,9 @@ paths: application/json: schema: type: array - items: *814 + items: *813 examples: - default: *841 + default: *840 headers: Link: *47 x-github: @@ -120810,7 +120673,7 @@ paths: - docker - nuget - container - - *822 + - *821 - *143 - *19 - *17 @@ -120823,10 +120686,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 +120719,7 @@ paths: application/json: schema: *392 examples: - default: *842 + default: *841 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121205,7 +121068,7 @@ paths: type: array items: *414 examples: - default: *843 + default: *842 headers: Link: *47 '304': *37 @@ -121265,7 +121128,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 +121144,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *845 + iteration_configuration: *844 required: - name - data_type @@ -121303,8 +121166,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 +121175,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 +121201,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 +121210,7 @@ paths: application/json: schema: *414 examples: - default: *854 + default: *853 headers: Link: *47 '304': *37 @@ -121701,7 +121564,7 @@ paths: parameters: - *410 - *143 - - *855 + - *854 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -121980,9 +121843,9 @@ paths: application/json: schema: type: array - items: *827 + items: *826 examples: - default: *828 + default: *827 headers: Link: *47 x-github: @@ -122012,9 +121875,9 @@ paths: application/json: schema: type: array - items: *829 + items: *828 examples: - default: *856 + default: *855 headers: Link: *47 x-github: @@ -122039,7 +121902,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 +121914,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 +122077,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 +122135,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 +122154,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 +122214,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 +122915,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 +123066,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 +123145,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 +123372,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 +123559,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 +123636,7 @@ x-webhooks: required: true content: application/json: - schema: &885 + schema: &884 title: Exemption request cancellation event type: object properties: @@ -123781,11 +123644,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 +123917,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 +124027,7 @@ x-webhooks: required: true content: application/json: - schema: &886 + schema: &885 title: Exemption request completed event type: object properties: @@ -124172,11 +124035,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 +124111,7 @@ x-webhooks: required: true content: application/json: - schema: &883 + schema: &882 title: Exemption request created event type: object properties: @@ -124256,11 +124119,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 +124195,7 @@ x-webhooks: required: true content: application/json: - schema: &887 + schema: &886 title: Exemption response dismissed event type: object properties: @@ -124340,12 +124203,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 +124282,7 @@ x-webhooks: required: true content: application/json: - schema: &884 + schema: &883 title: Exemption response submitted event type: object properties: @@ -124427,12 +124290,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 +124379,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 +124470,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *866 + deployment: *865 details_url: example: https://example.com type: string @@ -124692,10 +124555,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 +124949,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 +125347,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 +125754,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 +126728,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 +127420,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 +128106,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 +128420,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 +128828,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 +129099,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 +129436,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 +129715,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 +129961,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 +130277,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 +130535,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 +130618,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 +130639,7 @@ x-webhooks: enum: - tag - branch - repository: *862 + repository: *861 sender: *4 required: - ref @@ -130859,9 +130722,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 +130809,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 +130889,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 +130969,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 +131048,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 +131136,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 +131228,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 +131312,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 +131397,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 +131482,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 +131565,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 +131648,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 +131732,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 +131815,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 +131895,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 +131933,8 @@ x-webhooks: - verified - created_at - read_only - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -132148,11 +132011,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 +132571,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 +133317,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 +133396,7 @@ x-webhooks: type: string enum: - approved - approver: &875 + approver: &874 type: object properties: avatar_url: @@ -133576,11 +133439,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 +133522,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &877 + workflow_job_run: &876 type: object properties: conclusion: @@ -134390,18 +134253,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 +134968,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 +136863,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 +137548,7 @@ x-webhooks: type: string enum: - answered - answer: &881 + answer: &880 type: object properties: author_association: @@ -137842,11 +137705,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 +137836,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 +137923,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 +138009,7 @@ x-webhooks: type: string enum: - created - comment: &880 + comment: &879 type: object properties: author_association: @@ -138303,11 +138166,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 +138253,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 +138353,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 +138442,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 +138528,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 +138632,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 +138718,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 +138753,8 @@ x-webhooks: - color - default - description - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138974,11 +138837,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 +138923,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 +139009,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 +139098,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 +139190,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 +139275,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 +139363,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 +139449,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 +139522,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 +139585,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 +139648,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 +139711,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 +139774,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 +139840,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 +139906,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 +139972,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 +140038,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 +140104,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 +140169,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 +140234,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 +140299,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 +140364,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 +140430,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 +140497,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 +141157,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 +141305,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 +141344,7 @@ x-webhooks: - action - sha - html_url - repository: *862 + repository: *861 sender: *4 required: - pages @@ -141557,10 +141420,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 +141449,8 @@ x-webhooks: - name - full_name - private - repository: *862 - requester: *888 + repository: *861 + requester: *887 sender: *4 required: - action @@ -141662,11 +141525,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 +141605,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 +141685,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 +141734,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 +141821,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 +141851,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 +141932,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 +142115,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 +142197,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 +142461,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 +143251,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 +143601,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -143819,7 +143682,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 +143855,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 +144641,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 +144993,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -145211,7 +145074,7 @@ x-webhooks: type: string enum: - edited - changes: &921 + changes: &920 description: The changes to the comment. type: object properties: @@ -145223,9 +145086,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 +145876,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 +146226,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -146445,9 +146308,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 +147100,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 +147452,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -147670,9 +147533,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 +148325,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 +148677,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -148904,9 +148767,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 +148858,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 +148948,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 +149039,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 +149121,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 +149916,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 +150037,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -150255,8 +150118,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 +150916,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 +151172,8 @@ x-webhooks: required: - state - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -151389,8 +151252,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 +152041,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 +152161,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152378,8 +152241,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 +153052,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 +153151,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 +153289,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153526,8 +153389,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 +154182,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 +154303,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 +154385,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 +155177,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 +155298,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 +155380,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 +156196,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 +156294,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -156511,8 +156374,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 +157184,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 +157282,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 +158147,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 +158732,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 +159517,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 +159645,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -159863,9 +159726,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 +160514,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 +160634,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -160851,8 +160714,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 +161528,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 +161627,8 @@ x-webhooks: user_view_type: type: string type: *376 - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -162634,11 +162497,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 +163096,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 +163180,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 +163266,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &924 + assignee: &923 title: User type: object nullable: true @@ -163473,11 +163336,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 +163419,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 +163504,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 +164318,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 +164416,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164634,11 +164497,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 +164580,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 +164665,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 +164747,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 +164861,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 +164947,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 +165032,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 +165113,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165330,10 +165193,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 +165279,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165498,10 +165361,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 +165446,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165664,8 +165527,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 +165610,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 +165692,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 +165799,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 +165903,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 +165986,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 +166068,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 +166148,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 +166371,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 +166452,7 @@ x-webhooks: required: - login - id - team: *898 + team: *897 required: - action - scope @@ -166671,8 +166534,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 +166554,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 +166648,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 +166724,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 +166833,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 +166923,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 +167006,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 +167145,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167362,11 +167225,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 +167339,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 +167423,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 +167506,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 +167589,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 +167669,7 @@ x-webhooks: enum: - created definition: *151 - enterprise: *859 + enterprise: *858 sender: *4 required: - action @@ -167886,8 +167749,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 +167823,8 @@ x-webhooks: enum: - updated definition: *151 - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 sender: *4 required: - action @@ -168033,9 +167896,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 +167986,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 +168095,8 @@ x-webhooks: - role - organization_url - user - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168311,11 +168174,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 +168257,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 +168374,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 +168455,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 +168546,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 +168628,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 +169129,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &905 + items: &904 title: Ruby Gems metadata type: object properties: @@ -169361,7 +169224,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -169438,9 +169301,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 +169656,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *905 + items: *904 source_url: type: string format: uri @@ -169863,7 +169726,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -170039,12 +169902,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 +169984,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 +170130,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 +170210,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 +170290,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 +170369,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 +170478,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 +170510,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 +170756,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 +170878,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -171096,11 +170959,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 +171043,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 +171173,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 +171268,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 +171366,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 +171558,7 @@ x-webhooks: type: string required: - after_id - repository: *862 + repository: *861 sender: *4 required: - action @@ -171775,10 +171638,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 +171765,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -171982,10 +171845,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 +171887,7 @@ x-webhooks: - name - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -172103,18 +171966,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 +172067,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 +172151,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 +172235,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 +172319,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 +172432,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 +172515,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 +172600,8 @@ x-webhooks: type: string enum: - closed - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -172820,8 +172683,8 @@ x-webhooks: type: string enum: - created - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -172903,8 +172766,8 @@ x-webhooks: type: string enum: - deleted - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173022,8 +172885,8 @@ x-webhooks: type: string to: type: string - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173107,7 +172970,7 @@ x-webhooks: type: string enum: - archived - changes: &914 + changes: &913 type: object properties: archived_at: @@ -173121,9 +172984,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 +173121,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 +173205,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 +173288,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 +173396,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 +173418,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 +173452,8 @@ x-webhooks: oneOf: - type: string - type: integer + - *911 - *912 - - *913 required: - field_value - type: object @@ -173606,9 +173469,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 +173566,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 +173651,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 +173736,8 @@ x-webhooks: type: string enum: - reopened - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173956,14 +173819,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 +173907,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 +174045,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 +174118,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 +174198,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 +176509,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -176728,11 +176591,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 +178895,7 @@ x-webhooks: - draft reason: type: string - repository: *862 + repository: *861 sender: *4 required: - action @@ -179114,11 +178977,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 +181281,7 @@ x-webhooks: - draft reason: type: string - repository: *862 + repository: *861 sender: *4 required: - action @@ -181500,11 +181363,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 +181431,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *862 + repository: *861 sender: *4 required: - action @@ -181649,12 +181512,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 +181597,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 +183886,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -184102,11 +183965,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 +186273,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *862 + repository: *861 sender: *4 required: - action @@ -186534,12 +186397,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 +186482,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 +188775,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -188992,11 +188855,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 +191163,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -191381,10 +191244,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 +193549,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -193766,12 +193629,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 +193713,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 +193799,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 +193884,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 +194255,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 +196449,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -196666,7 +196529,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 +196814,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 +198996,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -199213,11 +199076,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 +201263,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -201481,9 +201344,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 +203541,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 +203788,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 +205844,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 +206078,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 +208388,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_reviewer: title: User type: object @@ -208609,12 +208472,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 +210789,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 +210981,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 +213293,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_reviewer: title: User type: object @@ -213515,12 +213378,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 +215681,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 +215862,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 +218061,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 - review: *923 + repository: *861 + review: *922 sender: *4 required: - action @@ -218279,9 +218142,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 +220236,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 + repository: *861 sender: *4 thread: type: object @@ -220760,9 +220623,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 +222703,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 + repository: *861 sender: *4 thread: type: object @@ -223230,10 +223093,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 +225389,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -225608,11 +225471,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 +227780,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -227996,11 +227859,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 +230158,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -230376,10 +230239,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 +232529,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -232866,7 +232729,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 +232821,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 +233408,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 +233856,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *905 + items: *904 summary: type: string tag_name: @@ -234047,7 +233910,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -234125,9 +233988,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 +234298,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *905 + items: *904 summary: type: string tag_name: @@ -234484,7 +234347,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -234561,10 +234424,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 +234745,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *862 + repository: *861 sender: *4 required: - action @@ -234959,11 +234822,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 +234943,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 +235025,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 +235349,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *862 + repository: *861 sender: *4 required: - action @@ -235562,10 +235425,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 +235747,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *862 + repository: *861 sender: *4 required: - action @@ -235960,11 +235823,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 +235903,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 +235983,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 +236063,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 +236143,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 +236223,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 +236304,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 +236391,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 +236506,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 +236581,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 +236665,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 +236745,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 +236842,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 +236925,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 +237007,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 +237089,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 +237397,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 +237478,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 +237559,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 +237681,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 +237890,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 +237971,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 +238174,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 +238255,7 @@ x-webhooks: type: string enum: - assigned - alert: &928 + alert: &927 type: object properties: number: *128 @@ -238511,10 +238374,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 +238455,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 +238540,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 +238782,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 +238864,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 +238946,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 +239028,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 +239111,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 +239241,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 +239322,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 +239509,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 +239586,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 +239774,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 +239855,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 +240161,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 +240254,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 +240336,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 +240420,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &933 + changes: &932 type: object properties: tier: @@ -240601,13 +240464,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 +240547,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 +240627,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 +240713,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 +241136,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 +241259,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 +241351,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 +241443,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 +241535,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 +241614,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 +241842,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 +242302,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -242515,9 +242378,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 +242838,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -243052,9 +242915,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 +243375,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -243656,9 +243519,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 +243979,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - changes @@ -244194,9 +244057,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 +244517,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -244730,10 +244593,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 +244669,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 +244760,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 +245079,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 +245421,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 +245638,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 +245857,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 +246861,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 +247850,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..2db7f0013 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", @@ -599936,427 +599963,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)", diff --git a/descriptions/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index 8f69c66fe..522887a8a 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: @@ -88357,7 +88374,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 +89425,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 +89859,7 @@ paths: type: array items: *653 examples: - default: &826 + default: &825 value: - id: 1 repository: @@ -104294,7 +104311,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &929 + items: &928 type: object properties: type: @@ -106507,160 +106524,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 +106620,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 +106632,7 @@ paths: required: - names examples: - default: &766 + default: &765 value: names: - octocat @@ -106824,9 +106687,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *764 examples: - default: *766 + default: *765 '404': *6 '422': *7 x-github: @@ -106849,7 +106712,7 @@ paths: parameters: - *462 - *463 - - &767 + - &766 name: per description: The time frame to display results for. in: query @@ -106878,7 +106741,7 @@ paths: example: 128 clones: type: array - items: &768 + items: &767 title: Traffic type: object properties: @@ -107119,7 +106982,7 @@ paths: parameters: - *462 - *463 - - *767 + - *766 responses: '200': description: Response @@ -107138,7 +107001,7 @@ paths: example: 3782 views: type: array - items: *768 + items: *767 required: - uniques - count @@ -107810,7 +107673,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 +107682,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 +107693,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 +107735,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &771 + items: &770 allOf: - type: object required: @@ -107947,7 +107810,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 +107870,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 +107917,7 @@ paths: required: true content: application/json: - schema: &779 + schema: &778 type: object required: - schemas @@ -108114,9 +107977,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 +107998,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 +108021,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 +108029,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 +108063,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 +108095,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 +108129,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 +108195,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 +108221,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 +108265,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' + - *780 - *781 - - *782 - *41 responses: '200': @@ -108436,7 +108299,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &785 + items: &784 allOf: - type: object required: @@ -108515,7 +108378,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 +108434,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 +108471,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 +108499,7 @@ paths: required: true content: application/json: - schema: &788 + schema: &787 type: object required: - schemas @@ -108718,9 +108581,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 +108630,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 +108658,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 +108681,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 +108694,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 @@ -108861,30 +108724,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 @@ -108919,13 +108782,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 +108828,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 +108859,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 +108956,7 @@ paths: example: 1 Resources: type: array - items: &791 + items: &790 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -109324,22 +109187,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 +109228,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 +109253,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 +109361,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 +109395,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 +109519,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 +109622,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 +109760,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &795 + text_matches: &794 title: Search Result Text Matches type: array items: @@ -110060,7 +109923,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 +110051,7 @@ paths: type: number node_id: type: string - text_matches: *795 + text_matches: *794 required: - sha - node_id @@ -110381,7 +110244,7 @@ paths: - interactions - created - updated - - *796 + - *795 - *17 - *19 - name: advanced_search @@ -110478,11 +110341,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 +110377,7 @@ paths: type: string format: date-time nullable: true - text_matches: *795 + text_matches: *794 pull_request: type: object properties: @@ -110747,7 +110610,7 @@ paths: enum: - created - updated - - *796 + - *795 - *17 - *19 responses: @@ -110791,7 +110654,7 @@ paths: nullable: true score: type: number - text_matches: *795 + text_matches: *794 required: - id - node_id @@ -110877,7 +110740,7 @@ paths: - forks - help-wanted-issues - updated - - *796 + - *795 - *17 - *19 responses: @@ -111125,7 +110988,7 @@ paths: - admin - pull - push - text_matches: *795 + text_matches: *794 temp_clone_token: type: string allow_merge_commit: @@ -111426,7 +111289,7 @@ paths: type: string format: uri nullable: true - text_matches: *795 + text_matches: *794 related: type: array nullable: true @@ -111619,7 +111482,7 @@ paths: - followers - repositories - joined - - *796 + - *795 - *17 - *19 responses: @@ -111723,7 +111586,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *795 + text_matches: *794 blog: type: string nullable: true @@ -111802,7 +111665,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 +111706,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 +111806,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 +111835,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 +111873,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 +111924,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 +111961,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 +112001,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 +112038,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 +112047,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 +112080,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 +112108,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 +112142,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 +112170,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 +112212,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 +112220,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 +112371,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 +112423,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 +112454,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 +112489,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 +112577,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 +112589,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 +112622,7 @@ paths: application/json: schema: oneOf: - - &806 + - &805 title: Private User description: Private User type: object @@ -112962,7 +112825,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 +112978,7 @@ paths: description: Response content: application/json: - schema: *806 + schema: *805 examples: default: value: @@ -113513,7 +113376,7 @@ paths: type: integer secrets: type: array - items: &807 + items: &806 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -113629,7 +113492,7 @@ paths: description: Response content: application/json: - schema: *807 + schema: *806 examples: default: value: @@ -113775,7 +113638,7 @@ paths: type: array items: *288 examples: - default: *808 + default: *807 '401': *25 '403': *29 '404': *6 @@ -114042,7 +113905,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 +113946,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 +113991,9 @@ paths: description: Response content: application/json: - schema: *809 + schema: *808 examples: - default: *810 + default: *809 '404': *6 x-github: githubCloudOnly: false @@ -114167,9 +114030,9 @@ paths: type: integer machines: type: array - items: *811 + items: *810 examples: - default: *812 + default: *811 '304': *37 '500': *40 '401': *25 @@ -115108,7 +114971,7 @@ paths: type: array items: *392 examples: - default: &823 + default: &822 value: - id: 197 name: hello_docker @@ -115209,7 +115072,7 @@ paths: application/json: schema: type: array - items: &813 + items: &812 title: Email description: Email type: object @@ -115274,9 +115137,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 +115214,7 @@ paths: application/json: schema: type: array - items: *813 + items: *812 examples: default: value: @@ -115607,7 +115470,7 @@ paths: application/json: schema: type: array - items: &814 + items: &813 title: GPG Key description: A unique encryption key type: object @@ -115738,7 +115601,7 @@ paths: - subkeys - revoked examples: - default: &841 + default: &840 value: - id: 3 name: Octocat's GPG Key @@ -115823,9 +115686,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 +115745,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 +115757,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *813 examples: - default: *815 + default: *814 '404': *6 '304': *37 '403': *29 @@ -115919,7 +115782,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 +116239,7 @@ paths: application/json: schema: type: array - items: &817 + items: &816 title: Key description: Key type: object @@ -116477,9 +116340,9 @@ paths: description: Response content: application/json: - schema: *817 + schema: *816 examples: - default: &818 + default: &817 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -116518,9 +116381,9 @@ paths: description: Response content: application/json: - schema: *817 + schema: *816 examples: - default: *818 + default: *817 '404': *6 '304': *37 '403': *29 @@ -116576,7 +116439,7 @@ paths: application/json: schema: type: array - items: &819 + items: &818 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -116644,7 +116507,7 @@ paths: - account - plan examples: - default: &820 + default: &819 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -116706,9 +116569,9 @@ paths: application/json: schema: type: array - items: *819 + items: *818 examples: - default: *820 + default: *819 headers: Link: *47 '304': *37 @@ -117717,7 +117580,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 +117695,7 @@ paths: - docker - nuget - container - - *822 + - *821 - *19 - *17 responses: @@ -117844,8 +117707,8 @@ paths: type: array items: *392 examples: - default: *823 - '400': *824 + default: *822 + '400': *823 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117874,7 +117737,7 @@ paths: application/json: schema: *392 examples: - default: &842 + default: &841 value: id: 40201 name: octo-name @@ -118236,9 +118099,9 @@ paths: application/json: schema: type: array - items: *813 + items: *812 examples: - default: *825 + default: *824 headers: Link: *47 '304': *37 @@ -118351,7 +118214,7 @@ paths: type: array items: *78 examples: - default: &832 + default: &831 summary: Default response value: - id: 1296269 @@ -118697,7 +118560,7 @@ paths: type: array items: *653 examples: - default: *826 + default: *825 headers: Link: *47 '304': *37 @@ -118776,7 +118639,7 @@ paths: application/json: schema: type: array - items: &827 + items: &826 title: Social account description: Social media account type: object @@ -118791,7 +118654,7 @@ paths: - provider - url examples: - default: &828 + default: &827 value: - provider: twitter url: https://twitter.com/github @@ -118853,9 +118716,9 @@ paths: application/json: schema: type: array - items: *827 + items: *826 examples: - default: *828 + default: *827 '422': *15 '304': *37 '404': *6 @@ -118942,7 +118805,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 +118825,7 @@ paths: - title - created_at examples: - default: &856 + default: &855 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -119026,9 +118889,9 @@ paths: description: Response content: application/json: - schema: *829 + schema: *828 examples: - default: &830 + default: &829 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -119058,7 +118921,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 +118933,9 @@ paths: description: Response content: application/json: - schema: *829 + schema: *828 examples: - default: *830 + default: *829 '404': *6 '304': *37 '403': *29 @@ -119095,7 +118958,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 +118987,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 +119012,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 +119385,10 @@ paths: application/json: schema: oneOf: - - *806 - *805 + - *804 examples: - default-response: &836 + default-response: &835 summary: Default response value: login: octocat @@ -119560,7 +119423,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 +119480,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 +119546,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 +119581,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 +119653,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 +119705,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 +119759,8 @@ paths: required: - subject_digests examples: - default: *838 - withPredicateType: *839 + default: *837 + withPredicateType: *838 responses: '200': description: Response @@ -119950,7 +119813,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 +120059,7 @@ paths: type: array items: *392 examples: - default: *823 + default: *822 '403': *29 '401': *25 x-github: @@ -120580,9 +120443,9 @@ paths: application/json: schema: type: array - items: *814 + items: *813 examples: - default: *841 + default: *840 headers: Link: *47 x-github: @@ -120810,7 +120673,7 @@ paths: - docker - nuget - container - - *822 + - *821 - *143 - *19 - *17 @@ -120823,10 +120686,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 +120719,7 @@ paths: application/json: schema: *392 examples: - default: *842 + default: *841 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121205,7 +121068,7 @@ paths: type: array items: *414 examples: - default: *843 + default: *842 headers: Link: *47 '304': *37 @@ -121265,7 +121128,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 +121144,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *845 + iteration_configuration: *844 required: - name - data_type @@ -121303,8 +121166,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 +121175,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 +121201,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 +121210,7 @@ paths: application/json: schema: *414 examples: - default: *854 + default: *853 headers: Link: *47 '304': *37 @@ -121701,7 +121564,7 @@ paths: parameters: - *410 - *143 - - *855 + - *854 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -121980,9 +121843,9 @@ paths: application/json: schema: type: array - items: *827 + items: *826 examples: - default: *828 + default: *827 headers: Link: *47 x-github: @@ -122012,9 +121875,9 @@ paths: application/json: schema: type: array - items: *829 + items: *828 examples: - default: *856 + default: *855 headers: Link: *47 x-github: @@ -122039,7 +121902,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 +121914,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 +122077,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 +122135,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 +122154,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 +122214,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 +122915,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 +123066,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 +123145,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 +123372,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 +123559,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 +123636,7 @@ x-webhooks: required: true content: application/json: - schema: &885 + schema: &884 title: Exemption request cancellation event type: object properties: @@ -123781,11 +123644,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 +123917,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 +124027,7 @@ x-webhooks: required: true content: application/json: - schema: &886 + schema: &885 title: Exemption request completed event type: object properties: @@ -124172,11 +124035,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 +124111,7 @@ x-webhooks: required: true content: application/json: - schema: &883 + schema: &882 title: Exemption request created event type: object properties: @@ -124256,11 +124119,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 +124195,7 @@ x-webhooks: required: true content: application/json: - schema: &887 + schema: &886 title: Exemption response dismissed event type: object properties: @@ -124340,12 +124203,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 +124282,7 @@ x-webhooks: required: true content: application/json: - schema: &884 + schema: &883 title: Exemption response submitted event type: object properties: @@ -124427,12 +124290,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 +124379,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 +124470,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *866 + deployment: *865 details_url: example: https://example.com type: string @@ -124692,10 +124555,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 +124949,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 +125347,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 +125754,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 +126728,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 +127420,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 +128106,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 +128420,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 +128828,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 +129099,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 +129436,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 +129715,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 +129961,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 +130277,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 +130535,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 +130618,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 +130639,7 @@ x-webhooks: enum: - tag - branch - repository: *862 + repository: *861 sender: *4 required: - ref @@ -130859,9 +130722,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 +130809,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 +130889,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 +130969,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 +131048,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 +131136,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 +131228,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 +131312,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 +131397,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 +131482,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 +131565,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 +131648,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 +131732,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 +131815,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 +131895,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 +131933,8 @@ x-webhooks: - verified - created_at - read_only - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -132148,11 +132011,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 +132571,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 +133317,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 +133396,7 @@ x-webhooks: type: string enum: - approved - approver: &875 + approver: &874 type: object properties: avatar_url: @@ -133576,11 +133439,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 +133522,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &877 + workflow_job_run: &876 type: object properties: conclusion: @@ -134390,18 +134253,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 +134968,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 +136863,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 +137548,7 @@ x-webhooks: type: string enum: - answered - answer: &881 + answer: &880 type: object properties: author_association: @@ -137842,11 +137705,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 +137836,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 +137923,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 +138009,7 @@ x-webhooks: type: string enum: - created - comment: &880 + comment: &879 type: object properties: author_association: @@ -138303,11 +138166,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 +138253,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 +138353,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 +138442,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 +138528,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 +138632,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 +138718,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 +138753,8 @@ x-webhooks: - color - default - description - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -138974,11 +138837,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 +138923,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 +139009,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 +139098,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 +139190,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 +139275,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 +139363,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 +139449,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 +139522,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 +139585,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 +139648,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 +139711,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 +139774,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 +139840,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 +139906,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 +139972,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 +140038,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 +140104,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 +140169,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 +140234,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 +140299,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 +140364,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 +140430,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 +140497,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 +141157,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 +141305,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 +141344,7 @@ x-webhooks: - action - sha - html_url - repository: *862 + repository: *861 sender: *4 required: - pages @@ -141557,10 +141420,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 +141449,8 @@ x-webhooks: - name - full_name - private - repository: *862 - requester: *888 + repository: *861 + requester: *887 sender: *4 required: - action @@ -141662,11 +141525,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 +141605,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 +141685,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 +141734,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 +141821,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 +141851,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 +141932,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 +142115,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 +142197,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 +142461,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 +143251,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 +143601,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -143819,7 +143682,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 +143855,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 +144641,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 +144993,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -145211,7 +145074,7 @@ x-webhooks: type: string enum: - edited - changes: &921 + changes: &920 description: The changes to the comment. type: object properties: @@ -145223,9 +145086,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 +145876,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 +146226,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -146445,9 +146308,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 +147100,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 +147452,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -147670,9 +147533,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 +148325,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 +148677,8 @@ x-webhooks: - state - locked - assignee - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -148904,9 +148767,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 +148858,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 +148948,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 +149039,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 +149121,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 +149916,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 +150037,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -150255,8 +150118,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 +150916,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 +151172,8 @@ x-webhooks: required: - state - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -151389,8 +151252,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 +152041,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 +152161,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152378,8 +152241,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 +153052,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 +153151,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 +153289,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153526,8 +153389,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 +154182,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 +154303,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 +154385,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 +155177,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 +155298,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 +155380,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 +156196,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 +156294,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -156511,8 +156374,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 +157184,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 +157282,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 +158147,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 +158732,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 +159517,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 +159645,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -159863,9 +159726,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 +160514,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 +160634,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -160851,8 +160714,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 +161528,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 +161627,8 @@ x-webhooks: user_view_type: type: string type: *376 - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -162634,11 +162497,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 +163096,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 +163180,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 +163266,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &924 + assignee: &923 title: User type: object nullable: true @@ -163473,11 +163336,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 +163419,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 +163504,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 +164318,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 +164416,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164634,11 +164497,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 +164580,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 +164665,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 +164747,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 +164861,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 +164947,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 +165032,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 +165113,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165330,10 +165193,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 +165279,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165498,10 +165361,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 +165446,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *862 + repository: *861 sender: *4 required: - action @@ -165664,8 +165527,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 +165610,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 +165692,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 +165799,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 +165903,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 +165986,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 +166068,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 +166148,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 +166371,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 +166452,7 @@ x-webhooks: required: - login - id - team: *898 + team: *897 required: - action - scope @@ -166671,8 +166534,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 +166554,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 +166648,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 +166724,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 +166833,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 +166923,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 +167006,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 +167145,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167362,11 +167225,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 +167339,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 +167423,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 +167506,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 +167589,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 +167669,7 @@ x-webhooks: enum: - created definition: *151 - enterprise: *859 + enterprise: *858 sender: *4 required: - action @@ -167886,8 +167749,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 +167823,8 @@ x-webhooks: enum: - updated definition: *151 - enterprise: *859 - installation: *860 + enterprise: *858 + installation: *859 sender: *4 required: - action @@ -168033,9 +167896,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 +167986,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 +168095,8 @@ x-webhooks: - role - organization_url - user - organization: *861 - repository: *862 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168311,11 +168174,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 +168257,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 +168374,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 +168455,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 +168546,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 +168628,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 +169129,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &905 + items: &904 title: Ruby Gems metadata type: object properties: @@ -169361,7 +169224,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -169438,9 +169301,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 +169656,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *905 + items: *904 source_url: type: string format: uri @@ -169863,7 +169726,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -170039,12 +169902,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 +169984,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 +170130,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 +170210,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 +170290,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 +170369,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 +170478,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 +170510,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 +170756,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 +170878,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -171096,11 +170959,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 +171043,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 +171173,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 +171268,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 +171366,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 +171558,7 @@ x-webhooks: type: string required: - after_id - repository: *862 + repository: *861 sender: *4 required: - action @@ -171775,10 +171638,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 +171765,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -171982,10 +171845,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 +171887,7 @@ x-webhooks: - name - created_at - updated_at - repository: *862 + repository: *861 sender: *4 required: - action @@ -172103,18 +171966,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 +172067,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 +172151,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 +172235,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 +172319,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 +172432,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 +172515,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 +172600,8 @@ x-webhooks: type: string enum: - closed - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -172820,8 +172683,8 @@ x-webhooks: type: string enum: - created - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -172903,8 +172766,8 @@ x-webhooks: type: string enum: - deleted - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173022,8 +172885,8 @@ x-webhooks: type: string to: type: string - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173107,7 +172970,7 @@ x-webhooks: type: string enum: - archived - changes: &914 + changes: &913 type: object properties: archived_at: @@ -173121,9 +172984,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 +173121,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 +173205,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 +173288,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 +173396,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 +173418,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 +173452,8 @@ x-webhooks: oneOf: - type: string - type: integer + - *911 - *912 - - *913 required: - field_value - type: object @@ -173606,9 +173469,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 +173566,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 +173651,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 +173736,8 @@ x-webhooks: type: string enum: - reopened - installation: *860 - organization: *861 + installation: *859 + organization: *860 projects_v2: *408 sender: *4 required: @@ -173956,14 +173819,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 +173907,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 +174045,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 +174118,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 +174198,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 +176509,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -176728,11 +176591,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 +178895,7 @@ x-webhooks: - draft reason: type: string - repository: *862 + repository: *861 sender: *4 required: - action @@ -179114,11 +178977,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 +181281,7 @@ x-webhooks: - draft reason: type: string - repository: *862 + repository: *861 sender: *4 required: - action @@ -181500,11 +181363,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 +181431,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *862 + repository: *861 sender: *4 required: - action @@ -181649,12 +181512,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 +181597,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 +183886,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -184102,11 +183965,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 +186273,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *862 + repository: *861 sender: *4 required: - action @@ -186534,12 +186397,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 +186482,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 +188775,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -188992,11 +188855,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 +191163,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -191381,10 +191244,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 +193549,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -193766,12 +193629,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 +193713,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 +193799,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 +193884,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 +194255,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 +196449,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -196666,7 +196529,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 +196814,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 +198996,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -199213,11 +199076,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 +201263,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *862 + repository: *861 sender: *4 required: - action @@ -201481,9 +201344,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 +203541,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 +203788,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 +205844,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 +206078,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 +208388,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_reviewer: title: User type: object @@ -208609,12 +208472,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 +210789,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 +210981,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 +213293,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 requested_reviewer: title: User type: object @@ -213515,12 +213378,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 +215681,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 +215862,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 +218061,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 - review: *923 + repository: *861 + review: *922 sender: *4 required: - action @@ -218279,9 +218142,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 +220236,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 + repository: *861 sender: *4 thread: type: object @@ -220760,9 +220623,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 +222703,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *862 + repository: *861 sender: *4 thread: type: object @@ -223230,10 +223093,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 +225389,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -225608,11 +225471,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 +227780,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -227996,11 +227859,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 +230158,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -230376,10 +230239,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 +232529,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *862 + repository: *861 sender: *4 required: - action @@ -232866,7 +232729,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 +232821,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 +233408,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 +233856,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *905 + items: *904 summary: type: string tag_name: @@ -234047,7 +233910,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -234125,9 +233988,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 +234298,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *905 + items: *904 summary: type: string tag_name: @@ -234484,7 +234347,7 @@ x-webhooks: - owner - package_version - registry - repository: *862 + repository: *861 sender: *4 required: - action @@ -234561,10 +234424,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 +234745,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *862 + repository: *861 sender: *4 required: - action @@ -234959,11 +234822,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 +234943,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 +235025,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 +235349,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *862 + repository: *861 sender: *4 required: - action @@ -235562,10 +235425,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 +235747,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *862 + repository: *861 sender: *4 required: - action @@ -235960,11 +235823,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 +235903,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 +235983,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 +236063,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 +236143,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 +236223,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 +236304,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 +236391,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 +236506,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 +236581,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 +236665,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 +236745,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 +236842,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 +236925,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 +237007,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 +237089,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 +237397,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 +237478,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 +237559,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 +237681,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 +237890,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 +237971,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 +238174,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 +238255,7 @@ x-webhooks: type: string enum: - assigned - alert: &928 + alert: &927 type: object properties: number: *128 @@ -238511,10 +238374,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 +238455,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 +238540,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 +238782,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 +238864,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 +238946,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 +239028,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 +239111,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 +239241,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 +239322,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 +239509,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 +239586,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 +239774,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 +239855,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 +240161,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 +240254,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 +240336,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 +240420,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &933 + changes: &932 type: object properties: tier: @@ -240601,13 +240464,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 +240547,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 +240627,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 +240713,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 +241136,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 +241259,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 +241351,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 +241443,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 +241535,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 +241614,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 +241842,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 +242302,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -242515,9 +242378,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 +242838,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -243052,9 +242915,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 +243375,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -243656,9 +243519,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 +243979,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - changes @@ -244194,9 +244057,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 +244517,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *934 + team: *933 required: - action - team @@ -244730,10 +244593,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 +244669,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 +244760,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 +245079,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 +245421,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 +245638,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 +245857,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 +246861,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 +247850,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..e3a06735a 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" } } @@ -76696,186 +76723,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)", @@ -155820,36 +155667,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 +333180,6 @@ } ] }, - "tag-protection-items": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - }, - "tag-protection": { - "value": { - "enabled": true - } - }, "topic": { "value": { "names": [ @@ -341477,15 +341281,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..88d653f5c 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: @@ -55504,139 +55521,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) @@ -114460,28 +114344,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 +251121,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 +258188,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..e3a06735a 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" } } @@ -76696,186 +76723,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)", @@ -155820,36 +155667,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 +333180,6 @@ } ] }, - "tag-protection-items": { - "value": [ - { - "id": 2, - "pattern": "v1.*" - } - ] - }, - "tag-protection": { - "value": { - "enabled": true - } - }, "topic": { "value": { "names": [ @@ -341477,15 +341281,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..88d653f5c 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: @@ -55504,139 +55521,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) @@ -114460,28 +114344,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 +251121,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 +258188,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..8b1d71896 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 @@ ] },{"code":"deadline_exceeded","msg":"operation timed out"}