diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 49367d65e..ff1086cc4 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -47577,6 +47577,117 @@ } } }, + "/repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}": { + "get": { + "summary": "Fetch a software bill of materials (SBOM) for a repository.", + "description": "Fetches a previously generated software bill of materials (SBOM) for a repository.\nWhen the SBOM is ready, the response is a 302 redirect to a temporary download URL for the SBOM in SPDX JSON format.\nThe generated SBOM report may be retained for up to one week from the original request.\nThe temporary download URL returned by this endpoint expires separately, and its expiry is set when the fetch request is made.", + "tags": [ + "dependency-graph" + ], + "operationId": "dependency-graph/fetch-sbom-report", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + }, + { + "name": "sbom_uuid", + "in": "path", + "required": true, + "description": "The unique identifier of the SBOM export.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "302": { + "description": "Redirects to a temporary download URL for the completed SBOM.", + "headers": { + "Location": { + "$ref": "#/components/headers/location" + } + } + }, + "202": { + "description": "SBOM is still being processed, no content is returned." + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "githubCloudOnly": false, + "category": "dependency-graph", + "subcategory": "sboms" + } + } + }, + "/repos/{owner}/{repo}/dependency-graph/sbom/generate-report": { + "get": { + "summary": "Request generation of a software bill of materials (SBOM) for a repository.", + "description": "Triggers a job to generate a software bill of materials (SBOM) for a repository in SPDX JSON format.", + "tags": [ + "dependency-graph" + ], + "operationId": "dependency-graph/generate-sbom-report", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "sbom_url": { + "type": "string", + "description": "URL to poll for the SBOM export result." + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/dependency-graph-generate-sbom-report-response" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "githubCloudOnly": false, + "category": "dependency-graph", + "subcategory": "sboms" + } + } + }, "/repos/{owner}/{repo}/dependency-graph/snapshots": { "post": { "summary": "Create a snapshot of dependencies for a repository", @@ -314345,6 +314456,11 @@ } } }, + "dependency-graph-generate-sbom-report-response": { + "value": { + "sbom_url": "https://api.github.com/repos/github/example/dependency-graph/sbom/fetch-report/4bab1a7e-da63-4828-9488-44e0e01a7c1b" + } + }, "dependency-graph-create-snapshot-request": { "value": { "version": 0, diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index a296afc68..a866e2fed 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -34661,6 +34661,81 @@ paths: githubCloudOnly: false category: dependency-graph subcategory: sboms + "/repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}": + get: + summary: Fetch a software bill of materials (SBOM) for a repository. + description: |- + Fetches a previously generated software bill of materials (SBOM) for a repository. + When the SBOM is ready, the response is a 302 redirect to a temporary download URL for the SBOM in SPDX JSON format. + The generated SBOM report may be retained for up to one week from the original request. + The temporary download URL returned by this endpoint expires separately, and its expiry is set when the fetch request is made. + tags: + - dependency-graph + operationId: dependency-graph/fetch-sbom-report + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + - name: sbom_uuid + in: path + required: true + description: The unique identifier of the SBOM export. + schema: + type: string + responses: + '302': + description: Redirects to a temporary download URL for the completed SBOM. + headers: + Location: + "$ref": "#/components/headers/location" + '202': + description: SBOM is still being processed, no content is returned. + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + githubCloudOnly: false + category: dependency-graph + subcategory: sboms + "/repos/{owner}/{repo}/dependency-graph/sbom/generate-report": + get: + summary: Request generation of a software bill of materials (SBOM) for a repository. + description: Triggers a job to generate a software bill of materials (SBOM) + for a repository in SPDX JSON format. + tags: + - dependency-graph + operationId: dependency-graph/generate-sbom-report + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '201': + description: Response + content: + application/json: + schema: + type: object + properties: + sbom_url: + type: string + description: URL to poll for the SBOM export result. + examples: + default: + "$ref": "#/components/examples/dependency-graph-generate-sbom-report-response" + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + githubCloudOnly: false + category: dependency-graph + subcategory: sboms "/repos/{owner}/{repo}/dependency-graph/snapshots": post: summary: Create a snapshot of dependencies for a repository @@ -233383,6 +233458,9 @@ components: - relationshipType: DESCRIBES spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository + dependency-graph-generate-sbom-report-response: + value: + sbom_url: https://api.github.com/repos/github/example/dependency-graph/sbom/fetch-report/4bab1a7e-da63-4828-9488-44e0e01a7c1b dependency-graph-create-snapshot-request: value: version: 0 diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index 15e3f87f5..679fff26c 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -47497,6 +47497,117 @@ } } }, + "/repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}": { + "get": { + "summary": "Fetch a software bill of materials (SBOM) for a repository.", + "description": "Fetches a previously generated software bill of materials (SBOM) for a repository.\nWhen the SBOM is ready, the response is a 302 redirect to a temporary download URL for the SBOM in SPDX JSON format.\nThe generated SBOM report may be retained for up to one week from the original request.\nThe temporary download URL returned by this endpoint expires separately, and its expiry is set when the fetch request is made.", + "tags": [ + "dependency-graph" + ], + "operationId": "dependency-graph/fetch-sbom-report", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + }, + { + "name": "sbom_uuid", + "in": "path", + "required": true, + "description": "The unique identifier of the SBOM export.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "302": { + "description": "Redirects to a temporary download URL for the completed SBOM.", + "headers": { + "Location": { + "$ref": "#/components/headers/location" + } + } + }, + "202": { + "description": "SBOM is still being processed, no content is returned." + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "githubCloudOnly": false, + "category": "dependency-graph", + "subcategory": "sboms" + } + } + }, + "/repos/{owner}/{repo}/dependency-graph/sbom/generate-report": { + "get": { + "summary": "Request generation of a software bill of materials (SBOM) for a repository.", + "description": "Triggers a job to generate a software bill of materials (SBOM) for a repository in SPDX JSON format.", + "tags": [ + "dependency-graph" + ], + "operationId": "dependency-graph/generate-sbom-report", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "sbom_url": { + "type": "string", + "description": "URL to poll for the SBOM export result." + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/dependency-graph-generate-sbom-report-response" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "githubCloudOnly": false, + "category": "dependency-graph", + "subcategory": "sboms" + } + } + }, "/repos/{owner}/{repo}/dependency-graph/snapshots": { "post": { "summary": "Create a snapshot of dependencies for a repository", @@ -313485,6 +313596,11 @@ } } }, + "dependency-graph-generate-sbom-report-response": { + "value": { + "sbom_url": "https://api.github.com/repos/github/example/dependency-graph/sbom/fetch-report/4bab1a7e-da63-4828-9488-44e0e01a7c1b" + } + }, "dependency-graph-create-snapshot-request": { "value": { "version": 0, diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index d013dfc2a..17fd8e788 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -34598,6 +34598,81 @@ paths: githubCloudOnly: false category: dependency-graph subcategory: sboms + "/repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}": + get: + summary: Fetch a software bill of materials (SBOM) for a repository. + description: |- + Fetches a previously generated software bill of materials (SBOM) for a repository. + When the SBOM is ready, the response is a 302 redirect to a temporary download URL for the SBOM in SPDX JSON format. + The generated SBOM report may be retained for up to one week from the original request. + The temporary download URL returned by this endpoint expires separately, and its expiry is set when the fetch request is made. + tags: + - dependency-graph + operationId: dependency-graph/fetch-sbom-report + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + - name: sbom_uuid + in: path + required: true + description: The unique identifier of the SBOM export. + schema: + type: string + responses: + '302': + description: Redirects to a temporary download URL for the completed SBOM. + headers: + Location: + "$ref": "#/components/headers/location" + '202': + description: SBOM is still being processed, no content is returned. + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + githubCloudOnly: false + category: dependency-graph + subcategory: sboms + "/repos/{owner}/{repo}/dependency-graph/sbom/generate-report": + get: + summary: Request generation of a software bill of materials (SBOM) for a repository. + description: Triggers a job to generate a software bill of materials (SBOM) + for a repository in SPDX JSON format. + tags: + - dependency-graph + operationId: dependency-graph/generate-sbom-report + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '201': + description: Response + content: + application/json: + schema: + type: object + properties: + sbom_url: + type: string + description: URL to poll for the SBOM export result. + examples: + default: + "$ref": "#/components/examples/dependency-graph-generate-sbom-report-response" + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + githubCloudOnly: false + category: dependency-graph + subcategory: sboms "/repos/{owner}/{repo}/dependency-graph/snapshots": post: summary: Create a snapshot of dependencies for a repository @@ -232675,6 +232750,9 @@ components: - relationshipType: DESCRIBES spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository + dependency-graph-generate-sbom-report-response: + value: + sbom_url: https://api.github.com/repos/github/example/dependency-graph/sbom/fetch-report/4bab1a7e-da63-4828-9488-44e0e01a7c1b dependency-graph-create-snapshot-request: value: version: 0 diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index ed5b53dee..f020daa3f 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -47841,6 +47841,117 @@ } } }, + "/repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}": { + "get": { + "summary": "Fetch a software bill of materials (SBOM) for a repository.", + "description": "Fetches a previously generated software bill of materials (SBOM) for a repository.\nWhen the SBOM is ready, the response is a 302 redirect to a temporary download URL for the SBOM in SPDX JSON format.\nThe generated SBOM report may be retained for up to one week from the original request.\nThe temporary download URL returned by this endpoint expires separately, and its expiry is set when the fetch request is made.", + "tags": [ + "dependency-graph" + ], + "operationId": "dependency-graph/fetch-sbom-report", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + }, + { + "name": "sbom_uuid", + "in": "path", + "required": true, + "description": "The unique identifier of the SBOM export.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "302": { + "description": "Redirects to a temporary download URL for the completed SBOM.", + "headers": { + "Location": { + "$ref": "#/components/headers/location" + } + } + }, + "202": { + "description": "SBOM is still being processed, no content is returned." + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "githubCloudOnly": false, + "category": "dependency-graph", + "subcategory": "sboms" + } + } + }, + "/repos/{owner}/{repo}/dependency-graph/sbom/generate-report": { + "get": { + "summary": "Request generation of a software bill of materials (SBOM) for a repository.", + "description": "Triggers a job to generate a software bill of materials (SBOM) for a repository in SPDX JSON format.", + "tags": [ + "dependency-graph" + ], + "operationId": "dependency-graph/generate-sbom-report", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "sbom_url": { + "type": "string", + "description": "URL to poll for the SBOM export result." + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/dependency-graph-generate-sbom-report-response" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "githubCloudOnly": false, + "category": "dependency-graph", + "subcategory": "sboms" + } + } + }, "/repos/{owner}/{repo}/dependency-graph/snapshots": { "post": { "summary": "Create a snapshot of dependencies for a repository", @@ -316324,6 +316435,11 @@ } } }, + "dependency-graph-generate-sbom-report-response": { + "value": { + "sbom_url": "https://api.github.com/repos/github/example/dependency-graph/sbom/fetch-report/4bab1a7e-da63-4828-9488-44e0e01a7c1b" + } + }, "dependency-graph-create-snapshot-request": { "value": { "version": 0, diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 2a96be4a3..1d24bdf7d 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -34826,6 +34826,81 @@ paths: githubCloudOnly: false category: dependency-graph subcategory: sboms + "/repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}": + get: + summary: Fetch a software bill of materials (SBOM) for a repository. + description: |- + Fetches a previously generated software bill of materials (SBOM) for a repository. + When the SBOM is ready, the response is a 302 redirect to a temporary download URL for the SBOM in SPDX JSON format. + The generated SBOM report may be retained for up to one week from the original request. + The temporary download URL returned by this endpoint expires separately, and its expiry is set when the fetch request is made. + tags: + - dependency-graph + operationId: dependency-graph/fetch-sbom-report + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + - name: sbom_uuid + in: path + required: true + description: The unique identifier of the SBOM export. + schema: + type: string + responses: + '302': + description: Redirects to a temporary download URL for the completed SBOM. + headers: + Location: + "$ref": "#/components/headers/location" + '202': + description: SBOM is still being processed, no content is returned. + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + githubCloudOnly: false + category: dependency-graph + subcategory: sboms + "/repos/{owner}/{repo}/dependency-graph/sbom/generate-report": + get: + summary: Request generation of a software bill of materials (SBOM) for a repository. + description: Triggers a job to generate a software bill of materials (SBOM) + for a repository in SPDX JSON format. + tags: + - dependency-graph + operationId: dependency-graph/generate-sbom-report + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '201': + description: Response + content: + application/json: + schema: + type: object + properties: + sbom_url: + type: string + description: URL to poll for the SBOM export result. + examples: + default: + "$ref": "#/components/examples/dependency-graph-generate-sbom-report-response" + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + githubCloudOnly: false + category: dependency-graph + subcategory: sboms "/repos/{owner}/{repo}/dependency-graph/snapshots": post: summary: Create a snapshot of dependencies for a repository @@ -234654,6 +234729,9 @@ components: - relationshipType: DESCRIBES spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository + dependency-graph-generate-sbom-report-response: + value: + sbom_url: https://api.github.com/repos/github/example/dependency-graph/sbom/fetch-report/4bab1a7e-da63-4828-9488-44e0e01a7c1b dependency-graph-create-snapshot-request: value: version: 0 diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index e2f992321..c75992598 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -384646,6 +384646,238 @@ } } }, + "/repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}": { + "get": { + "summary": "Fetch a software bill of materials (SBOM) for a repository.", + "description": "Fetches a previously generated software bill of materials (SBOM) for a repository.\nWhen the SBOM is ready, the response is a 302 redirect to a temporary download URL for the SBOM in SPDX JSON format.\nThe generated SBOM report may be retained for up to one week from the original request.\nThe temporary download URL returned by this endpoint expires separately, and its expiry is set when the fetch request is made.", + "tags": [ + "dependency-graph" + ], + "operationId": "dependency-graph/fetch-sbom-report", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-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": "sbom_uuid", + "in": "path", + "required": true, + "description": "The unique identifier of the SBOM export.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "302": { + "description": "Redirects to a temporary download URL for the completed SBOM.", + "headers": { + "Location": { + "example": "https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D", + "schema": { + "type": "string" + } + } + } + }, + "202": { + "description": "SBOM is still being processed, no content is returned." + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "category": "dependency-graph", + "subcategory": "sboms" + } + } + }, + "/repos/{owner}/{repo}/dependency-graph/sbom/generate-report": { + "get": { + "summary": "Request generation of a software bill of materials (SBOM) for a repository.", + "description": "Triggers a job to generate a software bill of materials (SBOM) for a repository in SPDX JSON format.", + "tags": [ + "dependency-graph" + ], + "operationId": "dependency-graph/generate-sbom-report", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-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": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "sbom_url": { + "type": "string", + "description": "URL to poll for the SBOM export result." + } + } + }, + "examples": { + "default": { + "value": { + "sbom_url": "https://api.github.com/repos/github/example/dependency-graph/sbom/fetch-report/4bab1a7e-da63-4828-9488-44e0e01a7c1b" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "category": "dependency-graph", + "subcategory": "sboms" + } + } + }, "/repos/{owner}/{repo}/dependency-graph/snapshots": { "post": { "summary": "Create a snapshot of dependencies for a repository", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 97c1d1aac..48b67a0b8 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -1073,7 +1073,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &636 + - &637 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -11441,7 +11441,7 @@ paths: properties: action: type: string - discussion: &727 + discussion: &728 title: Discussion description: A Discussion in a repository. type: object @@ -12225,7 +12225,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &648 + sub_issues_summary: &649 title: Sub-issues Summary type: object properties: @@ -12309,7 +12309,7 @@ paths: pin: anyOf: - type: 'null' - - &546 + - &547 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -12336,7 +12336,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &649 + issue_dependencies_summary: &650 title: Issue Dependencies Summary type: object properties: @@ -12355,7 +12355,7 @@ paths: - total_blocking issue_field_values: type: array - items: &531 + items: &532 title: Issue Field Value description: A value assigned to an issue field type: object @@ -13136,7 +13136,7 @@ paths: type: string release: allOf: - - &578 + - &579 title: Release description: A release. type: object @@ -13218,7 +13218,7 @@ paths: author: *4 assets: type: array - items: &579 + items: &580 title: Release Asset description: Data related to a release. type: object @@ -13821,7 +13821,7 @@ paths: url: type: string format: uri - user: &655 + user: &656 title: Public User description: Public User type: object @@ -17265,7 +17265,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &554 + - &555 name: all description: If `true`, show notifications marked as read. in: query @@ -17273,7 +17273,7 @@ paths: schema: type: boolean default: false - - &555 + - &556 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -17283,7 +17283,7 @@ paths: type: boolean default: false - *86 - - &556 + - &557 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -17876,7 +17876,7 @@ paths: - url - subscription_url examples: - default: &557 + default: &558 value: - id: '1' repository: @@ -19446,7 +19446,7 @@ paths: required: false schema: type: string - - &704 + - &705 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -19592,7 +19592,7 @@ paths: parameters: - *73 - *115 - - &705 + - &706 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 @@ -19704,7 +19704,7 @@ paths: - *115 - *117 - *116 - - &706 + - &707 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -19712,7 +19712,7 @@ paths: schema: type: string - *118 - - &707 + - &708 name: sku description: The SKU to query for usage. in: query @@ -26569,12 +26569,12 @@ paths: required: - subject_digests examples: - default: &686 + default: &687 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &687 + withPredicateType: &688 value: subject_digests: - sha256:abc123 @@ -26633,7 +26633,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &688 + default: &689 value: attestations_subject_digests: - sha256:abc: @@ -34656,7 +34656,7 @@ paths: application/json: schema: *20 examples: - default: &518 + default: &519 value: id: 1 account: @@ -34884,7 +34884,7 @@ paths: required: true content: application/json: - schema: &519 + schema: &520 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -37474,7 +37474,7 @@ paths: parameters: - *73 - *242 - - &669 + - &670 name: repo_name description: repo_name parameter in: path @@ -38535,7 +38535,7 @@ paths: - nuget - container - *73 - - &670 + - &671 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -38576,7 +38576,7 @@ paths: default: *248 '403': *27 '401': *23 - '400': &672 + '400': &673 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -40600,7 +40600,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &755 + - &756 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -41113,7 +41113,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: &564 + auto_merge: &565 title: Auto merge description: The status of auto merging a pull request. type: @@ -41498,7 +41498,7 @@ paths: - updated_at - project_url examples: - default: &691 + default: &692 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41675,7 +41675,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &692 + items: &693 type: object properties: name: @@ -41712,7 +41712,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &693 + iteration_configuration: &694 type: object description: The configuration for iteration fields. properties: @@ -41762,7 +41762,7 @@ paths: value: name: Due date data_type: date - single_select_field: &694 + single_select_field: &695 summary: Create a single select field value: name: Priority @@ -41789,7 +41789,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &695 + iteration_field: &696 summary: Create an iteration field value: name: Sprint @@ -41815,7 +41815,7 @@ paths: application/json: schema: *268 examples: - text_field: &696 + text_field: &697 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -41824,7 +41824,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: &697 + number_field: &698 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -41833,7 +41833,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: &698 + date_field: &699 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -41842,7 +41842,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: &699 + single_select_field: &700 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41876,7 +41876,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &700 + iteration_field: &701 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -41922,7 +41922,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *265 - - &701 + - &702 name: field_id description: The unique identifier of the field. in: path @@ -41937,7 +41937,7 @@ paths: application/json: schema: *268 examples: - default: &702 + default: &703 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43148,7 +43148,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &683 + schema: &684 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -43331,7 +43331,7 @@ paths: parameters: - *265 - *73 - - &703 + - &704 name: view_number description: The number that identifies the project view. in: path @@ -45407,7 +45407,7 @@ paths: - *73 - *17 - *19 - - &586 + - &587 name: targets description: | A comma-separated list of rule targets to filter by. @@ -45693,7 +45693,7 @@ paths: - object rules: type: array - items: &587 + items: &588 title: Repository Rule type: object description: A repository rule. @@ -45755,7 +45755,7 @@ paths: type: string enum: - required_linear_history - - &585 + - &586 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -46657,7 +46657,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *73 - - &588 + - &589 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -46672,7 +46672,7 @@ paths: in: query schema: type: string - - &589 + - &590 name: time_period description: |- The time period to filter by. @@ -46688,14 +46688,14 @@ paths: - week - month default: day - - &590 + - &591 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &591 + - &592 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -46715,7 +46715,7 @@ paths: description: Response content: application/json: - schema: &592 + schema: &593 title: Rule Suites description: Response type: array @@ -46771,7 +46771,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &593 + default: &594 value: - id: 21 actor_id: 12 @@ -46815,7 +46815,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *73 - - &594 + - &595 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -46831,7 +46831,7 @@ paths: description: Response content: application/json: - schema: &595 + schema: &596 title: Rule Suite description: Response type: object @@ -46938,7 +46938,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &596 + default: &597 value: id: 21 actor_id: 12 @@ -47185,7 +47185,7 @@ paths: type: string format: date-time examples: - default: &598 + default: &599 value: - version_id: 3 actor: @@ -47238,7 +47238,7 @@ paths: description: Response content: application/json: - schema: &599 + schema: &600 allOf: - *311 - type: object @@ -47310,7 +47310,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *73 - - &600 + - &601 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -47321,7 +47321,7 @@ paths: enum: - open - resolved - - &601 + - &602 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -47331,7 +47331,7 @@ paths: required: false schema: type: string - - &602 + - &603 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -47342,7 +47342,7 @@ paths: required: false schema: type: string - - &603 + - &604 name: exclude_providers in: query description: |- @@ -47353,7 +47353,7 @@ paths: required: false schema: type: string - - &604 + - &605 name: providers in: query description: |- @@ -47364,7 +47364,7 @@ paths: required: false schema: type: string - - &605 + - &606 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -47373,7 +47373,7 @@ paths: required: false schema: type: string - - &606 + - &607 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -47392,7 +47392,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &607 + - &608 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -47407,7 +47407,7 @@ paths: - *59 - *19 - *17 - - &608 + - &609 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -47417,7 +47417,7 @@ paths: required: false schema: type: string - - &609 + - &610 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -47427,7 +47427,7 @@ paths: required: false schema: type: string - - &610 + - &611 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -47436,7 +47436,7 @@ paths: required: false schema: type: string - - &611 + - &612 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -47445,7 +47445,7 @@ paths: schema: type: boolean default: false - - &612 + - &613 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -47454,7 +47454,7 @@ paths: schema: type: boolean default: false - - &613 + - &614 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -47486,14 +47486,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &614 + state: &615 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &615 + resolution: &616 type: - string - 'null' @@ -47612,14 +47612,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &616 + - &617 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &618 + - &619 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -47683,7 +47683,7 @@ paths: - blob_url - commit_sha - commit_url - - &619 + - &620 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -47744,7 +47744,7 @@ paths: - page_url - commit_sha - commit_url - - &620 + - &621 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -47766,7 +47766,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &621 + - &622 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -47788,7 +47788,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &622 + - &623 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -47810,7 +47810,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &623 + - &624 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -47825,7 +47825,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &624 + - &625 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -47840,7 +47840,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &625 + - &626 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -47855,7 +47855,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &626 + - &627 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -47877,7 +47877,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &627 + - &628 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -47899,7 +47899,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &628 + - &629 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -47921,7 +47921,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &629 + - &630 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -47943,7 +47943,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &630 + - &631 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull @@ -48464,7 +48464,7 @@ paths: application/json: schema: type: array - items: &634 + items: &635 description: A repository security advisory. type: object properties: @@ -48783,7 +48783,7 @@ paths: - private_fork additionalProperties: false examples: - default: &635 + default: &636 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -50858,7 +50858,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &651 + response-if-user-is-a-team-maintainer: &652 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -50923,7 +50923,7 @@ paths: application/json: schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: &652 + response-if-users-membership-with-team-is-now-pending: &653 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -51037,7 +51037,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &653 + schema: &654 title: Team Repository description: A team's access to a repository. type: object @@ -51766,7 +51766,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: &654 + response-if-child-teams-exist: &655 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -53238,11 +53238,11 @@ paths: '302': description: Response headers: - Location: + Location: &482 example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &522 + '410': &523 description: Gone content: application/json: @@ -56974,7 +56974,7 @@ paths: items: type: object properties: - type: &488 + type: &489 type: string description: The type of reviewer. enum: @@ -57112,7 +57112,7 @@ paths: application/json: schema: type: array - items: &483 + items: &484 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -57224,7 +57224,7 @@ paths: - created_at - updated_at examples: - default: &484 + default: &485 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -57609,7 +57609,7 @@ paths: application/json: schema: *370 examples: - default: &501 + default: &502 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -57828,7 +57828,7 @@ paths: application/json: schema: *374 examples: - default: &502 + default: &503 value: name: USERNAME value: octocat @@ -59696,7 +59696,7 @@ paths: required: - sha - url - verification: &508 + verification: &509 title: Verification type: object properties: @@ -62934,7 +62934,7 @@ paths: check. type: array items: *84 - deployment: &716 + deployment: &717 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -68189,7 +68189,7 @@ paths: type: array items: *446 examples: - default: &660 + default: &661 value: total_count: 2 machines: @@ -68901,7 +68901,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &521 + schema: &522 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -69603,7 +69603,7 @@ paths: - content - created_at examples: - default: &524 + default: &525 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -69740,7 +69740,7 @@ paths: - *325 - *326 - *95 - - &525 + - &526 name: reaction_id description: The unique identifier of the reaction. in: path @@ -69854,7 +69854,7 @@ paths: type: array items: *456 examples: - default: &571 + default: &572 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -70145,7 +70145,7 @@ paths: type: array items: *460 examples: - default: &563 + default: &564 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -70703,7 +70703,7 @@ paths: application/json: schema: *456 examples: - default: &551 + default: &552 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -71366,7 +71366,7 @@ paths: application/json: schema: type: array - items: &639 + items: &640 title: Status description: The status of a commit. type: object @@ -72355,7 +72355,7 @@ paths: - size - type - url - - &576 + - &577 title: Content File description: Content File type: object @@ -72971,7 +72971,7 @@ paths: schema: oneOf: - *3 - - &503 + - &504 description: Repository rule violation was detected type: object properties: @@ -72992,7 +72992,7 @@ paths: items: type: object properties: - placeholder_id: &631 + placeholder_id: &632 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -74604,6 +74604,77 @@ paths: githubCloudOnly: false category: dependency-graph subcategory: sboms + "/repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}": + get: + summary: Fetch a software bill of materials (SBOM) for a repository. + description: |- + Fetches a previously generated software bill of materials (SBOM) for a repository. + When the SBOM is ready, the response is a 302 redirect to a temporary download URL for the SBOM in SPDX JSON format. + The generated SBOM report may be retained for up to one week from the original request. + The temporary download URL returned by this endpoint expires separately, and its expiry is set when the fetch request is made. + tags: + - dependency-graph + operationId: dependency-graph/fetch-sbom-report + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - *325 + - *326 + - name: sbom_uuid + in: path + required: true + description: The unique identifier of the SBOM export. + schema: + type: string + responses: + '302': + description: Redirects to a temporary download URL for the completed SBOM. + headers: + Location: *482 + '202': + description: SBOM is still being processed, no content is returned. + '404': *6 + '403': *27 + x-github: + githubCloudOnly: false + category: dependency-graph + subcategory: sboms + "/repos/{owner}/{repo}/dependency-graph/sbom/generate-report": + get: + summary: Request generation of a software bill of materials (SBOM) for a repository. + description: Triggers a job to generate a software bill of materials (SBOM) + for a repository in SPDX JSON format. + tags: + - dependency-graph + operationId: dependency-graph/generate-sbom-report + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - *325 + - *326 + responses: + '201': + description: Response + content: + application/json: + schema: + type: object + properties: + sbom_url: + type: string + description: URL to poll for the SBOM export result. + examples: + default: + value: + sbom_url: https://api.github.com/repos/github/example/dependency-graph/sbom/fetch-report/4bab1a7e-da63-4828-9488-44e0e01a7c1b + '404': *6 + '403': *27 + x-github: + githubCloudOnly: false + category: dependency-graph + subcategory: sboms "/repos/{owner}/{repo}/dependency-graph/snapshots": post: summary: Create a snapshot of dependencies for a repository @@ -74704,7 +74775,7 @@ paths: - version - url additionalProperties: false - metadata: &482 + metadata: &483 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -74743,7 +74814,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *482 + metadata: *483 resolved: type: object description: A collection of resolved package dependencies. @@ -74757,7 +74828,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *482 + metadata: *483 relationship: type: string description: A notation of whether a dependency is requested @@ -74932,9 +75003,9 @@ paths: application/json: schema: type: array - items: *483 + items: *484 examples: - default: *484 + default: *485 headers: Link: *65 x-github: @@ -75083,7 +75154,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: simple-example: summary: Simple example @@ -75158,7 +75229,7 @@ paths: parameters: - *325 - *326 - - &485 + - &486 name: deployment_id description: deployment_id parameter in: path @@ -75170,7 +75241,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: default: value: @@ -75237,7 +75308,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 responses: '204': description: Response @@ -75261,7 +75332,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 - *17 - *19 responses: @@ -75271,7 +75342,7 @@ paths: application/json: schema: type: array - items: &486 + items: &487 title: Deployment Status description: The status of a deployment. type: object @@ -75437,7 +75508,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 requestBody: required: true content: @@ -75512,9 +75583,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: &487 + default: &488 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -75572,7 +75643,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 - name: status_id in: path required: true @@ -75583,9 +75654,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *487 + default: *488 '404': *6 x-github: githubCloudOnly: false @@ -75687,7 +75758,7 @@ paths: - 5 environments: type: array - items: &489 + items: &490 title: Environment description: Details of a deployment environment type: object @@ -75749,7 +75820,7 @@ paths: type: string examples: - wait_timer - wait_timer: &491 + wait_timer: &492 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -75791,7 +75862,7 @@ paths: items: type: object properties: - type: *488 + type: *489 reviewer: anyOf: - *4 @@ -75818,7 +75889,7 @@ paths: - id - node_id - type - deployment_branch_policy: &492 + deployment_branch_policy: &493 type: - object - 'null' @@ -75937,7 +76008,7 @@ paths: parameters: - *325 - *326 - - &490 + - &491 name: environment_name in: path required: true @@ -75950,9 +76021,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: &493 + default: &494 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -76038,7 +76109,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 requestBody: required: false content: @@ -76048,7 +76119,7 @@ paths: - object - 'null' properties: - wait_timer: *491 + wait_timer: *492 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -76067,14 +76138,14 @@ paths: items: type: object properties: - type: *488 + type: *489 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *492 + deployment_branch_policy: *493 additionalProperties: false examples: default: @@ -76094,9 +76165,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: *493 + default: *494 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -76122,7 +76193,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 responses: '204': description: Default response @@ -76149,7 +76220,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *17 - *19 responses: @@ -76168,7 +76239,7 @@ paths: - 2 branch_policies: type: array - items: &494 + items: &495 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -76231,7 +76302,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 requestBody: required: true content: @@ -76279,9 +76350,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - example-wildcard: &495 + example-wildcard: &496 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -76325,8 +76396,8 @@ paths: parameters: - *325 - *326 - - *490 - - &496 + - *491 + - &497 name: branch_policy_id in: path required: true @@ -76338,9 +76409,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *495 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76361,8 +76432,8 @@ paths: parameters: - *325 - *326 - - *490 - - *496 + - *491 + - *497 requestBody: required: true content: @@ -76391,9 +76462,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *495 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76414,8 +76485,8 @@ paths: parameters: - *325 - *326 - - *490 - - *496 + - *491 + - *497 responses: '204': description: Response @@ -76440,7 +76511,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *490 + - *491 - *326 - *325 responses: @@ -76459,7 +76530,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &497 + items: &498 title: Deployment protection rule description: Deployment protection rule type: object @@ -76481,7 +76552,7 @@ paths: for the environment. examples: - true - app: &498 + app: &499 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -76584,7 +76655,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *490 + - *491 - *326 - *325 requestBody: @@ -76607,9 +76678,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *497 + schema: *498 examples: - default: &499 + default: &500 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -76644,7 +76715,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *490 + - *491 - *326 - *325 - *19 @@ -76666,7 +76737,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *498 + items: *499 examples: default: value: @@ -76703,8 +76774,8 @@ paths: parameters: - *325 - *326 - - *490 - - &500 + - *491 + - &501 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -76716,9 +76787,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *498 examples: - default: *499 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76739,10 +76810,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *490 + - *491 - *326 - *325 - - *500 + - *501 responses: '204': description: Response @@ -76770,7 +76841,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *17 - *19 responses: @@ -76817,7 +76888,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 responses: '200': description: Response @@ -76849,7 +76920,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *160 responses: '200': @@ -76858,7 +76929,7 @@ paths: application/json: schema: *370 examples: - default: *501 + default: *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76882,7 +76953,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *160 requestBody: required: true @@ -76942,7 +77013,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *160 responses: '204': @@ -76970,7 +77041,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *341 - *19 responses: @@ -77015,7 +77086,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 requestBody: required: true content: @@ -77069,7 +77140,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *163 responses: '200': @@ -77078,7 +77149,7 @@ paths: application/json: schema: *374 examples: - default: *502 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77102,7 +77173,7 @@ paths: - *325 - *326 - *163 - - *490 + - *491 requestBody: required: true content: @@ -77147,7 +77218,7 @@ paths: - *325 - *326 - *163 - - *490 + - *491 responses: '204': description: Response @@ -77516,7 +77587,7 @@ paths: schema: oneOf: - *121 - - *503 + - *504 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77752,7 +77823,7 @@ paths: description: Response content: application/json: - schema: &504 + schema: &505 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -77987,7 +78058,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: default: value: @@ -78045,7 +78116,7 @@ paths: parameters: - *325 - *326 - - &505 + - &506 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -78062,7 +78133,7 @@ paths: application/json: schema: type: array - items: &506 + items: &507 title: Git Reference description: Git references within a repository type: object @@ -78140,15 +78211,15 @@ paths: parameters: - *325 - *326 - - *505 + - *506 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &507 + default: &508 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -78207,9 +78278,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 + default: *508 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -78237,7 +78308,7 @@ paths: parameters: - *325 - *326 - - *505 + - *506 requestBody: required: true content: @@ -78266,9 +78337,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 + default: *508 '422': *15 '409': *52 x-github: @@ -78288,7 +78359,7 @@ paths: parameters: - *325 - *326 - - *505 + - *506 responses: '204': description: Response @@ -78411,7 +78482,7 @@ paths: description: Response content: application/json: - schema: &509 + schema: &510 title: Git Tag description: Metadata for a Git tag type: object @@ -78467,7 +78538,7 @@ paths: - sha - type - url - verification: *508 + verification: *509 required: - sha - url @@ -78477,7 +78548,7 @@ paths: - tag - message examples: - default: &510 + default: &511 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -78562,9 +78633,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '404': *6 '409': *52 x-github: @@ -78663,7 +78734,7 @@ paths: description: Response content: application/json: - schema: &511 + schema: &512 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -78789,7 +78860,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: default-response: summary: Default response @@ -78859,7 +78930,7 @@ paths: application/json: schema: type: array - items: &512 + items: &513 title: Webhook description: Webhooks for repositories. type: object @@ -78922,7 +78993,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &747 + last_response: &748 title: Hook Response type: object properties: @@ -79053,9 +79124,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: &513 + default: &514 value: type: Repository id: 12345678 @@ -79111,9 +79182,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: *513 + default: *514 '404': *6 x-github: githubCloudOnly: false @@ -79180,9 +79251,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: *513 + default: *514 '422': *15 '404': *6 x-github: @@ -79580,7 +79651,7 @@ paths: description: Response content: application/json: - schema: &514 + schema: &515 title: Import description: A repository import from an external source. type: object @@ -79687,7 +79758,7 @@ paths: - html_url - authors_url examples: - default: &517 + default: &518 value: vcs: subversion use_lfs: true @@ -79703,7 +79774,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &515 + '503': &516 description: Unavailable due to service under maintenance. content: application/json: @@ -79781,7 +79852,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: default: value: @@ -79806,7 +79877,7 @@ paths: type: string '422': *15 '404': *6 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79887,7 +79958,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: example-1: summary: Example 1 @@ -79935,7 +80006,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79963,7 +80034,7 @@ paths: responses: '204': description: Response - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79991,7 +80062,7 @@ paths: parameters: - *325 - *326 - - &681 + - &682 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -80005,7 +80076,7 @@ paths: application/json: schema: type: array - items: &516 + items: &517 title: Porter Author description: Porter Author type: object @@ -80059,7 +80130,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80115,7 +80186,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: default: value: @@ -80128,7 +80199,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80194,7 +80265,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80250,11 +80321,11 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: - default: *517 + default: *518 '422': *15 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80286,7 +80357,7 @@ paths: application/json: schema: *20 examples: - default: *518 + default: *519 '301': *329 '404': *6 x-github: @@ -80321,7 +80392,7 @@ paths: properties: {} additionalProperties: false examples: - default: &520 + default: &521 value: limit: collaborators_only origin: repository @@ -80352,7 +80423,7 @@ paths: required: true content: application/json: - schema: *519 + schema: *520 examples: default: summary: Example request body @@ -80366,7 +80437,7 @@ paths: application/json: schema: *222 examples: - default: *520 + default: *521 '409': description: Response x-github: @@ -80423,9 +80494,9 @@ paths: application/json: schema: type: array - items: *521 + items: *522 examples: - default: &674 + default: &675 value: - id: 1 repository: @@ -80587,7 +80658,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: default: value: @@ -80825,7 +80896,7 @@ paths: type: array items: *81 examples: - default: &530 + default: &531 value: - id: 1 node_id: MDU6SXNzdWUx @@ -81096,7 +81167,7 @@ paths: application/json: schema: *81 examples: - default: &527 + default: &528 value: id: 1 node_id: MDU6SXNzdWUx @@ -81253,7 +81324,7 @@ paths: '422': *15 '503': *113 '404': *6 - '410': *522 + '410': *523 x-github: triggersNotification: true githubCloudOnly: false @@ -81305,7 +81376,7 @@ paths: type: array items: *82 examples: - default: &529 + default: &530 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81373,7 +81444,7 @@ paths: application/json: schema: *82 examples: - default: &523 + default: &524 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81454,7 +81525,7 @@ paths: application/json: schema: *82 examples: - default: *523 + default: *524 '422': *15 x-github: githubCloudOnly: false @@ -81566,7 +81637,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *522 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -81592,7 +81663,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *522 + '410': *523 '503': *113 x-github: githubCloudOnly: false @@ -81640,7 +81711,7 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 @@ -81729,7 +81800,7 @@ paths: - *325 - *326 - *95 - - *525 + - *526 responses: '204': description: Response @@ -81760,7 +81831,7 @@ paths: application/json: schema: type: array - items: &526 + items: &527 title: Issue Event description: Issue Event type: object @@ -82112,7 +82183,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *527 examples: default: value: @@ -82305,7 +82376,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *522 + '410': *523 '403': *27 x-github: githubCloudOnly: false @@ -82341,7 +82412,7 @@ paths: parameters: - *325 - *326 - - &528 + - &529 name: issue_number description: The number that identifies the issue. in: path @@ -82357,7 +82428,7 @@ paths: examples: default: summary: Issue - value: *527 + value: *528 pinned_comment: summary: Issue with pinned comment value: @@ -82558,7 +82629,7 @@ paths: state_reason: completed '301': *329 '404': *6 - '410': *522 + '410': *523 '304': *35 x-github: githubCloudOnly: false @@ -82585,7 +82656,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -82726,13 +82797,13 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 '422': *15 '503': *113 '403': *27 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82752,7 +82823,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -82780,7 +82851,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82798,7 +82869,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: content: application/json: @@ -82825,7 +82896,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82849,7 +82920,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: assignee in: path required: true @@ -82891,7 +82962,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *86 - *17 - *19 @@ -82904,11 +82975,11 @@ paths: type: array items: *82 examples: - default: *529 + default: *530 headers: Link: *65 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82939,7 +83010,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -82963,14 +83034,14 @@ paths: application/json: schema: *82 examples: - default: *523 + default: *524 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *522 + '410': *523 '422': *15 '404': *6 x-github: @@ -83000,7 +83071,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -83012,12 +83083,12 @@ paths: type: array items: *81 examples: - default: *530 + default: *531 headers: Link: *65 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83047,7 +83118,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -83071,7 +83142,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -83079,7 +83150,7 @@ paths: type: string '301': *329 '403': *27 - '410': *522 + '410': *523 '422': *15 '404': *6 x-github: @@ -83112,7 +83183,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -83126,13 +83197,13 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 '301': *329 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *522 + '410': *523 x-github: triggersNotification: true githubCloudOnly: false @@ -83160,7 +83231,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -83172,12 +83243,12 @@ paths: type: array items: *81 examples: - default: *530 + default: *531 headers: Link: *65 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83196,7 +83267,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -83210,7 +83281,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &533 + - &534 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -83259,7 +83330,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &535 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -83387,7 +83458,7 @@ paths: - performed_via_github_app - assignee - assigner - - &535 + - &536 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -83433,7 +83504,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &537 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -83479,7 +83550,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &538 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -83528,7 +83599,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &539 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -83570,7 +83641,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &540 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -83612,7 +83683,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &541 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -83668,7 +83739,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &542 title: Locked Issue Event description: Locked Issue Event type: object @@ -83713,7 +83784,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &543 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -83774,7 +83845,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &543 + - &544 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -83835,7 +83906,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &544 + - &545 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -83896,7 +83967,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &545 + - &546 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -83989,7 +84060,7 @@ paths: color: red headers: Link: *65 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84008,7 +84079,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -84018,9 +84089,9 @@ paths: application/json: schema: type: array - items: *531 + items: *532 examples: - default: &645 + default: &646 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -84046,7 +84117,7 @@ paths: Link: *65 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84065,7 +84136,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -84077,7 +84148,7 @@ paths: type: array items: *80 examples: - default: &532 + default: &533 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84097,7 +84168,7 @@ paths: Link: *65 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84115,7 +84186,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -84160,10 +84231,10 @@ paths: type: array items: *80 examples: - default: *532 + default: *533 '301': *329 '404': *6 - '410': *522 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -84182,7 +84253,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -84244,10 +84315,10 @@ paths: type: array items: *80 examples: - default: *532 + default: *533 '301': *329 '404': *6 - '410': *522 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -84266,13 +84337,13 @@ paths: parameters: - *325 - *326 - - *528 + - *529 responses: '204': description: Response '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84293,7 +84364,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: name in: path required: true @@ -84319,7 +84390,7 @@ paths: default: true '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84341,7 +84412,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -84370,7 +84441,7 @@ paths: '204': description: Response '403': *27 - '410': *522 + '410': *523 '404': *6 '422': *15 x-github: @@ -84390,7 +84461,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 responses: '204': description: Response @@ -84422,7 +84493,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 responses: '200': description: Response @@ -84430,10 +84501,10 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84452,7 +84523,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -84480,11 +84551,11 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84504,7 +84575,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -84569,8 +84640,8 @@ paths: parameters: - *325 - *326 - - *528 - - *525 + - *529 + - *526 responses: '204': description: Response @@ -84601,7 +84672,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -84625,7 +84696,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -84660,7 +84731,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -84672,11 +84743,11 @@ paths: type: array items: *81 examples: - default: *530 + default: *531 headers: Link: *65 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84706,7 +84777,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -84735,14 +84806,14 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *522 + '410': *523 '422': *15 '404': *6 x-github: @@ -84764,7 +84835,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -84797,7 +84868,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 '403': *27 '404': *6 '422': *7 @@ -84821,7 +84892,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -84836,7 +84907,6 @@ paths: description: Timeline Event type: object anyOf: - - *533 - *534 - *535 - *536 @@ -84849,6 +84919,7 @@ paths: - *543 - *544 - *545 + - *546 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -84905,7 +84976,7 @@ paths: pin: anyOf: - type: 'null' - - *546 + - *547 required: - event - actor @@ -85181,7 +85252,7 @@ paths: type: string comments: type: array - items: &565 + items: &566 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -85697,7 +85768,7 @@ paths: headers: Link: *65 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85725,7 +85796,7 @@ paths: application/json: schema: type: array - items: &547 + items: &548 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -85830,9 +85901,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: &548 + default: &549 value: id: 1 key: ssh-rsa AAA... @@ -85868,7 +85939,7 @@ paths: parameters: - *325 - *326 - - &549 + - &550 name: key_id description: The unique identifier of the key. in: path @@ -85880,9 +85951,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 '404': *6 x-github: githubCloudOnly: false @@ -85902,7 +85973,7 @@ paths: parameters: - *325 - *326 - - *549 + - *550 responses: '204': description: Response @@ -85935,7 +86006,7 @@ paths: type: array items: *80 examples: - default: *532 + default: *533 headers: Link: *65 '404': *6 @@ -85995,7 +86066,7 @@ paths: application/json: schema: *80 examples: - default: &550 + default: &551 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -86041,7 +86112,7 @@ paths: application/json: schema: *80 examples: - default: *550 + default: *551 '404': *6 x-github: githubCloudOnly: false @@ -86443,7 +86514,7 @@ paths: application/json: schema: *456 examples: - default: *551 + default: *552 '204': description: Response when already merged '404': @@ -86609,7 +86680,7 @@ paths: application/json: schema: *266 examples: - default: &552 + default: &553 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -86670,7 +86741,7 @@ paths: parameters: - *325 - *326 - - &553 + - &554 name: milestone_number description: The number that identifies the milestone. in: path @@ -86684,7 +86755,7 @@ paths: application/json: schema: *266 examples: - default: *552 + default: *553 '404': *6 x-github: githubCloudOnly: false @@ -86703,7 +86774,7 @@ paths: parameters: - *325 - *326 - - *553 + - *554 requestBody: required: false content: @@ -86743,7 +86814,7 @@ paths: application/json: schema: *266 examples: - default: *552 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86761,7 +86832,7 @@ paths: parameters: - *325 - *326 - - *553 + - *554 responses: '204': description: Response @@ -86784,7 +86855,7 @@ paths: parameters: - *325 - *326 - - *553 + - *554 - *17 - *19 responses: @@ -86796,7 +86867,7 @@ paths: type: array items: *80 examples: - default: *532 + default: *533 headers: Link: *65 x-github: @@ -86817,10 +86888,10 @@ paths: parameters: - *325 - *326 - - *554 - *555 - - *86 - *556 + - *86 + - *557 - *17 - *19 responses: @@ -86832,7 +86903,7 @@ paths: type: array items: *106 examples: - default: *557 + default: *558 headers: Link: *65 x-github: @@ -86922,7 +86993,7 @@ paths: description: Response content: application/json: - schema: &558 + schema: &559 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -87066,7 +87137,7 @@ paths: - custom_404 - public examples: - default: &559 + default: &560 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -87163,9 +87234,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: - default: *559 + default: *560 '422': *15 '409': *52 x-github: @@ -87327,7 +87398,7 @@ paths: application/json: schema: type: array - items: &560 + items: &561 title: Page Build description: Page Build type: object @@ -87474,9 +87545,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: &561 + default: &562 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -87536,9 +87607,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: *561 + default: *562 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87669,7 +87740,7 @@ paths: parameters: - *325 - *326 - - &562 + - &563 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -87729,7 +87800,7 @@ paths: parameters: - *325 - *326 - - *562 + - *563 responses: '204': *183 '404': *6 @@ -88301,7 +88372,7 @@ paths: type: array items: *460 examples: - default: *563 + default: *564 headers: Link: *65 '304': *35 @@ -88401,7 +88472,7 @@ paths: description: Response content: application/json: - schema: &567 + schema: &568 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -88635,7 +88706,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: *564 + auto_merge: *565 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -88737,7 +88808,7 @@ paths: - merged_by - review_comments examples: - default: &568 + default: &569 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -89294,9 +89365,9 @@ paths: application/json: schema: type: array - items: *565 + items: *566 examples: - default: &570 + default: &571 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -89381,9 +89452,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: - default: &566 + default: &567 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -89482,9 +89553,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: - default: *566 + default: *567 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89553,7 +89624,7 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 @@ -89642,7 +89713,7 @@ paths: - *325 - *326 - *95 - - *525 + - *526 responses: '204': description: Response @@ -89687,7 +89758,7 @@ paths: parameters: - *325 - *326 - - &569 + - &570 name: pull_number description: The number that identifies the pull request. in: path @@ -89700,9 +89771,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *567 + schema: *568 examples: - default: *568 + default: *569 '304': *35 '404': *6 '406': @@ -89739,7 +89810,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -89781,9 +89852,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *568 + default: *569 '422': *15 '403': *27 x-github: @@ -89807,7 +89878,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: true content: @@ -89910,7 +89981,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -89931,9 +90002,9 @@ paths: application/json: schema: type: array - items: *565 + items: *566 examples: - default: *570 + default: *571 headers: Link: *65 x-github: @@ -89968,7 +90039,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: true content: @@ -90074,7 +90145,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: example-for-a-multi-line-comment: value: @@ -90164,7 +90235,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *95 requestBody: required: true @@ -90187,7 +90258,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: default: value: @@ -90275,7 +90346,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *17 - *19 responses: @@ -90287,7 +90358,7 @@ paths: type: array items: *456 examples: - default: *571 + default: *572 headers: Link: *65 x-github: @@ -90319,7 +90390,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *17 - *19 responses: @@ -90369,7 +90440,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 responses: '204': description: Response if pull request has been merged @@ -90394,7 +90465,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -90508,7 +90579,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 responses: '200': description: Response @@ -90585,7 +90656,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -91160,7 +91231,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: true content: @@ -91701,7 +91772,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *17 - *19 responses: @@ -91711,7 +91782,7 @@ paths: application/json: schema: type: array - items: &572 + items: &573 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -91869,7 +91940,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -91959,9 +92030,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: &574 + default: &575 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -92026,8 +92097,8 @@ paths: parameters: - *325 - *326 - - *569 - - &573 + - *570 + - &574 name: review_id description: The unique identifier of the review. in: path @@ -92039,9 +92110,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: &575 + default: &576 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -92102,8 +92173,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 requestBody: required: true content: @@ -92126,7 +92197,7 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: default: value: @@ -92190,16 +92261,16 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 responses: '200': description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: *574 + default: *575 '422': *7 '404': *6 x-github: @@ -92228,8 +92299,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 - *17 - *19 responses: @@ -92489,8 +92560,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 requestBody: required: true content: @@ -92519,7 +92590,7 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: default: value: @@ -92584,8 +92655,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 requestBody: required: true content: @@ -92620,9 +92691,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: *575 + default: *576 '404': *6 '422': *7 '403': *27 @@ -92646,7 +92717,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -92724,9 +92795,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: &577 + default: &578 value: type: file encoding: base64 @@ -92789,9 +92860,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *577 + default: *578 '404': *6 '422': *15 x-github: @@ -92824,7 +92895,7 @@ paths: application/json: schema: type: array - items: *578 + items: *579 examples: default: value: @@ -92995,9 +93066,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: &582 + default: &583 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -93104,7 +93175,7 @@ paths: parameters: - *325 - *326 - - &580 + - &581 name: asset_id description: The unique identifier of the asset. in: path @@ -93116,9 +93187,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: &581 + default: &582 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -93171,7 +93242,7 @@ paths: parameters: - *325 - *326 - - *580 + - *581 requestBody: required: false content: @@ -93200,9 +93271,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: *581 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93220,7 +93291,7 @@ paths: parameters: - *325 - *326 - - *580 + - *581 responses: '204': description: Response @@ -93339,9 +93410,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *582 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -93373,9 +93444,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *582 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -93399,7 +93470,7 @@ paths: parameters: - *325 - *326 - - &583 + - &584 name: release_id description: The unique identifier of the release. in: path @@ -93413,9 +93484,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *578 + schema: *579 examples: - default: *582 + default: *583 '401': description: Unauthorized x-github: @@ -93435,7 +93506,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 requestBody: required: false content: @@ -93499,9 +93570,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *582 + default: *583 '404': description: Not Found if the discussion category name is invalid content: @@ -93524,7 +93595,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 responses: '204': description: Response @@ -93547,7 +93618,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 - *17 - *19 responses: @@ -93557,7 +93628,7 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: default: value: @@ -93640,7 +93711,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 - name: name in: query required: true @@ -93666,7 +93737,7 @@ paths: description: Response for successful upload content: application/json: - schema: *579 + schema: *580 examples: response-for-successful-upload: value: @@ -93723,7 +93794,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -93749,7 +93820,7 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 @@ -93772,7 +93843,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 requestBody: required: true content: @@ -93835,8 +93906,8 @@ paths: parameters: - *325 - *326 - - *583 - - *525 + - *584 + - *526 responses: '204': description: Response @@ -93879,7 +93950,7 @@ paths: oneOf: - allOf: - *287 - - &584 + - &585 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -93900,67 +93971,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *288 - - *584 + - *585 - allOf: - *289 - - *584 + - *585 - allOf: - *290 - - *584 + - *585 - allOf: + - *586 - *585 - - *584 - allOf: - *291 - - *584 + - *585 - allOf: - *292 - - *584 + - *585 - allOf: - *293 - - *584 + - *585 - allOf: - *294 - - *584 + - *585 - allOf: - *295 - - *584 + - *585 - allOf: - *296 - - *584 + - *585 - allOf: - *297 - - *584 + - *585 - allOf: - *298 - - *584 + - *585 - allOf: - *299 - - *584 + - *585 - allOf: - *300 - - *584 + - *585 - allOf: - *301 - - *584 + - *585 - allOf: - *302 - - *584 + - *585 - allOf: - *303 - - *584 + - *585 - allOf: - *304 - - *584 + - *585 - allOf: - *305 - - *584 + - *585 - allOf: - *306 - - *584 + - *585 - allOf: - *307 - - *584 + - *585 examples: default: value: @@ -94011,7 +94082,7 @@ paths: schema: type: boolean default: true - - *586 + - *587 responses: '200': description: Response @@ -94096,7 +94167,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *587 + items: *588 required: - name - enforcement @@ -94129,7 +94200,7 @@ paths: application/json: schema: *308 examples: - default: &597 + default: &598 value: id: 42 name: super cool ruleset @@ -94179,10 +94250,10 @@ paths: parameters: - *325 - *326 - - *588 - *589 - *590 - *591 + - *592 - *17 - *19 responses: @@ -94190,9 +94261,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '404': *6 '500': *53 x-github: @@ -94215,15 +94286,15 @@ paths: parameters: - *325 - *326 - - *594 + - *595 responses: '200': description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: *596 + default: *597 '404': *6 '500': *53 x-github: @@ -94274,7 +94345,7 @@ paths: application/json: schema: *308 examples: - default: *597 + default: *598 '404': *6 '500': *53 put: @@ -94327,7 +94398,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *587 + items: *588 examples: default: value: @@ -94357,7 +94428,7 @@ paths: application/json: schema: *308 examples: - default: *597 + default: *598 '404': *6 '422': *15 '500': *53 @@ -94419,7 +94490,7 @@ paths: type: array items: *311 examples: - default: *598 + default: *599 '404': *6 '500': *53 x-github: @@ -94457,7 +94528,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -94514,7 +94585,6 @@ paths: parameters: - *325 - *326 - - *600 - *601 - *602 - *603 @@ -94522,15 +94592,16 @@ paths: - *605 - *606 - *607 + - *608 - *59 - *19 - *17 - - *608 - *609 - *610 - *611 - *612 - *613 + - *614 responses: '200': description: Response @@ -94538,7 +94609,7 @@ paths: application/json: schema: type: array - items: &617 + items: &618 type: object properties: number: *170 @@ -94554,8 +94625,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *614 - resolution: *615 + state: *615 + resolution: *616 resolved_at: type: - string @@ -94661,7 +94732,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *616 + - *617 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -94823,13 +94894,13 @@ paths: - *325 - *326 - *422 - - *613 + - *614 responses: '200': description: Response content: application/json: - schema: *617 + schema: *618 examples: default: value: @@ -94893,8 +94964,8 @@ paths: schema: type: object properties: - state: *614 - resolution: *615 + state: *615 + resolution: *616 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -94932,7 +95003,7 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: default: value: @@ -95040,7 +95111,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &767 + items: &768 type: object properties: type: @@ -95067,7 +95138,6 @@ paths: - commit details: oneOf: - - *618 - *619 - *620 - *621 @@ -95080,6 +95150,7 @@ paths: - *628 - *629 - *630 + - *631 examples: default: value: @@ -95174,14 +95245,14 @@ paths: schema: type: object properties: - reason: &632 + reason: &633 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *631 + placeholder_id: *632 required: - reason - placeholder_id @@ -95198,7 +95269,7 @@ paths: schema: type: object properties: - reason: *632 + reason: *633 expire_at: type: - string @@ -95261,7 +95332,7 @@ paths: properties: incremental_scans: type: array - items: &633 + items: &634 description: Information on a single scan performed by secret scanning on the repository type: object @@ -95289,15 +95360,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *633 + items: *634 backfill_scans: type: array - items: *633 + items: *634 custom_pattern_backfill_scans: type: array items: allOf: - - *633 + - *634 - type: object properties: pattern_name: @@ -95310,7 +95381,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *633 + items: *634 examples: default: value: @@ -95420,9 +95491,9 @@ paths: application/json: schema: type: array - items: *634 + items: *635 examples: - default: *635 + default: *636 '400': *14 '404': *6 x-github: @@ -95616,9 +95687,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: &637 + default: &638 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -95965,7 +96036,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -96114,15 +96185,15 @@ paths: parameters: - *325 - *326 - - *636 + - *637 responses: '200': description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *637 + default: *638 '403': *27 '404': *6 x-github: @@ -96148,7 +96219,7 @@ paths: parameters: - *325 - *326 - - *636 + - *637 requestBody: required: true content: @@ -96319,10 +96390,10 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *637 - add_credit: *637 + default: *638 + add_credit: *638 '403': *27 '404': *6 '422': @@ -96362,7 +96433,7 @@ paths: parameters: - *325 - *326 - - *636 + - *637 responses: '202': *37 '400': *14 @@ -96391,7 +96462,7 @@ paths: parameters: - *325 - *326 - - *636 + - *637 responses: '202': description: Response @@ -96532,7 +96603,7 @@ paths: application/json: schema: type: array - items: &638 + items: &639 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -96905,7 +96976,7 @@ paths: application/json: schema: type: array - items: *638 + items: *639 examples: default: value: @@ -96995,7 +97066,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *640 examples: default: value: @@ -97089,7 +97160,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &640 + schema: &641 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -97189,7 +97260,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: default: value: @@ -97399,7 +97470,7 @@ paths: description: Response content: application/json: - schema: &641 + schema: &642 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -97411,7 +97482,7 @@ paths: required: - names examples: - default: &642 + default: &643 value: names: - octocat @@ -97466,9 +97537,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: *642 + default: *643 '404': *6 '422': *7 x-github: @@ -97491,7 +97562,7 @@ paths: parameters: - *325 - *326 - - &643 + - &644 name: per description: The time frame to display results for. in: query @@ -97522,7 +97593,7 @@ paths: - 128 clones: type: array - items: &644 + items: &645 title: Traffic type: object properties: @@ -97770,7 +97841,7 @@ paths: parameters: - *325 - *326 - - *643 + - *644 responses: '200': description: Response @@ -97791,7 +97862,7 @@ paths: - 3782 views: type: array - items: *644 + items: *645 required: - uniques - count @@ -98460,7 +98531,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *141 - - *528 + - *529 requestBody: required: true content: @@ -98526,9 +98597,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *531 + items: *532 examples: - default: *645 + default: *646 '400': *14 '403': *27 '404': *6 @@ -98565,7 +98636,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *141 - - *528 + - *529 requestBody: required: true content: @@ -98632,9 +98703,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *531 + items: *532 examples: - default: *645 + default: *646 '400': *14 '403': *27 '404': *6 @@ -98666,7 +98737,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *141 - - *528 + - *529 - *229 responses: '204': @@ -98810,7 +98881,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &646 + text_matches: &647 title: Search Result Text Matches type: array items: @@ -98973,7 +99044,7 @@ paths: enum: - author-date - committer-date - - &647 + - &648 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 @@ -99061,7 +99132,7 @@ paths: url: type: string format: uri - verification: *508 + verification: *509 required: - author - committer @@ -99093,7 +99164,7 @@ paths: type: number node_id: type: string - text_matches: *646 + text_matches: *647 required: - sha - node_id @@ -99285,7 +99356,7 @@ paths: - interactions - created - updated - - *647 + - *648 - *17 - *19 - name: advanced_search @@ -99399,11 +99470,11 @@ paths: type: - string - 'null' - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: type: string state_reason: @@ -99431,7 +99502,7 @@ paths: - string - 'null' format: date-time - text_matches: *646 + text_matches: *647 pull_request: type: object properties: @@ -99697,7 +99768,7 @@ paths: enum: - created - updated - - *647 + - *648 - *17 - *19 responses: @@ -99742,7 +99813,7 @@ paths: - 'null' score: type: number - text_matches: *646 + text_matches: *647 required: - id - node_id @@ -99827,7 +99898,7 @@ paths: - forks - help-wanted-issues - updated - - *647 + - *648 - *17 - *19 responses: @@ -100073,7 +100144,7 @@ paths: - admin - pull - push - text_matches: *646 + text_matches: *647 temp_clone_token: type: string allow_merge_commit: @@ -100381,7 +100452,7 @@ paths: - string - 'null' format: uri - text_matches: *646 + text_matches: *647 related: type: - array @@ -100574,7 +100645,7 @@ paths: - followers - repositories - joined - - *647 + - *648 - *17 - *19 responses: @@ -100684,7 +100755,7 @@ paths: type: - boolean - 'null' - text_matches: *646 + text_matches: *647 blog: type: - string @@ -100766,7 +100837,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &650 + - &651 name: team_id description: The unique identifier of the team. in: path @@ -100807,7 +100878,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *650 + - *651 requestBody: required: true content: @@ -100908,7 +100979,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *650 + - *651 responses: '204': description: Response @@ -100937,7 +101008,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *650 + - *651 - *17 - *19 responses: @@ -100975,7 +101046,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *650 + - *651 - name: role description: Filters members returned by their role in the team. in: query @@ -101026,7 +101097,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -101063,7 +101134,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -101103,7 +101174,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -101140,7 +101211,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *650 + - *651 - *69 responses: '200': @@ -101149,7 +101220,7 @@ paths: application/json: schema: *324 examples: - response-if-user-is-a-team-maintainer: *651 + response-if-user-is-a-team-maintainer: *652 '404': *6 x-github: githubCloudOnly: false @@ -101182,7 +101253,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *650 + - *651 - *69 requestBody: required: false @@ -101210,7 +101281,7 @@ paths: application/json: schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: *652 + response-if-users-membership-with-team-is-now-pending: *653 '403': description: Forbidden if team synchronization is set up '422': @@ -101244,7 +101315,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -101272,7 +101343,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *650 + - *651 - *17 - *19 responses: @@ -101314,7 +101385,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *650 + - *651 - *325 - *326 responses: @@ -101322,7 +101393,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *653 + schema: *654 examples: alternative-response-with-extra-repository-information: value: @@ -101473,7 +101544,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *650 + - *651 - *325 - *326 requestBody: @@ -101525,7 +101596,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *650 + - *651 - *325 - *326 responses: @@ -101552,7 +101623,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *650 + - *651 - *17 - *19 responses: @@ -101564,7 +101635,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: *654 + response-if-child-teams-exist: *655 headers: Link: *65 '404': *6 @@ -101597,7 +101668,7 @@ paths: application/json: schema: oneOf: - - &656 + - &657 title: Private User description: Private User type: object @@ -101847,7 +101918,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *655 + - *656 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -102007,7 +102078,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: default: value: @@ -102405,7 +102476,7 @@ paths: type: integer secrets: type: array - items: &657 + items: &658 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -102525,7 +102596,7 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: default: value: @@ -102938,7 +103009,7 @@ paths: description: Response content: application/json: - schema: &658 + schema: &659 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -102991,7 +103062,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &659 + default: &660 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -103036,9 +103107,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 '404': *6 x-github: githubCloudOnly: false @@ -103077,7 +103148,7 @@ paths: type: array items: *446 examples: - default: *660 + default: *661 '304': *35 '500': *53 '401': *23 @@ -104043,7 +104114,7 @@ paths: type: array items: *247 examples: - default: &671 + default: &672 value: - id: 197 name: hello_docker @@ -104144,7 +104215,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 title: Email description: Email type: object @@ -104214,9 +104285,9 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: - default: &673 + default: &674 value: - email: octocat@github.com verified: true @@ -104293,7 +104364,7 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: default: value: @@ -104551,7 +104622,7 @@ paths: application/json: schema: type: array - items: &662 + items: &663 title: GPG Key description: A unique encryption key type: object @@ -104696,7 +104767,7 @@ paths: - subkeys - revoked examples: - default: &689 + default: &690 value: - id: 3 name: Octocat's GPG Key @@ -104781,9 +104852,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *663 examples: - default: &663 + default: &664 value: id: 3 name: Octocat's GPG Key @@ -104840,7 +104911,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &664 + - &665 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -104852,9 +104923,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *663 examples: - default: *663 + default: *664 '404': *6 '304': *35 '403': *27 @@ -104877,7 +104948,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *664 + - *665 responses: '204': description: Response @@ -105185,7 +105256,7 @@ paths: required: true content: application/json: - schema: *519 + schema: *520 examples: default: value: @@ -105335,7 +105406,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Key description: Key type: object @@ -105438,9 +105509,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: &666 + default: &667 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -105473,15 +105544,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *549 + - *550 responses: '200': description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: *666 + default: *667 '404': *6 '304': *35 '403': *27 @@ -105504,7 +105575,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *549 + - *550 responses: '204': description: Response @@ -105537,7 +105608,7 @@ paths: application/json: schema: type: array - items: &667 + items: &668 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -105616,7 +105687,7 @@ paths: - account - plan examples: - default: &668 + default: &669 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -105678,9 +105749,9 @@ paths: application/json: schema: type: array - items: *667 + items: *668 examples: - default: *668 + default: *669 headers: Link: *65 '304': *35 @@ -106698,7 +106769,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *242 - - *669 + - *670 responses: '204': description: Response @@ -106813,7 +106884,7 @@ paths: - docker - nuget - container - - *670 + - *671 - *19 - *17 responses: @@ -106825,8 +106896,8 @@ paths: type: array items: *247 examples: - default: *671 - '400': *672 + default: *672 + '400': *673 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106855,7 +106926,7 @@ paths: application/json: schema: *247 examples: - default: &690 + default: &691 value: id: 40201 name: octo-name @@ -107217,9 +107288,9 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: - default: *673 + default: *674 headers: Link: *65 '304': *35 @@ -107332,7 +107403,7 @@ paths: type: array items: *77 examples: - default: &680 + default: &681 summary: Default response value: - id: 1296269 @@ -107690,9 +107761,9 @@ paths: application/json: schema: type: array - items: *521 + items: *522 examples: - default: *674 + default: *675 headers: Link: *65 '304': *35 @@ -107771,7 +107842,7 @@ paths: application/json: schema: type: array - items: &675 + items: &676 title: Social account description: Social media account type: object @@ -107788,7 +107859,7 @@ paths: - provider - url examples: - default: &676 + default: &677 value: - provider: twitter url: https://twitter.com/github @@ -107851,9 +107922,9 @@ paths: application/json: schema: type: array - items: *675 + items: *676 examples: - default: *676 + default: *677 '422': *15 '304': *35 '404': *6 @@ -107941,7 +108012,7 @@ paths: application/json: schema: type: array - items: &677 + items: &678 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -107961,7 +108032,7 @@ paths: - title - created_at examples: - default: &708 + default: &709 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -108026,9 +108097,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &678 + default: &679 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -108058,7 +108129,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: - - &679 + - &680 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -108070,9 +108141,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *678 + default: *679 '404': *6 '304': *35 '403': *27 @@ -108095,7 +108166,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: - - *679 + - *680 responses: '204': description: Response @@ -108124,7 +108195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &709 + - &710 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 @@ -108149,11 +108220,11 @@ paths: type: array items: *77 examples: - default-response: *680 + default-response: *681 application/vnd.github.v3.star+json: schema: type: array - items: &710 + items: &711 title: Starred Repository description: Starred Repository type: object @@ -108522,10 +108593,10 @@ paths: application/json: schema: oneOf: + - *657 - *656 - - *655 examples: - default-response: &684 + default-response: &685 summary: Default response value: login: octocat @@ -108560,7 +108631,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &685 + response-with-git-hub-plan-information: &686 summary: Response with GitHub plan information value: login: octocat @@ -108617,7 +108688,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &682 + - &683 name: user_id description: The unique identifier of the user. in: path @@ -108683,7 +108754,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *681 + - *682 - *17 responses: '200': @@ -108718,7 +108789,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *682 + - *683 - *265 requestBody: required: true @@ -108793,7 +108864,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *683 + schema: *684 examples: table_view: summary: Response for creating a table view @@ -108845,11 +108916,11 @@ paths: application/json: schema: oneOf: + - *657 - *656 - - *655 examples: - default-response: *684 - response-with-git-hub-plan-information: *685 + default-response: *685 + response-with-git-hub-plan-information: *686 '404': *6 x-github: githubCloudOnly: false @@ -108899,8 +108970,8 @@ paths: required: - subject_digests examples: - default: *686 - withPredicateType: *687 + default: *687 + withPredicateType: *688 responses: '200': description: Response @@ -108954,7 +109025,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *688 + default: *689 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109200,7 +109271,7 @@ paths: type: array items: *247 examples: - default: *671 + default: *672 '403': *27 '401': *23 x-github: @@ -109584,9 +109655,9 @@ paths: application/json: schema: type: array - items: *662 + items: *663 examples: - default: *689 + default: *690 headers: Link: *65 x-github: @@ -109690,7 +109761,7 @@ paths: application/json: schema: *20 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109815,7 +109886,7 @@ paths: - docker - nuget - container - - *670 + - *671 - *69 - *19 - *17 @@ -109828,10 +109899,10 @@ paths: type: array items: *247 examples: - default: *671 + default: *672 '403': *27 '401': *23 - '400': *672 + '400': *673 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109861,7 +109932,7 @@ paths: application/json: schema: *247 examples: - default: *690 + default: *691 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110210,7 +110281,7 @@ paths: type: array items: *268 examples: - default: *691 + default: *692 headers: Link: *65 '304': *35 @@ -110270,7 +110341,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *692 + items: *693 required: - name - data_type @@ -110286,7 +110357,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *693 + iteration_configuration: *694 required: - name - data_type @@ -110308,8 +110379,8 @@ paths: value: name: Due date data_type: date - single_select_field: *694 - iteration_field: *695 + single_select_field: *695 + iteration_field: *696 responses: '201': description: Response @@ -110317,11 +110388,11 @@ paths: application/json: schema: *268 examples: - text_field: *696 - number_field: *697 - date_field: *698 - single_select_field: *699 - iteration_field: *700 + text_field: *697 + number_field: *698 + date_field: *699 + single_select_field: *700 + iteration_field: *701 '304': *35 '403': *27 '401': *23 @@ -110343,7 +110414,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *265 - - *701 + - *702 - *69 responses: '200': @@ -110352,7 +110423,7 @@ paths: application/json: schema: *268 examples: - default: *702 + default: *703 headers: Link: *65 '304': *35 @@ -110709,7 +110780,7 @@ paths: parameters: - *265 - *69 - - *703 + - *704 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -110984,7 +111055,7 @@ paths: - *115 - *117 - *116 - - *704 + - *705 - *118 responses: '200': @@ -111115,7 +111186,7 @@ paths: parameters: - *69 - *115 - - *705 + - *706 - *116 responses: '200': @@ -111214,9 +111285,9 @@ paths: - *115 - *117 - *116 - - *706 - - *118 - *707 + - *118 + - *708 responses: '200': description: Response when getting a billing usage summary @@ -111350,9 +111421,9 @@ paths: application/json: schema: type: array - items: *675 + items: *676 examples: - default: *676 + default: *677 headers: Link: *65 x-github: @@ -111382,9 +111453,9 @@ paths: application/json: schema: type: array - items: *677 + items: *678 examples: - default: *708 + default: *709 headers: Link: *65 x-github: @@ -111409,7 +111480,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *69 - - *709 + - *710 - *59 - *17 - *19 @@ -111421,11 +111492,11 @@ paths: schema: anyOf: - type: array - items: *710 + items: *711 - type: array items: *77 examples: - default-response: *680 + default-response: *681 headers: Link: *65 x-github: @@ -111585,7 +111656,7 @@ webhooks: type: string enum: - disabled - enterprise: &711 + enterprise: &712 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -111654,7 +111725,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &712 + installation: &713 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -111675,7 +111746,7 @@ webhooks: required: - id - node_id - organization: &713 + organization: &714 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -111748,7 +111819,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &714 + repository: &715 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -112674,10 +112745,10 @@ webhooks: type: string enum: - enabled - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -112753,11 +112824,11 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - rule: &715 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + rule: &716 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) @@ -112980,11 +113051,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - rule: *715 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + rule: *716 sender: *4 required: - action @@ -113172,11 +113243,11 @@ webhooks: - everyone required: - from - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - rule: *715 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + rule: *716 sender: *4 required: - action @@ -113260,7 +113331,7 @@ webhooks: type: string enum: - completed - check_run: &717 + check_run: &718 title: CheckRun description: A check performed on the code of a given code change type: object @@ -113370,7 +113441,7 @@ webhooks: - examples: - neutral - deployment: *716 + deployment: *717 details_url: type: string examples: @@ -113468,10 +113539,10 @@ webhooks: - output - app - pull_requests - installation: *712 - enterprise: *711 - organization: *713 - repository: *714 + installation: *713 + enterprise: *712 + organization: *714 + repository: *715 sender: *4 required: - check_run @@ -113862,11 +113933,11 @@ webhooks: type: string enum: - created - check_run: *717 - installation: *712 - enterprise: *711 - organization: *713 - repository: *714 + check_run: *718 + installation: *713 + enterprise: *712 + organization: *714 + repository: *715 sender: *4 required: - check_run @@ -114260,11 +114331,11 @@ webhooks: type: string enum: - requested_action - check_run: *717 - installation: *712 - enterprise: *711 - organization: *713 - repository: *714 + check_run: *718 + installation: *713 + enterprise: *712 + organization: *714 + repository: *715 requested_action: description: The action requested by the user. type: object @@ -114667,11 +114738,11 @@ webhooks: type: string enum: - rerequested - check_run: *717 - installation: *712 - enterprise: *711 - organization: *713 - repository: *714 + check_run: *718 + installation: *713 + enterprise: *712 + organization: *714 + repository: *715 sender: *4 required: - check_run @@ -115656,10 +115727,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -116363,10 +116434,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -117064,10 +117135,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -117388,20 +117459,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &718 + commit_oid: &719 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: *711 - installation: *712 - organization: *713 - ref: &719 + enterprise: *712 + installation: *713 + organization: *714 + ref: &720 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: *714 + repository: *715 sender: *4 required: - action @@ -117809,12 +117880,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *718 - enterprise: *711 - installation: *712 - organization: *713 - ref: *719 - repository: *714 + commit_oid: *719 + enterprise: *712 + installation: *713 + organization: *714 + ref: *720 + repository: *715 sender: *4 required: - action @@ -118097,12 +118168,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *718 - enterprise: *711 - installation: *712 - organization: *713 - ref: *719 - repository: *714 + commit_oid: *719 + enterprise: *712 + installation: *713 + organization: *714 + ref: *720 + repository: *715 sender: *4 required: - action @@ -118448,12 +118519,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *718 - enterprise: *711 - installation: *712 - organization: *713 - ref: *719 - repository: *714 + commit_oid: *719 + enterprise: *712 + installation: *713 + organization: *714 + ref: *720 + repository: *715 sender: *4 required: - action @@ -118743,9 +118814,9 @@ webhooks: type: - string - 'null' - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -118753,7 +118824,7 @@ webhooks: type: - string - 'null' - repository: *714 + repository: *715 sender: *4 required: - action @@ -118999,12 +119070,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *718 - enterprise: *711 - installation: *712 - organization: *713 - ref: *719 - repository: *714 + commit_oid: *719 + enterprise: *712 + installation: *713 + organization: *714 + ref: *720 + repository: *715 sender: *4 required: - action @@ -119325,10 +119396,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -119588,10 +119659,10 @@ webhooks: - updated_at - author_association - body - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -119672,18 +119743,18 @@ webhooks: type: - string - 'null' - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *713 - pusher_type: &720 + organization: *714 + pusher_type: &721 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &721 + ref: &722 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -119693,7 +119764,7 @@ webhooks: enum: - tag - branch - repository: *714 + repository: *715 sender: *4 required: - ref @@ -119776,9 +119847,9 @@ webhooks: enum: - created definition: *276 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -119863,9 +119934,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -119943,9 +120014,9 @@ webhooks: enum: - promote_to_enterprise definition: *276 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -120023,9 +120094,9 @@ webhooks: enum: - updated definition: *276 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -120102,10 +120173,10 @@ webhooks: type: string enum: - updated - enterprise: *711 - installation: *712 - repository: *714 - organization: *713 + enterprise: *712 + installation: *713 + repository: *715 + organization: *714 sender: *4 new_property_values: type: array @@ -120190,18 +120261,18 @@ webhooks: title: delete event type: object properties: - enterprise: *711 - installation: *712 - organization: *713 - pusher_type: *720 - ref: *721 + enterprise: *712 + installation: *713 + organization: *714 + pusher_type: *721 + ref: *722 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *714 + repository: *715 sender: *4 required: - ref @@ -120282,10 +120353,10 @@ webhooks: enum: - assignees_changed alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120366,10 +120437,10 @@ webhooks: enum: - auto_dismissed alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120451,10 +120522,10 @@ webhooks: enum: - auto_reopened alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120536,10 +120607,10 @@ webhooks: enum: - created alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120619,10 +120690,10 @@ webhooks: enum: - dismissed alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120702,10 +120773,10 @@ webhooks: enum: - fixed alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120786,10 +120857,10 @@ webhooks: enum: - reintroduced alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120869,10 +120940,10 @@ webhooks: enum: - reopened alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120949,9 +121020,9 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - key: &722 + enterprise: *712 + installation: *713 + key: &723 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -120989,8 +121060,8 @@ webhooks: - verified - created_at - read_only - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -121067,11 +121138,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - key: *722 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + key: *723 + organization: *714 + repository: *715 sender: *4 required: - action @@ -121638,12 +121709,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - workflow: &726 + workflow: &727 title: Workflow type: - object @@ -122394,13 +122465,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *483 + - *484 pull_requests: type: array - items: *567 - repository: *714 - organization: *713 - installation: *712 + items: *568 + repository: *715 + organization: *714 + installation: *713 sender: *4 responses: '200': @@ -122471,7 +122542,7 @@ webhooks: type: string enum: - approved - approver: &723 + approver: &724 type: object properties: avatar_url: @@ -122514,11 +122585,11 @@ webhooks: type: string comment: type: string - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - reviewers: &724 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + reviewers: &725 type: array items: type: object @@ -122599,7 +122670,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &725 + workflow_job_run: &726 type: object properties: conclusion: @@ -123345,18 +123416,18 @@ webhooks: type: string enum: - rejected - approver: *723 + approver: *724 comment: type: string - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - reviewers: *724 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + reviewers: *725 sender: *4 since: type: string - workflow_job_run: *725 + workflow_job_run: *726 workflow_job_runs: type: array items: @@ -124073,13 +124144,13 @@ webhooks: type: string enum: - requested - enterprise: *711 + enterprise: *712 environment: type: string - installation: *712 - organization: *713 - repository: *714 - requestor: &731 + installation: *713 + organization: *714 + repository: *715 + requestor: &732 title: User type: - object @@ -126012,12 +126083,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - workflow: *726 + workflow: *727 workflow_run: title: Deployment Workflow Run type: @@ -126708,7 +126779,7 @@ webhooks: type: string enum: - answered - answer: &729 + answer: &730 type: object properties: author_association: @@ -126868,11 +126939,11 @@ webhooks: - created_at - updated_at - body - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -126999,11 +127070,11 @@ webhooks: - from required: - category - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127086,11 +127157,11 @@ webhooks: type: string enum: - closed - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127172,7 +127243,7 @@ webhooks: type: string enum: - created - comment: &728 + comment: &729 type: object properties: author_association: @@ -127332,11 +127403,11 @@ webhooks: - updated_at - body - reactions - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127419,12 +127490,12 @@ webhooks: type: string enum: - deleted - comment: *728 - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + comment: *729 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127519,12 +127590,12 @@ webhooks: - from required: - body - comment: *728 - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + comment: *729 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127608,11 +127679,11 @@ webhooks: type: string enum: - created - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127694,11 +127765,11 @@ webhooks: type: string enum: - deleted - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127798,11 +127869,11 @@ webhooks: type: string required: - from - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127884,10 +127955,10 @@ webhooks: type: string enum: - labeled - discussion: *727 - enterprise: *711 - installation: *712 - label: &730 + discussion: *728 + enterprise: *712 + installation: *713 + label: &731 title: Label type: object properties: @@ -127920,8 +127991,8 @@ webhooks: - color - default - description - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128004,11 +128075,11 @@ webhooks: type: string enum: - locked - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128090,11 +128161,11 @@ webhooks: type: string enum: - pinned - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128176,11 +128247,11 @@ webhooks: type: string enum: - reopened - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128265,16 +128336,16 @@ webhooks: changes: type: object properties: - new_discussion: *727 - new_repository: *714 + new_discussion: *728 + new_repository: *715 required: - new_discussion - new_repository - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128357,10 +128428,10 @@ webhooks: type: string enum: - unanswered - discussion: *727 - old_answer: *729 - organization: *713 - repository: *714 + discussion: *728 + old_answer: *730 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128442,12 +128513,12 @@ webhooks: type: string enum: - unlabeled - discussion: *727 - enterprise: *711 - installation: *712 - label: *730 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128530,11 +128601,11 @@ webhooks: type: string enum: - unlocked - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128616,11 +128687,11 @@ webhooks: type: string enum: - unpinned - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128693,7 +128764,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *711 + enterprise: *712 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -129371,9 +129442,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - forkee @@ -129519,9 +129590,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pages: description: The pages that were updated. type: array @@ -129559,7 +129630,7 @@ webhooks: - action - sha - html_url - repository: *714 + repository: *715 sender: *4 required: - pages @@ -129635,10 +129706,10 @@ webhooks: type: string enum: - created - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories: &732 + organization: *714 + repositories: &733 description: An array of repository objects that the installation can access. type: array @@ -129664,8 +129735,8 @@ webhooks: - name - full_name - private - repository: *714 - requester: *731 + repository: *715 + requester: *732 sender: *4 required: - action @@ -129740,11 +129811,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories: *732 - repository: *714 + organization: *714 + repositories: *733 + repository: *715 requester: type: - 'null' @@ -129821,11 +129892,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories: *732 - repository: *714 + organization: *714 + repositories: *733 + repository: *715 requester: type: - 'null' @@ -129902,10 +129973,10 @@ webhooks: type: string enum: - added - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories_added: &733 + organization: *714 + repositories_added: &734 description: An array of repository objects, which were added to the installation. type: array @@ -129951,15 +130022,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *714 - repository_selection: &734 + repository: *715 + repository_selection: &735 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *731 + requester: *732 sender: *4 required: - action @@ -130038,10 +130109,10 @@ webhooks: type: string enum: - removed - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories_added: *733 + organization: *714 + repositories_added: *734 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -130068,9 +130139,9 @@ webhooks: - name - full_name - private - repository: *714 - repository_selection: *734 - requester: *731 + repository: *715 + repository_selection: *735 + requester: *732 sender: *4 required: - action @@ -130149,11 +130220,11 @@ webhooks: type: string enum: - suspend - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories: *732 - repository: *714 + organization: *714 + repositories: *733 + repository: *715 requester: type: - 'null' @@ -130335,10 +130406,10 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 target_type: type: string @@ -130417,11 +130488,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories: *732 - repository: *714 + organization: *714 + repositories: *733 + repository: *715 requester: type: - 'null' @@ -130587,7 +130658,7 @@ webhooks: pin: anyOf: - type: 'null' - - *546 + - *547 user: title: User type: @@ -130673,8 +130744,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131486,8 +131557,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131848,8 +131919,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -131929,7 +132000,7 @@ webhooks: type: string enum: - deleted - comment: &735 + comment: &736 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -132086,7 +132157,7 @@ webhooks: pin: anyOf: - type: 'null' - - *546 + - *547 required: - url - html_url @@ -132100,8 +132171,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132909,8 +132980,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133273,8 +133344,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -133354,7 +133425,7 @@ webhooks: type: string enum: - edited - changes: &759 + changes: &760 description: The changes to the comment. type: object properties: @@ -133366,9 +133437,9 @@ webhooks: type: string required: - from - comment: *735 - enterprise: *711 - installation: *712 + comment: *736 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134179,8 +134250,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134541,8 +134612,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -134623,9 +134694,9 @@ webhooks: type: string enum: - pinned - comment: *735 - enterprise: *711 - installation: *712 + comment: *736 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -135438,8 +135509,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135802,8 +135873,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -135883,9 +135954,9 @@ webhooks: type: string enum: - unpinned - comment: *735 - enterprise: *711 - installation: *712 + comment: *736 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136698,8 +136769,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137062,8 +137133,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -137152,9 +137223,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -137243,9 +137314,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -137333,9 +137404,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -137424,9 +137495,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -137506,10 +137577,10 @@ webhooks: type: string enum: - assigned - assignee: *731 - enterprise: *711 - installation: *712 - issue: &738 + assignee: *732 + enterprise: *712 + installation: *713 + issue: &739 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -138320,11 +138391,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138444,8 +138515,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -138525,8 +138596,8 @@ webhooks: type: string enum: - closed - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -139342,11 +139413,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139609,8 +139680,8 @@ webhooks: required: - state - closed_at - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -139689,8 +139760,8 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140497,11 +140568,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140620,8 +140691,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -140700,8 +140771,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141531,11 +141602,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141633,7 +141704,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &736 + milestone: &737 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141776,8 +141847,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -141876,8 +141947,8 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142688,11 +142759,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142812,9 +142883,9 @@ webhooks: - active_lock_reason - body - reactions - label: *730 - organization: *713 - repository: *714 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -142894,8 +142965,8 @@ webhooks: type: string enum: - labeled - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143705,11 +143776,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143829,9 +143900,9 @@ webhooks: - active_lock_reason - body - reactions - label: *730 - organization: *713 - repository: *714 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -143911,8 +143982,8 @@ webhooks: type: string enum: - locked - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144747,11 +144818,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144848,8 +144919,8 @@ webhooks: format: uri user_view_type: type: string - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -144928,8 +144999,8 @@ webhooks: type: string enum: - milestoned - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145758,11 +145829,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145859,9 +145930,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *736 - organization: *713 - repository: *714 + milestone: *737 + organization: *714 + repository: *715 sender: *4 required: - action @@ -146748,11 +146819,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147344,8 +147415,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148152,11 +148223,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148279,8 +148350,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -148360,9 +148431,9 @@ webhooks: type: string enum: - pinned - enterprise: *711 - installation: *712 - issue: &737 + enterprise: *712 + installation: *713 + issue: &738 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -149167,11 +149238,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149290,8 +149361,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -149370,8 +149441,8 @@ webhooks: type: string enum: - reopened - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150204,11 +150275,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150306,8 +150377,8 @@ webhooks: user_view_type: type: string type: *230 - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -151195,11 +151266,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151809,11 +151880,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *711 - installation: *712 - issue: *737 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + issue: *738 + organization: *714 + repository: *715 sender: *4 required: - action @@ -151893,12 +151964,12 @@ webhooks: type: string enum: - typed - enterprise: *711 - installation: *712 - issue: *738 + enterprise: *712 + installation: *713 + issue: *739 type: *230 - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -151979,7 +152050,7 @@ webhooks: type: string enum: - unassigned - assignee: &762 + assignee: &763 title: User type: - object @@ -152051,11 +152122,11 @@ webhooks: required: - login - id - enterprise: *711 - installation: *712 - issue: *738 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + issue: *739 + organization: *714 + repository: *715 sender: *4 required: - action @@ -152134,12 +152205,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *711 - installation: *712 - issue: *738 - label: *730 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + issue: *739 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -152219,8 +152290,8 @@ webhooks: type: string enum: - unlocked - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153053,11 +153124,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153154,8 +153225,8 @@ webhooks: format: uri user_view_type: type: string - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -153235,11 +153306,11 @@ webhooks: type: string enum: - unpinned - enterprise: *711 - installation: *712 - issue: *737 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + issue: *738 + organization: *714 + repository: *715 sender: *4 required: - action @@ -153318,12 +153389,12 @@ webhooks: type: string enum: - untyped - enterprise: *711 - installation: *712 - issue: *738 + enterprise: *712 + installation: *713 + issue: *739 type: *230 - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -153403,11 +153474,11 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - label: *730 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -153485,11 +153556,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - label: *730 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -153599,11 +153670,11 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - label: *730 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -153685,9 +153756,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *711 - installation: *712 - marketplace_purchase: &739 + enterprise: *712 + installation: *713 + marketplace_purchase: &740 title: Marketplace Purchase type: object required: @@ -153775,8 +153846,8 @@ webhooks: type: integer unit_count: type: integer - organization: *713 - previous_marketplace_purchase: &740 + organization: *714 + previous_marketplace_purchase: &741 title: Marketplace Purchase type: object properties: @@ -153860,7 +153931,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *714 + repository: *715 sender: *4 required: - action @@ -153940,10 +154011,10 @@ webhooks: - changed effective_date: type: string - enterprise: *711 - installation: *712 - marketplace_purchase: *739 - organization: *713 + enterprise: *712 + installation: *713 + marketplace_purchase: *740 + organization: *714 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -154031,7 +154102,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *714 + repository: *715 sender: *4 required: - action @@ -154113,10 +154184,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *711 - installation: *712 - marketplace_purchase: *739 - organization: *713 + enterprise: *712 + installation: *713 + marketplace_purchase: *740 + organization: *714 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -154202,7 +154273,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *714 + repository: *715 sender: *4 required: - action @@ -154283,8 +154354,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 marketplace_purchase: title: Marketplace Purchase type: object @@ -154370,9 +154441,9 @@ webhooks: type: integer unit_count: type: integer - organization: *713 - previous_marketplace_purchase: *740 - repository: *714 + organization: *714 + previous_marketplace_purchase: *741 + repository: *715 sender: *4 required: - action @@ -154452,12 +154523,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *711 - installation: *712 - marketplace_purchase: *739 - organization: *713 - previous_marketplace_purchase: *740 - repository: *714 + enterprise: *712 + installation: *713 + marketplace_purchase: *740 + organization: *714 + previous_marketplace_purchase: *741 + repository: *715 sender: *4 required: - action @@ -154559,11 +154630,11 @@ webhooks: type: string required: - to - enterprise: *711 - installation: *712 - member: *731 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + member: *732 + organization: *714 + repository: *715 sender: *4 required: - action @@ -154665,11 +154736,11 @@ webhooks: type: - string - 'null' - enterprise: *711 - installation: *712 - member: *731 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + member: *732 + organization: *714 + repository: *715 sender: *4 required: - action @@ -154748,11 +154819,11 @@ webhooks: type: string enum: - removed - enterprise: *711 - installation: *712 - member: *731 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + member: *732 + organization: *714 + repository: *715 sender: *4 required: - action @@ -154830,11 +154901,11 @@ webhooks: type: string enum: - added - enterprise: *711 - installation: *712 - member: *731 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + member: *732 + organization: *714 + repository: *715 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154912,7 +154983,7 @@ webhooks: required: - login - id - team: &741 + team: &742 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -155142,11 +155213,11 @@ webhooks: type: string enum: - removed - enterprise: *711 - installation: *712 - member: *731 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + member: *732 + organization: *714 + repository: *715 scope: description: The scope of the membership. Currently, can only be `team`. @@ -155225,7 +155296,7 @@ webhooks: required: - login - id - team: *741 + team: *742 required: - action - scope @@ -155307,8 +155378,8 @@ webhooks: type: string enum: - checks_requested - installation: *712 - merge_group: &742 + installation: *713 + merge_group: &743 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -155334,8 +155405,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155421,10 +155492,10 @@ webhooks: - merged - invalidated - dequeued - installation: *712 - merge_group: *742 - organization: *713 - repository: *714 + installation: *713 + merge_group: *743 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155497,7 +155568,7 @@ webhooks: type: string enum: - deleted - enterprise: *711 + enterprise: *712 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -155606,12 +155677,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *712 - organization: *713 + installation: *713 + organization: *714 repository: anyOf: - type: 'null' - - *714 + - *715 sender: *4 required: - action @@ -155691,11 +155762,11 @@ webhooks: type: string enum: - closed - enterprise: *711 - installation: *712 - milestone: *736 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + milestone: *737 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155774,9 +155845,9 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - milestone: &743 + enterprise: *712 + installation: *713 + milestone: &744 title: Milestone description: A collection of related issues and pull requests. type: object @@ -155918,8 +155989,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155998,11 +156069,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - milestone: *736 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + milestone: *737 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156112,11 +156183,11 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - milestone: *736 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + milestone: *737 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156196,11 +156267,11 @@ webhooks: type: string enum: - opened - enterprise: *711 - installation: *712 - milestone: *743 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + milestone: *744 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156279,11 +156350,11 @@ webhooks: type: string enum: - blocked - blocked_user: *731 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + blocked_user: *732 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156362,11 +156433,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *731 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + blocked_user: *732 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156445,9 +156516,9 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - membership: &744 + enterprise: *712 + installation: *713 + membership: &745 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -156557,8 +156628,8 @@ webhooks: - role - organization_url - user - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156636,11 +156707,11 @@ webhooks: type: string enum: - member_added - enterprise: *711 - installation: *712 - membership: *744 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + membership: *745 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156719,8 +156790,8 @@ webhooks: type: string enum: - member_invited - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -156842,10 +156913,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 - user: *731 + user: *732 required: - action - invitation @@ -156923,11 +156994,11 @@ webhooks: type: string enum: - member_removed - enterprise: *711 - installation: *712 - membership: *744 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + membership: *745 + organization: *714 + repository: *715 sender: *4 required: - action @@ -157014,11 +157085,11 @@ webhooks: properties: from: type: string - enterprise: *711 - installation: *712 - membership: *744 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + membership: *745 + organization: *714 + repository: *715 sender: *4 required: - action @@ -157095,9 +157166,9 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 package: description: Information about the package. type: object @@ -157620,7 +157691,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &745 + items: &746 title: Ruby Gems metadata type: object properties: @@ -157717,7 +157788,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -157793,9 +157864,9 @@ webhooks: type: string enum: - updated - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 package: description: Information about the package. type: object @@ -158157,7 +158228,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *745 + items: *746 source_url: type: string format: uri @@ -158228,7 +158299,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -158408,12 +158479,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *711 + enterprise: *712 id: type: integer - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - id @@ -158490,7 +158561,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &746 + personal_access_token_request: &747 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -158640,10 +158711,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *711 - organization: *713 + enterprise: *712 + organization: *714 sender: *4 - installation: *712 + installation: *713 required: - action - personal_access_token_request @@ -158720,11 +158791,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *746 - enterprise: *711 - organization: *713 + personal_access_token_request: *747 + enterprise: *712 + organization: *714 sender: *4 - installation: *712 + installation: *713 required: - action - personal_access_token_request @@ -158800,11 +158871,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *746 - enterprise: *711 - organization: *713 + personal_access_token_request: *747 + enterprise: *712 + organization: *714 sender: *4 - installation: *712 + installation: *713 required: - action - personal_access_token_request @@ -158879,11 +158950,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *746 - organization: *713 - enterprise: *711 + personal_access_token_request: *747 + organization: *714 + enterprise: *712 sender: *4 - installation: *712 + installation: *713 required: - action - personal_access_token_request @@ -158988,7 +159059,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *747 + last_response: *748 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -159020,8 +159091,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 zen: description: Random string of GitHub zen. @@ -159266,10 +159337,10 @@ webhooks: - from required: - note - enterprise: *711 - installation: *712 - organization: *713 - project_card: &748 + enterprise: *712 + installation: *713 + organization: *714 + project_card: &749 title: Project Card type: object properties: @@ -159392,7 +159463,7 @@ webhooks: - creator - created_at - updated_at - repository: *714 + repository: *715 sender: *4 required: - action @@ -159473,11 +159544,11 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - project_card: *748 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project_card: *749 + repository: *715 sender: *4 required: - action @@ -159557,9 +159628,9 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 project_card: title: Project Card type: object @@ -159689,7 +159760,7 @@ webhooks: repository: anyOf: - type: 'null' - - *714 + - *715 sender: *4 required: - action @@ -159783,11 +159854,11 @@ webhooks: - from required: - note - enterprise: *711 - installation: *712 - organization: *713 - project_card: *748 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project_card: *749 + repository: *715 sender: *4 required: - action @@ -159881,9 +159952,9 @@ webhooks: - from required: - column_id - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 project_card: allOf: - title: Project Card @@ -160080,7 +160151,7 @@ webhooks: type: string required: - after_id - repository: *714 + repository: *715 sender: *4 required: - action @@ -160160,10 +160231,10 @@ webhooks: type: string enum: - closed - enterprise: *711 - installation: *712 - organization: *713 - project: &750 + enterprise: *712 + installation: *713 + organization: *714 + project: &751 title: Project type: object properties: @@ -160290,7 +160361,7 @@ webhooks: - creator - created_at - updated_at - repository: *714 + repository: *715 sender: *4 required: - action @@ -160370,10 +160441,10 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - project_column: &749 + enterprise: *712 + installation: *713 + organization: *714 + project_column: &750 title: Project Column type: object properties: @@ -160413,7 +160484,7 @@ webhooks: - name - created_at - updated_at - repository: *714 + repository: *715 sender: *4 required: - action @@ -160492,14 +160563,14 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - project_column: *749 + enterprise: *712 + installation: *713 + organization: *714 + project_column: *750 repository: anyOf: - type: 'null' - - *714 + - *715 sender: *4 required: - action @@ -160588,11 +160659,11 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - organization: *713 - project_column: *749 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project_column: *750 + repository: *715 sender: *4 required: - action @@ -160672,11 +160743,11 @@ webhooks: type: string enum: - moved - enterprise: *711 - installation: *712 - organization: *713 - project_column: *749 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project_column: *750 + repository: *715 sender: *4 required: - action @@ -160756,11 +160827,11 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - project: *750 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project: *751 + repository: *715 sender: *4 required: - action @@ -160840,14 +160911,14 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - project: *750 + enterprise: *712 + installation: *713 + organization: *714 + project: *751 repository: anyOf: - type: 'null' - - *714 + - *715 sender: *4 required: - action @@ -160948,11 +161019,11 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - organization: *713 - project: *750 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project: *751 + repository: *715 sender: *4 required: - action @@ -161031,11 +161102,11 @@ webhooks: type: string enum: - reopened - enterprise: *711 - installation: *712 - organization: *713 - project: *750 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project: *751 + repository: *715 sender: *4 required: - action @@ -161116,8 +161187,8 @@ webhooks: type: string enum: - closed - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -161199,8 +161270,8 @@ webhooks: type: string enum: - created - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -161282,8 +161353,8 @@ webhooks: type: string enum: - deleted - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -161405,8 +161476,8 @@ webhooks: type: string to: type: string - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -161490,7 +161561,7 @@ webhooks: type: string enum: - archived - changes: &754 + changes: &755 type: object properties: archived_at: @@ -161506,9 +161577,9 @@ webhooks: - string - 'null' format: date-time - installation: *712 - organization: *713 - projects_v2_item: &751 + installation: *713 + organization: *714 + projects_v2_item: &752 title: Projects v2 Item description: An item belonging to a project type: object @@ -161648,9 +161719,9 @@ webhooks: - 'null' to: type: string - installation: *712 - organization: *713 - projects_v2_item: *751 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -161732,9 +161803,9 @@ webhooks: type: string enum: - created - installation: *712 - organization: *713 - projects_v2_item: *751 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -161815,9 +161886,9 @@ webhooks: type: string enum: - deleted - installation: *712 - organization: *713 - projects_v2_item: *751 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -161922,7 +161993,7 @@ webhooks: oneOf: - type: string - type: integer - - &752 + - &753 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -161946,7 +162017,7 @@ webhooks: required: - id - name - - &753 + - &754 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -161986,8 +162057,8 @@ webhooks: oneOf: - type: string - type: integer - - *752 - *753 + - *754 type: - 'null' - string @@ -162010,9 +162081,9 @@ webhooks: - 'null' required: - body - installation: *712 - organization: *713 - projects_v2_item: *751 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -162109,9 +162180,9 @@ webhooks: type: - string - 'null' - installation: *712 - organization: *713 - projects_v2_item: *751 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -162194,10 +162265,10 @@ webhooks: type: string enum: - restored - changes: *754 - installation: *712 - organization: *713 - projects_v2_item: *751 + changes: *755 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -162279,8 +162350,8 @@ webhooks: type: string enum: - reopened - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -162362,9 +162433,9 @@ webhooks: type: string enum: - created - installation: *712 - organization: *713 - projects_v2_status_update: *755 + installation: *713 + organization: *714 + projects_v2_status_update: *756 sender: *4 required: - action @@ -162445,9 +162516,9 @@ webhooks: type: string enum: - deleted - installation: *712 - organization: *713 - projects_v2_status_update: *755 + installation: *713 + organization: *714 + projects_v2_status_update: *756 sender: *4 required: - action @@ -162593,9 +162664,9 @@ webhooks: - string - 'null' format: date - installation: *712 - organization: *713 - projects_v2_status_update: *755 + installation: *713 + organization: *714 + projects_v2_status_update: *756 sender: *4 required: - action @@ -162666,10 +162737,10 @@ webhooks: title: public event type: object properties: - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - repository @@ -162746,13 +162817,13 @@ webhooks: type: string enum: - assigned - assignee: *731 - enterprise: *711 - installation: *712 - number: &756 + assignee: *732 + enterprise: *712 + installation: *713 + number: &757 description: The pull request number. type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -165123,7 +165194,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -165205,11 +165276,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -167573,7 +167644,7 @@ webhooks: - draft reason: type: string - repository: *714 + repository: *715 sender: *4 required: - action @@ -167655,11 +167726,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -170023,7 +170094,7 @@ webhooks: - draft reason: type: string - repository: *714 + repository: *715 sender: *4 required: - action @@ -170105,13 +170176,13 @@ webhooks: type: string enum: - closed - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: &757 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: &758 allOf: - - *567 + - *568 - type: object properties: allow_auto_merge: @@ -170173,7 +170244,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *714 + repository: *715 sender: *4 required: - action @@ -170254,12 +170325,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: *757 - repository: *714 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: *758 + repository: *715 sender: *4 required: - action @@ -170339,11 +170410,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *711 + enterprise: *712 milestone: *266 - number: *756 - organization: *713 - pull_request: &758 + number: *757 + organization: *714 + pull_request: &759 title: Pull Request type: object properties: @@ -172692,7 +172763,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -172771,11 +172842,11 @@ webhooks: type: string enum: - dequeued - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -175143,7 +175214,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *714 + repository: *715 sender: *4 required: - action @@ -175267,12 +175338,12 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: *757 - repository: *714 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: *758 + repository: *715 sender: *4 required: - action @@ -175352,11 +175423,11 @@ webhooks: type: string enum: - enqueued - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -177709,7 +177780,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -177789,11 +177860,11 @@ webhooks: type: string enum: - labeled - enterprise: *711 - installation: *712 - label: *730 - number: *756 - organization: *713 + enterprise: *712 + installation: *713 + label: *731 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -180163,7 +180234,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -180244,10 +180315,10 @@ webhooks: type: string enum: - locked - enterprise: *711 - installation: *712 - number: *756 - organization: *713 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -182615,7 +182686,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -182695,12 +182766,12 @@ webhooks: type: string enum: - milestoned - enterprise: *711 + enterprise: *712 milestone: *266 - number: *756 - organization: *713 - pull_request: *758 - repository: *714 + number: *757 + organization: *714 + pull_request: *759 + repository: *715 sender: *4 required: - action @@ -182779,12 +182850,12 @@ webhooks: type: string enum: - opened - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: *757 - repository: *714 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: *758 + repository: *715 sender: *4 required: - action @@ -182865,12 +182936,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: *757 - repository: *714 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: *758 + repository: *715 sender: *4 required: - action @@ -182950,12 +183021,12 @@ webhooks: type: string enum: - reopened - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: *757 - repository: *714 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: *758 + repository: *715 sender: *4 required: - action @@ -183330,9 +183401,9 @@ webhooks: - start_side - side - reactions - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: type: object properties: @@ -185584,7 +185655,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *714 + repository: *715 sender: *4 required: - action @@ -185664,7 +185735,7 @@ webhooks: type: string enum: - deleted - comment: &760 + comment: &761 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -185957,9 +186028,9 @@ webhooks: - start_side - side - reactions - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: type: object properties: @@ -188199,7 +188270,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *714 + repository: *715 sender: *4 required: - action @@ -188279,11 +188350,11 @@ webhooks: type: string enum: - edited - changes: *759 - comment: *760 - enterprise: *711 - installation: *712 - organization: *713 + changes: *760 + comment: *761 + enterprise: *712 + installation: *713 + organization: *714 pull_request: type: object properties: @@ -190526,7 +190597,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *714 + repository: *715 sender: *4 required: - action @@ -190607,9 +190678,9 @@ webhooks: type: string enum: - dismissed - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: title: Simple Pull Request type: object @@ -192864,7 +192935,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 + repository: *715 review: description: The review that was affected. type: object @@ -193115,9 +193186,9 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: title: Simple Pull Request type: object @@ -195231,8 +195302,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 - review: &761 + repository: *715 + review: &762 description: The review that was affected. type: object properties: @@ -195470,12 +195541,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: description: The pull request number. type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -197844,7 +197915,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_reviewer: title: User type: @@ -197930,12 +198001,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: description: The pull request number. type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -200311,7 +200382,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_team: title: Team description: Groups of organization members that gives permissions @@ -200506,12 +200577,12 @@ webhooks: type: string enum: - review_requested - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: description: The pull request number. type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -202882,7 +202953,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_reviewer: title: User type: @@ -202969,12 +203040,12 @@ webhooks: type: string enum: - review_requested - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: description: The pull request number. type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -205336,7 +205407,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_team: title: Team description: Groups of organization members that gives permissions @@ -205520,9 +205591,9 @@ webhooks: type: string enum: - submitted - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: title: Simple Pull Request type: object @@ -207780,8 +207851,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 - review: *761 + repository: *715 + review: *762 sender: *4 required: - action @@ -207861,9 +207932,9 @@ webhooks: type: string enum: - resolved - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: title: Simple Pull Request type: object @@ -210016,7 +210087,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 + repository: *715 sender: *4 thread: type: object @@ -210413,9 +210484,9 @@ webhooks: type: string enum: - unresolved - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: title: Simple Pull Request type: object @@ -212551,7 +212622,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 + repository: *715 sender: *4 thread: type: object @@ -212950,10 +213021,10 @@ webhooks: type: string before: type: string - enterprise: *711 - installation: *712 - number: *756 - organization: *713 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -215310,7 +215381,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -215392,11 +215463,11 @@ webhooks: type: string enum: - unassigned - assignee: *762 - enterprise: *711 - installation: *712 - number: *756 - organization: *713 + assignee: *763 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -217768,7 +217839,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -217847,11 +217918,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *711 - installation: *712 - label: *730 - number: *756 - organization: *713 + enterprise: *712 + installation: *713 + label: *731 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -220212,7 +220283,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -220293,10 +220364,10 @@ webhooks: type: string enum: - unlocked - enterprise: *711 - installation: *712 - number: *756 - organization: *713 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -222647,7 +222718,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -222850,7 +222921,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *711 + enterprise: *712 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -222945,8 +223016,8 @@ webhooks: - url - author - committer - installation: *712 - organization: *713 + installation: *713 + organization: *714 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -223545,9 +223616,9 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 registry_package: type: object properties: @@ -224024,7 +224095,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *745 + items: *746 summary: type: string tag_name: @@ -224080,7 +224151,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -224158,9 +224229,9 @@ webhooks: type: string enum: - updated - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 registry_package: type: object properties: @@ -224472,7 +224543,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *745 + items: *746 summary: type: string tag_name: @@ -224522,7 +224593,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -224599,10 +224670,10 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - release: &763 + enterprise: *712 + installation: *713 + organization: *714 + release: &764 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -224933,7 +225004,7 @@ webhooks: - updated_at - zipball_url - body - repository: *714 + repository: *715 sender: *4 required: - action @@ -225010,11 +225081,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - release: *763 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + release: *764 + repository: *715 sender: *4 required: - action @@ -225131,11 +225202,11 @@ webhooks: type: boolean required: - to - enterprise: *711 - installation: *712 - organization: *713 - release: *763 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + release: *764 + repository: *715 sender: *4 required: - action @@ -225213,9 +225284,9 @@ webhooks: type: string enum: - prereleased - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -225551,7 +225622,7 @@ webhooks: - string - 'null' format: uri - repository: *714 + repository: *715 sender: *4 required: - action @@ -225627,10 +225698,10 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 - release: &764 + enterprise: *712 + installation: *713 + organization: *714 + release: &765 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -225963,7 +226034,7 @@ webhooks: - string - 'null' format: uri - repository: *714 + repository: *715 sender: *4 required: - action @@ -226039,11 +226110,11 @@ webhooks: type: string enum: - released - enterprise: *711 - installation: *712 - organization: *713 - release: *763 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + release: *764 + repository: *715 sender: *4 required: - action @@ -226119,11 +226190,11 @@ webhooks: type: string enum: - unpublished - enterprise: *711 - installation: *712 - organization: *713 - release: *764 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + release: *765 + repository: *715 sender: *4 required: - action @@ -226199,11 +226270,11 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - repository_advisory: *634 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + repository_advisory: *635 sender: *4 required: - action @@ -226279,11 +226350,11 @@ webhooks: type: string enum: - reported - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - repository_advisory: *634 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + repository_advisory: *635 sender: *4 required: - action @@ -226359,10 +226430,10 @@ webhooks: type: string enum: - archived - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226439,10 +226510,10 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226520,10 +226591,10 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226608,10 +226679,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226726,10 +226797,10 @@ webhooks: - 'null' items: type: string - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226801,10 +226872,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 status: type: string @@ -226885,10 +226956,10 @@ webhooks: type: string enum: - privatized - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226965,10 +227036,10 @@ webhooks: type: string enum: - publicized - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -227062,10 +227133,10 @@ webhooks: - name required: - repository - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -227145,10 +227216,10 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 repository_ruleset: *308 sender: *4 required: @@ -227227,10 +227298,10 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 repository_ruleset: *308 sender: *4 required: @@ -227309,10 +227380,10 @@ webhooks: type: string enum: - edited - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 repository_ruleset: *308 changes: type: object @@ -227374,16 +227445,16 @@ webhooks: properties: added: type: array - items: *587 + items: *588 deleted: type: array - items: *587 + items: *588 updated: type: array items: type: object properties: - rule: *587 + rule: *588 changes: type: object properties: @@ -227620,10 +227691,10 @@ webhooks: - from required: - owner - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -227701,10 +227772,10 @@ webhooks: type: string enum: - unarchived - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -227782,7 +227853,7 @@ webhooks: type: string enum: - create - alert: &765 + alert: &766 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -227907,10 +227978,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228120,10 +228191,10 @@ webhooks: type: string enum: - dismissed - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228201,11 +228272,11 @@ webhooks: type: string enum: - reopen - alert: *765 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *766 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228407,10 +228478,10 @@ webhooks: enum: - fixed - open - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228488,7 +228559,7 @@ webhooks: type: string enum: - assigned - alert: &766 + alert: &767 type: object properties: number: *170 @@ -228628,10 +228699,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228709,11 +228780,11 @@ webhooks: type: string enum: - created - alert: *766 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *767 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228794,11 +228865,11 @@ webhooks: type: string enum: - created - alert: *766 - installation: *712 - location: *767 - organization: *713 - repository: *714 + alert: *767 + installation: *713 + location: *768 + organization: *714 + repository: *715 sender: *4 required: - location @@ -229036,11 +229107,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *766 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *767 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -229118,11 +229189,11 @@ webhooks: type: string enum: - reopened - alert: *766 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *767 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -229200,11 +229271,11 @@ webhooks: type: string enum: - resolved - alert: *766 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *767 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -229282,12 +229353,12 @@ webhooks: type: string enum: - unassigned - alert: *766 + alert: *767 assignee: *4 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -229365,11 +229436,11 @@ webhooks: type: string enum: - validated - alert: *766 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *767 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -229499,10 +229570,10 @@ webhooks: - organization - enterprise - - repository: *714 - enterprise: *711 - installation: *712 - organization: *713 + repository: *715 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -229580,11 +229651,11 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - security_advisory: &768 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + security_advisory: &769 description: The details of the security advisory, including summary, description, and severity. type: object @@ -229770,11 +229841,11 @@ webhooks: type: string enum: - updated - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - security_advisory: *768 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + security_advisory: *769 sender: *4 required: - action @@ -229847,10 +229918,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -230037,9 +230108,9 @@ webhooks: type: object properties: security_and_analysis: *281 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: *328 sender: *4 required: @@ -230118,12 +230189,12 @@ webhooks: type: string enum: - cancelled - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: &769 + sponsorship: &770 type: object properties: created_at: @@ -230428,12 +230499,12 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: *769 + sponsorship: *770 required: - action - sponsorship @@ -230521,12 +230592,12 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: *769 + sponsorship: *770 required: - action - changes @@ -230603,17 +230674,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &770 + effective_date: &771 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: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: *769 + sponsorship: *770 required: - action - sponsorship @@ -230687,7 +230758,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &771 + changes: &772 type: object properties: tier: @@ -230731,13 +230802,13 @@ webhooks: - from required: - tier - effective_date: *770 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + effective_date: *771 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: *769 + sponsorship: *770 required: - action - changes @@ -230814,13 +230885,13 @@ webhooks: type: string enum: - tier_changed - changes: *771 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + changes: *772 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: *769 + sponsorship: *770 required: - action - changes @@ -230894,10 +230965,10 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -230981,10 +231052,10 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -231418,15 +231489,15 @@ webhooks: type: - string - 'null' - enterprise: *711 + enterprise: *712 id: description: The unique identifier of the status. type: integer - installation: *712 + installation: *713 name: type: string - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 sha: description: The Commit SHA. @@ -231542,9 +231613,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -231634,9 +231705,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -231726,9 +231797,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -231818,9 +231889,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -231897,12 +231968,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - team: &772 + team: &773 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -232132,9 +232203,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -232604,7 +232675,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -232680,9 +232751,9 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -233152,7 +233223,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -233229,9 +233300,9 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -233701,7 +233772,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -233845,9 +233916,9 @@ webhooks: - from required: - permissions - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -234317,7 +234388,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - changes @@ -234395,9 +234466,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -234867,7 +234938,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -234943,10 +235014,10 @@ webhooks: type: string enum: - started - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -235019,17 +235090,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *711 + enterprise: *712 inputs: type: - object - 'null' additionalProperties: true - installation: *712 - organization: *713 + installation: *713 + organization: *714 ref: type: string - repository: *714 + repository: *715 sender: *4 workflow: type: string @@ -235111,10 +235182,10 @@ webhooks: type: string enum: - completed - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 workflow_job: allOf: @@ -235370,7 +235441,7 @@ webhooks: type: string required: - conclusion - deployment: *483 + deployment: *484 required: - action - repository @@ -235449,10 +235520,10 @@ webhooks: type: string enum: - in_progress - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 workflow_job: allOf: @@ -235734,7 +235805,7 @@ webhooks: required: - status - steps - deployment: *483 + deployment: *484 required: - action - repository @@ -235813,10 +235884,10 @@ webhooks: type: string enum: - queued - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 workflow_job: type: object @@ -235962,7 +236033,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *483 + deployment: *484 required: - action - repository @@ -236041,10 +236112,10 @@ webhooks: type: string enum: - waiting - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 workflow_job: type: object @@ -236191,7 +236262,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *483 + deployment: *484 required: - action - repository @@ -236271,12 +236342,12 @@ webhooks: type: string enum: - completed - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - workflow: *726 + workflow: *727 workflow_run: title: Workflow Run type: object @@ -237295,12 +237366,12 @@ webhooks: type: string enum: - in_progress - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - workflow: *726 + workflow: *727 workflow_run: title: Workflow Run type: object @@ -238304,12 +238375,12 @@ webhooks: type: string enum: - requested - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - workflow: *726 + workflow: *727 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 606cf805b..a719bab36 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -376614,6 +376614,238 @@ } } }, + "/repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}": { + "get": { + "summary": "Fetch a software bill of materials (SBOM) for a repository.", + "description": "Fetches a previously generated software bill of materials (SBOM) for a repository.\nWhen the SBOM is ready, the response is a 302 redirect to a temporary download URL for the SBOM in SPDX JSON format.\nThe generated SBOM report may be retained for up to one week from the original request.\nThe temporary download URL returned by this endpoint expires separately, and its expiry is set when the fetch request is made.", + "tags": [ + "dependency-graph" + ], + "operationId": "dependency-graph/fetch-sbom-report", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-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": "sbom_uuid", + "in": "path", + "required": true, + "description": "The unique identifier of the SBOM export.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "302": { + "description": "Redirects to a temporary download URL for the completed SBOM.", + "headers": { + "Location": { + "example": "https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D", + "schema": { + "type": "string" + } + } + } + }, + "202": { + "description": "SBOM is still being processed, no content is returned." + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "category": "dependency-graph", + "subcategory": "sboms" + } + } + }, + "/repos/{owner}/{repo}/dependency-graph/sbom/generate-report": { + "get": { + "summary": "Request generation of a software bill of materials (SBOM) for a repository.", + "description": "Triggers a job to generate a software bill of materials (SBOM) for a repository in SPDX JSON format.", + "tags": [ + "dependency-graph" + ], + "operationId": "dependency-graph/generate-sbom-report", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-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": { + "201": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "sbom_url": { + "type": "string", + "description": "URL to poll for the SBOM export result." + } + } + }, + "examples": { + "default": { + "value": { + "sbom_url": "https://api.github.com/repos/github/example/dependency-graph/sbom/fetch-report/4bab1a7e-da63-4828-9488-44e0e01a7c1b" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "category": "dependency-graph", + "subcategory": "sboms" + } + } + }, "/repos/{owner}/{repo}/dependency-graph/snapshots": { "post": { "summary": "Create a snapshot of dependencies for a repository", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index c20818e6f..8c8da000a 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -1041,7 +1041,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &636 + - &637 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -11366,7 +11366,7 @@ paths: properties: action: type: string - discussion: &727 + discussion: &728 title: Discussion description: A Discussion in a repository. type: object @@ -12151,7 +12151,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &648 + sub_issues_summary: &649 title: Sub-issues Summary type: object properties: @@ -12235,7 +12235,7 @@ paths: pin: anyOf: - type: 'null' - - &546 + - &547 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -12262,7 +12262,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &649 + issue_dependencies_summary: &650 title: Issue Dependencies Summary type: object properties: @@ -12281,7 +12281,7 @@ paths: - total_blocking issue_field_values: type: array - items: &531 + items: &532 title: Issue Field Value description: A value assigned to an issue field type: object @@ -13061,7 +13061,7 @@ paths: type: string release: allOf: - - &578 + - &579 title: Release description: A release. type: object @@ -13143,7 +13143,7 @@ paths: author: *4 assets: type: array - items: &579 + items: &580 title: Release Asset description: Data related to a release. type: object @@ -16953,7 +16953,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &554 + - &555 name: all description: If `true`, show notifications marked as read. in: query @@ -16961,7 +16961,7 @@ paths: schema: type: boolean default: false - - &555 + - &556 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16971,7 +16971,7 @@ paths: type: boolean default: false - *86 - - &556 + - &557 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -17562,7 +17562,7 @@ paths: - url - subscription_url examples: - default: &557 + default: &558 value: - id: '1' repository: @@ -19132,7 +19132,7 @@ paths: required: false schema: type: string - - &704 + - &705 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -19278,7 +19278,7 @@ paths: parameters: - *73 - *115 - - &705 + - &706 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 @@ -19390,7 +19390,7 @@ paths: - *115 - *117 - *116 - - &706 + - &707 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -19398,7 +19398,7 @@ paths: schema: type: string - *118 - - &707 + - &708 name: sku description: The SKU to query for usage. in: query @@ -26245,12 +26245,12 @@ paths: required: - subject_digests examples: - default: &686 + default: &687 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &687 + withPredicateType: &688 value: subject_digests: - sha256:abc123 @@ -26295,7 +26295,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &688 + default: &689 value: attestations_subject_digests: - sha256:abc: @@ -34298,7 +34298,7 @@ paths: application/json: schema: *20 examples: - default: &518 + default: &519 value: id: 1 account: @@ -34526,7 +34526,7 @@ paths: required: true content: application/json: - schema: &519 + schema: &520 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -37118,7 +37118,7 @@ paths: parameters: - *73 - *242 - - &668 + - &669 name: repo_name description: repo_name parameter in: path @@ -38066,7 +38066,7 @@ paths: - nuget - container - *73 - - &669 + - &670 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -38107,7 +38107,7 @@ paths: default: *248 '403': *27 '401': *23 - '400': &671 + '400': &672 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -40242,7 +40242,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &755 + - &756 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -40745,7 +40745,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: &564 + auto_merge: &565 title: Auto merge description: The status of auto merging a pull request. type: @@ -41128,7 +41128,7 @@ paths: - updated_at - project_url examples: - default: &691 + default: &692 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41305,7 +41305,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &692 + items: &693 type: object properties: name: @@ -41342,7 +41342,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &693 + iteration_configuration: &694 type: object description: The configuration for iteration fields. properties: @@ -41392,7 +41392,7 @@ paths: value: name: Due date data_type: date - single_select_field: &694 + single_select_field: &695 summary: Create a single select field value: name: Priority @@ -41419,7 +41419,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &695 + iteration_field: &696 summary: Create an iteration field value: name: Sprint @@ -41445,7 +41445,7 @@ paths: application/json: schema: *268 examples: - text_field: &696 + text_field: &697 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -41454,7 +41454,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: &697 + number_field: &698 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -41463,7 +41463,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: &698 + date_field: &699 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -41472,7 +41472,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: &699 + single_select_field: &700 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41506,7 +41506,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &700 + iteration_field: &701 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -41552,7 +41552,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *265 - - &701 + - &702 name: field_id description: The unique identifier of the field. in: path @@ -41567,7 +41567,7 @@ paths: application/json: schema: *268 examples: - default: &702 + default: &703 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -42778,7 +42778,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &683 + schema: &684 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -42961,7 +42961,7 @@ paths: parameters: - *265 - *73 - - &703 + - &704 name: view_number description: The number that identifies the project view. in: path @@ -45029,7 +45029,7 @@ paths: - *73 - *17 - *19 - - &586 + - &587 name: targets description: | A comma-separated list of rule targets to filter by. @@ -45315,7 +45315,7 @@ paths: - object rules: type: array - items: &587 + items: &588 title: Repository Rule type: object description: A repository rule. @@ -45377,7 +45377,7 @@ paths: type: string enum: - required_linear_history - - &585 + - &586 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -46279,7 +46279,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *73 - - &588 + - &589 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -46294,7 +46294,7 @@ paths: in: query schema: type: string - - &589 + - &590 name: time_period description: |- The time period to filter by. @@ -46310,14 +46310,14 @@ paths: - week - month default: day - - &590 + - &591 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &591 + - &592 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -46337,7 +46337,7 @@ paths: description: Response content: application/json: - schema: &592 + schema: &593 title: Rule Suites description: Response type: array @@ -46393,7 +46393,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &593 + default: &594 value: - id: 21 actor_id: 12 @@ -46437,7 +46437,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *73 - - &594 + - &595 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -46453,7 +46453,7 @@ paths: description: Response content: application/json: - schema: &595 + schema: &596 title: Rule Suite description: Response type: object @@ -46560,7 +46560,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &596 + default: &597 value: id: 21 actor_id: 12 @@ -46807,7 +46807,7 @@ paths: type: string format: date-time examples: - default: &598 + default: &599 value: - version_id: 3 actor: @@ -46860,7 +46860,7 @@ paths: description: Response content: application/json: - schema: &599 + schema: &600 allOf: - *311 - type: object @@ -46932,7 +46932,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *73 - - &600 + - &601 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -46943,7 +46943,7 @@ paths: enum: - open - resolved - - &601 + - &602 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -46953,7 +46953,7 @@ paths: required: false schema: type: string - - &602 + - &603 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -46964,7 +46964,7 @@ paths: required: false schema: type: string - - &603 + - &604 name: exclude_providers in: query description: |- @@ -46975,7 +46975,7 @@ paths: required: false schema: type: string - - &604 + - &605 name: providers in: query description: |- @@ -46986,7 +46986,7 @@ paths: required: false schema: type: string - - &605 + - &606 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -46995,7 +46995,7 @@ paths: required: false schema: type: string - - &606 + - &607 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -47014,7 +47014,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &607 + - &608 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -47029,7 +47029,7 @@ paths: - *59 - *19 - *17 - - &608 + - &609 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -47039,7 +47039,7 @@ paths: required: false schema: type: string - - &609 + - &610 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -47049,7 +47049,7 @@ paths: required: false schema: type: string - - &610 + - &611 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -47058,7 +47058,7 @@ paths: required: false schema: type: string - - &611 + - &612 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -47067,7 +47067,7 @@ paths: schema: type: boolean default: false - - &612 + - &613 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -47076,7 +47076,7 @@ paths: schema: type: boolean default: false - - &613 + - &614 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -47108,14 +47108,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &614 + state: &615 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &615 + resolution: &616 type: - string - 'null' @@ -47234,14 +47234,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &616 + - &617 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &618 + - &619 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -47305,7 +47305,7 @@ paths: - blob_url - commit_sha - commit_url - - &619 + - &620 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -47366,7 +47366,7 @@ paths: - page_url - commit_sha - commit_url - - &620 + - &621 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -47388,7 +47388,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &621 + - &622 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -47410,7 +47410,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &622 + - &623 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -47432,7 +47432,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &623 + - &624 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -47447,7 +47447,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &624 + - &625 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -47462,7 +47462,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &625 + - &626 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -47477,7 +47477,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &626 + - &627 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -47499,7 +47499,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &627 + - &628 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -47521,7 +47521,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &628 + - &629 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -47543,7 +47543,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &629 + - &630 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -47565,7 +47565,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &630 + - &631 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull @@ -48086,7 +48086,7 @@ paths: application/json: schema: type: array - items: &634 + items: &635 description: A repository security advisory. type: object properties: @@ -48383,7 +48383,7 @@ paths: - private_fork additionalProperties: false examples: - default: &635 + default: &636 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -50450,7 +50450,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &651 + response-if-user-is-a-team-maintainer: &652 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -50515,7 +50515,7 @@ paths: application/json: schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: &652 + response-if-users-membership-with-team-is-now-pending: &653 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -50629,7 +50629,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &653 + schema: &654 title: Team Repository description: A team's access to a repository. type: object @@ -51350,7 +51350,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: &654 + response-if-child-teams-exist: &655 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -52814,11 +52814,11 @@ paths: '302': description: Response headers: - Location: + Location: &482 example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &522 + '410': &523 description: Gone content: application/json: @@ -56550,7 +56550,7 @@ paths: items: type: object properties: - type: &488 + type: &489 type: string description: The type of reviewer. enum: @@ -56688,7 +56688,7 @@ paths: application/json: schema: type: array - items: &483 + items: &484 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -56800,7 +56800,7 @@ paths: - created_at - updated_at examples: - default: &484 + default: &485 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -57185,7 +57185,7 @@ paths: application/json: schema: *370 examples: - default: &501 + default: &502 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -57404,7 +57404,7 @@ paths: application/json: schema: *374 examples: - default: &502 + default: &503 value: name: USERNAME value: octocat @@ -59250,7 +59250,7 @@ paths: required: - sha - url - verification: &508 + verification: &509 title: Verification type: object properties: @@ -62488,7 +62488,7 @@ paths: check. type: array items: *84 - deployment: &716 + deployment: &717 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -67741,7 +67741,7 @@ paths: type: array items: *446 examples: - default: &659 + default: &660 value: total_count: 2 machines: @@ -68453,7 +68453,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &521 + schema: &522 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -69155,7 +69155,7 @@ paths: - content - created_at examples: - default: &524 + default: &525 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -69292,7 +69292,7 @@ paths: - *325 - *326 - *95 - - &525 + - &526 name: reaction_id description: The unique identifier of the reaction. in: path @@ -69406,7 +69406,7 @@ paths: type: array items: *456 examples: - default: &571 + default: &572 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69697,7 +69697,7 @@ paths: type: array items: *460 examples: - default: &563 + default: &564 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -70255,7 +70255,7 @@ paths: application/json: schema: *456 examples: - default: &551 + default: &552 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -70918,7 +70918,7 @@ paths: application/json: schema: type: array - items: &639 + items: &640 title: Status description: The status of a commit. type: object @@ -71907,7 +71907,7 @@ paths: - size - type - url - - &576 + - &577 title: Content File description: Content File type: object @@ -72523,7 +72523,7 @@ paths: schema: oneOf: - *3 - - &503 + - &504 description: Repository rule violation was detected type: object properties: @@ -72544,7 +72544,7 @@ paths: items: type: object properties: - placeholder_id: &631 + placeholder_id: &632 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -74156,6 +74156,77 @@ paths: githubCloudOnly: false category: dependency-graph subcategory: sboms + "/repos/{owner}/{repo}/dependency-graph/sbom/fetch-report/{sbom_uuid}": + get: + summary: Fetch a software bill of materials (SBOM) for a repository. + description: |- + Fetches a previously generated software bill of materials (SBOM) for a repository. + When the SBOM is ready, the response is a 302 redirect to a temporary download URL for the SBOM in SPDX JSON format. + The generated SBOM report may be retained for up to one week from the original request. + The temporary download URL returned by this endpoint expires separately, and its expiry is set when the fetch request is made. + tags: + - dependency-graph + operationId: dependency-graph/fetch-sbom-report + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - *325 + - *326 + - name: sbom_uuid + in: path + required: true + description: The unique identifier of the SBOM export. + schema: + type: string + responses: + '302': + description: Redirects to a temporary download URL for the completed SBOM. + headers: + Location: *482 + '202': + description: SBOM is still being processed, no content is returned. + '404': *6 + '403': *27 + x-github: + githubCloudOnly: false + category: dependency-graph + subcategory: sboms + "/repos/{owner}/{repo}/dependency-graph/sbom/generate-report": + get: + summary: Request generation of a software bill of materials (SBOM) for a repository. + description: Triggers a job to generate a software bill of materials (SBOM) + for a repository in SPDX JSON format. + tags: + - dependency-graph + operationId: dependency-graph/generate-sbom-report + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - *325 + - *326 + responses: + '201': + description: Response + content: + application/json: + schema: + type: object + properties: + sbom_url: + type: string + description: URL to poll for the SBOM export result. + examples: + default: + value: + sbom_url: https://api.github.com/repos/github/example/dependency-graph/sbom/fetch-report/4bab1a7e-da63-4828-9488-44e0e01a7c1b + '404': *6 + '403': *27 + x-github: + githubCloudOnly: false + category: dependency-graph + subcategory: sboms "/repos/{owner}/{repo}/dependency-graph/snapshots": post: summary: Create a snapshot of dependencies for a repository @@ -74256,7 +74327,7 @@ paths: - version - url additionalProperties: false - metadata: &482 + metadata: &483 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -74295,7 +74366,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *482 + metadata: *483 resolved: type: object description: A collection of resolved package dependencies. @@ -74309,7 +74380,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *482 + metadata: *483 relationship: type: string description: A notation of whether a dependency is requested @@ -74484,9 +74555,9 @@ paths: application/json: schema: type: array - items: *483 + items: *484 examples: - default: *484 + default: *485 headers: Link: *65 x-github: @@ -74635,7 +74706,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: simple-example: summary: Simple example @@ -74710,7 +74781,7 @@ paths: parameters: - *325 - *326 - - &485 + - &486 name: deployment_id description: deployment_id parameter in: path @@ -74722,7 +74793,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: default: value: @@ -74789,7 +74860,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 responses: '204': description: Response @@ -74813,7 +74884,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 - *17 - *19 responses: @@ -74823,7 +74894,7 @@ paths: application/json: schema: type: array - items: &486 + items: &487 title: Deployment Status description: The status of a deployment. type: object @@ -74989,7 +75060,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 requestBody: required: true content: @@ -75064,9 +75135,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: &487 + default: &488 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -75124,7 +75195,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 - name: status_id in: path required: true @@ -75135,9 +75206,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *487 + default: *488 '404': *6 x-github: githubCloudOnly: false @@ -75239,7 +75310,7 @@ paths: - 5 environments: type: array - items: &489 + items: &490 title: Environment description: Details of a deployment environment type: object @@ -75301,7 +75372,7 @@ paths: type: string examples: - wait_timer - wait_timer: &491 + wait_timer: &492 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -75343,7 +75414,7 @@ paths: items: type: object properties: - type: *488 + type: *489 reviewer: anyOf: - *4 @@ -75370,7 +75441,7 @@ paths: - id - node_id - type - deployment_branch_policy: &492 + deployment_branch_policy: &493 type: - object - 'null' @@ -75489,7 +75560,7 @@ paths: parameters: - *325 - *326 - - &490 + - &491 name: environment_name in: path required: true @@ -75502,9 +75573,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: &493 + default: &494 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -75590,7 +75661,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 requestBody: required: false content: @@ -75600,7 +75671,7 @@ paths: - object - 'null' properties: - wait_timer: *491 + wait_timer: *492 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -75619,14 +75690,14 @@ paths: items: type: object properties: - type: *488 + type: *489 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *492 + deployment_branch_policy: *493 additionalProperties: false examples: default: @@ -75646,9 +75717,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: *493 + default: *494 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -75674,7 +75745,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 responses: '204': description: Default response @@ -75701,7 +75772,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *17 - *19 responses: @@ -75720,7 +75791,7 @@ paths: - 2 branch_policies: type: array - items: &494 + items: &495 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -75783,7 +75854,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 requestBody: required: true content: @@ -75831,9 +75902,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - example-wildcard: &495 + example-wildcard: &496 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -75877,8 +75948,8 @@ paths: parameters: - *325 - *326 - - *490 - - &496 + - *491 + - &497 name: branch_policy_id in: path required: true @@ -75890,9 +75961,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *495 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75913,8 +75984,8 @@ paths: parameters: - *325 - *326 - - *490 - - *496 + - *491 + - *497 requestBody: required: true content: @@ -75943,9 +76014,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *495 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75966,8 +76037,8 @@ paths: parameters: - *325 - *326 - - *490 - - *496 + - *491 + - *497 responses: '204': description: Response @@ -75992,7 +76063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *490 + - *491 - *326 - *325 responses: @@ -76011,7 +76082,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &497 + items: &498 title: Deployment protection rule description: Deployment protection rule type: object @@ -76033,7 +76104,7 @@ paths: for the environment. examples: - true - app: &498 + app: &499 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -76136,7 +76207,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *490 + - *491 - *326 - *325 requestBody: @@ -76159,9 +76230,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *497 + schema: *498 examples: - default: &499 + default: &500 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -76196,7 +76267,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *490 + - *491 - *326 - *325 - *19 @@ -76218,7 +76289,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *498 + items: *499 examples: default: value: @@ -76255,8 +76326,8 @@ paths: parameters: - *325 - *326 - - *490 - - &500 + - *491 + - &501 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -76268,9 +76339,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *498 examples: - default: *499 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76291,10 +76362,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *490 + - *491 - *326 - *325 - - *500 + - *501 responses: '204': description: Response @@ -76322,7 +76393,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *17 - *19 responses: @@ -76369,7 +76440,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 responses: '200': description: Response @@ -76401,7 +76472,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *160 responses: '200': @@ -76410,7 +76481,7 @@ paths: application/json: schema: *370 examples: - default: *501 + default: *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76434,7 +76505,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *160 requestBody: required: true @@ -76494,7 +76565,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *160 responses: '204': @@ -76522,7 +76593,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *341 - *19 responses: @@ -76567,7 +76638,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 requestBody: required: true content: @@ -76621,7 +76692,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *163 responses: '200': @@ -76630,7 +76701,7 @@ paths: application/json: schema: *374 examples: - default: *502 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76654,7 +76725,7 @@ paths: - *325 - *326 - *163 - - *490 + - *491 requestBody: required: true content: @@ -76699,7 +76770,7 @@ paths: - *325 - *326 - *163 - - *490 + - *491 responses: '204': description: Response @@ -77068,7 +77139,7 @@ paths: schema: oneOf: - *121 - - *503 + - *504 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77304,7 +77375,7 @@ paths: description: Response content: application/json: - schema: &504 + schema: &505 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -77539,7 +77610,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: default: value: @@ -77597,7 +77668,7 @@ paths: parameters: - *325 - *326 - - &505 + - &506 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -77614,7 +77685,7 @@ paths: application/json: schema: type: array - items: &506 + items: &507 title: Git Reference description: Git references within a repository type: object @@ -77692,15 +77763,15 @@ paths: parameters: - *325 - *326 - - *505 + - *506 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &507 + default: &508 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -77759,9 +77830,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 + default: *508 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -77789,7 +77860,7 @@ paths: parameters: - *325 - *326 - - *505 + - *506 requestBody: required: true content: @@ -77818,9 +77889,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 + default: *508 '422': *15 '409': *52 x-github: @@ -77840,7 +77911,7 @@ paths: parameters: - *325 - *326 - - *505 + - *506 responses: '204': description: Response @@ -77963,7 +78034,7 @@ paths: description: Response content: application/json: - schema: &509 + schema: &510 title: Git Tag description: Metadata for a Git tag type: object @@ -78019,7 +78090,7 @@ paths: - sha - type - url - verification: *508 + verification: *509 required: - sha - url @@ -78029,7 +78100,7 @@ paths: - tag - message examples: - default: &510 + default: &511 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -78114,9 +78185,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '404': *6 '409': *52 x-github: @@ -78215,7 +78286,7 @@ paths: description: Response content: application/json: - schema: &511 + schema: &512 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -78341,7 +78412,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: default-response: summary: Default response @@ -78411,7 +78482,7 @@ paths: application/json: schema: type: array - items: &512 + items: &513 title: Webhook description: Webhooks for repositories. type: object @@ -78474,7 +78545,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &747 + last_response: &748 title: Hook Response type: object properties: @@ -78605,9 +78676,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: &513 + default: &514 value: type: Repository id: 12345678 @@ -78663,9 +78734,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: *513 + default: *514 '404': *6 x-github: githubCloudOnly: false @@ -78732,9 +78803,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: *513 + default: *514 '422': *15 '404': *6 x-github: @@ -79132,7 +79203,7 @@ paths: description: Response content: application/json: - schema: &514 + schema: &515 title: Import description: A repository import from an external source. type: object @@ -79239,7 +79310,7 @@ paths: - html_url - authors_url examples: - default: &517 + default: &518 value: vcs: subversion use_lfs: true @@ -79255,7 +79326,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &515 + '503': &516 description: Unavailable due to service under maintenance. content: application/json: @@ -79333,7 +79404,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: default: value: @@ -79358,7 +79429,7 @@ paths: type: string '422': *15 '404': *6 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79439,7 +79510,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: example-1: summary: Example 1 @@ -79487,7 +79558,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79515,7 +79586,7 @@ paths: responses: '204': description: Response - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79543,7 +79614,7 @@ paths: parameters: - *325 - *326 - - &681 + - &682 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -79557,7 +79628,7 @@ paths: application/json: schema: type: array - items: &516 + items: &517 title: Porter Author description: Porter Author type: object @@ -79611,7 +79682,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79667,7 +79738,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: default: value: @@ -79680,7 +79751,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79746,7 +79817,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79802,11 +79873,11 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: - default: *517 + default: *518 '422': *15 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79838,7 +79909,7 @@ paths: application/json: schema: *20 examples: - default: *518 + default: *519 '301': *329 '404': *6 x-github: @@ -79873,7 +79944,7 @@ paths: properties: {} additionalProperties: false examples: - default: &520 + default: &521 value: limit: collaborators_only origin: repository @@ -79904,7 +79975,7 @@ paths: required: true content: application/json: - schema: *519 + schema: *520 examples: default: summary: Example request body @@ -79918,7 +79989,7 @@ paths: application/json: schema: *222 examples: - default: *520 + default: *521 '409': description: Response x-github: @@ -79975,9 +80046,9 @@ paths: application/json: schema: type: array - items: *521 + items: *522 examples: - default: &673 + default: &674 value: - id: 1 repository: @@ -80139,7 +80210,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: default: value: @@ -80377,7 +80448,7 @@ paths: type: array items: *81 examples: - default: &530 + default: &531 value: - id: 1 node_id: MDU6SXNzdWUx @@ -80640,7 +80711,7 @@ paths: application/json: schema: *81 examples: - default: &527 + default: &528 value: id: 1 node_id: MDU6SXNzdWUx @@ -80778,7 +80849,7 @@ paths: '422': *15 '503': *113 '404': *6 - '410': *522 + '410': *523 x-github: triggersNotification: true githubCloudOnly: false @@ -80830,7 +80901,7 @@ paths: type: array items: *82 examples: - default: &529 + default: &530 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80898,7 +80969,7 @@ paths: application/json: schema: *82 examples: - default: &523 + default: &524 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80979,7 +81050,7 @@ paths: application/json: schema: *82 examples: - default: *523 + default: *524 '422': *15 x-github: githubCloudOnly: false @@ -81091,7 +81162,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *522 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -81117,7 +81188,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *522 + '410': *523 '503': *113 x-github: githubCloudOnly: false @@ -81165,7 +81236,7 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 @@ -81254,7 +81325,7 @@ paths: - *325 - *326 - *95 - - *525 + - *526 responses: '204': description: Response @@ -81285,7 +81356,7 @@ paths: application/json: schema: type: array - items: &526 + items: &527 title: Issue Event description: Issue Event type: object @@ -81637,7 +81708,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *527 examples: default: value: @@ -81830,7 +81901,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *522 + '410': *523 '403': *27 x-github: githubCloudOnly: false @@ -81866,7 +81937,7 @@ paths: parameters: - *325 - *326 - - &528 + - &529 name: issue_number description: The number that identifies the issue. in: path @@ -81882,7 +81953,7 @@ paths: examples: default: summary: Issue - value: *527 + value: *528 pinned_comment: summary: Issue with pinned comment value: @@ -82064,7 +82135,7 @@ paths: state_reason: completed '301': *329 '404': *6 - '410': *522 + '410': *523 '304': *35 x-github: githubCloudOnly: false @@ -82091,7 +82162,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -82226,13 +82297,13 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 '422': *15 '503': *113 '403': *27 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82252,7 +82323,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -82280,7 +82351,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82298,7 +82369,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: content: application/json: @@ -82325,7 +82396,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82349,7 +82420,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: assignee in: path required: true @@ -82391,7 +82462,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *86 - *17 - *19 @@ -82404,11 +82475,11 @@ paths: type: array items: *82 examples: - default: *529 + default: *530 headers: Link: *65 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82439,7 +82510,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -82463,14 +82534,14 @@ paths: application/json: schema: *82 examples: - default: *523 + default: *524 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *522 + '410': *523 '422': *15 '404': *6 x-github: @@ -82500,7 +82571,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -82512,12 +82583,12 @@ paths: type: array items: *81 examples: - default: *530 + default: *531 headers: Link: *65 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82547,7 +82618,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -82571,7 +82642,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -82579,7 +82650,7 @@ paths: type: string '301': *329 '403': *27 - '410': *522 + '410': *523 '422': *15 '404': *6 x-github: @@ -82612,7 +82683,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -82626,13 +82697,13 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 '301': *329 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *522 + '410': *523 x-github: triggersNotification: true githubCloudOnly: false @@ -82660,7 +82731,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -82672,12 +82743,12 @@ paths: type: array items: *81 examples: - default: *530 + default: *531 headers: Link: *65 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82696,7 +82767,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -82710,7 +82781,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &533 + - &534 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -82759,7 +82830,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &535 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -82887,7 +82958,7 @@ paths: - performed_via_github_app - assignee - assigner - - &535 + - &536 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -82933,7 +83004,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &537 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -82979,7 +83050,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &538 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -83028,7 +83099,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &539 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -83070,7 +83141,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &540 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -83112,7 +83183,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &541 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -83168,7 +83239,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &542 title: Locked Issue Event description: Locked Issue Event type: object @@ -83213,7 +83284,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &543 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -83274,7 +83345,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &543 + - &544 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -83335,7 +83406,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &544 + - &545 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -83396,7 +83467,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &545 + - &546 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -83489,7 +83560,7 @@ paths: color: red headers: Link: *65 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83508,7 +83579,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -83518,9 +83589,9 @@ paths: application/json: schema: type: array - items: *531 + items: *532 examples: - default: &645 + default: &646 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -83546,7 +83617,7 @@ paths: Link: *65 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83565,7 +83636,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -83577,7 +83648,7 @@ paths: type: array items: *80 examples: - default: &532 + default: &533 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83597,7 +83668,7 @@ paths: Link: *65 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83615,7 +83686,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -83660,10 +83731,10 @@ paths: type: array items: *80 examples: - default: *532 + default: *533 '301': *329 '404': *6 - '410': *522 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -83682,7 +83753,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -83744,10 +83815,10 @@ paths: type: array items: *80 examples: - default: *532 + default: *533 '301': *329 '404': *6 - '410': *522 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -83766,13 +83837,13 @@ paths: parameters: - *325 - *326 - - *528 + - *529 responses: '204': description: Response '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83793,7 +83864,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: name in: path required: true @@ -83819,7 +83890,7 @@ paths: default: true '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83841,7 +83912,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -83870,7 +83941,7 @@ paths: '204': description: Response '403': *27 - '410': *522 + '410': *523 '404': *6 '422': *15 x-github: @@ -83890,7 +83961,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 responses: '204': description: Response @@ -83922,7 +83993,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 responses: '200': description: Response @@ -83930,10 +84001,10 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83952,7 +84023,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -83980,11 +84051,11 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84004,7 +84075,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -84069,8 +84140,8 @@ paths: parameters: - *325 - *326 - - *528 - - *525 + - *529 + - *526 responses: '204': description: Response @@ -84101,7 +84172,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -84125,7 +84196,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -84160,7 +84231,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -84172,11 +84243,11 @@ paths: type: array items: *81 examples: - default: *530 + default: *531 headers: Link: *65 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84206,7 +84277,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -84235,14 +84306,14 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *522 + '410': *523 '422': *15 '404': *6 x-github: @@ -84264,7 +84335,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -84297,7 +84368,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 '403': *27 '404': *6 '422': *7 @@ -84321,7 +84392,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -84336,7 +84407,6 @@ paths: description: Timeline Event type: object anyOf: - - *533 - *534 - *535 - *536 @@ -84349,6 +84419,7 @@ paths: - *543 - *544 - *545 + - *546 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -84405,7 +84476,7 @@ paths: pin: anyOf: - type: 'null' - - *546 + - *547 required: - event - actor @@ -84681,7 +84752,7 @@ paths: type: string comments: type: array - items: &565 + items: &566 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -85197,7 +85268,7 @@ paths: headers: Link: *65 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85225,7 +85296,7 @@ paths: application/json: schema: type: array - items: &547 + items: &548 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -85330,9 +85401,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: &548 + default: &549 value: id: 1 key: ssh-rsa AAA... @@ -85368,7 +85439,7 @@ paths: parameters: - *325 - *326 - - &549 + - &550 name: key_id description: The unique identifier of the key. in: path @@ -85380,9 +85451,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 '404': *6 x-github: githubCloudOnly: false @@ -85402,7 +85473,7 @@ paths: parameters: - *325 - *326 - - *549 + - *550 responses: '204': description: Response @@ -85435,7 +85506,7 @@ paths: type: array items: *80 examples: - default: *532 + default: *533 headers: Link: *65 '404': *6 @@ -85495,7 +85566,7 @@ paths: application/json: schema: *80 examples: - default: &550 + default: &551 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -85541,7 +85612,7 @@ paths: application/json: schema: *80 examples: - default: *550 + default: *551 '404': *6 x-github: githubCloudOnly: false @@ -85943,7 +86014,7 @@ paths: application/json: schema: *456 examples: - default: *551 + default: *552 '204': description: Response when already merged '404': @@ -86109,7 +86180,7 @@ paths: application/json: schema: *266 examples: - default: &552 + default: &553 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -86170,7 +86241,7 @@ paths: parameters: - *325 - *326 - - &553 + - &554 name: milestone_number description: The number that identifies the milestone. in: path @@ -86184,7 +86255,7 @@ paths: application/json: schema: *266 examples: - default: *552 + default: *553 '404': *6 x-github: githubCloudOnly: false @@ -86203,7 +86274,7 @@ paths: parameters: - *325 - *326 - - *553 + - *554 requestBody: required: false content: @@ -86243,7 +86314,7 @@ paths: application/json: schema: *266 examples: - default: *552 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86261,7 +86332,7 @@ paths: parameters: - *325 - *326 - - *553 + - *554 responses: '204': description: Response @@ -86284,7 +86355,7 @@ paths: parameters: - *325 - *326 - - *553 + - *554 - *17 - *19 responses: @@ -86296,7 +86367,7 @@ paths: type: array items: *80 examples: - default: *532 + default: *533 headers: Link: *65 x-github: @@ -86317,10 +86388,10 @@ paths: parameters: - *325 - *326 - - *554 - *555 - - *86 - *556 + - *86 + - *557 - *17 - *19 responses: @@ -86332,7 +86403,7 @@ paths: type: array items: *106 examples: - default: *557 + default: *558 headers: Link: *65 x-github: @@ -86422,7 +86493,7 @@ paths: description: Response content: application/json: - schema: &558 + schema: &559 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -86566,7 +86637,7 @@ paths: - custom_404 - public examples: - default: &559 + default: &560 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -86663,9 +86734,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: - default: *559 + default: *560 '422': *15 '409': *52 x-github: @@ -86827,7 +86898,7 @@ paths: application/json: schema: type: array - items: &560 + items: &561 title: Page Build description: Page Build type: object @@ -86974,9 +87045,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: &561 + default: &562 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -87036,9 +87107,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: *561 + default: *562 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87169,7 +87240,7 @@ paths: parameters: - *325 - *326 - - &562 + - &563 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -87229,7 +87300,7 @@ paths: parameters: - *325 - *326 - - *562 + - *563 responses: '204': *183 '404': *6 @@ -87801,7 +87872,7 @@ paths: type: array items: *460 examples: - default: *563 + default: *564 headers: Link: *65 '304': *35 @@ -87901,7 +87972,7 @@ paths: description: Response content: application/json: - schema: &567 + schema: &568 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -88125,7 +88196,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: *564 + auto_merge: *565 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -88225,7 +88296,7 @@ paths: - merged_by - review_comments examples: - default: &568 + default: &569 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -88762,9 +88833,9 @@ paths: application/json: schema: type: array - items: *565 + items: *566 examples: - default: &570 + default: &571 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -88849,9 +88920,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: - default: &566 + default: &567 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -88950,9 +89021,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: - default: *566 + default: *567 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89021,7 +89092,7 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 @@ -89110,7 +89181,7 @@ paths: - *325 - *326 - *95 - - *525 + - *526 responses: '204': description: Response @@ -89155,7 +89226,7 @@ paths: parameters: - *325 - *326 - - &569 + - &570 name: pull_number description: The number that identifies the pull request. in: path @@ -89168,9 +89239,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *567 + schema: *568 examples: - default: *568 + default: *569 '304': *35 '404': *6 '406': @@ -89207,7 +89278,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -89249,9 +89320,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *568 + default: *569 '422': *15 '403': *27 x-github: @@ -89275,7 +89346,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: true content: @@ -89378,7 +89449,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -89399,9 +89470,9 @@ paths: application/json: schema: type: array - items: *565 + items: *566 examples: - default: *570 + default: *571 headers: Link: *65 x-github: @@ -89436,7 +89507,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: true content: @@ -89542,7 +89613,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: example-for-a-multi-line-comment: value: @@ -89632,7 +89703,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *95 requestBody: required: true @@ -89655,7 +89726,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: default: value: @@ -89743,7 +89814,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *17 - *19 responses: @@ -89755,7 +89826,7 @@ paths: type: array items: *456 examples: - default: *571 + default: *572 headers: Link: *65 x-github: @@ -89787,7 +89858,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *17 - *19 responses: @@ -89837,7 +89908,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 responses: '204': description: Response if pull request has been merged @@ -89862,7 +89933,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -89976,7 +90047,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 responses: '200': description: Response @@ -90053,7 +90124,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -90628,7 +90699,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: true content: @@ -91149,7 +91220,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *17 - *19 responses: @@ -91159,7 +91230,7 @@ paths: application/json: schema: type: array - items: &572 + items: &573 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -91317,7 +91388,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -91407,9 +91478,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: &574 + default: &575 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91474,8 +91545,8 @@ paths: parameters: - *325 - *326 - - *569 - - &573 + - *570 + - &574 name: review_id description: The unique identifier of the review. in: path @@ -91487,9 +91558,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: &575 + default: &576 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91550,8 +91621,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 requestBody: required: true content: @@ -91574,7 +91645,7 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: default: value: @@ -91638,16 +91709,16 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 responses: '200': description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: *574 + default: *575 '422': *7 '404': *6 x-github: @@ -91676,8 +91747,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 - *17 - *19 responses: @@ -91937,8 +92008,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 requestBody: required: true content: @@ -91967,7 +92038,7 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: default: value: @@ -92032,8 +92103,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 requestBody: required: true content: @@ -92068,9 +92139,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: *575 + default: *576 '404': *6 '422': *7 '403': *27 @@ -92094,7 +92165,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -92172,9 +92243,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: &577 + default: &578 value: type: file encoding: base64 @@ -92237,9 +92308,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *577 + default: *578 '404': *6 '422': *15 x-github: @@ -92272,7 +92343,7 @@ paths: application/json: schema: type: array - items: *578 + items: *579 examples: default: value: @@ -92443,9 +92514,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: &582 + default: &583 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -92552,7 +92623,7 @@ paths: parameters: - *325 - *326 - - &580 + - &581 name: asset_id description: The unique identifier of the asset. in: path @@ -92564,9 +92635,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: &581 + default: &582 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -92619,7 +92690,7 @@ paths: parameters: - *325 - *326 - - *580 + - *581 requestBody: required: false content: @@ -92648,9 +92719,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: *581 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92668,7 +92739,7 @@ paths: parameters: - *325 - *326 - - *580 + - *581 responses: '204': description: Response @@ -92787,9 +92858,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *582 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -92821,9 +92892,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *582 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -92847,7 +92918,7 @@ paths: parameters: - *325 - *326 - - &583 + - &584 name: release_id description: The unique identifier of the release. in: path @@ -92861,9 +92932,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *578 + schema: *579 examples: - default: *582 + default: *583 '401': description: Unauthorized x-github: @@ -92883,7 +92954,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 requestBody: required: false content: @@ -92947,9 +93018,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *582 + default: *583 '404': description: Not Found if the discussion category name is invalid content: @@ -92972,7 +93043,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 responses: '204': description: Response @@ -92995,7 +93066,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 - *17 - *19 responses: @@ -93005,7 +93076,7 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: default: value: @@ -93088,7 +93159,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 - name: name in: query required: true @@ -93114,7 +93185,7 @@ paths: description: Response for successful upload content: application/json: - schema: *579 + schema: *580 examples: response-for-successful-upload: value: @@ -93171,7 +93242,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -93197,7 +93268,7 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 @@ -93220,7 +93291,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 requestBody: required: true content: @@ -93283,8 +93354,8 @@ paths: parameters: - *325 - *326 - - *583 - - *525 + - *584 + - *526 responses: '204': description: Response @@ -93327,7 +93398,7 @@ paths: oneOf: - allOf: - *287 - - &584 + - &585 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -93348,67 +93419,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *288 - - *584 + - *585 - allOf: - *289 - - *584 + - *585 - allOf: - *290 - - *584 + - *585 - allOf: + - *586 - *585 - - *584 - allOf: - *291 - - *584 + - *585 - allOf: - *292 - - *584 + - *585 - allOf: - *293 - - *584 + - *585 - allOf: - *294 - - *584 + - *585 - allOf: - *295 - - *584 + - *585 - allOf: - *296 - - *584 + - *585 - allOf: - *297 - - *584 + - *585 - allOf: - *298 - - *584 + - *585 - allOf: - *299 - - *584 + - *585 - allOf: - *300 - - *584 + - *585 - allOf: - *301 - - *584 + - *585 - allOf: - *302 - - *584 + - *585 - allOf: - *303 - - *584 + - *585 - allOf: - *304 - - *584 + - *585 - allOf: - *305 - - *584 + - *585 - allOf: - *306 - - *584 + - *585 - allOf: - *307 - - *584 + - *585 examples: default: value: @@ -93459,7 +93530,7 @@ paths: schema: type: boolean default: true - - *586 + - *587 responses: '200': description: Response @@ -93544,7 +93615,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *587 + items: *588 required: - name - enforcement @@ -93577,7 +93648,7 @@ paths: application/json: schema: *308 examples: - default: &597 + default: &598 value: id: 42 name: super cool ruleset @@ -93627,10 +93698,10 @@ paths: parameters: - *325 - *326 - - *588 - *589 - *590 - *591 + - *592 - *17 - *19 responses: @@ -93638,9 +93709,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '404': *6 '500': *53 x-github: @@ -93663,15 +93734,15 @@ paths: parameters: - *325 - *326 - - *594 + - *595 responses: '200': description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: *596 + default: *597 '404': *6 '500': *53 x-github: @@ -93722,7 +93793,7 @@ paths: application/json: schema: *308 examples: - default: *597 + default: *598 '404': *6 '500': *53 put: @@ -93775,7 +93846,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *587 + items: *588 examples: default: value: @@ -93805,7 +93876,7 @@ paths: application/json: schema: *308 examples: - default: *597 + default: *598 '404': *6 '422': *15 '500': *53 @@ -93867,7 +93938,7 @@ paths: type: array items: *311 examples: - default: *598 + default: *599 '404': *6 '500': *53 x-github: @@ -93905,7 +93976,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -93962,7 +94033,6 @@ paths: parameters: - *325 - *326 - - *600 - *601 - *602 - *603 @@ -93970,15 +94040,16 @@ paths: - *605 - *606 - *607 + - *608 - *59 - *19 - *17 - - *608 - *609 - *610 - *611 - *612 - *613 + - *614 responses: '200': description: Response @@ -93986,7 +94057,7 @@ paths: application/json: schema: type: array - items: &617 + items: &618 type: object properties: number: *170 @@ -94002,8 +94073,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *614 - resolution: *615 + state: *615 + resolution: *616 resolved_at: type: - string @@ -94109,7 +94180,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *616 + - *617 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -94271,13 +94342,13 @@ paths: - *325 - *326 - *422 - - *613 + - *614 responses: '200': description: Response content: application/json: - schema: *617 + schema: *618 examples: default: value: @@ -94341,8 +94412,8 @@ paths: schema: type: object properties: - state: *614 - resolution: *615 + state: *615 + resolution: *616 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -94380,7 +94451,7 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: default: value: @@ -94488,7 +94559,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &767 + items: &768 type: object properties: type: @@ -94515,7 +94586,6 @@ paths: - commit details: oneOf: - - *618 - *619 - *620 - *621 @@ -94528,6 +94598,7 @@ paths: - *628 - *629 - *630 + - *631 examples: default: value: @@ -94622,14 +94693,14 @@ paths: schema: type: object properties: - reason: &632 + reason: &633 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *631 + placeholder_id: *632 required: - reason - placeholder_id @@ -94646,7 +94717,7 @@ paths: schema: type: object properties: - reason: *632 + reason: *633 expire_at: type: - string @@ -94709,7 +94780,7 @@ paths: properties: incremental_scans: type: array - items: &633 + items: &634 description: Information on a single scan performed by secret scanning on the repository type: object @@ -94737,15 +94808,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *633 + items: *634 backfill_scans: type: array - items: *633 + items: *634 custom_pattern_backfill_scans: type: array items: allOf: - - *633 + - *634 - type: object properties: pattern_name: @@ -94758,7 +94829,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *633 + items: *634 examples: default: value: @@ -94868,9 +94939,9 @@ paths: application/json: schema: type: array - items: *634 + items: *635 examples: - default: *635 + default: *636 '400': *14 '404': *6 x-github: @@ -95064,9 +95135,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: &637 + default: &638 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -95410,7 +95481,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -95558,15 +95629,15 @@ paths: parameters: - *325 - *326 - - *636 + - *637 responses: '200': description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *637 + default: *638 '403': *27 '404': *6 x-github: @@ -95592,7 +95663,7 @@ paths: parameters: - *325 - *326 - - *636 + - *637 requestBody: required: true content: @@ -95763,10 +95834,10 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *637 - add_credit: *637 + default: *638 + add_credit: *638 '403': *27 '404': *6 '422': @@ -95806,7 +95877,7 @@ paths: parameters: - *325 - *326 - - *636 + - *637 responses: '202': *37 '400': *14 @@ -95835,7 +95906,7 @@ paths: parameters: - *325 - *326 - - *636 + - *637 responses: '202': description: Response @@ -95976,7 +96047,7 @@ paths: application/json: schema: type: array - items: &638 + items: &639 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -96349,7 +96420,7 @@ paths: application/json: schema: type: array - items: *638 + items: *639 examples: default: value: @@ -96439,7 +96510,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *640 examples: default: value: @@ -96533,7 +96604,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &640 + schema: &641 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -96633,7 +96704,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: default: value: @@ -96843,7 +96914,7 @@ paths: description: Response content: application/json: - schema: &641 + schema: &642 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -96855,7 +96926,7 @@ paths: required: - names examples: - default: &642 + default: &643 value: names: - octocat @@ -96910,9 +96981,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: *642 + default: *643 '404': *6 '422': *7 x-github: @@ -96935,7 +97006,7 @@ paths: parameters: - *325 - *326 - - &643 + - &644 name: per description: The time frame to display results for. in: query @@ -96966,7 +97037,7 @@ paths: - 128 clones: type: array - items: &644 + items: &645 title: Traffic type: object properties: @@ -97214,7 +97285,7 @@ paths: parameters: - *325 - *326 - - *643 + - *644 responses: '200': description: Response @@ -97235,7 +97306,7 @@ paths: - 3782 views: type: array - items: *644 + items: *645 required: - uniques - count @@ -97903,7 +97974,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *141 - - *528 + - *529 requestBody: required: true content: @@ -97969,9 +98040,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *531 + items: *532 examples: - default: *645 + default: *646 '400': *14 '403': *27 '404': *6 @@ -98008,7 +98079,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *141 - - *528 + - *529 requestBody: required: true content: @@ -98075,9 +98146,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *531 + items: *532 examples: - default: *645 + default: *646 '400': *14 '403': *27 '404': *6 @@ -98109,7 +98180,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *141 - - *528 + - *529 - *229 responses: '204': @@ -98253,7 +98324,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &646 + text_matches: &647 title: Search Result Text Matches type: array items: @@ -98416,7 +98487,7 @@ paths: enum: - author-date - committer-date - - &647 + - &648 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 @@ -98504,7 +98575,7 @@ paths: url: type: string format: uri - verification: *508 + verification: *509 required: - author - committer @@ -98536,7 +98607,7 @@ paths: type: number node_id: type: string - text_matches: *646 + text_matches: *647 required: - sha - node_id @@ -98728,7 +98799,7 @@ paths: - interactions - created - updated - - *647 + - *648 - *17 - *19 - name: advanced_search @@ -98842,11 +98913,11 @@ paths: type: - string - 'null' - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: type: string state_reason: @@ -98870,7 +98941,7 @@ paths: - string - 'null' format: date-time - text_matches: *646 + text_matches: *647 pull_request: type: object properties: @@ -99134,7 +99205,7 @@ paths: enum: - created - updated - - *647 + - *648 - *17 - *19 responses: @@ -99179,7 +99250,7 @@ paths: - 'null' score: type: number - text_matches: *646 + text_matches: *647 required: - id - node_id @@ -99264,7 +99335,7 @@ paths: - forks - help-wanted-issues - updated - - *647 + - *648 - *17 - *19 responses: @@ -99510,7 +99581,7 @@ paths: - admin - pull - push - text_matches: *646 + text_matches: *647 temp_clone_token: type: string allow_merge_commit: @@ -99818,7 +99889,7 @@ paths: - string - 'null' format: uri - text_matches: *646 + text_matches: *647 related: type: - array @@ -100011,7 +100082,7 @@ paths: - followers - repositories - joined - - *647 + - *648 - *17 - *19 responses: @@ -100121,7 +100192,7 @@ paths: type: - boolean - 'null' - text_matches: *646 + text_matches: *647 blog: type: - string @@ -100203,7 +100274,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &650 + - &651 name: team_id description: The unique identifier of the team. in: path @@ -100244,7 +100315,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *650 + - *651 requestBody: required: true content: @@ -100345,7 +100416,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *650 + - *651 responses: '204': description: Response @@ -100374,7 +100445,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *650 + - *651 - *17 - *19 responses: @@ -100412,7 +100483,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *650 + - *651 - name: role description: Filters members returned by their role in the team. in: query @@ -100463,7 +100534,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -100500,7 +100571,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -100540,7 +100611,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -100577,7 +100648,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *650 + - *651 - *69 responses: '200': @@ -100586,7 +100657,7 @@ paths: application/json: schema: *324 examples: - response-if-user-is-a-team-maintainer: *651 + response-if-user-is-a-team-maintainer: *652 '404': *6 x-github: githubCloudOnly: false @@ -100619,7 +100690,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *650 + - *651 - *69 requestBody: required: false @@ -100647,7 +100718,7 @@ paths: application/json: schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: *652 + response-if-users-membership-with-team-is-now-pending: *653 '403': description: Forbidden if team synchronization is set up '422': @@ -100681,7 +100752,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -100709,7 +100780,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *650 + - *651 - *17 - *19 responses: @@ -100751,7 +100822,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *650 + - *651 - *325 - *326 responses: @@ -100759,7 +100830,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *653 + schema: *654 examples: alternative-response-with-extra-repository-information: value: @@ -100909,7 +100980,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *650 + - *651 - *325 - *326 requestBody: @@ -100961,7 +101032,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *650 + - *651 - *325 - *326 responses: @@ -100988,7 +101059,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *650 + - *651 - *17 - *19 responses: @@ -101000,7 +101071,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: *654 + response-if-child-teams-exist: *655 headers: Link: *65 '404': *6 @@ -101033,7 +101104,7 @@ paths: application/json: schema: oneOf: - - &655 + - &656 title: Private User description: Private User type: object @@ -101283,7 +101354,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &680 + - &681 title: Public User description: Public User type: object @@ -101617,7 +101688,7 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: default: value: @@ -102015,7 +102086,7 @@ paths: type: integer secrets: type: array - items: &656 + items: &657 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -102135,7 +102206,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: default: value: @@ -102548,7 +102619,7 @@ paths: description: Response content: application/json: - schema: &657 + schema: &658 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -102601,7 +102672,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &658 + default: &659 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -102646,9 +102717,9 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: - default: *658 + default: *659 '404': *6 x-github: githubCloudOnly: false @@ -102687,7 +102758,7 @@ paths: type: array items: *446 examples: - default: *659 + default: *660 '304': *35 '500': *53 '401': *23 @@ -103653,7 +103724,7 @@ paths: type: array items: *247 examples: - default: &670 + default: &671 value: - id: 197 name: hello_docker @@ -103754,7 +103825,7 @@ paths: application/json: schema: type: array - items: &660 + items: &661 title: Email description: Email type: object @@ -103824,9 +103895,9 @@ paths: application/json: schema: type: array - items: *660 + items: *661 examples: - default: &672 + default: &673 value: - email: octocat@github.com verified: true @@ -103903,7 +103974,7 @@ paths: application/json: schema: type: array - items: *660 + items: *661 examples: default: value: @@ -104161,7 +104232,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 title: GPG Key description: A unique encryption key type: object @@ -104306,7 +104377,7 @@ paths: - subkeys - revoked examples: - default: &689 + default: &690 value: - id: 3 name: Octocat's GPG Key @@ -104391,9 +104462,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: &662 + default: &663 value: id: 3 name: Octocat's GPG Key @@ -104450,7 +104521,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &663 + - &664 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -104462,9 +104533,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *662 + default: *663 '404': *6 '304': *35 '403': *27 @@ -104487,7 +104558,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *663 + - *664 responses: '204': description: Response @@ -104795,7 +104866,7 @@ paths: required: true content: application/json: - schema: *519 + schema: *520 examples: default: value: @@ -104945,7 +105016,7 @@ paths: application/json: schema: type: array - items: &664 + items: &665 title: Key description: Key type: object @@ -105048,9 +105119,9 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: &665 + default: &666 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -105083,15 +105154,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *549 + - *550 responses: '200': description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: *665 + default: *666 '404': *6 '304': *35 '403': *27 @@ -105114,7 +105185,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *549 + - *550 responses: '204': description: Response @@ -105147,7 +105218,7 @@ paths: application/json: schema: type: array - items: &666 + items: &667 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -105226,7 +105297,7 @@ paths: - account - plan examples: - default: &667 + default: &668 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -105288,9 +105359,9 @@ paths: application/json: schema: type: array - items: *666 + items: *667 examples: - default: *667 + default: *668 headers: Link: *65 '304': *35 @@ -106308,7 +106379,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *242 - - *668 + - *669 responses: '204': description: Response @@ -106421,7 +106492,7 @@ paths: - docker - nuget - container - - *669 + - *670 - *19 - *17 responses: @@ -106433,8 +106504,8 @@ paths: type: array items: *247 examples: - default: *670 - '400': *671 + default: *671 + '400': *672 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106463,7 +106534,7 @@ paths: application/json: schema: *247 examples: - default: &690 + default: &691 value: id: 40201 name: octo-name @@ -106825,9 +106896,9 @@ paths: application/json: schema: type: array - items: *660 + items: *661 examples: - default: *672 + default: *673 headers: Link: *65 '304': *35 @@ -106940,7 +107011,7 @@ paths: type: array items: *77 examples: - default: &679 + default: &680 summary: Default response value: - id: 1296269 @@ -107299,9 +107370,9 @@ paths: application/json: schema: type: array - items: *521 + items: *522 examples: - default: *673 + default: *674 headers: Link: *65 '304': *35 @@ -107381,7 +107452,7 @@ paths: application/json: schema: type: array - items: &674 + items: &675 title: Social account description: Social media account type: object @@ -107398,7 +107469,7 @@ paths: - provider - url examples: - default: &675 + default: &676 value: - provider: twitter url: https://twitter.com/github @@ -107461,9 +107532,9 @@ paths: application/json: schema: type: array - items: *674 + items: *675 examples: - default: *675 + default: *676 '422': *15 '304': *35 '404': *6 @@ -107551,7 +107622,7 @@ paths: application/json: schema: type: array - items: &676 + items: &677 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -107571,7 +107642,7 @@ paths: - title - created_at examples: - default: &708 + default: &709 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -107636,9 +107707,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: &677 + default: &678 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -107668,7 +107739,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: - - &678 + - &679 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -107680,9 +107751,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: *677 + default: *678 '404': *6 '304': *35 '403': *27 @@ -107705,7 +107776,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: - - *678 + - *679 responses: '204': description: Response @@ -107734,7 +107805,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &709 + - &710 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 @@ -107759,11 +107830,11 @@ paths: type: array items: *77 examples: - default-response: *679 + default-response: *680 application/vnd.github.v3.star+json: schema: type: array - items: &710 + items: &711 title: Starred Repository description: Starred Repository type: object @@ -108132,10 +108203,10 @@ paths: application/json: schema: oneOf: - - *655 - - *680 + - *656 + - *681 examples: - default-response: &684 + default-response: &685 summary: Default response value: login: octocat @@ -108170,7 +108241,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &685 + response-with-git-hub-plan-information: &686 summary: Response with GitHub plan information value: login: octocat @@ -108227,7 +108298,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &682 + - &683 name: user_id description: The unique identifier of the user. in: path @@ -108293,7 +108364,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *681 + - *682 - *17 responses: '200': @@ -108328,7 +108399,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *682 + - *683 - *265 requestBody: required: true @@ -108403,7 +108474,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *683 + schema: *684 examples: table_view: summary: Response for creating a table view @@ -108455,11 +108526,11 @@ paths: application/json: schema: oneOf: - - *655 - - *680 + - *656 + - *681 examples: - default-response: *684 - response-with-git-hub-plan-information: *685 + default-response: *685 + response-with-git-hub-plan-information: *686 '404': *6 x-github: githubCloudOnly: false @@ -108509,8 +108580,8 @@ paths: required: - subject_digests examples: - default: *686 - withPredicateType: *687 + default: *687 + withPredicateType: *688 responses: '200': description: Response @@ -108550,7 +108621,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *688 + default: *689 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108780,7 +108851,7 @@ paths: type: array items: *247 examples: - default: *670 + default: *671 '403': *27 '401': *23 x-github: @@ -109164,9 +109235,9 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: - default: *689 + default: *690 headers: Link: *65 x-github: @@ -109270,7 +109341,7 @@ paths: application/json: schema: *20 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109395,7 +109466,7 @@ paths: - docker - nuget - container - - *669 + - *670 - *69 - *19 - *17 @@ -109408,10 +109479,10 @@ paths: type: array items: *247 examples: - default: *670 + default: *671 '403': *27 '401': *23 - '400': *671 + '400': *672 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109441,7 +109512,7 @@ paths: application/json: schema: *247 examples: - default: *690 + default: *691 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109790,7 +109861,7 @@ paths: type: array items: *268 examples: - default: *691 + default: *692 headers: Link: *65 '304': *35 @@ -109850,7 +109921,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *692 + items: *693 required: - name - data_type @@ -109866,7 +109937,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *693 + iteration_configuration: *694 required: - name - data_type @@ -109888,8 +109959,8 @@ paths: value: name: Due date data_type: date - single_select_field: *694 - iteration_field: *695 + single_select_field: *695 + iteration_field: *696 responses: '201': description: Response @@ -109897,11 +109968,11 @@ paths: application/json: schema: *268 examples: - text_field: *696 - number_field: *697 - date_field: *698 - single_select_field: *699 - iteration_field: *700 + text_field: *697 + number_field: *698 + date_field: *699 + single_select_field: *700 + iteration_field: *701 '304': *35 '403': *27 '401': *23 @@ -109923,7 +109994,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *265 - - *701 + - *702 - *69 responses: '200': @@ -109932,7 +110003,7 @@ paths: application/json: schema: *268 examples: - default: *702 + default: *703 headers: Link: *65 '304': *35 @@ -110289,7 +110360,7 @@ paths: parameters: - *265 - *69 - - *703 + - *704 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -110564,7 +110635,7 @@ paths: - *115 - *117 - *116 - - *704 + - *705 - *118 responses: '200': @@ -110695,7 +110766,7 @@ paths: parameters: - *69 - *115 - - *705 + - *706 - *116 responses: '200': @@ -110794,9 +110865,9 @@ paths: - *115 - *117 - *116 - - *706 - - *118 - *707 + - *118 + - *708 responses: '200': description: Response when getting a billing usage summary @@ -110930,9 +111001,9 @@ paths: application/json: schema: type: array - items: *674 + items: *675 examples: - default: *675 + default: *676 headers: Link: *65 x-github: @@ -110962,9 +111033,9 @@ paths: application/json: schema: type: array - items: *676 + items: *677 examples: - default: *708 + default: *709 headers: Link: *65 x-github: @@ -110989,7 +111060,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *69 - - *709 + - *710 - *59 - *17 - *19 @@ -111001,11 +111072,11 @@ paths: schema: anyOf: - type: array - items: *710 + items: *711 - type: array items: *77 examples: - default-response: *679 + default-response: *680 headers: Link: *65 x-github: @@ -111165,7 +111236,7 @@ webhooks: type: string enum: - disabled - enterprise: &711 + enterprise: &712 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -111234,7 +111305,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &712 + installation: &713 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -111255,7 +111326,7 @@ webhooks: required: - id - node_id - organization: &713 + organization: &714 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -111328,7 +111399,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &714 + repository: &715 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -112243,10 +112314,10 @@ webhooks: type: string enum: - enabled - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -112322,11 +112393,11 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - rule: &715 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + rule: &716 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) @@ -112549,11 +112620,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - rule: *715 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + rule: *716 sender: *4 required: - action @@ -112741,11 +112812,11 @@ webhooks: - everyone required: - from - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - rule: *715 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + rule: *716 sender: *4 required: - action @@ -112829,7 +112900,7 @@ webhooks: type: string enum: - completed - check_run: &717 + check_run: &718 title: CheckRun description: A check performed on the code of a given code change type: object @@ -112939,7 +113010,7 @@ webhooks: - examples: - neutral - deployment: *716 + deployment: *717 details_url: type: string examples: @@ -113037,10 +113108,10 @@ webhooks: - output - app - pull_requests - installation: *712 - enterprise: *711 - organization: *713 - repository: *714 + installation: *713 + enterprise: *712 + organization: *714 + repository: *715 sender: *4 required: - check_run @@ -113431,11 +113502,11 @@ webhooks: type: string enum: - created - check_run: *717 - installation: *712 - enterprise: *711 - organization: *713 - repository: *714 + check_run: *718 + installation: *713 + enterprise: *712 + organization: *714 + repository: *715 sender: *4 required: - check_run @@ -113829,11 +113900,11 @@ webhooks: type: string enum: - requested_action - check_run: *717 - installation: *712 - enterprise: *711 - organization: *713 - repository: *714 + check_run: *718 + installation: *713 + enterprise: *712 + organization: *714 + repository: *715 requested_action: description: The action requested by the user. type: object @@ -114236,11 +114307,11 @@ webhooks: type: string enum: - rerequested - check_run: *717 - installation: *712 - enterprise: *711 - organization: *713 - repository: *714 + check_run: *718 + installation: *713 + enterprise: *712 + organization: *714 + repository: *715 sender: *4 required: - check_run @@ -115225,10 +115296,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -115932,10 +116003,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -116633,10 +116704,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -116957,20 +117028,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &718 + commit_oid: &719 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: *711 - installation: *712 - organization: *713 - ref: &719 + enterprise: *712 + installation: *713 + organization: *714 + ref: &720 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: *714 + repository: *715 sender: *4 required: - action @@ -117378,12 +117449,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *718 - enterprise: *711 - installation: *712 - organization: *713 - ref: *719 - repository: *714 + commit_oid: *719 + enterprise: *712 + installation: *713 + organization: *714 + ref: *720 + repository: *715 sender: *4 required: - action @@ -117666,12 +117737,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *718 - enterprise: *711 - installation: *712 - organization: *713 - ref: *719 - repository: *714 + commit_oid: *719 + enterprise: *712 + installation: *713 + organization: *714 + ref: *720 + repository: *715 sender: *4 required: - action @@ -118017,12 +118088,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *718 - enterprise: *711 - installation: *712 - organization: *713 - ref: *719 - repository: *714 + commit_oid: *719 + enterprise: *712 + installation: *713 + organization: *714 + ref: *720 + repository: *715 sender: *4 required: - action @@ -118312,9 +118383,9 @@ webhooks: type: - string - 'null' - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -118322,7 +118393,7 @@ webhooks: type: - string - 'null' - repository: *714 + repository: *715 sender: *4 required: - action @@ -118568,12 +118639,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *718 - enterprise: *711 - installation: *712 - organization: *713 - ref: *719 - repository: *714 + commit_oid: *719 + enterprise: *712 + installation: *713 + organization: *714 + ref: *720 + repository: *715 sender: *4 required: - action @@ -118894,10 +118965,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -119157,10 +119228,10 @@ webhooks: - updated_at - author_association - body - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -119241,18 +119312,18 @@ webhooks: type: - string - 'null' - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *713 - pusher_type: &720 + organization: *714 + pusher_type: &721 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &721 + ref: &722 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -119262,7 +119333,7 @@ webhooks: enum: - tag - branch - repository: *714 + repository: *715 sender: *4 required: - ref @@ -119345,9 +119416,9 @@ webhooks: enum: - created definition: *276 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -119432,9 +119503,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -119512,9 +119583,9 @@ webhooks: enum: - promote_to_enterprise definition: *276 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -119592,9 +119663,9 @@ webhooks: enum: - updated definition: *276 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -119671,10 +119742,10 @@ webhooks: type: string enum: - updated - enterprise: *711 - installation: *712 - repository: *714 - organization: *713 + enterprise: *712 + installation: *713 + repository: *715 + organization: *714 sender: *4 new_property_values: type: array @@ -119759,18 +119830,18 @@ webhooks: title: delete event type: object properties: - enterprise: *711 - installation: *712 - organization: *713 - pusher_type: *720 - ref: *721 + enterprise: *712 + installation: *713 + organization: *714 + pusher_type: *721 + ref: *722 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *714 + repository: *715 sender: *4 required: - ref @@ -119851,10 +119922,10 @@ webhooks: enum: - assignees_changed alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -119935,10 +120006,10 @@ webhooks: enum: - auto_dismissed alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120020,10 +120091,10 @@ webhooks: enum: - auto_reopened alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120105,10 +120176,10 @@ webhooks: enum: - created alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120188,10 +120259,10 @@ webhooks: enum: - dismissed alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120271,10 +120342,10 @@ webhooks: enum: - fixed alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120355,10 +120426,10 @@ webhooks: enum: - reintroduced alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120438,10 +120509,10 @@ webhooks: enum: - reopened alert: *477 - installation: *712 - organization: *713 - enterprise: *711 - repository: *714 + installation: *713 + organization: *714 + enterprise: *712 + repository: *715 sender: *4 required: - action @@ -120518,9 +120589,9 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - key: &722 + enterprise: *712 + installation: *713 + key: &723 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -120558,8 +120629,8 @@ webhooks: - verified - created_at - read_only - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -120636,11 +120707,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - key: *722 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + key: *723 + organization: *714 + repository: *715 sender: *4 required: - action @@ -121207,12 +121278,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - workflow: &726 + workflow: &727 title: Workflow type: - object @@ -121963,13 +122034,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *483 + - *484 pull_requests: type: array - items: *567 - repository: *714 - organization: *713 - installation: *712 + items: *568 + repository: *715 + organization: *714 + installation: *713 sender: *4 responses: '200': @@ -122040,7 +122111,7 @@ webhooks: type: string enum: - approved - approver: &723 + approver: &724 type: object properties: avatar_url: @@ -122083,11 +122154,11 @@ webhooks: type: string comment: type: string - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - reviewers: &724 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + reviewers: &725 type: array items: type: object @@ -122168,7 +122239,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &725 + workflow_job_run: &726 type: object properties: conclusion: @@ -122914,18 +122985,18 @@ webhooks: type: string enum: - rejected - approver: *723 + approver: *724 comment: type: string - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - reviewers: *724 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + reviewers: *725 sender: *4 since: type: string - workflow_job_run: *725 + workflow_job_run: *726 workflow_job_runs: type: array items: @@ -123642,13 +123713,13 @@ webhooks: type: string enum: - requested - enterprise: *711 + enterprise: *712 environment: type: string - installation: *712 - organization: *713 - repository: *714 - requestor: &731 + installation: *713 + organization: *714 + repository: *715 + requestor: &732 title: User type: - object @@ -125581,12 +125652,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - workflow: *726 + workflow: *727 workflow_run: title: Deployment Workflow Run type: @@ -126277,7 +126348,7 @@ webhooks: type: string enum: - answered - answer: &729 + answer: &730 type: object properties: author_association: @@ -126437,11 +126508,11 @@ webhooks: - created_at - updated_at - body - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -126568,11 +126639,11 @@ webhooks: - from required: - category - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -126655,11 +126726,11 @@ webhooks: type: string enum: - closed - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -126741,7 +126812,7 @@ webhooks: type: string enum: - created - comment: &728 + comment: &729 type: object properties: author_association: @@ -126901,11 +126972,11 @@ webhooks: - updated_at - body - reactions - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -126988,12 +127059,12 @@ webhooks: type: string enum: - deleted - comment: *728 - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + comment: *729 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127088,12 +127159,12 @@ webhooks: - from required: - body - comment: *728 - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + comment: *729 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127177,11 +127248,11 @@ webhooks: type: string enum: - created - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127263,11 +127334,11 @@ webhooks: type: string enum: - deleted - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127367,11 +127438,11 @@ webhooks: type: string required: - from - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127453,10 +127524,10 @@ webhooks: type: string enum: - labeled - discussion: *727 - enterprise: *711 - installation: *712 - label: &730 + discussion: *728 + enterprise: *712 + installation: *713 + label: &731 title: Label type: object properties: @@ -127489,8 +127560,8 @@ webhooks: - color - default - description - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127573,11 +127644,11 @@ webhooks: type: string enum: - locked - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127659,11 +127730,11 @@ webhooks: type: string enum: - pinned - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127745,11 +127816,11 @@ webhooks: type: string enum: - reopened - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127834,16 +127905,16 @@ webhooks: changes: type: object properties: - new_discussion: *727 - new_repository: *714 + new_discussion: *728 + new_repository: *715 required: - new_discussion - new_repository - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -127926,10 +127997,10 @@ webhooks: type: string enum: - unanswered - discussion: *727 - old_answer: *729 - organization: *713 - repository: *714 + discussion: *728 + old_answer: *730 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128011,12 +128082,12 @@ webhooks: type: string enum: - unlabeled - discussion: *727 - enterprise: *711 - installation: *712 - label: *730 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128099,11 +128170,11 @@ webhooks: type: string enum: - unlocked - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128185,11 +128256,11 @@ webhooks: type: string enum: - unpinned - discussion: *727 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + discussion: *728 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128262,7 +128333,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *711 + enterprise: *712 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -128940,9 +129011,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - forkee @@ -129088,9 +129159,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pages: description: The pages that were updated. type: array @@ -129128,7 +129199,7 @@ webhooks: - action - sha - html_url - repository: *714 + repository: *715 sender: *4 required: - pages @@ -129204,10 +129275,10 @@ webhooks: type: string enum: - created - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories: &732 + organization: *714 + repositories: &733 description: An array of repository objects that the installation can access. type: array @@ -129233,8 +129304,8 @@ webhooks: - name - full_name - private - repository: *714 - requester: *731 + repository: *715 + requester: *732 sender: *4 required: - action @@ -129309,11 +129380,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories: *732 - repository: *714 + organization: *714 + repositories: *733 + repository: *715 requester: type: - 'null' @@ -129390,11 +129461,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories: *732 - repository: *714 + organization: *714 + repositories: *733 + repository: *715 requester: type: - 'null' @@ -129471,10 +129542,10 @@ webhooks: type: string enum: - added - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories_added: &733 + organization: *714 + repositories_added: &734 description: An array of repository objects, which were added to the installation. type: array @@ -129520,15 +129591,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *714 - repository_selection: &734 + repository: *715 + repository_selection: &735 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *731 + requester: *732 sender: *4 required: - action @@ -129607,10 +129678,10 @@ webhooks: type: string enum: - removed - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories_added: *733 + organization: *714 + repositories_added: *734 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -129637,9 +129708,9 @@ webhooks: - name - full_name - private - repository: *714 - repository_selection: *734 - requester: *731 + repository: *715 + repository_selection: *735 + requester: *732 sender: *4 required: - action @@ -129718,11 +129789,11 @@ webhooks: type: string enum: - suspend - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories: *732 - repository: *714 + organization: *714 + repositories: *733 + repository: *715 requester: type: - 'null' @@ -129904,10 +129975,10 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 target_type: type: string @@ -129986,11 +130057,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *711 + enterprise: *712 installation: *20 - organization: *713 - repositories: *732 - repository: *714 + organization: *714 + repositories: *733 + repository: *715 requester: type: - 'null' @@ -130156,7 +130227,7 @@ webhooks: pin: anyOf: - type: 'null' - - *546 + - *547 user: title: User type: @@ -130242,8 +130313,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131055,8 +131126,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131417,8 +131488,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -131498,7 +131569,7 @@ webhooks: type: string enum: - deleted - comment: &735 + comment: &736 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -131655,7 +131726,7 @@ webhooks: pin: anyOf: - type: 'null' - - *546 + - *547 required: - url - html_url @@ -131669,8 +131740,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132478,8 +132549,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132842,8 +132913,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -132923,7 +132994,7 @@ webhooks: type: string enum: - edited - changes: &759 + changes: &760 description: The changes to the comment. type: object properties: @@ -132935,9 +133006,9 @@ webhooks: type: string required: - from - comment: *735 - enterprise: *711 - installation: *712 + comment: *736 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133748,8 +133819,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134110,8 +134181,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -134192,9 +134263,9 @@ webhooks: type: string enum: - pinned - comment: *735 - enterprise: *711 - installation: *712 + comment: *736 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -135007,8 +135078,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135371,8 +135442,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -135452,9 +135523,9 @@ webhooks: type: string enum: - unpinned - comment: *735 - enterprise: *711 - installation: *712 + comment: *736 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136267,8 +136338,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136631,8 +136702,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -136721,9 +136792,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -136812,9 +136883,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -136902,9 +136973,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -136993,9 +137064,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -137075,10 +137146,10 @@ webhooks: type: string enum: - assigned - assignee: *731 - enterprise: *711 - installation: *712 - issue: &738 + assignee: *732 + enterprise: *712 + installation: *713 + issue: &739 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -137889,11 +137960,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138013,8 +138084,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -138094,8 +138165,8 @@ webhooks: type: string enum: - closed - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -138911,11 +138982,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139178,8 +139249,8 @@ webhooks: required: - state - closed_at - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -139258,8 +139329,8 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140066,11 +140137,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140189,8 +140260,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -140269,8 +140340,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141100,11 +141171,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141202,7 +141273,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &736 + milestone: &737 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141345,8 +141416,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -141445,8 +141516,8 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142257,11 +142328,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142381,9 +142452,9 @@ webhooks: - active_lock_reason - body - reactions - label: *730 - organization: *713 - repository: *714 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -142463,8 +142534,8 @@ webhooks: type: string enum: - labeled - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143274,11 +143345,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143398,9 +143469,9 @@ webhooks: - active_lock_reason - body - reactions - label: *730 - organization: *713 - repository: *714 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -143480,8 +143551,8 @@ webhooks: type: string enum: - locked - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144316,11 +144387,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144417,8 +144488,8 @@ webhooks: format: uri user_view_type: type: string - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -144497,8 +144568,8 @@ webhooks: type: string enum: - milestoned - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145327,11 +145398,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145428,9 +145499,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *736 - organization: *713 - repository: *714 + milestone: *737 + organization: *714 + repository: *715 sender: *4 required: - action @@ -146317,11 +146388,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146913,8 +146984,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147721,11 +147792,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147848,8 +147919,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -147929,9 +148000,9 @@ webhooks: type: string enum: - pinned - enterprise: *711 - installation: *712 - issue: &737 + enterprise: *712 + installation: *713 + issue: &738 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -148736,11 +148807,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148859,8 +148930,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -148939,8 +149010,8 @@ webhooks: type: string enum: - reopened - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149773,11 +149844,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149875,8 +149946,8 @@ webhooks: user_view_type: type: string type: *230 - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -150764,11 +150835,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151378,11 +151449,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *711 - installation: *712 - issue: *737 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + issue: *738 + organization: *714 + repository: *715 sender: *4 required: - action @@ -151462,12 +151533,12 @@ webhooks: type: string enum: - typed - enterprise: *711 - installation: *712 - issue: *738 + enterprise: *712 + installation: *713 + issue: *739 type: *230 - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -151548,7 +151619,7 @@ webhooks: type: string enum: - unassigned - assignee: &762 + assignee: &763 title: User type: - object @@ -151620,11 +151691,11 @@ webhooks: required: - login - id - enterprise: *711 - installation: *712 - issue: *738 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + issue: *739 + organization: *714 + repository: *715 sender: *4 required: - action @@ -151703,12 +151774,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *711 - installation: *712 - issue: *738 - label: *730 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + issue: *739 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -151788,8 +151859,8 @@ webhooks: type: string enum: - unlocked - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152622,11 +152693,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *648 - issue_dependencies_summary: *649 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *531 + items: *532 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152723,8 +152794,8 @@ webhooks: format: uri user_view_type: type: string - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -152804,11 +152875,11 @@ webhooks: type: string enum: - unpinned - enterprise: *711 - installation: *712 - issue: *737 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + issue: *738 + organization: *714 + repository: *715 sender: *4 required: - action @@ -152887,12 +152958,12 @@ webhooks: type: string enum: - untyped - enterprise: *711 - installation: *712 - issue: *738 + enterprise: *712 + installation: *713 + issue: *739 type: *230 - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -152972,11 +153043,11 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - label: *730 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -153054,11 +153125,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - label: *730 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -153168,11 +153239,11 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - label: *730 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -153254,9 +153325,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *711 - installation: *712 - marketplace_purchase: &739 + enterprise: *712 + installation: *713 + marketplace_purchase: &740 title: Marketplace Purchase type: object required: @@ -153344,8 +153415,8 @@ webhooks: type: integer unit_count: type: integer - organization: *713 - previous_marketplace_purchase: &740 + organization: *714 + previous_marketplace_purchase: &741 title: Marketplace Purchase type: object properties: @@ -153429,7 +153500,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *714 + repository: *715 sender: *4 required: - action @@ -153509,10 +153580,10 @@ webhooks: - changed effective_date: type: string - enterprise: *711 - installation: *712 - marketplace_purchase: *739 - organization: *713 + enterprise: *712 + installation: *713 + marketplace_purchase: *740 + organization: *714 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153600,7 +153671,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *714 + repository: *715 sender: *4 required: - action @@ -153682,10 +153753,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *711 - installation: *712 - marketplace_purchase: *739 - organization: *713 + enterprise: *712 + installation: *713 + marketplace_purchase: *740 + organization: *714 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153771,7 +153842,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *714 + repository: *715 sender: *4 required: - action @@ -153852,8 +153923,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 marketplace_purchase: title: Marketplace Purchase type: object @@ -153939,9 +154010,9 @@ webhooks: type: integer unit_count: type: integer - organization: *713 - previous_marketplace_purchase: *740 - repository: *714 + organization: *714 + previous_marketplace_purchase: *741 + repository: *715 sender: *4 required: - action @@ -154021,12 +154092,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *711 - installation: *712 - marketplace_purchase: *739 - organization: *713 - previous_marketplace_purchase: *740 - repository: *714 + enterprise: *712 + installation: *713 + marketplace_purchase: *740 + organization: *714 + previous_marketplace_purchase: *741 + repository: *715 sender: *4 required: - action @@ -154128,11 +154199,11 @@ webhooks: type: string required: - to - enterprise: *711 - installation: *712 - member: *731 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + member: *732 + organization: *714 + repository: *715 sender: *4 required: - action @@ -154234,11 +154305,11 @@ webhooks: type: - string - 'null' - enterprise: *711 - installation: *712 - member: *731 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + member: *732 + organization: *714 + repository: *715 sender: *4 required: - action @@ -154317,11 +154388,11 @@ webhooks: type: string enum: - removed - enterprise: *711 - installation: *712 - member: *731 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + member: *732 + organization: *714 + repository: *715 sender: *4 required: - action @@ -154399,11 +154470,11 @@ webhooks: type: string enum: - added - enterprise: *711 - installation: *712 - member: *731 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + member: *732 + organization: *714 + repository: *715 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154481,7 +154552,7 @@ webhooks: required: - login - id - team: &741 + team: &742 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -154711,11 +154782,11 @@ webhooks: type: string enum: - removed - enterprise: *711 - installation: *712 - member: *731 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + member: *732 + organization: *714 + repository: *715 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154794,7 +154865,7 @@ webhooks: required: - login - id - team: *741 + team: *742 required: - action - scope @@ -154876,8 +154947,8 @@ webhooks: type: string enum: - checks_requested - installation: *712 - merge_group: &742 + installation: *713 + merge_group: &743 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -154903,8 +154974,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -154990,10 +155061,10 @@ webhooks: - merged - invalidated - dequeued - installation: *712 - merge_group: *742 - organization: *713 - repository: *714 + installation: *713 + merge_group: *743 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155066,7 +155137,7 @@ webhooks: type: string enum: - deleted - enterprise: *711 + enterprise: *712 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -155175,12 +155246,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *712 - organization: *713 + installation: *713 + organization: *714 repository: anyOf: - type: 'null' - - *714 + - *715 sender: *4 required: - action @@ -155260,11 +155331,11 @@ webhooks: type: string enum: - closed - enterprise: *711 - installation: *712 - milestone: *736 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + milestone: *737 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155343,9 +155414,9 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - milestone: &743 + enterprise: *712 + installation: *713 + milestone: &744 title: Milestone description: A collection of related issues and pull requests. type: object @@ -155487,8 +155558,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155567,11 +155638,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - milestone: *736 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + milestone: *737 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155681,11 +155752,11 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - milestone: *736 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + milestone: *737 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155765,11 +155836,11 @@ webhooks: type: string enum: - opened - enterprise: *711 - installation: *712 - milestone: *743 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + milestone: *744 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155848,11 +155919,11 @@ webhooks: type: string enum: - blocked - blocked_user: *731 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + blocked_user: *732 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -155931,11 +156002,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *731 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + blocked_user: *732 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156014,9 +156085,9 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - membership: &744 + enterprise: *712 + installation: *713 + membership: &745 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -156126,8 +156197,8 @@ webhooks: - role - organization_url - user - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156205,11 +156276,11 @@ webhooks: type: string enum: - member_added - enterprise: *711 - installation: *712 - membership: *744 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + membership: *745 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156288,8 +156359,8 @@ webhooks: type: string enum: - member_invited - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -156411,10 +156482,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 - user: *731 + user: *732 required: - action - invitation @@ -156492,11 +156563,11 @@ webhooks: type: string enum: - member_removed - enterprise: *711 - installation: *712 - membership: *744 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + membership: *745 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156583,11 +156654,11 @@ webhooks: properties: from: type: string - enterprise: *711 - installation: *712 - membership: *744 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + membership: *745 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156664,9 +156735,9 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 package: description: Information about the package. type: object @@ -157189,7 +157260,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &745 + items: &746 title: Ruby Gems metadata type: object properties: @@ -157286,7 +157357,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -157362,9 +157433,9 @@ webhooks: type: string enum: - updated - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 package: description: Information about the package. type: object @@ -157726,7 +157797,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *745 + items: *746 source_url: type: string format: uri @@ -157797,7 +157868,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -157977,12 +158048,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *711 + enterprise: *712 id: type: integer - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - id @@ -158059,7 +158130,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &746 + personal_access_token_request: &747 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -158209,10 +158280,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *711 - organization: *713 + enterprise: *712 + organization: *714 sender: *4 - installation: *712 + installation: *713 required: - action - personal_access_token_request @@ -158289,11 +158360,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *746 - enterprise: *711 - organization: *713 + personal_access_token_request: *747 + enterprise: *712 + organization: *714 sender: *4 - installation: *712 + installation: *713 required: - action - personal_access_token_request @@ -158369,11 +158440,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *746 - enterprise: *711 - organization: *713 + personal_access_token_request: *747 + enterprise: *712 + organization: *714 sender: *4 - installation: *712 + installation: *713 required: - action - personal_access_token_request @@ -158448,11 +158519,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *746 - organization: *713 - enterprise: *711 + personal_access_token_request: *747 + organization: *714 + enterprise: *712 sender: *4 - installation: *712 + installation: *713 required: - action - personal_access_token_request @@ -158557,7 +158628,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *747 + last_response: *748 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -158589,8 +158660,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 zen: description: Random string of GitHub zen. @@ -158835,10 +158906,10 @@ webhooks: - from required: - note - enterprise: *711 - installation: *712 - organization: *713 - project_card: &748 + enterprise: *712 + installation: *713 + organization: *714 + project_card: &749 title: Project Card type: object properties: @@ -158961,7 +159032,7 @@ webhooks: - creator - created_at - updated_at - repository: *714 + repository: *715 sender: *4 required: - action @@ -159042,11 +159113,11 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - project_card: *748 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project_card: *749 + repository: *715 sender: *4 required: - action @@ -159126,9 +159197,9 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 project_card: title: Project Card type: object @@ -159258,7 +159329,7 @@ webhooks: repository: anyOf: - type: 'null' - - *714 + - *715 sender: *4 required: - action @@ -159352,11 +159423,11 @@ webhooks: - from required: - note - enterprise: *711 - installation: *712 - organization: *713 - project_card: *748 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project_card: *749 + repository: *715 sender: *4 required: - action @@ -159450,9 +159521,9 @@ webhooks: - from required: - column_id - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 project_card: allOf: - title: Project Card @@ -159649,7 +159720,7 @@ webhooks: type: string required: - after_id - repository: *714 + repository: *715 sender: *4 required: - action @@ -159729,10 +159800,10 @@ webhooks: type: string enum: - closed - enterprise: *711 - installation: *712 - organization: *713 - project: &750 + enterprise: *712 + installation: *713 + organization: *714 + project: &751 title: Project type: object properties: @@ -159859,7 +159930,7 @@ webhooks: - creator - created_at - updated_at - repository: *714 + repository: *715 sender: *4 required: - action @@ -159939,10 +160010,10 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - project_column: &749 + enterprise: *712 + installation: *713 + organization: *714 + project_column: &750 title: Project Column type: object properties: @@ -159982,7 +160053,7 @@ webhooks: - name - created_at - updated_at - repository: *714 + repository: *715 sender: *4 required: - action @@ -160061,14 +160132,14 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - project_column: *749 + enterprise: *712 + installation: *713 + organization: *714 + project_column: *750 repository: anyOf: - type: 'null' - - *714 + - *715 sender: *4 required: - action @@ -160157,11 +160228,11 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - organization: *713 - project_column: *749 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project_column: *750 + repository: *715 sender: *4 required: - action @@ -160241,11 +160312,11 @@ webhooks: type: string enum: - moved - enterprise: *711 - installation: *712 - organization: *713 - project_column: *749 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project_column: *750 + repository: *715 sender: *4 required: - action @@ -160325,11 +160396,11 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - project: *750 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project: *751 + repository: *715 sender: *4 required: - action @@ -160409,14 +160480,14 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - project: *750 + enterprise: *712 + installation: *713 + organization: *714 + project: *751 repository: anyOf: - type: 'null' - - *714 + - *715 sender: *4 required: - action @@ -160517,11 +160588,11 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - organization: *713 - project: *750 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project: *751 + repository: *715 sender: *4 required: - action @@ -160600,11 +160671,11 @@ webhooks: type: string enum: - reopened - enterprise: *711 - installation: *712 - organization: *713 - project: *750 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + project: *751 + repository: *715 sender: *4 required: - action @@ -160685,8 +160756,8 @@ webhooks: type: string enum: - closed - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -160768,8 +160839,8 @@ webhooks: type: string enum: - created - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -160851,8 +160922,8 @@ webhooks: type: string enum: - deleted - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -160974,8 +161045,8 @@ webhooks: type: string to: type: string - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -161059,7 +161130,7 @@ webhooks: type: string enum: - archived - changes: &754 + changes: &755 type: object properties: archived_at: @@ -161075,9 +161146,9 @@ webhooks: - string - 'null' format: date-time - installation: *712 - organization: *713 - projects_v2_item: &751 + installation: *713 + organization: *714 + projects_v2_item: &752 title: Projects v2 Item description: An item belonging to a project type: object @@ -161217,9 +161288,9 @@ webhooks: - 'null' to: type: string - installation: *712 - organization: *713 - projects_v2_item: *751 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -161301,9 +161372,9 @@ webhooks: type: string enum: - created - installation: *712 - organization: *713 - projects_v2_item: *751 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -161384,9 +161455,9 @@ webhooks: type: string enum: - deleted - installation: *712 - organization: *713 - projects_v2_item: *751 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -161491,7 +161562,7 @@ webhooks: oneOf: - type: string - type: integer - - &752 + - &753 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -161515,7 +161586,7 @@ webhooks: required: - id - name - - &753 + - &754 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -161555,8 +161626,8 @@ webhooks: oneOf: - type: string - type: integer - - *752 - *753 + - *754 type: - 'null' - string @@ -161579,9 +161650,9 @@ webhooks: - 'null' required: - body - installation: *712 - organization: *713 - projects_v2_item: *751 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -161678,9 +161749,9 @@ webhooks: type: - string - 'null' - installation: *712 - organization: *713 - projects_v2_item: *751 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -161763,10 +161834,10 @@ webhooks: type: string enum: - restored - changes: *754 - installation: *712 - organization: *713 - projects_v2_item: *751 + changes: *755 + installation: *713 + organization: *714 + projects_v2_item: *752 sender: *4 required: - action @@ -161848,8 +161919,8 @@ webhooks: type: string enum: - reopened - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -161931,9 +162002,9 @@ webhooks: type: string enum: - created - installation: *712 - organization: *713 - projects_v2_status_update: *755 + installation: *713 + organization: *714 + projects_v2_status_update: *756 sender: *4 required: - action @@ -162014,9 +162085,9 @@ webhooks: type: string enum: - deleted - installation: *712 - organization: *713 - projects_v2_status_update: *755 + installation: *713 + organization: *714 + projects_v2_status_update: *756 sender: *4 required: - action @@ -162162,9 +162233,9 @@ webhooks: - string - 'null' format: date - installation: *712 - organization: *713 - projects_v2_status_update: *755 + installation: *713 + organization: *714 + projects_v2_status_update: *756 sender: *4 required: - action @@ -162235,10 +162306,10 @@ webhooks: title: public event type: object properties: - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - repository @@ -162315,13 +162386,13 @@ webhooks: type: string enum: - assigned - assignee: *731 - enterprise: *711 - installation: *712 - number: &756 + assignee: *732 + enterprise: *712 + installation: *713 + number: &757 description: The pull request number. type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -164673,7 +164744,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -164755,11 +164826,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -167104,7 +167175,7 @@ webhooks: - draft reason: type: string - repository: *714 + repository: *715 sender: *4 required: - action @@ -167186,11 +167257,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -169535,7 +169606,7 @@ webhooks: - draft reason: type: string - repository: *714 + repository: *715 sender: *4 required: - action @@ -169617,13 +169688,13 @@ webhooks: type: string enum: - closed - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: &757 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: &758 allOf: - - *567 + - *568 - type: object properties: allow_auto_merge: @@ -169685,7 +169756,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *714 + repository: *715 sender: *4 required: - action @@ -169766,12 +169837,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: *757 - repository: *714 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: *758 + repository: *715 sender: *4 required: - action @@ -169851,11 +169922,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *711 + enterprise: *712 milestone: *266 - number: *756 - organization: *713 - pull_request: &758 + number: *757 + organization: *714 + pull_request: &759 title: Pull Request type: object properties: @@ -172199,7 +172270,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -172278,11 +172349,11 @@ webhooks: type: string enum: - dequeued - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -174645,7 +174716,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *714 + repository: *715 sender: *4 required: - action @@ -174769,12 +174840,12 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: *757 - repository: *714 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: *758 + repository: *715 sender: *4 required: - action @@ -174854,11 +174925,11 @@ webhooks: type: string enum: - enqueued - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -177206,7 +177277,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -177286,11 +177357,11 @@ webhooks: type: string enum: - labeled - enterprise: *711 - installation: *712 - label: *730 - number: *756 - organization: *713 + enterprise: *712 + installation: *713 + label: *731 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -179641,7 +179712,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -179722,10 +179793,10 @@ webhooks: type: string enum: - locked - enterprise: *711 - installation: *712 - number: *756 - organization: *713 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -182074,7 +182145,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -182154,12 +182225,12 @@ webhooks: type: string enum: - milestoned - enterprise: *711 + enterprise: *712 milestone: *266 - number: *756 - organization: *713 - pull_request: *758 - repository: *714 + number: *757 + organization: *714 + pull_request: *759 + repository: *715 sender: *4 required: - action @@ -182238,12 +182309,12 @@ webhooks: type: string enum: - opened - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: *757 - repository: *714 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: *758 + repository: *715 sender: *4 required: - action @@ -182324,12 +182395,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: *757 - repository: *714 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: *758 + repository: *715 sender: *4 required: - action @@ -182409,12 +182480,12 @@ webhooks: type: string enum: - reopened - enterprise: *711 - installation: *712 - number: *756 - organization: *713 - pull_request: *757 - repository: *714 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 + pull_request: *758 + repository: *715 sender: *4 required: - action @@ -182789,9 +182860,9 @@ webhooks: - start_side - side - reactions - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: type: object properties: @@ -185024,7 +185095,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *714 + repository: *715 sender: *4 required: - action @@ -185104,7 +185175,7 @@ webhooks: type: string enum: - deleted - comment: &760 + comment: &761 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -185397,9 +185468,9 @@ webhooks: - start_side - side - reactions - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: type: object properties: @@ -187620,7 +187691,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *714 + repository: *715 sender: *4 required: - action @@ -187700,11 +187771,11 @@ webhooks: type: string enum: - edited - changes: *759 - comment: *760 - enterprise: *711 - installation: *712 - organization: *713 + changes: *760 + comment: *761 + enterprise: *712 + installation: *713 + organization: *714 pull_request: type: object properties: @@ -189928,7 +189999,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *714 + repository: *715 sender: *4 required: - action @@ -190009,9 +190080,9 @@ webhooks: type: string enum: - dismissed - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: title: Simple Pull Request type: object @@ -192247,7 +192318,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 + repository: *715 review: description: The review that was affected. type: object @@ -192498,9 +192569,9 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: title: Simple Pull Request type: object @@ -194609,8 +194680,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 - review: &761 + repository: *715 + review: &762 description: The review that was affected. type: object properties: @@ -194848,12 +194919,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: description: The pull request number. type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -197203,7 +197274,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_reviewer: title: User type: @@ -197289,12 +197360,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: description: The pull request number. type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -199651,7 +199722,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199846,12 +199917,12 @@ webhooks: type: string enum: - review_requested - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: description: The pull request number. type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -202203,7 +202274,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_reviewer: title: User type: @@ -202290,12 +202361,12 @@ webhooks: type: string enum: - review_requested - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 number: description: The pull request number. type: integer - organization: *713 + organization: *714 pull_request: title: Pull Request type: object @@ -204638,7 +204709,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_team: title: Team description: Groups of organization members that gives permissions @@ -204822,9 +204893,9 @@ webhooks: type: string enum: - submitted - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: title: Simple Pull Request type: object @@ -207063,8 +207134,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 - review: *761 + repository: *715 + review: *762 sender: *4 required: - action @@ -207144,9 +207215,9 @@ webhooks: type: string enum: - resolved - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: title: Simple Pull Request type: object @@ -209294,7 +209365,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 + repository: *715 sender: *4 thread: type: object @@ -209691,9 +209762,9 @@ webhooks: type: string enum: - unresolved - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: title: Simple Pull Request type: object @@ -211824,7 +211895,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 + repository: *715 sender: *4 thread: type: object @@ -212223,10 +212294,10 @@ webhooks: type: string before: type: string - enterprise: *711 - installation: *712 - number: *756 - organization: *713 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -214564,7 +214635,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -214646,11 +214717,11 @@ webhooks: type: string enum: - unassigned - assignee: *762 - enterprise: *711 - installation: *712 - number: *756 - organization: *713 + assignee: *763 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -217003,7 +217074,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -217082,11 +217153,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *711 - installation: *712 - label: *730 - number: *756 - organization: *713 + enterprise: *712 + installation: *713 + label: *731 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -219428,7 +219499,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -219509,10 +219580,10 @@ webhooks: type: string enum: - unlocked - enterprise: *711 - installation: *712 - number: *756 - organization: *713 + enterprise: *712 + installation: *713 + number: *757 + organization: *714 pull_request: title: Pull Request type: object @@ -221844,7 +221915,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -222047,7 +222118,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *711 + enterprise: *712 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -222142,8 +222213,8 @@ webhooks: - url - author - committer - installation: *712 - organization: *713 + installation: *713 + organization: *714 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -222742,9 +222813,9 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 registry_package: type: object properties: @@ -223221,7 +223292,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *745 + items: *746 summary: type: string tag_name: @@ -223277,7 +223348,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -223355,9 +223426,9 @@ webhooks: type: string enum: - updated - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 registry_package: type: object properties: @@ -223669,7 +223740,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *745 + items: *746 summary: type: string tag_name: @@ -223719,7 +223790,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -223796,10 +223867,10 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - release: &763 + enterprise: *712 + installation: *713 + organization: *714 + release: &764 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -224130,7 +224201,7 @@ webhooks: - updated_at - zipball_url - body - repository: *714 + repository: *715 sender: *4 required: - action @@ -224207,11 +224278,11 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - release: *763 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + release: *764 + repository: *715 sender: *4 required: - action @@ -224328,11 +224399,11 @@ webhooks: type: boolean required: - to - enterprise: *711 - installation: *712 - organization: *713 - release: *763 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + release: *764 + repository: *715 sender: *4 required: - action @@ -224410,9 +224481,9 @@ webhooks: type: string enum: - prereleased - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -224748,7 +224819,7 @@ webhooks: - string - 'null' format: uri - repository: *714 + repository: *715 sender: *4 required: - action @@ -224824,10 +224895,10 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 - release: &764 + enterprise: *712 + installation: *713 + organization: *714 + release: &765 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -225160,7 +225231,7 @@ webhooks: - string - 'null' format: uri - repository: *714 + repository: *715 sender: *4 required: - action @@ -225236,11 +225307,11 @@ webhooks: type: string enum: - released - enterprise: *711 - installation: *712 - organization: *713 - release: *763 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + release: *764 + repository: *715 sender: *4 required: - action @@ -225316,11 +225387,11 @@ webhooks: type: string enum: - unpublished - enterprise: *711 - installation: *712 - organization: *713 - release: *764 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + release: *765 + repository: *715 sender: *4 required: - action @@ -225396,11 +225467,11 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - repository_advisory: *634 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + repository_advisory: *635 sender: *4 required: - action @@ -225476,11 +225547,11 @@ webhooks: type: string enum: - reported - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - repository_advisory: *634 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + repository_advisory: *635 sender: *4 required: - action @@ -225556,10 +225627,10 @@ webhooks: type: string enum: - archived - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -225636,10 +225707,10 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -225717,10 +225788,10 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -225805,10 +225876,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -225923,10 +225994,10 @@ webhooks: - 'null' items: type: string - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -225998,10 +226069,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 status: type: string @@ -226082,10 +226153,10 @@ webhooks: type: string enum: - privatized - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226162,10 +226233,10 @@ webhooks: type: string enum: - publicized - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226259,10 +226330,10 @@ webhooks: - name required: - repository - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226342,10 +226413,10 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 repository_ruleset: *308 sender: *4 required: @@ -226424,10 +226495,10 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 repository_ruleset: *308 sender: *4 required: @@ -226506,10 +226577,10 @@ webhooks: type: string enum: - edited - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 repository_ruleset: *308 changes: type: object @@ -226571,16 +226642,16 @@ webhooks: properties: added: type: array - items: *587 + items: *588 deleted: type: array - items: *587 + items: *588 updated: type: array items: type: object properties: - rule: *587 + rule: *588 changes: type: object properties: @@ -226817,10 +226888,10 @@ webhooks: - from required: - owner - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226898,10 +226969,10 @@ webhooks: type: string enum: - unarchived - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -226979,7 +227050,7 @@ webhooks: type: string enum: - create - alert: &765 + alert: &766 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -227104,10 +227175,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -227317,10 +227388,10 @@ webhooks: type: string enum: - dismissed - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -227398,11 +227469,11 @@ webhooks: type: string enum: - reopen - alert: *765 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *766 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -227604,10 +227675,10 @@ webhooks: enum: - fixed - open - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -227685,7 +227756,7 @@ webhooks: type: string enum: - assigned - alert: &766 + alert: &767 type: object properties: number: *170 @@ -227825,10 +227896,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -227906,11 +227977,11 @@ webhooks: type: string enum: - created - alert: *766 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *767 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -227991,11 +228062,11 @@ webhooks: type: string enum: - created - alert: *766 - installation: *712 - location: *767 - organization: *713 - repository: *714 + alert: *767 + installation: *713 + location: *768 + organization: *714 + repository: *715 sender: *4 required: - location @@ -228233,11 +228304,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *766 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *767 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228315,11 +228386,11 @@ webhooks: type: string enum: - reopened - alert: *766 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *767 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228397,11 +228468,11 @@ webhooks: type: string enum: - resolved - alert: *766 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *767 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228479,12 +228550,12 @@ webhooks: type: string enum: - unassigned - alert: *766 + alert: *767 assignee: *4 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228562,11 +228633,11 @@ webhooks: type: string enum: - validated - alert: *766 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + alert: *767 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -228696,10 +228767,10 @@ webhooks: - organization - enterprise - - repository: *714 - enterprise: *711 - installation: *712 - organization: *713 + repository: *715 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -228777,11 +228848,11 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - security_advisory: &768 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + security_advisory: &769 description: The details of the security advisory, including summary, description, and severity. type: object @@ -228954,11 +229025,11 @@ webhooks: type: string enum: - updated - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 - security_advisory: *768 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 + security_advisory: *769 sender: *4 required: - action @@ -229031,10 +229102,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -229208,9 +229279,9 @@ webhooks: type: object properties: security_and_analysis: *281 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: *328 sender: *4 required: @@ -229289,12 +229360,12 @@ webhooks: type: string enum: - cancelled - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: &769 + sponsorship: &770 type: object properties: created_at: @@ -229599,12 +229670,12 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: *769 + sponsorship: *770 required: - action - sponsorship @@ -229692,12 +229763,12 @@ webhooks: type: string required: - from - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: *769 + sponsorship: *770 required: - action - changes @@ -229774,17 +229845,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &770 + effective_date: &771 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: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: *769 + sponsorship: *770 required: - action - sponsorship @@ -229858,7 +229929,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &771 + changes: &772 type: object properties: tier: @@ -229902,13 +229973,13 @@ webhooks: - from required: - tier - effective_date: *770 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + effective_date: *771 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: *769 + sponsorship: *770 required: - action - changes @@ -229985,13 +230056,13 @@ webhooks: type: string enum: - tier_changed - changes: *771 - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + changes: *772 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - sponsorship: *769 + sponsorship: *770 required: - action - changes @@ -230065,10 +230136,10 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -230152,10 +230223,10 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -230589,15 +230660,15 @@ webhooks: type: - string - 'null' - enterprise: *711 + enterprise: *712 id: description: The unique identifier of the status. type: integer - installation: *712 + installation: *713 name: type: string - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 sha: description: The Commit SHA. @@ -230713,9 +230784,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -230805,9 +230876,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -230897,9 +230968,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -230989,9 +231060,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -231068,12 +231139,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - team: &772 + team: &773 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -231303,9 +231374,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -231775,7 +231846,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -231851,9 +231922,9 @@ webhooks: type: string enum: - created - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -232323,7 +232394,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -232400,9 +232471,9 @@ webhooks: type: string enum: - deleted - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -232872,7 +232943,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -233016,9 +233087,9 @@ webhooks: - from required: - permissions - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -233488,7 +233559,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - changes @@ -233566,9 +233637,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -234038,7 +234109,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -234114,10 +234185,10 @@ webhooks: type: string enum: - started - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - action @@ -234190,17 +234261,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *711 + enterprise: *712 inputs: type: - object - 'null' additionalProperties: true - installation: *712 - organization: *713 + installation: *713 + organization: *714 ref: type: string - repository: *714 + repository: *715 sender: *4 workflow: type: string @@ -234282,10 +234353,10 @@ webhooks: type: string enum: - completed - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 workflow_job: allOf: @@ -234541,7 +234612,7 @@ webhooks: type: string required: - conclusion - deployment: *483 + deployment: *484 required: - action - repository @@ -234620,10 +234691,10 @@ webhooks: type: string enum: - in_progress - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 workflow_job: allOf: @@ -234905,7 +234976,7 @@ webhooks: required: - status - steps - deployment: *483 + deployment: *484 required: - action - repository @@ -234984,10 +235055,10 @@ webhooks: type: string enum: - queued - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 workflow_job: type: object @@ -235133,7 +235204,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *483 + deployment: *484 required: - action - repository @@ -235212,10 +235283,10 @@ webhooks: type: string enum: - waiting - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 workflow_job: type: object @@ -235362,7 +235433,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *483 + deployment: *484 required: - action - repository @@ -235442,12 +235513,12 @@ webhooks: type: string enum: - completed - enterprise: *711 - installation: *712 - organization: *713 - repository: *714 + {"code":"deadline_exceeded","msg":"operation timed out"}