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 49367d65e1..ff1086cc41 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 a296afc688..a866e2fede 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 15e3f87f5d..679fff26c6 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 d013dfc2a9..17fd8e7887 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 ed5b53dee5..f020daa3f4 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 2a96be4a38..1d24bdf7da 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 e2f992321a..c75992598e 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 97c1d1aac3..48b67a0b86 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 606cf805bb..a719bab36e 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 c20818e6fc..8c8da000a4 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 + enterprise: *712 + installation: *713 + organization: *714 + repository: *715 sender: *4 - workflow: *726 + workflow: *727 workflow_run: title: Workflow Run type: object @@ -236466,12 +236537,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 @@ -237475,12 +237546,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.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index c9603aafe6..86d2be2f4d 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -393260,6 +393260,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.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 0b84b8b786..e190924f73 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -1124,7 +1124,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 @@ -11614,7 +11614,7 @@ paths: properties: action: type: string - discussion: &727 + discussion: &728 title: Discussion description: A Discussion in a repository. type: object @@ -12398,7 +12398,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &648 + sub_issues_summary: &649 title: Sub-issues Summary type: object properties: @@ -12482,7 +12482,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. @@ -12509,7 +12509,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &649 + issue_dependencies_summary: &650 title: Issue Dependencies Summary type: object properties: @@ -12528,7 +12528,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 @@ -13352,7 +13352,7 @@ paths: type: string release: allOf: - - &578 + - &579 title: Release description: A release. type: object @@ -13434,7 +13434,7 @@ paths: author: *4 assets: type: array - items: &579 + items: &580 title: Release Asset description: Data related to a release. type: object @@ -14066,7 +14066,7 @@ paths: url: type: string format: uri - user: &655 + user: &656 title: Public User description: Public User type: object @@ -17524,7 +17524,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 @@ -17532,7 +17532,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. @@ -17542,7 +17542,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: @@ -18141,7 +18141,7 @@ paths: - url - subscription_url examples: - default: &557 + default: &558 value: - id: '1' repository: @@ -19711,7 +19711,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 @@ -19857,7 +19857,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 @@ -19969,7 +19969,7 @@ paths: - *115 - *117 - *116 - - &706 + - &707 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -19977,7 +19977,7 @@ paths: schema: type: string - *118 - - &707 + - &708 name: sku description: The SKU to query for usage. in: query @@ -26862,12 +26862,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 @@ -26926,7 +26926,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: @@ -34986,7 +34986,7 @@ paths: application/json: schema: *20 examples: - default: &518 + default: &519 value: id: 1 account: @@ -35214,7 +35214,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 @@ -37827,7 +37827,7 @@ paths: parameters: - *73 - *242 - - &669 + - &670 name: repo_name description: repo_name parameter in: path @@ -38906,7 +38906,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. @@ -38947,7 +38947,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: @@ -40971,7 +40971,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 @@ -41484,7 +41484,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: @@ -41941,7 +41941,7 @@ paths: - updated_at - project_url examples: - default: &691 + default: &692 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -42118,7 +42118,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: @@ -42155,7 +42155,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: @@ -42205,7 +42205,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 @@ -42232,7 +42232,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 @@ -42258,7 +42258,7 @@ paths: application/json: schema: *268 examples: - text_field: &696 + text_field: &697 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -42267,7 +42267,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 @@ -42276,7 +42276,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 @@ -42285,7 +42285,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 @@ -42319,7 +42319,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 @@ -42365,7 +42365,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 @@ -42380,7 +42380,7 @@ paths: application/json: schema: *268 examples: - default: &702 + default: &703 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43591,7 +43591,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 @@ -43774,7 +43774,7 @@ paths: parameters: - *265 - *73 - - &703 + - &704 name: view_number description: The number that identifies the project view. in: path @@ -45873,7 +45873,7 @@ paths: - *73 - *17 - *19 - - &586 + - &587 name: targets description: | A comma-separated list of rule targets to filter by. @@ -46159,7 +46159,7 @@ paths: - object rules: type: array - items: &587 + items: &588 title: Repository Rule type: object description: A repository rule. @@ -46221,7 +46221,7 @@ paths: type: string enum: - required_linear_history - - &585 + - &586 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -47123,7 +47123,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 @@ -47138,7 +47138,7 @@ paths: in: query schema: type: string - - &589 + - &590 name: time_period description: |- The time period to filter by. @@ -47154,14 +47154,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. @@ -47181,7 +47181,7 @@ paths: description: Response content: application/json: - schema: &592 + schema: &593 title: Rule Suites description: Response type: array @@ -47237,7 +47237,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 @@ -47281,7 +47281,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. @@ -47297,7 +47297,7 @@ paths: description: Response content: application/json: - schema: &595 + schema: &596 title: Rule Suite description: Response type: object @@ -47404,7 +47404,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 @@ -47651,7 +47651,7 @@ paths: type: string format: date-time examples: - default: &598 + default: &599 value: - version_id: 3 actor: @@ -47704,7 +47704,7 @@ paths: description: Response content: application/json: - schema: &599 + schema: &600 allOf: - *311 - type: object @@ -47776,7 +47776,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 @@ -47787,7 +47787,7 @@ paths: enum: - open - resolved - - &601 + - &602 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -47797,7 +47797,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. @@ -47808,7 +47808,7 @@ paths: required: false schema: type: string - - &603 + - &604 name: exclude_providers in: query description: |- @@ -47819,7 +47819,7 @@ paths: required: false schema: type: string - - &604 + - &605 name: providers in: query description: |- @@ -47830,7 +47830,7 @@ paths: required: false schema: type: string - - &605 + - &606 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -47839,7 +47839,7 @@ paths: required: false schema: type: string - - &606 + - &607 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -47858,7 +47858,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. @@ -47873,7 +47873,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 @@ -47883,7 +47883,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 @@ -47893,7 +47893,7 @@ paths: required: false schema: type: string - - &610 + - &611 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -47902,7 +47902,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 @@ -47911,7 +47911,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 @@ -47920,7 +47920,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 @@ -47952,14 +47952,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' @@ -48078,14 +48078,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. @@ -48149,7 +48149,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. @@ -48210,7 +48210,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. @@ -48232,7 +48232,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. @@ -48254,7 +48254,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. @@ -48276,7 +48276,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. @@ -48291,7 +48291,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. @@ -48306,7 +48306,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. @@ -48321,7 +48321,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. @@ -48343,7 +48343,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. @@ -48365,7 +48365,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. @@ -48387,7 +48387,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. @@ -48409,7 +48409,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 @@ -48930,7 +48930,7 @@ paths: application/json: schema: type: array - items: &634 + items: &635 description: A repository security advisory. type: object properties: @@ -49281,7 +49281,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &635 + default: &636 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -51367,7 +51367,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 @@ -51432,7 +51432,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 @@ -51546,7 +51546,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 @@ -52360,7 +52360,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= @@ -53852,11 +53852,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: @@ -57588,7 +57588,7 @@ paths: items: type: object properties: - type: &488 + type: &489 type: string description: The type of reviewer. enum: @@ -57726,7 +57726,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 @@ -57838,7 +57838,7 @@ paths: - created_at - updated_at examples: - default: &484 + default: &485 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -58223,7 +58223,7 @@ paths: application/json: schema: *370 examples: - default: &501 + default: &502 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -58442,7 +58442,7 @@ paths: application/json: schema: *374 examples: - default: &502 + default: &503 value: name: USERNAME value: octocat @@ -60332,7 +60332,7 @@ paths: required: - sha - url - verification: &508 + verification: &509 title: Verification type: object properties: @@ -63570,7 +63570,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 @@ -68842,7 +68842,7 @@ paths: type: array items: *446 examples: - default: &660 + default: &661 value: total_count: 2 machines: @@ -69554,7 +69554,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. @@ -70256,7 +70256,7 @@ paths: - content - created_at examples: - default: &524 + default: &525 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -70393,7 +70393,7 @@ paths: - *325 - *326 - *95 - - &525 + - &526 name: reaction_id description: The unique identifier of the reaction. in: path @@ -70507,7 +70507,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 @@ -70798,7 +70798,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 @@ -71356,7 +71356,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 @@ -72019,7 +72019,7 @@ paths: application/json: schema: type: array - items: &639 + items: &640 title: Status description: The status of a commit. type: object @@ -73008,7 +73008,7 @@ paths: - size - type - url - - &576 + - &577 title: Content File description: Content File type: object @@ -73654,7 +73654,7 @@ paths: schema: oneOf: - *3 - - &503 + - &504 description: Repository rule violation was detected type: object properties: @@ -73675,7 +73675,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. @@ -75287,6 +75287,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 @@ -75387,7 +75458,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. @@ -75426,7 +75497,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *482 + metadata: *483 resolved: type: object description: A collection of resolved package dependencies. @@ -75440,7 +75511,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 @@ -75615,9 +75686,9 @@ paths: application/json: schema: type: array - items: *483 + items: *484 examples: - default: *484 + default: *485 headers: Link: *65 x-github: @@ -75766,7 +75837,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: simple-example: summary: Simple example @@ -75841,7 +75912,7 @@ paths: parameters: - *325 - *326 - - &485 + - &486 name: deployment_id description: deployment_id parameter in: path @@ -75853,7 +75924,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: default: value: @@ -75920,7 +75991,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 responses: '204': description: Response @@ -75944,7 +76015,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 - *17 - *19 responses: @@ -75954,7 +76025,7 @@ paths: application/json: schema: type: array - items: &486 + items: &487 title: Deployment Status description: The status of a deployment. type: object @@ -76120,7 +76191,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 requestBody: required: true content: @@ -76195,9 +76266,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 @@ -76255,7 +76326,7 @@ paths: parameters: - *325 - *326 - - *485 + - *486 - name: status_id in: path required: true @@ -76266,9 +76337,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *487 + default: *488 '404': *6 x-github: githubCloudOnly: false @@ -76370,7 +76441,7 @@ paths: - 5 environments: type: array - items: &489 + items: &490 title: Environment description: Details of a deployment environment type: object @@ -76432,7 +76503,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) @@ -76474,7 +76545,7 @@ paths: items: type: object properties: - type: *488 + type: *489 reviewer: anyOf: - *4 @@ -76501,7 +76572,7 @@ paths: - id - node_id - type - deployment_branch_policy: &492 + deployment_branch_policy: &493 type: - object - 'null' @@ -76620,7 +76691,7 @@ paths: parameters: - *325 - *326 - - &490 + - &491 name: environment_name in: path required: true @@ -76633,9 +76704,9 @@ paths: description: Response content: application/json: - schema: *489 + schema: *490 examples: - default: &493 + default: &494 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -76721,7 +76792,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 requestBody: required: false content: @@ -76731,7 +76802,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 @@ -76750,14 +76821,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: @@ -76777,9 +76848,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` @@ -76805,7 +76876,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 responses: '204': description: Default response @@ -76832,7 +76903,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *17 - *19 responses: @@ -76851,7 +76922,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 @@ -76914,7 +76985,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 requestBody: required: true content: @@ -76962,9 +77033,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - example-wildcard: &495 + example-wildcard: &496 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -77008,8 +77079,8 @@ paths: parameters: - *325 - *326 - - *490 - - &496 + - *491 + - &497 name: branch_policy_id in: path required: true @@ -77021,9 +77092,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *495 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77044,8 +77115,8 @@ paths: parameters: - *325 - *326 - - *490 - - *496 + - *491 + - *497 requestBody: required: true content: @@ -77074,9 +77145,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *495 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77097,8 +77168,8 @@ paths: parameters: - *325 - *326 - - *490 - - *496 + - *491 + - *497 responses: '204': description: Response @@ -77123,7 +77194,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: @@ -77142,7 +77213,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &497 + items: &498 title: Deployment protection rule description: Deployment protection rule type: object @@ -77164,7 +77235,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. @@ -77267,7 +77338,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: @@ -77290,9 +77361,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 @@ -77327,7 +77398,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 @@ -77349,7 +77420,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *498 + items: *499 examples: default: value: @@ -77386,8 +77457,8 @@ paths: parameters: - *325 - *326 - - *490 - - &500 + - *491 + - &501 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -77399,9 +77470,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *498 examples: - default: *499 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77422,10 +77493,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 @@ -77453,7 +77524,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *17 - *19 responses: @@ -77500,7 +77571,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 responses: '200': description: Response @@ -77532,7 +77603,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *160 responses: '200': @@ -77541,7 +77612,7 @@ paths: application/json: schema: *370 examples: - default: *501 + default: *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77565,7 +77636,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *160 requestBody: required: true @@ -77625,7 +77696,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *160 responses: '204': @@ -77653,7 +77724,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *341 - *19 responses: @@ -77698,7 +77769,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 requestBody: required: true content: @@ -77752,7 +77823,7 @@ paths: parameters: - *325 - *326 - - *490 + - *491 - *163 responses: '200': @@ -77761,7 +77832,7 @@ paths: application/json: schema: *374 examples: - default: *502 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77785,7 +77856,7 @@ paths: - *325 - *326 - *163 - - *490 + - *491 requestBody: required: true content: @@ -77830,7 +77901,7 @@ paths: - *325 - *326 - *163 - - *490 + - *491 responses: '204': description: Response @@ -78199,7 +78270,7 @@ paths: schema: oneOf: - *121 - - *503 + - *504 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78435,7 +78506,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 @@ -78670,7 +78741,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: default: value: @@ -78728,7 +78799,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. @@ -78745,7 +78816,7 @@ paths: application/json: schema: type: array - items: &506 + items: &507 title: Git Reference description: Git references within a repository type: object @@ -78823,15 +78894,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== @@ -78890,9 +78961,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 @@ -78920,7 +78991,7 @@ paths: parameters: - *325 - *326 - - *505 + - *506 requestBody: required: true content: @@ -78949,9 +79020,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 + default: *508 '422': *15 '409': *52 x-github: @@ -78971,7 +79042,7 @@ paths: parameters: - *325 - *326 - - *505 + - *506 responses: '204': description: Response @@ -79094,7 +79165,7 @@ paths: description: Response content: application/json: - schema: &509 + schema: &510 title: Git Tag description: Metadata for a Git tag type: object @@ -79150,7 +79221,7 @@ paths: - sha - type - url - verification: *508 + verification: *509 required: - sha - url @@ -79160,7 +79231,7 @@ paths: - tag - message examples: - default: &510 + default: &511 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -79245,9 +79316,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '404': *6 '409': *52 x-github: @@ -79346,7 +79417,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 @@ -79472,7 +79543,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: default-response: summary: Default response @@ -79542,7 +79613,7 @@ paths: application/json: schema: type: array - items: &512 + items: &513 title: Webhook description: Webhooks for repositories. type: object @@ -79605,7 +79676,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: @@ -79736,9 +79807,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: &513 + default: &514 value: type: Repository id: 12345678 @@ -79794,9 +79865,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: *513 + default: *514 '404': *6 x-github: githubCloudOnly: false @@ -79863,9 +79934,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: *513 + default: *514 '422': *15 '404': *6 x-github: @@ -80263,7 +80334,7 @@ paths: description: Response content: application/json: - schema: &514 + schema: &515 title: Import description: A repository import from an external source. type: object @@ -80370,7 +80441,7 @@ paths: - html_url - authors_url examples: - default: &517 + default: &518 value: vcs: subversion use_lfs: true @@ -80386,7 +80457,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: @@ -80464,7 +80535,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: default: value: @@ -80489,7 +80560,7 @@ paths: type: string '422': *15 '404': *6 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80570,7 +80641,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: example-1: summary: Example 1 @@ -80618,7 +80689,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 @@ -80646,7 +80717,7 @@ paths: responses: '204': description: Response - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80674,7 +80745,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 @@ -80688,7 +80759,7 @@ paths: application/json: schema: type: array - items: &516 + items: &517 title: Porter Author description: Porter Author type: object @@ -80742,7 +80813,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 @@ -80798,7 +80869,7 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: default: value: @@ -80811,7 +80882,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 @@ -80877,7 +80948,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *515 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80933,11 +81004,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 @@ -80969,7 +81040,7 @@ paths: application/json: schema: *20 examples: - default: *518 + default: *519 '301': *329 '404': *6 x-github: @@ -81004,7 +81075,7 @@ paths: properties: {} additionalProperties: false examples: - default: &520 + default: &521 value: limit: collaborators_only origin: repository @@ -81035,7 +81106,7 @@ paths: required: true content: application/json: - schema: *519 + schema: *520 examples: default: summary: Example request body @@ -81049,7 +81120,7 @@ paths: application/json: schema: *222 examples: - default: *520 + default: *521 '409': description: Response x-github: @@ -81106,9 +81177,9 @@ paths: application/json: schema: type: array - items: *521 + items: *522 examples: - default: &674 + default: &675 value: - id: 1 repository: @@ -81270,7 +81341,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: default: value: @@ -81508,7 +81579,7 @@ paths: type: array items: *81 examples: - default: &530 + default: &531 value: - id: 1 node_id: MDU6SXNzdWUx @@ -81779,7 +81850,7 @@ paths: application/json: schema: *81 examples: - default: &527 + default: &528 value: id: 1 node_id: MDU6SXNzdWUx @@ -81942,7 +82013,7 @@ paths: '422': *15 '503': *113 '404': *6 - '410': *522 + '410': *523 x-github: triggersNotification: true githubCloudOnly: false @@ -82004,7 +82075,7 @@ paths: type: array items: *82 examples: - default: &529 + default: &530 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -82072,7 +82143,7 @@ paths: application/json: schema: *82 examples: - default: &523 + default: &524 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -82153,7 +82224,7 @@ paths: application/json: schema: *82 examples: - default: *523 + default: *524 '422': *15 x-github: githubCloudOnly: false @@ -82265,7 +82336,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *522 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -82291,7 +82362,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *522 + '410': *523 '503': *113 x-github: githubCloudOnly: false @@ -82339,7 +82410,7 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 @@ -82428,7 +82499,7 @@ paths: - *325 - *326 - *95 - - *525 + - *526 responses: '204': description: Response @@ -82459,7 +82530,7 @@ paths: application/json: schema: type: array - items: &526 + items: &527 title: Issue Event description: Issue Event type: object @@ -82811,7 +82882,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *527 examples: default: value: @@ -83004,7 +83075,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *522 + '410': *523 '403': *27 x-github: githubCloudOnly: false @@ -83040,7 +83111,7 @@ paths: parameters: - *325 - *326 - - &528 + - &529 name: issue_number description: The number that identifies the issue. in: path @@ -83056,7 +83127,7 @@ paths: examples: default: summary: Issue - value: *527 + value: *528 pinned_comment: summary: Issue with pinned comment value: @@ -83263,7 +83334,7 @@ paths: version: '2026-03-10' '301': *329 '404': *6 - '410': *522 + '410': *523 '304': *35 x-github: githubCloudOnly: false @@ -83290,7 +83361,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -83431,13 +83502,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 @@ -83467,7 +83538,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -83495,7 +83566,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83513,7 +83584,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: content: application/json: @@ -83540,7 +83611,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83564,7 +83635,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: assignee in: path required: true @@ -83606,7 +83677,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *86 - *17 - *19 @@ -83619,11 +83690,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 @@ -83654,7 +83725,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -83678,14 +83749,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: @@ -83715,7 +83786,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -83727,12 +83798,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 @@ -83762,7 +83833,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -83786,7 +83857,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 @@ -83794,7 +83865,7 @@ paths: type: string '301': *329 '403': *27 - '410': *522 + '410': *523 '422': *15 '404': *6 x-github: @@ -83827,7 +83898,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -83841,13 +83912,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 @@ -83875,7 +83946,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -83887,12 +83958,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 @@ -83911,7 +83982,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -83925,7 +83996,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 @@ -83974,7 +84045,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &535 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -84102,7 +84173,7 @@ paths: - performed_via_github_app - assignee - assigner - - &535 + - &536 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -84148,7 +84219,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &537 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -84194,7 +84265,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &538 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -84243,7 +84314,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &539 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -84285,7 +84356,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 @@ -84327,7 +84398,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &541 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -84383,7 +84454,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &542 title: Locked Issue Event description: Locked Issue Event type: object @@ -84428,7 +84499,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 @@ -84489,7 +84560,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 @@ -84550,7 +84621,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 @@ -84611,7 +84682,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 @@ -84704,7 +84775,7 @@ paths: color: red headers: Link: *65 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84723,7 +84794,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -84733,9 +84804,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 @@ -84761,7 +84832,7 @@ paths: Link: *65 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84780,7 +84851,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -84792,7 +84863,7 @@ paths: type: array items: *80 examples: - default: &532 + default: &533 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84812,7 +84883,7 @@ paths: Link: *65 '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84830,7 +84901,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -84875,10 +84946,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 @@ -84897,7 +84968,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -84959,10 +85030,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 @@ -84981,13 +85052,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 @@ -85008,7 +85079,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - name: name in: path required: true @@ -85034,7 +85105,7 @@ paths: default: true '301': *329 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85056,7 +85127,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: false content: @@ -85085,7 +85156,7 @@ paths: '204': description: Response '403': *27 - '410': *522 + '410': *523 '404': *6 '422': *15 x-github: @@ -85105,7 +85176,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 responses: '204': description: Response @@ -85137,7 +85208,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 responses: '200': description: Response @@ -85145,10 +85216,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 @@ -85167,7 +85238,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. @@ -85195,11 +85266,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 @@ -85219,7 +85290,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -85284,8 +85355,8 @@ paths: parameters: - *325 - *326 - - *528 - - *525 + - *529 + - *526 responses: '204': description: Response @@ -85316,7 +85387,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -85340,7 +85411,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 @@ -85375,7 +85446,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -85387,11 +85458,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 @@ -85421,7 +85492,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -85450,14 +85521,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: @@ -85479,7 +85550,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 requestBody: required: true content: @@ -85512,7 +85583,7 @@ paths: application/json: schema: *81 examples: - default: *527 + default: *528 '403': *27 '404': *6 '422': *7 @@ -85536,7 +85607,7 @@ paths: parameters: - *325 - *326 - - *528 + - *529 - *17 - *19 responses: @@ -85551,7 +85622,6 @@ paths: description: Timeline Event type: object anyOf: - - *533 - *534 - *535 - *536 @@ -85564,6 +85634,7 @@ paths: - *543 - *544 - *545 + - *546 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -85620,7 +85691,7 @@ paths: pin: anyOf: - type: 'null' - - *546 + - *547 required: - event - actor @@ -85896,7 +85967,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. @@ -86412,7 +86483,7 @@ paths: headers: Link: *65 '404': *6 - '410': *522 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86440,7 +86511,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 @@ -86545,9 +86616,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: &548 + default: &549 value: id: 1 key: ssh-rsa AAA... @@ -86583,7 +86654,7 @@ paths: parameters: - *325 - *326 - - &549 + - &550 name: key_id description: The unique identifier of the key. in: path @@ -86595,9 +86666,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 '404': *6 x-github: githubCloudOnly: false @@ -86617,7 +86688,7 @@ paths: parameters: - *325 - *326 - - *549 + - *550 responses: '204': description: Response @@ -86650,7 +86721,7 @@ paths: type: array items: *80 examples: - default: *532 + default: *533 headers: Link: *65 '404': *6 @@ -86710,7 +86781,7 @@ paths: application/json: schema: *80 examples: - default: &550 + default: &551 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -86756,7 +86827,7 @@ paths: application/json: schema: *80 examples: - default: *550 + default: *551 '404': *6 x-github: githubCloudOnly: false @@ -87158,7 +87229,7 @@ paths: application/json: schema: *456 examples: - default: *551 + default: *552 '204': description: Response when already merged '404': @@ -87324,7 +87395,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 @@ -87385,7 +87456,7 @@ paths: parameters: - *325 - *326 - - &553 + - &554 name: milestone_number description: The number that identifies the milestone. in: path @@ -87399,7 +87470,7 @@ paths: application/json: schema: *266 examples: - default: *552 + default: *553 '404': *6 x-github: githubCloudOnly: false @@ -87418,7 +87489,7 @@ paths: parameters: - *325 - *326 - - *553 + - *554 requestBody: required: false content: @@ -87458,7 +87529,7 @@ paths: application/json: schema: *266 examples: - default: *552 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87476,7 +87547,7 @@ paths: parameters: - *325 - *326 - - *553 + - *554 responses: '204': description: Response @@ -87499,7 +87570,7 @@ paths: parameters: - *325 - *326 - - *553 + - *554 - *17 - *19 responses: @@ -87511,7 +87582,7 @@ paths: type: array items: *80 examples: - default: *532 + default: *533 headers: Link: *65 x-github: @@ -87532,10 +87603,10 @@ paths: parameters: - *325 - *326 - - *554 - *555 - - *86 - *556 + - *86 + - *557 - *17 - *19 responses: @@ -87547,7 +87618,7 @@ paths: type: array items: *106 examples: - default: *557 + default: *558 headers: Link: *65 x-github: @@ -87637,7 +87708,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 @@ -87781,7 +87852,7 @@ paths: - custom_404 - public examples: - default: &559 + default: &560 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -87878,9 +87949,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: - default: *559 + default: *560 '422': *15 '409': *52 x-github: @@ -88042,7 +88113,7 @@ paths: application/json: schema: type: array - items: &560 + items: &561 title: Page Build description: Page Build type: object @@ -88189,9 +88260,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 @@ -88251,9 +88322,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *561 examples: - default: *561 + default: *562 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88384,7 +88455,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. @@ -88444,7 +88515,7 @@ paths: parameters: - *325 - *326 - - *562 + - *563 responses: '204': *183 '404': *6 @@ -89016,7 +89087,7 @@ paths: type: array items: *460 examples: - default: *563 + default: *564 headers: Link: *65 '304': *35 @@ -89116,7 +89187,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 @@ -89350,7 +89421,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 @@ -89546,7 +89617,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &568 + default: &569 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -90114,9 +90185,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 @@ -90201,9 +90272,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 @@ -90302,9 +90373,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: - default: *566 + default: *567 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90373,7 +90444,7 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 @@ -90462,7 +90533,7 @@ paths: - *325 - *326 - *95 - - *525 + - *526 responses: '204': description: Response @@ -90507,7 +90578,7 @@ paths: parameters: - *325 - *326 - - &569 + - &570 name: pull_number description: The number that identifies the pull request. in: path @@ -90520,9 +90591,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': @@ -90559,7 +90630,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -90601,9 +90672,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *568 + default: *569 '422': *15 '403': *27 x-github: @@ -90627,7 +90698,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: true content: @@ -90730,7 +90801,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -90751,9 +90822,9 @@ paths: application/json: schema: type: array - items: *565 + items: *566 examples: - default: *570 + default: *571 headers: Link: *65 x-github: @@ -90788,7 +90859,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: true content: @@ -90894,7 +90965,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: example-for-a-multi-line-comment: value: @@ -90984,7 +91055,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *95 requestBody: required: true @@ -91007,7 +91078,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *566 examples: default: value: @@ -91095,7 +91166,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *17 - *19 responses: @@ -91107,7 +91178,7 @@ paths: type: array items: *456 examples: - default: *571 + default: *572 headers: Link: *65 x-github: @@ -91139,7 +91210,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *17 - *19 responses: @@ -91189,7 +91260,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 responses: '204': description: Response if pull request has been merged @@ -91214,7 +91285,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -91328,7 +91399,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 responses: '200': description: Response @@ -91405,7 +91476,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -91980,7 +92051,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: true content: @@ -92532,7 +92603,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 - *17 - *19 responses: @@ -92542,7 +92613,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 @@ -92700,7 +92771,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -92790,9 +92861,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: &574 + default: &575 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -92857,8 +92928,8 @@ paths: parameters: - *325 - *326 - - *569 - - &573 + - *570 + - &574 name: review_id description: The unique identifier of the review. in: path @@ -92870,9 +92941,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: &575 + default: &576 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -92933,8 +93004,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 requestBody: required: true content: @@ -92957,7 +93028,7 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: default: value: @@ -93021,16 +93092,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: @@ -93059,8 +93130,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 - *17 - *19 responses: @@ -93320,8 +93391,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 requestBody: required: true content: @@ -93350,7 +93421,7 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: default: value: @@ -93415,8 +93486,8 @@ paths: parameters: - *325 - *326 - - *569 - - *573 + - *570 + - *574 requestBody: required: true content: @@ -93451,9 +93522,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: *575 + default: *576 '404': *6 '422': *7 '403': *27 @@ -93477,7 +93548,7 @@ paths: parameters: - *325 - *326 - - *569 + - *570 requestBody: required: false content: @@ -93555,9 +93626,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: &577 + default: &578 value: type: file encoding: base64 @@ -93620,9 +93691,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *577 + default: *578 '404': *6 '422': *15 x-github: @@ -93655,7 +93726,7 @@ paths: application/json: schema: type: array - items: *578 + items: *579 examples: default: value: @@ -93826,9 +93897,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 @@ -93935,7 +94006,7 @@ paths: parameters: - *325 - *326 - - &580 + - &581 name: asset_id description: The unique identifier of the asset. in: path @@ -93947,9 +94018,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 @@ -94002,7 +94073,7 @@ paths: parameters: - *325 - *326 - - *580 + - *581 requestBody: required: false content: @@ -94031,9 +94102,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: *581 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94051,7 +94122,7 @@ paths: parameters: - *325 - *326 - - *580 + - *581 responses: '204': description: Response @@ -94170,9 +94241,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *582 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -94204,9 +94275,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *582 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -94230,7 +94301,7 @@ paths: parameters: - *325 - *326 - - &583 + - &584 name: release_id description: The unique identifier of the release. in: path @@ -94244,9 +94315,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: @@ -94266,7 +94337,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 requestBody: required: false content: @@ -94330,9 +94401,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: @@ -94355,7 +94426,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 responses: '204': description: Response @@ -94378,7 +94449,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 - *17 - *19 responses: @@ -94388,7 +94459,7 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: default: value: @@ -94471,7 +94542,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 - name: name in: query required: true @@ -94497,7 +94568,7 @@ paths: description: Response for successful upload content: application/json: - schema: *579 + schema: *580 examples: response-for-successful-upload: value: @@ -94554,7 +94625,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. @@ -94580,7 +94651,7 @@ paths: type: array items: *454 examples: - default: *524 + default: *525 headers: Link: *65 '404': *6 @@ -94603,7 +94674,7 @@ paths: parameters: - *325 - *326 - - *583 + - *584 requestBody: required: true content: @@ -94666,8 +94737,8 @@ paths: parameters: - *325 - *326 - - *583 - - *525 + - *584 + - *526 responses: '204': description: Response @@ -94710,7 +94781,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. @@ -94731,67 +94802,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: @@ -94842,7 +94913,7 @@ paths: schema: type: boolean default: true - - *586 + - *587 responses: '200': description: Response @@ -94927,7 +94998,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *587 + items: *588 required: - name - enforcement @@ -94960,7 +95031,7 @@ paths: application/json: schema: *308 examples: - default: &597 + default: &598 value: id: 42 name: super cool ruleset @@ -95010,10 +95081,10 @@ paths: parameters: - *325 - *326 - - *588 - *589 - *590 - *591 + - *592 - *17 - *19 responses: @@ -95021,9 +95092,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '404': *6 '500': *53 x-github: @@ -95046,15 +95117,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: @@ -95105,7 +95176,7 @@ paths: application/json: schema: *308 examples: - default: *597 + default: *598 '404': *6 '500': *53 put: @@ -95158,7 +95229,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *587 + items: *588 examples: default: value: @@ -95188,7 +95259,7 @@ paths: application/json: schema: *308 examples: - default: *597 + default: *598 '404': *6 '422': *15 '500': *53 @@ -95250,7 +95321,7 @@ paths: type: array items: *311 examples: - default: *598 + default: *599 '404': *6 '500': *53 x-github: @@ -95288,7 +95359,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -95345,7 +95416,6 @@ paths: parameters: - *325 - *326 - - *600 - *601 - *602 - *603 @@ -95353,15 +95423,16 @@ paths: - *605 - *606 - *607 + - *608 - *59 - *19 - *17 - - *608 - *609 - *610 - *611 - *612 - *613 + - *614 responses: '200': description: Response @@ -95369,7 +95440,7 @@ paths: application/json: schema: type: array - items: &617 + items: &618 type: object properties: number: *170 @@ -95385,8 +95456,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 @@ -95492,7 +95563,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *616 + - *617 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -95654,13 +95725,13 @@ paths: - *325 - *326 - *422 - - *613 + - *614 responses: '200': description: Response content: application/json: - schema: *617 + schema: *618 examples: default: value: @@ -95724,8 +95795,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. @@ -95763,7 +95834,7 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: default: value: @@ -95871,7 +95942,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &767 + items: &768 type: object properties: type: @@ -95898,7 +95969,6 @@ paths: - commit details: oneOf: - - *618 - *619 - *620 - *621 @@ -95911,6 +95981,7 @@ paths: - *628 - *629 - *630 + - *631 examples: default: value: @@ -96005,14 +96076,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 @@ -96029,7 +96100,7 @@ paths: schema: type: object properties: - reason: *632 + reason: *633 expire_at: type: - string @@ -96092,7 +96163,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 @@ -96120,15 +96191,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: @@ -96141,7 +96212,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *633 + items: *634 examples: default: value: @@ -96251,9 +96322,9 @@ paths: application/json: schema: type: array - items: *634 + items: *635 examples: - default: *635 + default: *636 '400': *14 '404': *6 x-github: @@ -96447,9 +96518,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 @@ -96802,7 +96873,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -96957,15 +97028,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: @@ -96991,7 +97062,7 @@ paths: parameters: - *325 - *326 - - *636 + - *637 requestBody: required: true content: @@ -97162,10 +97233,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': @@ -97205,7 +97276,7 @@ paths: parameters: - *325 - *326 - - *636 + - *637 responses: '202': *37 '400': *14 @@ -97234,7 +97305,7 @@ paths: parameters: - *325 - *326 - - *636 + - *637 responses: '202': description: Response @@ -97375,7 +97446,7 @@ paths: application/json: schema: type: array - items: &638 + items: &639 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -97748,7 +97819,7 @@ paths: application/json: schema: type: array - items: *638 + items: *639 examples: default: value: @@ -97838,7 +97909,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *640 examples: default: value: @@ -97932,7 +98003,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. @@ -98032,7 +98103,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: default: value: @@ -98242,7 +98313,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 @@ -98254,7 +98325,7 @@ paths: required: - names examples: - default: &642 + default: &643 value: names: - octocat @@ -98309,9 +98380,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: *642 + default: *643 '404': *6 '422': *7 x-github: @@ -98334,7 +98405,7 @@ paths: parameters: - *325 - *326 - - &643 + - &644 name: per description: The time frame to display results for. in: query @@ -98365,7 +98436,7 @@ paths: - 128 clones: type: array - items: &644 + items: &645 title: Traffic type: object properties: @@ -98613,7 +98684,7 @@ paths: parameters: - *325 - *326 - - *643 + - *644 responses: '200': description: Response @@ -98634,7 +98705,7 @@ paths: - 3782 views: type: array - items: *644 + items: *645 required: - uniques - count @@ -99309,7 +99380,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: @@ -99375,9 +99446,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 @@ -99414,7 +99485,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: @@ -99481,9 +99552,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 @@ -99515,7 +99586,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': @@ -99659,7 +99730,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &646 + text_matches: &647 title: Search Result Text Matches type: array items: @@ -99822,7 +99893,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 @@ -99910,7 +99981,7 @@ paths: url: type: string format: uri - verification: *508 + verification: *509 required: - author - committer @@ -99942,7 +100013,7 @@ paths: type: number node_id: type: string - text_matches: *646 + text_matches: *647 required: - sha - node_id @@ -100134,7 +100205,7 @@ paths: - interactions - created - updated - - *647 + - *648 - *17 - *19 - name: advanced_search @@ -100248,11 +100319,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: @@ -100280,7 +100351,7 @@ paths: - string - 'null' format: date-time - text_matches: *646 + text_matches: *647 pull_request: type: object properties: @@ -100580,7 +100651,7 @@ paths: enum: - created - updated - - *647 + - *648 - *17 - *19 responses: @@ -100625,7 +100696,7 @@ paths: - 'null' score: type: number - text_matches: *646 + text_matches: *647 required: - id - node_id @@ -100710,7 +100781,7 @@ paths: - forks - help-wanted-issues - updated - - *647 + - *648 - *17 - *19 responses: @@ -100956,7 +101027,7 @@ paths: - admin - pull - push - text_matches: *646 + text_matches: *647 temp_clone_token: type: string allow_merge_commit: @@ -101264,7 +101335,7 @@ paths: - string - 'null' format: uri - text_matches: *646 + text_matches: *647 related: type: - array @@ -101457,7 +101528,7 @@ paths: - followers - repositories - joined - - *647 + - *648 - *17 - *19 responses: @@ -101567,7 +101638,7 @@ paths: type: - boolean - 'null' - text_matches: *646 + text_matches: *647 blog: type: - string @@ -101649,7 +101720,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 @@ -101690,7 +101761,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: @@ -101791,7 +101862,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 @@ -101820,7 +101891,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: @@ -101858,7 +101929,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 @@ -101909,7 +101980,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -101946,7 +102017,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -101986,7 +102057,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *650 + - *651 - *69 responses: '204': @@ -102023,7 +102094,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': @@ -102032,7 +102103,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 @@ -102065,7 +102136,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 @@ -102093,7 +102164,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': @@ -102127,7 +102198,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': @@ -102155,7 +102226,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *650 + - *651 - *17 - *19 responses: @@ -102197,7 +102268,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: @@ -102205,7 +102276,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *653 + schema: *654 examples: alternative-response-with-extra-repository-information: value: @@ -102362,7 +102433,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: @@ -102414,7 +102485,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: @@ -102441,7 +102512,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *650 + - *651 - *17 - *19 responses: @@ -102453,7 +102524,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: *654 + response-if-child-teams-exist: *655 headers: Link: *65 '404': *6 @@ -102486,7 +102557,7 @@ paths: application/json: schema: oneOf: - - &656 + - &657 title: Private User description: Private User type: object @@ -102736,7 +102807,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 @@ -102896,7 +102967,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: default: value: @@ -103294,7 +103365,7 @@ paths: type: integer secrets: type: array - items: &657 + items: &658 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -103414,7 +103485,7 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: default: value: @@ -103827,7 +103898,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 @@ -103880,7 +103951,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' @@ -103925,9 +103996,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 '404': *6 x-github: githubCloudOnly: false @@ -103966,7 +104037,7 @@ paths: type: array items: *446 examples: - default: *660 + default: *661 '304': *35 '500': *53 '401': *23 @@ -104932,7 +105003,7 @@ paths: type: array items: *247 examples: - default: &671 + default: &672 value: - id: 197 name: hello_docker @@ -105033,7 +105104,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 title: Email description: Email type: object @@ -105103,9 +105174,9 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: - default: &673 + default: &674 value: - email: octocat@github.com verified: true @@ -105182,7 +105253,7 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: default: value: @@ -105440,7 +105511,7 @@ paths: application/json: schema: type: array - items: &662 + items: &663 title: GPG Key description: A unique encryption key type: object @@ -105585,7 +105656,7 @@ paths: - subkeys - revoked examples: - default: &689 + default: &690 value: - id: 3 name: Octocat's GPG Key @@ -105670,9 +105741,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *663 examples: - default: &663 + default: &664 value: id: 3 name: Octocat's GPG Key @@ -105729,7 +105800,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 @@ -105741,9 +105812,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *663 examples: - default: *663 + default: *664 '404': *6 '304': *35 '403': *27 @@ -105766,7 +105837,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 @@ -106074,7 +106145,7 @@ paths: required: true content: application/json: - schema: *519 + schema: *520 examples: default: value: @@ -106224,7 +106295,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Key description: Key type: object @@ -106327,9 +106398,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: &666 + default: &667 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -106362,15 +106433,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 @@ -106393,7 +106464,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 @@ -106426,7 +106497,7 @@ paths: application/json: schema: type: array - items: &667 + items: &668 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -106505,7 +106576,7 @@ paths: - account - plan examples: - default: &668 + default: &669 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -106567,9 +106638,9 @@ paths: application/json: schema: type: array - items: *667 + items: *668 examples: - default: *668 + default: *669 headers: Link: *65 '304': *35 @@ -107587,7 +107658,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *242 - - *669 + - *670 responses: '204': description: Response @@ -107720,7 +107791,7 @@ paths: - docker - nuget - container - - *670 + - *671 - *19 - *17 responses: @@ -107732,8 +107803,8 @@ paths: type: array items: *247 examples: - default: *671 - '400': *672 + default: *672 + '400': *673 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107762,7 +107833,7 @@ paths: application/json: schema: *247 examples: - default: &690 + default: &691 value: id: 40201 name: octo-name @@ -108124,9 +108195,9 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: - default: *673 + default: *674 headers: Link: *65 '304': *35 @@ -108239,7 +108310,7 @@ paths: type: array items: *77 examples: - default: &680 + default: &681 summary: Default response value: - id: 1296269 @@ -108603,9 +108674,9 @@ paths: application/json: schema: type: array - items: *521 + items: *522 examples: - default: *674 + default: *675 headers: Link: *65 '304': *35 @@ -108690,7 +108761,7 @@ paths: application/json: schema: type: array - items: &675 + items: &676 title: Social account description: Social media account type: object @@ -108707,7 +108778,7 @@ paths: - provider - url examples: - default: &676 + default: &677 value: - provider: twitter url: https://twitter.com/github @@ -108770,9 +108841,9 @@ paths: application/json: schema: type: array - items: *675 + items: *676 examples: - default: *676 + default: *677 '422': *15 '304': *35 '404': *6 @@ -108860,7 +108931,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 @@ -108880,7 +108951,7 @@ paths: - title - created_at examples: - default: &708 + default: &709 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -108945,9 +109016,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &678 + default: &679 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -108977,7 +109048,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 @@ -108989,9 +109060,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *678 + default: *679 '404': *6 '304': *35 '403': *27 @@ -109014,7 +109085,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 @@ -109043,7 +109114,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 @@ -109068,11 +109139,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 @@ -109441,10 +109512,10 @@ paths: application/json: schema: oneOf: + - *657 - *656 - - *655 examples: - default-response: &684 + default-response: &685 summary: Default response value: login: octocat @@ -109479,7 +109550,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 @@ -109536,7 +109607,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 @@ -109602,7 +109673,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *681 + - *682 - *17 responses: '200': @@ -109637,7 +109708,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 @@ -109712,7 +109783,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 @@ -109764,11 +109835,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 @@ -109818,8 +109889,8 @@ paths: required: - subject_digests examples: - default: *686 - withPredicateType: *687 + default: *687 + withPredicateType: *688 responses: '200': description: Response @@ -109873,7 +109944,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 @@ -110148,7 +110219,7 @@ paths: type: array items: *247 examples: - default: *671 + default: *672 '403': *27 '401': *23 x-github: @@ -110532,9 +110603,9 @@ paths: application/json: schema: type: array - items: *662 + items: *663 examples: - default: *689 + default: *690 headers: Link: *65 x-github: @@ -110638,7 +110709,7 @@ paths: application/json: schema: *20 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110763,7 +110834,7 @@ paths: - docker - nuget - container - - *670 + - *671 - *69 - *19 - *17 @@ -110776,10 +110847,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 @@ -110809,7 +110880,7 @@ paths: application/json: schema: *247 examples: - default: *690 + default: *691 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111158,7 +111229,7 @@ paths: type: array items: *268 examples: - default: *691 + default: *692 headers: Link: *65 '304': *35 @@ -111218,7 +111289,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 @@ -111234,7 +111305,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *693 + iteration_configuration: *694 required: - name - data_type @@ -111256,8 +111327,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 @@ -111265,11 +111336,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 @@ -111291,7 +111362,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *265 - - *701 + - *702 - *69 responses: '200': @@ -111300,7 +111371,7 @@ paths: application/json: schema: *268 examples: - default: *702 + default: *703 headers: Link: *65 '304': *35 @@ -111657,7 +111728,7 @@ paths: parameters: - *265 - *69 - - *703 + - *704 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -111932,7 +112003,7 @@ paths: - *115 - *117 - *116 - - *704 + - *705 - *118 responses: '200': @@ -112063,7 +112134,7 @@ paths: parameters: - *69 - *115 - - *705 + - *706 - *116 responses: '200': @@ -112162,9 +112233,9 @@ paths: - *115 - *117 - *116 - - *706 - - *118 - *707 + - *118 + - *708 responses: '200': description: Response when getting a billing usage summary @@ -112298,9 +112369,9 @@ paths: application/json: schema: type: array - items: *675 + items: *676 examples: - default: *676 + default: *677 headers: Link: *65 x-github: @@ -112330,9 +112401,9 @@ paths: application/json: schema: type: array - items: *677 + items: *678 examples: - default: *708 + default: *709 headers: Link: *65 x-github: @@ -112357,7 +112428,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *69 - - *709 + - *710 - *59 - *17 - *19 @@ -112369,11 +112440,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: @@ -112533,7 +112604,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 @@ -112602,7 +112673,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 @@ -112623,7 +112694,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 @@ -112696,7 +112767,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 @@ -113636,10 +113707,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 @@ -113715,11 +113786,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) @@ -113942,11 +114013,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 @@ -114134,11 +114205,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 @@ -114222,7 +114293,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 @@ -114332,7 +114403,7 @@ webhooks: - examples: - neutral - deployment: *716 + deployment: *717 details_url: type: string examples: @@ -114430,10 +114501,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 @@ -114824,11 +114895,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 @@ -115222,11 +115293,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 @@ -115629,11 +115700,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 @@ -116618,10 +116689,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 @@ -117325,10 +117396,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 @@ -118026,10 +118097,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 @@ -118350,20 +118421,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 @@ -118771,12 +118842,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 @@ -119059,12 +119130,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 @@ -119410,12 +119481,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 @@ -119705,9 +119776,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 @@ -119715,7 +119786,7 @@ webhooks: type: - string - 'null' - repository: *714 + repository: *715 sender: *4 required: - action @@ -119961,12 +120032,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 @@ -120287,10 +120358,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 @@ -120550,10 +120621,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 @@ -120634,18 +120705,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 @@ -120655,7 +120726,7 @@ webhooks: enum: - tag - branch - repository: *714 + repository: *715 sender: *4 required: - ref @@ -120738,9 +120809,9 @@ webhooks: enum: - created definition: *276 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -120825,9 +120896,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 @@ -120905,9 +120976,9 @@ webhooks: enum: - promote_to_enterprise definition: *276 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -120985,9 +121056,9 @@ webhooks: enum: - updated definition: *276 - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -121064,10 +121135,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 @@ -121152,18 +121223,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 @@ -121244,10 +121315,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 @@ -121328,10 +121399,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 @@ -121413,10 +121484,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 @@ -121498,10 +121569,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 @@ -121581,10 +121652,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 @@ -121664,10 +121735,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 @@ -121748,10 +121819,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 @@ -121831,10 +121902,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 @@ -121911,9 +121982,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 @@ -121951,8 +122022,8 @@ webhooks: - verified - created_at - read_only - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -122029,11 +122100,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 @@ -122600,12 +122671,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 @@ -123356,13 +123427,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': @@ -123433,7 +123504,7 @@ webhooks: type: string enum: - approved - approver: &723 + approver: &724 type: object properties: avatar_url: @@ -123476,11 +123547,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 @@ -123561,7 +123632,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &725 + workflow_job_run: &726 type: object properties: conclusion: @@ -124307,18 +124378,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: @@ -125035,13 +125106,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 @@ -126974,12 +127045,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: @@ -127670,7 +127741,7 @@ webhooks: type: string enum: - answered - answer: &729 + answer: &730 type: object properties: author_association: @@ -127830,11 +127901,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 @@ -127961,11 +128032,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 @@ -128048,11 +128119,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 @@ -128134,7 +128205,7 @@ webhooks: type: string enum: - created - comment: &728 + comment: &729 type: object properties: author_association: @@ -128294,11 +128365,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 @@ -128381,12 +128452,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 @@ -128481,12 +128552,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 @@ -128570,11 +128641,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 @@ -128656,11 +128727,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 @@ -128760,11 +128831,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 @@ -128846,10 +128917,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: @@ -128882,8 +128953,8 @@ webhooks: - color - default - description - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -128966,11 +129037,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 @@ -129052,11 +129123,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 @@ -129138,11 +129209,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 @@ -129227,16 +129298,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 @@ -129319,10 +129390,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 @@ -129404,12 +129475,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 @@ -129492,11 +129563,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 @@ -129578,11 +129649,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 @@ -129655,7 +129726,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. @@ -130333,9 +130404,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *712 - organization: *713 - repository: *714 + installation: *713 + organization: *714 + repository: *715 sender: *4 required: - forkee @@ -130481,9 +130552,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 @@ -130521,7 +130592,7 @@ webhooks: - action - sha - html_url - repository: *714 + repository: *715 sender: *4 required: - pages @@ -130597,10 +130668,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 @@ -130626,8 +130697,8 @@ webhooks: - name - full_name - private - repository: *714 - requester: *731 + repository: *715 + requester: *732 sender: *4 required: - action @@ -130702,11 +130773,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' @@ -130783,11 +130854,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' @@ -130864,10 +130935,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 @@ -130913,15 +130984,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 @@ -131000,10 +131071,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. @@ -131030,9 +131101,9 @@ webhooks: - name - full_name - private - repository: *714 - repository_selection: *734 - requester: *731 + repository: *715 + repository_selection: *735 + requester: *732 sender: *4 required: - action @@ -131111,11 +131182,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' @@ -131297,10 +131368,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 @@ -131379,11 +131450,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' @@ -131549,7 +131620,7 @@ webhooks: pin: anyOf: - type: 'null' - - *546 + - *547 user: title: User type: @@ -131635,8 +131706,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. @@ -132448,8 +132519,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 @@ -132810,8 +132881,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -132891,7 +132962,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. @@ -133048,7 +133119,7 @@ webhooks: pin: anyOf: - type: 'null' - - *546 + - *547 required: - url - html_url @@ -133062,8 +133133,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. @@ -133871,8 +133942,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 @@ -134235,8 +134306,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -134316,7 +134387,7 @@ webhooks: type: string enum: - edited - changes: &759 + changes: &760 description: The changes to the comment. type: object properties: @@ -134328,9 +134399,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. @@ -135141,8 +135212,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 @@ -135503,8 +135574,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -135585,9 +135656,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. @@ -136400,8 +136471,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 @@ -136764,8 +136835,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -136845,9 +136916,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. @@ -137660,8 +137731,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 @@ -138024,8 +138095,8 @@ webhooks: - state - locked - assignee - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -138114,9 +138185,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 @@ -138205,9 +138276,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 @@ -138295,9 +138366,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 @@ -138386,9 +138457,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 @@ -138468,10 +138539,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. @@ -139282,11 +139353,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 @@ -139406,8 +139477,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -139487,8 +139558,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. @@ -140304,11 +140375,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 @@ -140571,8 +140642,8 @@ webhooks: required: - state - closed_at - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -140651,8 +140722,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) @@ -141459,11 +141530,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 @@ -141582,8 +141653,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -141662,8 +141733,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) @@ -142493,11 +142564,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 @@ -142595,7 +142666,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 @@ -142738,8 +142809,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -142838,8 +142909,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) @@ -143650,11 +143721,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 @@ -143774,9 +143845,9 @@ webhooks: - active_lock_reason - body - reactions - label: *730 - organization: *713 - repository: *714 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -143856,8 +143927,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) @@ -144667,11 +144738,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 @@ -144791,9 +144862,9 @@ webhooks: - active_lock_reason - body - reactions - label: *730 - organization: *713 - repository: *714 + label: *731 + organization: *714 + repository: *715 sender: *4 required: - action @@ -144873,8 +144944,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) @@ -145709,11 +145780,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 @@ -145810,8 +145881,8 @@ webhooks: format: uri user_view_type: type: string - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -145890,8 +145961,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) @@ -146720,11 +146791,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 @@ -146821,9 +146892,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 @@ -147710,11 +147781,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 @@ -148306,8 +148377,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) @@ -149114,11 +149185,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 @@ -149241,8 +149312,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -149322,9 +149393,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. @@ -150129,11 +150200,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 @@ -150252,8 +150323,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -150332,8 +150403,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) @@ -151166,11 +151237,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 @@ -151268,8 +151339,8 @@ webhooks: user_view_type: type: string type: *230 - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -152157,11 +152228,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 @@ -152771,11 +152842,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 @@ -152855,12 +152926,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 @@ -152941,7 +153012,7 @@ webhooks: type: string enum: - unassigned - assignee: &762 + assignee: &763 title: User type: - object @@ -153013,11 +153084,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 @@ -153096,12 +153167,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 @@ -153181,8 +153252,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) @@ -154015,11 +154086,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 @@ -154116,8 +154187,8 @@ webhooks: format: uri user_view_type: type: string - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -154197,11 +154268,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 @@ -154280,12 +154351,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 @@ -154365,11 +154436,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 @@ -154447,11 +154518,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 @@ -154561,11 +154632,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 @@ -154647,9 +154718,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: @@ -154737,8 +154808,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: @@ -154822,7 +154893,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *714 + repository: *715 sender: *4 required: - action @@ -154902,10 +154973,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 @@ -154993,7 +155064,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *714 + repository: *715 sender: *4 required: - action @@ -155075,10 +155146,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 @@ -155164,7 +155235,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *714 + repository: *715 sender: *4 required: - action @@ -155245,8 +155316,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *711 - installation: *712 + enterprise: *712 + installation: *713 marketplace_purchase: title: Marketplace Purchase type: object @@ -155332,9 +155403,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 @@ -155414,12 +155485,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 @@ -155521,11 +155592,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 @@ -155627,11 +155698,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 @@ -155710,11 +155781,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 @@ -155792,11 +155863,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`. @@ -155874,7 +155945,7 @@ webhooks: required: - login - id - team: &741 + team: &742 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -156104,11 +156175,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`. @@ -156187,7 +156258,7 @@ webhooks: required: - login - id - team: *741 + team: *742 required: - action - scope @@ -156269,8 +156340,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 @@ -156296,8 +156367,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156383,10 +156454,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 @@ -156459,7 +156530,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, @@ -156568,12 +156639,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 @@ -156653,11 +156724,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 @@ -156736,9 +156807,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 @@ -156880,8 +156951,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -156960,11 +157031,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 @@ -157074,11 +157145,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 @@ -157158,11 +157229,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 @@ -157241,11 +157312,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 @@ -157324,11 +157395,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 @@ -157407,9 +157478,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`. @@ -157519,8 +157590,8 @@ webhooks: - role - organization_url - user - organization: *713 - repository: *714 + organization: *714 + repository: *715 sender: *4 required: - action @@ -157598,11 +157669,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 @@ -157681,8 +157752,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`. @@ -157804,10 +157875,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 @@ -157885,11 +157956,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 @@ -157976,11 +158047,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 @@ -158057,9 +158128,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 @@ -158582,7 +158653,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &745 + items: &746 title: Ruby Gems metadata type: object properties: @@ -158679,7 +158750,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -158755,9 +158826,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 @@ -159119,7 +159190,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *745 + items: *746 source_url: type: string format: uri @@ -159190,7 +159261,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -159370,12 +159441,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 @@ -159452,7 +159523,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 @@ -159602,10 +159673,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 @@ -159682,11 +159753,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 @@ -159762,11 +159833,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 @@ -159841,11 +159912,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 @@ -159950,7 +160021,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 @@ -159982,8 +160053,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. @@ -160228,10 +160299,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: @@ -160354,7 +160425,7 @@ webhooks: - creator - created_at - updated_at - repository: *714 + repository: *715 sender: *4 required: - action @@ -160435,11 +160506,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 @@ -160519,9 +160590,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 @@ -160651,7 +160722,7 @@ webhooks: repository: anyOf: - type: 'null' - - *714 + - *715 sender: *4 required: - action @@ -160745,11 +160816,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 @@ -160843,9 +160914,9 @@ webhooks: - from required: - column_id - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 project_card: allOf: - title: Project Card @@ -161042,7 +161113,7 @@ webhooks: type: string required: - after_id - repository: *714 + repository: *715 sender: *4 required: - action @@ -161122,10 +161193,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: @@ -161252,7 +161323,7 @@ webhooks: - creator - created_at - updated_at - repository: *714 + repository: *715 sender: *4 required: - action @@ -161332,10 +161403,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: @@ -161375,7 +161446,7 @@ webhooks: - name - created_at - updated_at - repository: *714 + repository: *715 sender: *4 required: - action @@ -161454,14 +161525,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 @@ -161550,11 +161621,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 @@ -161634,11 +161705,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 @@ -161718,11 +161789,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 @@ -161802,14 +161873,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 @@ -161910,11 +161981,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 @@ -161993,11 +162064,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 @@ -162078,8 +162149,8 @@ webhooks: type: string enum: - closed - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -162161,8 +162232,8 @@ webhooks: type: string enum: - created - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -162244,8 +162315,8 @@ webhooks: type: string enum: - deleted - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -162367,8 +162438,8 @@ webhooks: type: string to: type: string - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -162452,7 +162523,7 @@ webhooks: type: string enum: - archived - changes: &754 + changes: &755 type: object properties: archived_at: @@ -162468,9 +162539,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 @@ -162610,9 +162681,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 @@ -162694,9 +162765,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 @@ -162777,9 +162848,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 @@ -162884,7 +162955,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 @@ -162908,7 +162979,7 @@ webhooks: required: - id - name - - &753 + - &754 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -162948,8 +163019,8 @@ webhooks: oneOf: - type: string - type: integer - - *752 - *753 + - *754 type: - 'null' - string @@ -162972,9 +163043,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 @@ -163071,9 +163142,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 @@ -163156,10 +163227,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 @@ -163241,8 +163312,8 @@ webhooks: type: string enum: - reopened - installation: *712 - organization: *713 + installation: *713 + organization: *714 projects_v2: *263 sender: *4 required: @@ -163324,9 +163395,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 @@ -163407,9 +163478,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 @@ -163555,9 +163626,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 @@ -163628,10 +163699,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 @@ -163708,13 +163779,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 @@ -166085,7 +166156,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -166182,11 +166253,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 @@ -168550,7 +168621,7 @@ webhooks: - draft reason: type: string - repository: *714 + repository: *715 sender: *4 required: - action @@ -168647,11 +168718,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 @@ -171015,7 +171086,7 @@ webhooks: - draft reason: type: string - repository: *714 + repository: *715 sender: *4 required: - action @@ -171112,13 +171183,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: @@ -171180,7 +171251,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *714 + repository: *715 sender: *4 required: - action @@ -171261,12 +171332,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 @@ -171346,11 +171417,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: @@ -173741,7 +173812,7 @@ webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *714 + repository: *715 sender: *4 required: - action @@ -173820,11 +173891,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 @@ -176192,7 +176263,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *714 + repository: *715 sender: *4 required: - action @@ -176324,12 +176395,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 @@ -176409,11 +176480,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 @@ -178766,7 +178837,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -178854,11 +178925,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 @@ -181228,7 +181299,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -181324,10 +181395,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 @@ -183695,7 +183766,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -183790,12 +183861,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 @@ -183874,12 +183945,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 @@ -183960,12 +184031,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 @@ -184045,12 +184116,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 @@ -184425,9 +184496,9 @@ webhooks: - start_side - side - reactions - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: type: object properties: @@ -186679,7 +186750,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *714 + repository: *715 sender: *4 required: - action @@ -186774,7 +186845,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. @@ -187067,9 +187138,9 @@ webhooks: - start_side - side - reactions - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 pull_request: type: object properties: @@ -189309,7 +189380,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *714 + repository: *715 sender: *4 required: - action @@ -189404,11 +189475,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: @@ -191651,7 +191722,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *714 + repository: *715 sender: *4 required: - action @@ -191747,9 +191818,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 @@ -194004,7 +194075,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 + repository: *715 review: description: The review that was affected. type: object @@ -194270,9 +194341,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 @@ -196386,8 +196457,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: @@ -196633,12 +196704,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 @@ -199007,7 +199078,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_reviewer: title: User type: @@ -199093,12 +199164,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 @@ -201474,7 +201545,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_team: title: Team description: Groups of organization members that gives permissions @@ -201692,12 +201763,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 @@ -204068,7 +204139,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_reviewer: title: User type: @@ -204155,12 +204226,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 @@ -206522,7 +206593,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 requested_team: title: Team description: Groups of organization members that gives permissions @@ -206729,9 +206800,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 @@ -208989,8 +209060,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 - review: *761 + repository: *715 + review: *762 sender: *4 required: - action @@ -209085,9 +209156,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 @@ -211240,7 +211311,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 + repository: *715 sender: *4 thread: type: object @@ -211645,9 +211716,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 @@ -213783,7 +213854,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *714 + repository: *715 sender: *4 thread: type: object @@ -214190,10 +214261,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 @@ -216550,7 +216621,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -216647,11 +216718,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 @@ -219023,7 +219094,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -219117,11 +219188,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 @@ -221482,7 +221553,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -221578,10 +221649,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 @@ -223932,7 +224003,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *714 + repository: *715 sender: *4 required: - action @@ -224150,7 +224221,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 @@ -224245,8 +224316,8 @@ webhooks: - url - author - committer - installation: *712 - organization: *713 + installation: *713 + organization: *714 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -224845,9 +224916,9 @@ webhooks: type: string enum: - published - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 registry_package: type: object properties: @@ -225324,7 +225395,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *745 + items: *746 summary: type: string tag_name: @@ -225380,7 +225451,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -225458,9 +225529,9 @@ webhooks: type: string enum: - updated - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 registry_package: type: object properties: @@ -225772,7 +225843,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *745 + items: *746 summary: type: string tag_name: @@ -225822,7 +225893,7 @@ webhooks: - owner - package_version - registry - repository: *714 + repository: *715 sender: *4 required: - action @@ -225899,10 +225970,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. @@ -226233,7 +226304,7 @@ webhooks: - updated_at - zipball_url - body - repository: *714 + repository: *715 sender: *4 required: - action @@ -226310,11 +226381,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 @@ -226431,11 +226502,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 @@ -226513,9 +226584,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) @@ -226851,7 +226922,7 @@ webhooks: - string - 'null' format: uri - repository: *714 + repository: *715 sender: *4 required: - action @@ -226927,10 +226998,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. @@ -227263,7 +227334,7 @@ webhooks: - string - 'null' format: uri - repository: *714 + repository: *715 sender: *4 required: - action @@ -227339,11 +227410,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 @@ -227419,11 +227490,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 @@ -227499,11 +227570,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 @@ -227579,11 +227650,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 @@ -227659,10 +227730,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 @@ -227739,10 +227810,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 @@ -227820,10 +227891,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 @@ -227908,10 +227979,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 @@ -228026,10 +228097,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 @@ -228101,10 +228172,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 @@ -228185,10 +228256,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 @@ -228265,10 +228336,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 @@ -228362,10 +228433,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 @@ -228445,10 +228516,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: @@ -228527,10 +228598,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: @@ -228609,10 +228680,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 @@ -228674,16 +228745,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: @@ -228920,10 +228991,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 @@ -229001,10 +229072,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 @@ -229082,7 +229153,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 @@ -229207,10 +229278,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 @@ -229420,10 +229491,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 @@ -229501,11 +229572,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 @@ -229707,10 +229778,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 @@ -229788,7 +229859,7 @@ webhooks: type: string enum: - assigned - alert: &766 + alert: &767 type: object properties: number: *170 @@ -229928,10 +229999,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 @@ -230009,11 +230080,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 @@ -230094,11 +230165,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 @@ -230336,11 +230407,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 @@ -230418,11 +230489,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 @@ -230500,11 +230571,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 @@ -230582,12 +230653,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 @@ -230665,11 +230736,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 @@ -230799,10 +230870,10 @@ webhooks: - organization - enterprise - - repository: *714 - enterprise: *711 - installation: *712 - organization: *713 + repository: *715 + enterprise: *712 + installation: *713 + organization: *714 sender: *4 required: - action @@ -230880,11 +230951,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 @@ -231088,11 +231159,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 @@ -231165,10 +231236,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. @@ -231363,9 +231434,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: @@ -231444,12 +231515,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: @@ -231754,12 +231825,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 @@ -231847,12 +231918,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 @@ -231929,17 +232000,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 @@ -232013,7 +232084,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &771 + changes: &772 type: object properties: tier: @@ -232057,13 +232128,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 @@ -232140,13 +232211,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 @@ -232220,10 +232291,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 @@ -232307,10 +232378,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 @@ -232744,15 +232815,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. @@ -232868,9 +232939,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 @@ -232960,9 +233031,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 @@ -233052,9 +233123,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 @@ -233144,9 +233215,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 @@ -233223,12 +233294,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. @@ -233458,9 +233529,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 @@ -233930,7 +234001,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -234006,9 +234077,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 @@ -234478,7 +234549,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -234555,9 +234626,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 @@ -235027,7 +235098,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -235171,9 +235242,9 @@ webhooks: - from required: - permissions - enterprise: *711 - installation: *712 - organization: *713 + enterprise: *712 + installation: *713 + organization: *714 repository: title: Repository description: A git repository @@ -235643,7 +235714,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - changes @@ -235721,9 +235792,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 @@ -236193,7 +236264,7 @@ webhooks: - topics - visibility sender: *4 - team: *772 + team: *773 required: - action - team @@ -236269,10 +236340,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 @@ -236345,17 +236416,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 @@ -236437,10 +236508,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: @@ -236696,7 +236767,7 @@ webhooks: type: string required: - conclusion - deployment: *483 + deployment: *484 required: - action - repository @@ -236775,10 +236846,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: @@ -237060,7 +237131,7 @@ webhooks: required: - status - steps - deployment: *483 + deployment: *484 required: - action - repository @@ -237139,10 +237210,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 @@ -237288,7 +237359,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *483 + deployment: *484 required: - action - repository @@ -237367,10 +237438,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 @@ -237517,7 +237588,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *483 + deployment: *484 required: - action - repository @@ -237597,12 +237668,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 @@ -238621,12 +238692,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 @@ -239630,12 +239701,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/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 60aebf492c..b9306b5249 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -446739,6 +446739,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/enterprise-cloud@latest//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/enterprise-cloud@latest//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/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index b0b5026af1..f21a4dde9a 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1081,7 +1081,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &747 + - &748 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1823,7 +1823,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &757 + schema: &758 title: Scim Error description: Scim Error type: object @@ -9449,7 +9449,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &758 + '401': &759 description: Authorization failure '404': *6 x-github: @@ -22567,7 +22567,7 @@ paths: - object rules: type: array - items: &713 + items: &714 title: Repository Rule type: object description: A repository rule. @@ -22576,7 +22576,7 @@ paths: - *167 - *168 - *169 - - &711 + - &712 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -23169,14 +23169,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &725 + state: &726 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: &726 + resolution: &727 type: - string - 'null' @@ -23295,14 +23295,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &727 + - &728 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &729 + - &730 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -23366,7 +23366,7 @@ paths: - blob_url - commit_sha - commit_url - - &730 + - &731 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. @@ -23427,7 +23427,7 @@ paths: - page_url - commit_sha - commit_url - - &731 + - &732 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -23449,7 +23449,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &732 + - &733 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -23471,7 +23471,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &733 + - &734 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -23493,7 +23493,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &734 + - &735 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -23508,7 +23508,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &735 + - &736 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -23523,7 +23523,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &736 + - &737 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -23538,7 +23538,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &737 + - &738 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. @@ -23560,7 +23560,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &738 + - &739 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. @@ -23582,7 +23582,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &739 + - &740 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. @@ -23604,7 +23604,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &740 + - &741 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. @@ -23626,7 +23626,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &741 + - &742 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 @@ -27347,7 +27347,7 @@ paths: properties: action: type: string - discussion: &862 + discussion: &863 title: Discussion description: A Discussion in a repository. type: object @@ -28131,7 +28131,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &785 + sub_issues_summary: &786 title: Sub-issues Summary type: object properties: @@ -28215,7 +28215,7 @@ paths: pin: anyOf: - type: 'null' - - &670 + - &671 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -28242,7 +28242,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &786 + issue_dependencies_summary: &787 title: Issue Dependencies Summary type: object properties: @@ -28261,7 +28261,7 @@ paths: - total_blocking issue_field_values: type: array - items: &655 + items: &656 title: Issue Field Value description: A value assigned to an issue field type: object @@ -29042,7 +29042,7 @@ paths: type: string release: allOf: - - &704 + - &705 title: Release description: A release. type: object @@ -29124,7 +29124,7 @@ paths: author: *4 assets: type: array - items: &705 + items: &706 title: Release Asset description: Data related to a release. type: object @@ -29715,7 +29715,7 @@ paths: url: type: string format: uri - user: &792 + user: &793 title: Public User description: Public User type: object @@ -33159,7 +33159,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &678 + - &679 name: all description: If `true`, show notifications marked as read. in: query @@ -33167,7 +33167,7 @@ paths: schema: type: boolean default: false - - &679 + - &680 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -33177,7 +33177,7 @@ paths: type: boolean default: false - *224 - - &680 + - &681 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: @@ -33778,7 +33778,7 @@ paths: - url - subscription_url examples: - default: &681 + default: &682 value: - id: '1' repository: @@ -34907,7 +34907,7 @@ paths: type: array items: *152 examples: - default: &687 + default: &688 value: - property_name: environment value: production @@ -34957,7 +34957,7 @@ paths: required: - properties examples: - default: &688 + default: &689 value: properties: - property_name: environment @@ -40898,12 +40898,12 @@ paths: required: - subject_digests examples: - default: &823 + default: &824 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &824 + withPredicateType: &825 value: subject_digests: - sha256:abc123 @@ -40962,7 +40962,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &825 + default: &826 value: attestations_subject_digests: - sha256:abc: @@ -47058,7 +47058,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *87 - - &605 + - &606 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -47066,7 +47066,7 @@ paths: required: false schema: type: string - - &606 + - &607 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -47074,7 +47074,7 @@ paths: required: false schema: type: string - - &607 + - &608 name: time_period description: |- The time period to filter by. @@ -47090,7 +47090,7 @@ paths: - week - month default: month - - &608 + - &609 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -47115,7 +47115,7 @@ paths: application/json: schema: type: array - items: &609 + items: &610 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -47278,7 +47278,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &610 + default: &611 value: - id: 21 number: 42 @@ -47380,7 +47380,7 @@ paths: application/json: schema: type: array - items: &611 + items: &612 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -47503,7 +47503,7 @@ paths: examples: - https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &612 + default: &613 value: - id: 21 number: 42 @@ -49588,7 +49588,7 @@ paths: required: true content: application/json: - schema: &643 + schema: &644 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -52186,7 +52186,7 @@ paths: parameters: - *87 - *385 - - &806 + - &807 name: repo_name description: repo_name parameter in: path @@ -53534,7 +53534,7 @@ paths: - nuget - container - *87 - - &807 + - &808 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -53575,7 +53575,7 @@ paths: default: *390 '403': *27 '401': *23 - '400': &809 + '400': &810 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -55599,7 +55599,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &895 + - &896 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -56112,7 +56112,7 @@ paths: - review_comment - self author_association: *216 - auto_merge: &690 + auto_merge: &691 title: Auto merge description: The status of auto merging a pull request. type: @@ -56497,7 +56497,7 @@ paths: - updated_at - project_url examples: - default: &828 + default: &829 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -56674,7 +56674,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &829 + items: &830 type: object properties: name: @@ -56711,7 +56711,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &830 + iteration_configuration: &831 type: object description: The configuration for iteration fields. properties: @@ -56761,7 +56761,7 @@ paths: value: name: Due date data_type: date - single_select_field: &831 + single_select_field: &832 summary: Create a single select field value: name: Priority @@ -56788,7 +56788,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &832 + iteration_field: &833 summary: Create an iteration field value: name: Sprint @@ -56814,7 +56814,7 @@ paths: application/json: schema: *410 examples: - text_field: &833 + text_field: &834 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -56823,7 +56823,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: &834 + number_field: &835 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -56832,7 +56832,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: &835 + date_field: &836 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -56841,7 +56841,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: &836 + single_select_field: &837 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -56875,7 +56875,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &837 + iteration_field: &838 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -56921,7 +56921,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - *407 - - &838 + - &839 name: field_id description: The unique identifier of the field. in: path @@ -56936,7 +56936,7 @@ paths: application/json: schema: *410 examples: - default: &839 + default: &840 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -58147,7 +58147,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &820 + schema: &821 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -58330,7 +58330,7 @@ paths: parameters: - *407 - *87 - - &840 + - &841 name: view_number description: The number that identifies the project view. in: path @@ -60245,7 +60245,7 @@ paths: - *87 - *17 - *19 - - &712 + - &713 name: targets description: | A comma-separated list of rule targets to filter by. @@ -60462,7 +60462,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *87 - - &714 + - &715 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 @@ -60474,14 +60474,14 @@ paths: x-multi-segment: true - *304 - *105 - - &715 + - &716 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 - - &716 + - &717 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -60501,7 +60501,7 @@ paths: description: Response content: application/json: - schema: &717 + schema: &718 title: Rule Suites description: Response type: array @@ -60557,7 +60557,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &718 + default: &719 value: - id: 21 actor_id: 12 @@ -60601,7 +60601,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *87 - - &719 + - &720 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -60617,7 +60617,7 @@ paths: description: Response content: application/json: - schema: &720 + schema: &721 title: Rule Suite description: Response type: object @@ -60724,7 +60724,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &721 + default: &722 value: id: 21 actor_id: 12 @@ -61060,7 +61060,7 @@ paths: - *110 - *19 - *17 - - &723 + - &724 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -61070,7 +61070,7 @@ paths: required: false schema: type: string - - &724 + - &725 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -61283,7 +61283,7 @@ paths: application/json: schema: type: array - items: &745 + items: &746 description: A repository security advisory. type: object properties: @@ -61602,7 +61602,7 @@ paths: - private_fork additionalProperties: false examples: - default: &746 + default: &747 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -63780,7 +63780,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &788 + response-if-user-is-a-team-maintainer: &789 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -63845,7 +63845,7 @@ paths: application/json: schema: *458 examples: - response-if-users-membership-with-team-is-now-pending: &789 + response-if-users-membership-with-team-is-now-pending: &790 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -63959,7 +63959,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &790 + schema: &791 title: Team Repository description: A team's access to a repository. type: object @@ -64799,7 +64799,7 @@ paths: type: array items: *307 examples: - response-if-child-teams-exist: &791 + response-if-child-teams-exist: &792 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -66285,11 +66285,11 @@ paths: '302': description: Response headers: - Location: + Location: &599 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': &646 + '410': &647 description: Gone content: application/json: @@ -70030,7 +70030,7 @@ paths: items: type: object properties: - type: &613 + type: &614 type: string description: The type of reviewer. enum: @@ -70168,7 +70168,7 @@ paths: application/json: schema: type: array - items: &600 + items: &601 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -70280,7 +70280,7 @@ paths: - created_at - updated_at examples: - default: &601 + default: &602 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -70666,7 +70666,7 @@ paths: application/json: schema: *490 examples: - default: &626 + default: &627 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -70885,7 +70885,7 @@ paths: application/json: schema: *494 examples: - default: &627 + default: &628 value: name: USERNAME value: octocat @@ -72754,7 +72754,7 @@ paths: required: - sha - url - verification: &633 + verification: &634 title: Verification type: object properties: @@ -76319,7 +76319,7 @@ paths: check. type: array items: *222 - deployment: &851 + deployment: &852 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -81574,7 +81574,7 @@ paths: type: array items: *563 examples: - default: &797 + default: &798 value: total_count: 2 machines: @@ -82286,7 +82286,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &645 + schema: &646 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -82988,7 +82988,7 @@ paths: - content - created_at examples: - default: &648 + default: &649 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -83125,7 +83125,7 @@ paths: - *459 - *460 - *233 - - &649 + - &650 name: reaction_id description: The unique identifier of the reaction. in: path @@ -83239,7 +83239,7 @@ paths: type: array items: *573 examples: - default: &697 + default: &698 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -83530,7 +83530,7 @@ paths: type: array items: *577 examples: - default: &689 + default: &690 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -84088,7 +84088,7 @@ paths: application/json: schema: *573 examples: - default: &675 + default: &676 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -84751,7 +84751,7 @@ paths: application/json: schema: type: array - items: &750 + items: &751 title: Status description: The status of a commit. type: object @@ -85740,7 +85740,7 @@ paths: - size - type - url - - &702 + - &703 title: Content File description: Content File type: object @@ -86356,7 +86356,7 @@ paths: schema: oneOf: - *3 - - &628 + - &629 description: Repository rule violation was detected type: object properties: @@ -86377,7 +86377,7 @@ paths: items: type: object properties: - placeholder_id: &742 + placeholder_id: &743 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -87989,6 +87989,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/enterprise-cloud@latest//rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - *459 + - *460 + - 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: *599 + '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/enterprise-cloud@latest//rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository + parameters: + - *459 + - *460 + 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 @@ -88089,7 +88160,7 @@ paths: - version - url additionalProperties: false - metadata: &599 + metadata: &600 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -88128,7 +88199,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *599 + metadata: *600 resolved: type: object description: A collection of resolved package dependencies. @@ -88142,7 +88213,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *599 + metadata: *600 relationship: type: string description: A notation of whether a dependency is requested @@ -88317,9 +88388,9 @@ paths: application/json: schema: type: array - items: *600 + items: *601 examples: - default: *601 + default: *602 headers: Link: *45 x-github: @@ -88468,7 +88539,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: simple-example: summary: Simple example @@ -88543,7 +88614,7 @@ paths: parameters: - *459 - *460 - - &602 + - &603 name: deployment_id description: deployment_id parameter in: path @@ -88555,7 +88626,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: default: value: @@ -88622,7 +88693,7 @@ paths: parameters: - *459 - *460 - - *602 + - *603 responses: '204': description: Response @@ -88646,7 +88717,7 @@ paths: parameters: - *459 - *460 - - *602 + - *603 - *17 - *19 responses: @@ -88656,7 +88727,7 @@ paths: application/json: schema: type: array - items: &603 + items: &604 title: Deployment Status description: The status of a deployment. type: object @@ -88822,7 +88893,7 @@ paths: parameters: - *459 - *460 - - *602 + - *603 requestBody: required: true content: @@ -88897,9 +88968,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: &604 + default: &605 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -88957,7 +89028,7 @@ paths: parameters: - *459 - *460 - - *602 + - *603 - name: status_id in: path required: true @@ -88968,9 +89039,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: *604 + default: *605 '404': *6 x-github: githubCloudOnly: false @@ -88999,10 +89070,10 @@ paths: parameters: - *459 - *460 - - *605 - *606 - *607 - *608 + - *609 - *17 - *19 responses: @@ -89012,9 +89083,9 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: - default: *610 + default: *611 '404': *6 '403': *27 '500': *38 @@ -89051,7 +89122,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *609 + schema: *610 examples: default: value: @@ -89169,10 +89240,10 @@ paths: parameters: - *459 - *460 - - *605 - *606 - *607 - *608 + - *609 - *17 - *19 responses: @@ -89182,9 +89253,9 @@ paths: application/json: schema: type: array - items: *611 + items: *612 examples: - default: *612 + default: *613 '404': *6 '403': *27 '500': *38 @@ -89221,7 +89292,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -89311,7 +89382,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -89728,7 +89799,7 @@ paths: - 5 environments: type: array - items: &614 + items: &615 title: Environment description: Details of a deployment environment type: object @@ -89790,7 +89861,7 @@ paths: type: string examples: - wait_timer - wait_timer: &616 + wait_timer: &617 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -89832,7 +89903,7 @@ paths: items: type: object properties: - type: *613 + type: *614 reviewer: anyOf: - *4 @@ -89859,7 +89930,7 @@ paths: - id - node_id - type - deployment_branch_policy: &617 + deployment_branch_policy: &618 type: - object - 'null' @@ -89978,7 +90049,7 @@ paths: parameters: - *459 - *460 - - &615 + - &616 name: environment_name in: path required: true @@ -89991,9 +90062,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: &618 + default: &619 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -90079,7 +90150,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 requestBody: required: false content: @@ -90089,7 +90160,7 @@ paths: - object - 'null' properties: - wait_timer: *616 + wait_timer: *617 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -90108,14 +90179,14 @@ paths: items: type: object properties: - type: *613 + type: *614 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *617 + deployment_branch_policy: *618 additionalProperties: false examples: default: @@ -90135,9 +90206,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *618 + default: *619 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -90163,7 +90234,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 responses: '204': description: Default response @@ -90190,7 +90261,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 - *17 - *19 responses: @@ -90209,7 +90280,7 @@ paths: - 2 branch_policies: type: array - items: &619 + items: &620 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -90272,7 +90343,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 requestBody: required: true content: @@ -90320,9 +90391,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: - example-wildcard: &620 + example-wildcard: &621 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -90366,8 +90437,8 @@ paths: parameters: - *459 - *460 - - *615 - - &621 + - *616 + - &622 name: branch_policy_id in: path required: true @@ -90379,9 +90450,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: - default: *620 + default: *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90402,8 +90473,8 @@ paths: parameters: - *459 - *460 - - *615 - - *621 + - *616 + - *622 requestBody: required: true content: @@ -90432,9 +90503,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: - default: *620 + default: *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90455,8 +90526,8 @@ paths: parameters: - *459 - *460 - - *615 - - *621 + - *616 + - *622 responses: '204': description: Response @@ -90481,7 +90552,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *615 + - *616 - *460 - *459 responses: @@ -90500,7 +90571,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &622 + items: &623 title: Deployment protection rule description: Deployment protection rule type: object @@ -90522,7 +90593,7 @@ paths: for the environment. examples: - true - app: &623 + app: &624 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -90625,7 +90696,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *615 + - *616 - *460 - *459 requestBody: @@ -90648,9 +90719,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *622 + schema: *623 examples: - default: &624 + default: &625 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -90685,7 +90756,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *615 + - *616 - *460 - *459 - *19 @@ -90707,7 +90778,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *623 + items: *624 examples: default: value: @@ -90744,8 +90815,8 @@ paths: parameters: - *459 - *460 - - *615 - - &625 + - *616 + - &626 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -90757,9 +90828,9 @@ paths: description: Response content: application/json: - schema: *622 + schema: *623 examples: - default: *624 + default: *625 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90780,10 +90851,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *615 + - *616 - *460 - *459 - - *625 + - *626 responses: '204': description: Response @@ -90811,7 +90882,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 - *17 - *19 responses: @@ -90858,7 +90929,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 responses: '200': description: Response @@ -90890,7 +90961,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 - *288 responses: '200': @@ -90899,7 +90970,7 @@ paths: application/json: schema: *490 examples: - default: *626 + default: *627 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90923,7 +90994,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 - *288 requestBody: required: true @@ -90983,7 +91054,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 - *288 responses: '204': @@ -91011,7 +91082,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 - *477 - *19 responses: @@ -91056,7 +91127,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 requestBody: required: true content: @@ -91110,7 +91181,7 @@ paths: parameters: - *459 - *460 - - *615 + - *616 - *291 responses: '200': @@ -91119,7 +91190,7 @@ paths: application/json: schema: *494 examples: - default: *627 + default: *628 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91143,7 +91214,7 @@ paths: - *459 - *460 - *291 - - *615 + - *616 requestBody: required: true content: @@ -91188,7 +91259,7 @@ paths: - *459 - *460 - *291 - - *615 + - *616 responses: '204': description: Response @@ -91557,7 +91628,7 @@ paths: schema: oneOf: - *253 - - *628 + - *629 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91793,7 +91864,7 @@ paths: description: Response content: application/json: - schema: &629 + schema: &630 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -92028,7 +92099,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: default: value: @@ -92086,7 +92157,7 @@ paths: parameters: - *459 - *460 - - &630 + - &631 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. @@ -92103,7 +92174,7 @@ paths: application/json: schema: type: array - items: &631 + items: &632 title: Git Reference description: Git references within a repository type: object @@ -92181,15 +92252,15 @@ paths: parameters: - *459 - *460 - - *630 + - *631 responses: '200': description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: &632 + default: &633 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -92248,9 +92319,9 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -92278,7 +92349,7 @@ paths: parameters: - *459 - *460 - - *630 + - *631 requestBody: required: true content: @@ -92307,9 +92378,9 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 '422': *15 '409': *119 x-github: @@ -92329,7 +92400,7 @@ paths: parameters: - *459 - *460 - - *630 + - *631 responses: '204': description: Response @@ -92452,7 +92523,7 @@ paths: description: Response content: application/json: - schema: &634 + schema: &635 title: Git Tag description: Metadata for a Git tag type: object @@ -92508,7 +92579,7 @@ paths: - sha - type - url - verification: *633 + verification: *634 required: - sha - url @@ -92518,7 +92589,7 @@ paths: - tag - message examples: - default: &635 + default: &636 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -92603,9 +92674,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 '404': *6 '409': *119 x-github: @@ -92704,7 +92775,7 @@ paths: description: Response content: application/json: - schema: &636 + schema: &637 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -92830,7 +92901,7 @@ paths: description: Response content: application/json: - schema: *636 + schema: *637 examples: default-response: summary: Default response @@ -92900,7 +92971,7 @@ paths: application/json: schema: type: array - items: &637 + items: &638 title: Webhook description: Webhooks for repositories. type: object @@ -92963,7 +93034,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &887 + last_response: &888 title: Hook Response type: object properties: @@ -93094,9 +93165,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: &638 + default: &639 value: type: Repository id: 12345678 @@ -93152,9 +93223,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *638 + default: *639 '404': *6 x-github: githubCloudOnly: false @@ -93221,9 +93292,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *638 + default: *639 '422': *15 '404': *6 x-github: @@ -93621,7 +93692,7 @@ paths: description: Response content: application/json: - schema: &639 + schema: &640 title: Import description: A repository import from an external source. type: object @@ -93728,7 +93799,7 @@ paths: - html_url - authors_url examples: - default: &642 + default: &643 value: vcs: subversion use_lfs: true @@ -93744,7 +93815,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': &640 + '503': &641 description: Unavailable due to service under maintenance. content: application/json: @@ -93822,7 +93893,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *640 examples: default: value: @@ -93847,7 +93918,7 @@ paths: type: string '422': *15 '404': *6 - '503': *640 + '503': *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93928,7 +93999,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *640 examples: example-1: summary: Example 1 @@ -93976,7 +94047,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': *640 + '503': *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94004,7 +94075,7 @@ paths: responses: '204': description: Response - '503': *640 + '503': *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94032,7 +94103,7 @@ paths: parameters: - *459 - *460 - - &818 + - &819 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -94046,7 +94117,7 @@ paths: application/json: schema: type: array - items: &641 + items: &642 title: Porter Author description: Porter Author type: object @@ -94100,7 +94171,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': *640 + '503': *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94156,7 +94227,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: default: value: @@ -94169,7 +94240,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *640 + '503': *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94235,7 +94306,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *640 + '503': *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94291,11 +94362,11 @@ paths: description: Response content: application/json: - schema: *639 + schema: *640 examples: - default: *642 + default: *643 '422': *15 - '503': *640 + '503': *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94362,7 +94433,7 @@ paths: properties: {} additionalProperties: false examples: - default: &644 + default: &645 value: limit: collaborators_only origin: repository @@ -94393,7 +94464,7 @@ paths: required: true content: application/json: - schema: *643 + schema: *644 examples: default: summary: Example request body @@ -94407,7 +94478,7 @@ paths: application/json: schema: *366 examples: - default: *644 + default: *645 '409': description: Response x-github: @@ -94464,9 +94535,9 @@ paths: application/json: schema: type: array - items: *645 + items: *646 examples: - default: &811 + default: &812 value: - id: 1 repository: @@ -94628,7 +94699,7 @@ paths: description: Response content: application/json: - schema: *645 + schema: *646 examples: default: value: @@ -94866,7 +94937,7 @@ paths: type: array items: *219 examples: - default: &654 + default: &655 value: - id: 1 node_id: MDU6SXNzdWUx @@ -95137,7 +95208,7 @@ paths: application/json: schema: *219 examples: - default: &651 + default: &652 value: id: 1 node_id: MDU6SXNzdWUx @@ -95294,7 +95365,7 @@ paths: '422': *15 '503': *192 '404': *6 - '410': *646 + '410': *647 x-github: triggersNotification: true githubCloudOnly: false @@ -95346,7 +95417,7 @@ paths: type: array items: *220 examples: - default: &653 + default: &654 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -95414,7 +95485,7 @@ paths: application/json: schema: *220 examples: - default: &647 + default: &648 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -95495,7 +95566,7 @@ paths: application/json: schema: *220 examples: - default: *647 + default: *648 '422': *15 x-github: githubCloudOnly: false @@ -95607,7 +95678,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *646 + '410': *647 '422': *15 x-github: githubCloudOnly: false @@ -95633,7 +95704,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *646 + '410': *647 '503': *192 x-github: githubCloudOnly: false @@ -95681,7 +95752,7 @@ paths: type: array items: *571 examples: - default: *648 + default: *649 headers: Link: *45 '404': *6 @@ -95770,7 +95841,7 @@ paths: - *459 - *460 - *233 - - *649 + - *650 responses: '204': description: Response @@ -95801,7 +95872,7 @@ paths: application/json: schema: type: array - items: &650 + items: &651 title: Issue Event description: Issue Event type: object @@ -96153,7 +96224,7 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -96346,7 +96417,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *646 + '410': *647 '403': *27 x-github: githubCloudOnly: false @@ -96382,7 +96453,7 @@ paths: parameters: - *459 - *460 - - &652 + - &653 name: issue_number description: The number that identifies the issue. in: path @@ -96398,7 +96469,7 @@ paths: examples: default: summary: Issue - value: *651 + value: *652 pinned_comment: summary: Issue with pinned comment value: @@ -96599,7 +96670,7 @@ paths: state_reason: completed '301': *465 '404': *6 - '410': *646 + '410': *647 '304': *35 x-github: githubCloudOnly: false @@ -96626,7 +96697,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: false content: @@ -96767,13 +96838,13 @@ paths: application/json: schema: *219 examples: - default: *651 + default: *652 '422': *15 '503': *192 '403': *27 '301': *465 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96793,7 +96864,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: false content: @@ -96821,7 +96892,7 @@ paths: application/json: schema: *219 examples: - default: *651 + default: *652 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96839,7 +96910,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: content: application/json: @@ -96866,7 +96937,7 @@ paths: application/json: schema: *219 examples: - default: *651 + default: *652 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96890,7 +96961,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - name: assignee in: path required: true @@ -96932,7 +97003,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - *224 - *17 - *19 @@ -96945,11 +97016,11 @@ paths: type: array items: *220 examples: - default: *653 + default: *654 headers: Link: *45 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96980,7 +97051,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: true content: @@ -97004,14 +97075,14 @@ paths: application/json: schema: *220 examples: - default: *647 + default: *648 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *646 + '410': *647 '422': *15 '404': *6 x-github: @@ -97041,7 +97112,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - *17 - *19 responses: @@ -97053,12 +97124,12 @@ paths: type: array items: *219 examples: - default: *654 + default: *655 headers: Link: *45 '301': *465 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97088,7 +97159,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: true content: @@ -97112,7 +97183,7 @@ paths: application/json: schema: *219 examples: - default: *651 + default: *652 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -97120,7 +97191,7 @@ paths: type: string '301': *465 '403': *27 - '410': *646 + '410': *647 '422': *15 '404': *6 x-github: @@ -97153,7 +97224,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -97167,13 +97238,13 @@ paths: application/json: schema: *219 examples: - default: *651 + default: *652 '301': *465 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *646 + '410': *647 x-github: triggersNotification: true githubCloudOnly: false @@ -97201,7 +97272,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - *17 - *19 responses: @@ -97213,12 +97284,12 @@ paths: type: array items: *219 examples: - default: *654 + default: *655 headers: Link: *45 '301': *465 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97237,7 +97308,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - *17 - *19 responses: @@ -97251,7 +97322,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &657 + - &658 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -97300,7 +97371,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &658 + - &659 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -97428,7 +97499,7 @@ paths: - performed_via_github_app - assignee - assigner - - &659 + - &660 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -97474,7 +97545,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &660 + - &661 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -97520,7 +97591,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &661 + - &662 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -97569,7 +97640,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &662 + - &663 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -97611,7 +97682,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &663 + - &664 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -97653,7 +97724,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &664 + - &665 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -97709,7 +97780,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &665 + - &666 title: Locked Issue Event description: Locked Issue Event type: object @@ -97754,7 +97825,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &666 + - &667 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -97815,7 +97886,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &667 + - &668 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -97876,7 +97947,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &668 + - &669 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -97937,7 +98008,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &669 + - &670 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -98030,7 +98101,7 @@ paths: color: red headers: Link: *45 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98049,7 +98120,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - *17 - *19 responses: @@ -98059,9 +98130,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: &756 + default: &757 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -98087,7 +98158,7 @@ paths: Link: *45 '301': *465 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98106,7 +98177,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - *17 - *19 responses: @@ -98118,7 +98189,7 @@ paths: type: array items: *218 examples: - default: &656 + default: &657 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -98138,7 +98209,7 @@ paths: Link: *45 '301': *465 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98156,7 +98227,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: false content: @@ -98201,10 +98272,10 @@ paths: type: array items: *218 examples: - default: *656 + default: *657 '301': *465 '404': *6 - '410': *646 + '410': *647 '422': *15 x-github: githubCloudOnly: false @@ -98223,7 +98294,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: false content: @@ -98285,10 +98356,10 @@ paths: type: array items: *218 examples: - default: *656 + default: *657 '301': *465 '404': *6 - '410': *646 + '410': *647 '422': *15 x-github: githubCloudOnly: false @@ -98307,13 +98378,13 @@ paths: parameters: - *459 - *460 - - *652 + - *653 responses: '204': description: Response '301': *465 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98334,7 +98405,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - name: name in: path required: true @@ -98360,7 +98431,7 @@ paths: default: true '301': *465 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98382,7 +98453,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: false content: @@ -98411,7 +98482,7 @@ paths: '204': description: Response '403': *27 - '410': *646 + '410': *647 '404': *6 '422': *15 x-github: @@ -98431,7 +98502,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 responses: '204': description: Response @@ -98463,7 +98534,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 responses: '200': description: Response @@ -98471,10 +98542,10 @@ paths: application/json: schema: *219 examples: - default: *651 + default: *652 '301': *465 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98493,7 +98564,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -98521,11 +98592,11 @@ paths: type: array items: *571 examples: - default: *648 + default: *649 headers: Link: *45 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98545,7 +98616,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: true content: @@ -98610,8 +98681,8 @@ paths: parameters: - *459 - *460 - - *652 - - *649 + - *653 + - *650 responses: '204': description: Response @@ -98642,7 +98713,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: true content: @@ -98666,7 +98737,7 @@ paths: application/json: schema: *219 examples: - default: *651 + default: *652 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -98701,7 +98772,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - *17 - *19 responses: @@ -98713,11 +98784,11 @@ paths: type: array items: *219 examples: - default: *654 + default: *655 headers: Link: *45 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98747,7 +98818,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: true content: @@ -98776,14 +98847,14 @@ paths: application/json: schema: *219 examples: - default: *651 + default: *652 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *646 + '410': *647 '422': *15 '404': *6 x-github: @@ -98805,7 +98876,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 requestBody: required: true content: @@ -98838,7 +98909,7 @@ paths: application/json: schema: *219 examples: - default: *651 + default: *652 '403': *27 '404': *6 '422': *7 @@ -98862,7 +98933,7 @@ paths: parameters: - *459 - *460 - - *652 + - *653 - *17 - *19 responses: @@ -98877,7 +98948,6 @@ paths: description: Timeline Event type: object anyOf: - - *657 - *658 - *659 - *660 @@ -98890,6 +98960,7 @@ paths: - *667 - *668 - *669 + - *670 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -98946,7 +99017,7 @@ paths: pin: anyOf: - type: 'null' - - *670 + - *671 required: - event - actor @@ -99222,7 +99293,7 @@ paths: type: string comments: type: array - items: &691 + items: &692 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -99738,7 +99809,7 @@ paths: headers: Link: *45 '404': *6 - '410': *646 + '410': *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99766,7 +99837,7 @@ paths: application/json: schema: type: array - items: &671 + items: &672 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -99871,9 +99942,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: &672 + default: &673 value: id: 1 key: ssh-rsa AAA... @@ -99909,7 +99980,7 @@ paths: parameters: - *459 - *460 - - &673 + - &674 name: key_id description: The unique identifier of the key. in: path @@ -99921,9 +99992,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '404': *6 x-github: githubCloudOnly: false @@ -99943,7 +100014,7 @@ paths: parameters: - *459 - *460 - - *673 + - *674 responses: '204': description: Response @@ -99976,7 +100047,7 @@ paths: type: array items: *218 examples: - default: *656 + default: *657 headers: Link: *45 '404': *6 @@ -100036,7 +100107,7 @@ paths: application/json: schema: *218 examples: - default: &674 + default: &675 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -100082,7 +100153,7 @@ paths: application/json: schema: *218 examples: - default: *674 + default: *675 '404': *6 x-github: githubCloudOnly: false @@ -100537,7 +100608,7 @@ paths: application/json: schema: *573 examples: - default: *675 + default: *676 '204': description: Response when already merged '404': @@ -100703,7 +100774,7 @@ paths: application/json: schema: *408 examples: - default: &676 + default: &677 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -100764,7 +100835,7 @@ paths: parameters: - *459 - *460 - - &677 + - &678 name: milestone_number description: The number that identifies the milestone. in: path @@ -100778,7 +100849,7 @@ paths: application/json: schema: *408 examples: - default: *676 + default: *677 '404': *6 x-github: githubCloudOnly: false @@ -100797,7 +100868,7 @@ paths: parameters: - *459 - *460 - - *677 + - *678 requestBody: required: false content: @@ -100837,7 +100908,7 @@ paths: application/json: schema: *408 examples: - default: *676 + default: *677 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100855,7 +100926,7 @@ paths: parameters: - *459 - *460 - - *677 + - *678 responses: '204': description: Response @@ -100878,7 +100949,7 @@ paths: parameters: - *459 - *460 - - *677 + - *678 - *17 - *19 responses: @@ -100890,7 +100961,7 @@ paths: type: array items: *218 examples: - default: *656 + default: *657 headers: Link: *45 x-github: @@ -100911,10 +100982,10 @@ paths: parameters: - *459 - *460 - - *678 - *679 - - *224 - *680 + - *224 + - *681 - *17 - *19 responses: @@ -100926,7 +100997,7 @@ paths: type: array items: *244 examples: - default: *681 + default: *682 headers: Link: *45 x-github: @@ -101016,7 +101087,7 @@ paths: description: Response content: application/json: - schema: &682 + schema: &683 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -101160,7 +101231,7 @@ paths: - custom_404 - public examples: - default: &683 + default: &684 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -101257,9 +101328,9 @@ paths: description: Response content: application/json: - schema: *682 + schema: *683 examples: - default: *683 + default: *684 '422': *15 '409': *119 x-github: @@ -101429,7 +101500,7 @@ paths: application/json: schema: type: array - items: &684 + items: &685 title: Page Build description: Page Build type: object @@ -101576,9 +101647,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: &685 + default: &686 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -101638,9 +101709,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: *685 + default: *686 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101771,7 +101842,7 @@ paths: parameters: - *459 - *460 - - &686 + - &687 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -101831,7 +101902,7 @@ paths: parameters: - *459 - *460 - - *686 + - *687 responses: '204': *151 '404': *6 @@ -102248,7 +102319,7 @@ paths: type: array items: *152 examples: - default: *687 + default: *688 '403': *27 '404': *6 x-github: @@ -102287,7 +102358,7 @@ paths: required: - properties examples: - default: *688 + default: *689 responses: '204': description: No Content when custom property values are successfully created @@ -102388,7 +102459,7 @@ paths: type: array items: *577 examples: - default: *689 + default: *690 headers: Link: *45 '304': *35 @@ -102488,7 +102559,7 @@ paths: description: Response content: application/json: - schema: &693 + schema: &694 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -102722,7 +102793,7 @@ paths: - review_comment - self author_association: *216 - auto_merge: *690 + auto_merge: *691 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -102824,7 +102895,7 @@ paths: - merged_by - review_comments examples: - default: &694 + default: &695 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -103381,9 +103452,9 @@ paths: application/json: schema: type: array - items: *691 + items: *692 examples: - default: &696 + default: &697 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -103468,9 +103539,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *692 examples: - default: &692 + default: &693 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -103569,9 +103640,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *692 examples: - default: *692 + default: *693 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103640,7 +103711,7 @@ paths: type: array items: *571 examples: - default: *648 + default: *649 headers: Link: *45 '404': *6 @@ -103729,7 +103800,7 @@ paths: - *459 - *460 - *233 - - *649 + - *650 responses: '204': description: Response @@ -103774,7 +103845,7 @@ paths: parameters: - *459 - *460 - - &695 + - &696 name: pull_number description: The number that identifies the pull request. in: path @@ -103787,9 +103858,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *693 + schema: *694 examples: - default: *694 + default: *695 '304': *35 '404': *6 '406': @@ -103826,7 +103897,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 requestBody: required: false content: @@ -103868,9 +103939,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: *694 + default: *695 '422': *15 '403': *27 x-github: @@ -103894,7 +103965,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 requestBody: required: true content: @@ -103997,7 +104068,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 - *241 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -104018,9 +104089,9 @@ paths: application/json: schema: type: array - items: *691 + items: *692 examples: - default: *696 + default: *697 headers: Link: *45 x-github: @@ -104055,7 +104126,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 requestBody: required: true content: @@ -104161,7 +104232,7 @@ paths: description: Response content: application/json: - schema: *691 + schema: *692 examples: example-for-a-multi-line-comment: value: @@ -104251,7 +104322,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 - *233 requestBody: required: true @@ -104274,7 +104345,7 @@ paths: description: Response content: application/json: - schema: *691 + schema: *692 examples: default: value: @@ -104362,7 +104433,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 - *17 - *19 responses: @@ -104374,7 +104445,7 @@ paths: type: array items: *573 examples: - default: *697 + default: *698 headers: Link: *45 x-github: @@ -104406,7 +104477,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 - *17 - *19 responses: @@ -104456,7 +104527,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 responses: '204': description: Response if pull request has been merged @@ -104481,7 +104552,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 requestBody: required: false content: @@ -104595,7 +104666,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 responses: '200': description: Response @@ -104672,7 +104743,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 requestBody: required: false content: @@ -105247,7 +105318,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 requestBody: required: true content: @@ -105788,7 +105859,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 - *17 - *19 responses: @@ -105798,7 +105869,7 @@ paths: application/json: schema: type: array - items: &698 + items: &699 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -105956,7 +106027,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 requestBody: required: false content: @@ -106046,9 +106117,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: &700 + default: &701 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -106113,8 +106184,8 @@ paths: parameters: - *459 - *460 - - *695 - - &699 + - *696 + - &700 name: review_id description: The unique identifier of the review. in: path @@ -106126,9 +106197,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: &701 + default: &702 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -106189,8 +106260,8 @@ paths: parameters: - *459 - *460 - - *695 - - *699 + - *696 + - *700 requestBody: required: true content: @@ -106213,7 +106284,7 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: default: value: @@ -106277,16 +106348,16 @@ paths: parameters: - *459 - *460 - - *695 - - *699 + - *696 + - *700 responses: '200': description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: *700 + default: *701 '422': *7 '404': *6 x-github: @@ -106315,8 +106386,8 @@ paths: parameters: - *459 - *460 - - *695 - - *699 + - *696 + - *700 - *17 - *19 responses: @@ -106576,8 +106647,8 @@ paths: parameters: - *459 - *460 - - *695 - - *699 + - *696 + - *700 requestBody: required: true content: @@ -106606,7 +106677,7 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: default: value: @@ -106671,8 +106742,8 @@ paths: parameters: - *459 - *460 - - *695 - - *699 + - *696 + - *700 requestBody: required: true content: @@ -106707,9 +106778,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: *701 + default: *702 '404': *6 '422': *7 '403': *27 @@ -106733,7 +106804,7 @@ paths: parameters: - *459 - *460 - - *695 + - *696 requestBody: required: false content: @@ -106811,9 +106882,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *703 examples: - default: &703 + default: &704 value: type: file encoding: base64 @@ -106876,9 +106947,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *703 examples: - default: *703 + default: *704 '404': *6 '422': *15 x-github: @@ -106911,7 +106982,7 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: default: value: @@ -107082,9 +107153,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: &708 + default: &709 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -107191,7 +107262,7 @@ paths: parameters: - *459 - *460 - - &706 + - &707 name: asset_id description: The unique identifier of the asset. in: path @@ -107203,9 +107274,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *706 examples: - default: &707 + default: &708 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 @@ -107258,7 +107329,7 @@ paths: parameters: - *459 - *460 - - *706 + - *707 requestBody: required: false content: @@ -107287,9 +107358,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *706 examples: - default: *707 + default: *708 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107307,7 +107378,7 @@ paths: parameters: - *459 - *460 - - *706 + - *707 responses: '204': description: Response @@ -107426,9 +107497,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *708 + default: *709 '404': *6 x-github: githubCloudOnly: false @@ -107460,9 +107531,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *708 + default: *709 '404': *6 x-github: githubCloudOnly: false @@ -107486,7 +107557,7 @@ paths: parameters: - *459 - *460 - - &709 + - &710 name: release_id description: The unique identifier of the release. in: path @@ -107500,9 +107571,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *704 + schema: *705 examples: - default: *708 + default: *709 '401': description: Unauthorized x-github: @@ -107522,7 +107593,7 @@ paths: parameters: - *459 - *460 - - *709 + - *710 requestBody: required: false content: @@ -107586,9 +107657,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *708 + default: *709 '404': description: Not Found if the discussion category name is invalid content: @@ -107611,7 +107682,7 @@ paths: parameters: - *459 - *460 - - *709 + - *710 responses: '204': description: Response @@ -107634,7 +107705,7 @@ paths: parameters: - *459 - *460 - - *709 + - *710 - *17 - *19 responses: @@ -107644,7 +107715,7 @@ paths: application/json: schema: type: array - items: *705 + items: *706 examples: default: value: @@ -107728,7 +107799,7 @@ paths: parameters: - *459 - *460 - - *709 + - *710 - name: name in: query required: true @@ -107754,7 +107825,7 @@ paths: description: Response for successful upload content: application/json: - schema: *705 + schema: *706 examples: response-for-successful-upload: value: @@ -107811,7 +107882,7 @@ paths: parameters: - *459 - *460 - - *709 + - *710 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -107837,7 +107908,7 @@ paths: type: array items: *571 examples: - default: *648 + default: *649 headers: Link: *45 '404': *6 @@ -107860,7 +107931,7 @@ paths: parameters: - *459 - *460 - - *709 + - *710 requestBody: required: true content: @@ -107923,8 +107994,8 @@ paths: parameters: - *459 - *460 - - *709 - - *649 + - *710 + - *650 responses: '204': description: Response @@ -107967,7 +108038,7 @@ paths: oneOf: - allOf: - *166 - - &710 + - &711 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -107988,67 +108059,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *167 - - *710 + - *711 - allOf: - *168 - - *710 + - *711 - allOf: - *169 - - *710 + - *711 - allOf: + - *712 - *711 - - *710 - allOf: - *170 - - *710 + - *711 - allOf: - *171 - - *710 + - *711 - allOf: - *172 - - *710 + - *711 - allOf: - *173 - - *710 + - *711 - allOf: - *174 - - *710 + - *711 - allOf: - *175 - - *710 + - *711 - allOf: - *176 - - *710 + - *711 - allOf: - *177 - - *710 + - *711 - allOf: - *178 - - *710 + - *711 - allOf: - *179 - - *710 + - *711 - allOf: - *180 - - *710 + - *711 - allOf: - *181 - - *710 + - *711 - allOf: - *182 - - *710 + - *711 - allOf: - *183 - - *710 + - *711 - allOf: - *184 - - *710 + - *711 - allOf: - *185 - - *710 + - *711 - allOf: - *186 - - *710 + - *711 examples: default: value: @@ -108099,7 +108170,7 @@ paths: schema: type: boolean default: true - - *712 + - *713 responses: '200': description: Response @@ -108184,7 +108255,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *713 + items: *714 required: - name - enforcement @@ -108217,7 +108288,7 @@ paths: application/json: schema: *187 examples: - default: &722 + default: &723 value: id: 42 name: super cool ruleset @@ -108267,10 +108338,10 @@ paths: parameters: - *459 - *460 - - *714 - - *105 - *715 + - *105 - *716 + - *717 - *17 - *19 responses: @@ -108278,9 +108349,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: *718 + default: *719 '404': *6 '500': *38 x-github: @@ -108303,15 +108374,15 @@ paths: parameters: - *459 - *460 - - *719 + - *720 responses: '200': description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: *721 + default: *722 '404': *6 '500': *38 x-github: @@ -108362,7 +108433,7 @@ paths: application/json: schema: *187 examples: - default: *722 + default: *723 '404': *6 '500': *38 put: @@ -108415,7 +108486,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *713 + items: *714 examples: default: value: @@ -108445,7 +108516,7 @@ paths: application/json: schema: *187 examples: - default: *722 + default: *723 '404': *6 '422': *15 '500': *38 @@ -108613,8 +108684,8 @@ paths: - *110 - *19 - *17 - - *723 - *724 + - *725 - *435 - *436 - *437 @@ -108626,7 +108697,7 @@ paths: application/json: schema: type: array - items: &728 + items: &729 type: object properties: number: *126 @@ -108642,8 +108713,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *725 - resolution: *726 + state: *726 + resolution: *727 resolved_at: type: - string @@ -108749,7 +108820,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *727 + - *728 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -108917,7 +108988,7 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: default: value: @@ -108981,8 +109052,8 @@ paths: schema: type: object properties: - state: *725 - resolution: *726 + state: *726 + resolution: *727 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -109020,7 +109091,7 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: default: value: @@ -109128,7 +109199,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &907 + items: &908 type: object properties: type: @@ -109155,7 +109226,6 @@ paths: - commit details: oneOf: - - *729 - *730 - *731 - *732 @@ -109168,6 +109238,7 @@ paths: - *739 - *740 - *741 + - *742 examples: default: value: @@ -109262,14 +109333,14 @@ paths: schema: type: object properties: - reason: &743 + reason: &744 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *742 + placeholder_id: *743 required: - reason - placeholder_id @@ -109286,7 +109357,7 @@ paths: schema: type: object properties: - reason: *743 + reason: *744 expire_at: type: - string @@ -109349,7 +109420,7 @@ paths: properties: incremental_scans: type: array - items: &744 + items: &745 description: Information on a single scan performed by secret scanning on the repository type: object @@ -109377,15 +109448,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *744 + items: *745 backfill_scans: type: array - items: *744 + items: *745 custom_pattern_backfill_scans: type: array items: allOf: - - *744 + - *745 - type: object properties: pattern_name: @@ -109398,7 +109469,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *744 + items: *745 examples: default: value: @@ -109508,9 +109579,9 @@ paths: application/json: schema: type: array - items: *745 + items: *746 examples: - default: *746 + default: *747 '400': *14 '404': *6 x-github: @@ -109704,9 +109775,9 @@ paths: description: Response content: application/json: - schema: *745 + schema: *746 examples: - default: &748 + default: &749 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -110053,7 +110124,7 @@ paths: description: Response content: application/json: - schema: *745 + schema: *746 examples: default: value: @@ -110202,15 +110273,15 @@ paths: parameters: - *459 - *460 - - *747 + - *748 responses: '200': description: Response content: application/json: - schema: *745 + schema: *746 examples: - default: *748 + default: *749 '403': *27 '404': *6 x-github: @@ -110236,7 +110307,7 @@ paths: parameters: - *459 - *460 - - *747 + - *748 requestBody: required: true content: @@ -110407,10 +110478,10 @@ paths: description: Response content: application/json: - schema: *745 + schema: *746 examples: - default: *748 - add_credit: *748 + default: *749 + add_credit: *749 '403': *27 '404': *6 '422': @@ -110450,7 +110521,7 @@ paths: parameters: - *459 - *460 - - *747 + - *748 responses: '202': *37 '400': *14 @@ -110479,7 +110550,7 @@ paths: parameters: - *459 - *460 - - *747 + - *748 responses: '202': description: Response @@ -110620,7 +110691,7 @@ paths: application/json: schema: type: array - items: &749 + items: &750 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -110993,7 +111064,7 @@ paths: application/json: schema: type: array - items: *749 + items: *750 examples: default: value: @@ -111083,7 +111154,7 @@ paths: description: Response content: application/json: - schema: *750 + schema: *751 examples: default: value: @@ -111177,7 +111248,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &751 + schema: &752 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -111277,7 +111348,7 @@ paths: description: Response content: application/json: - schema: *751 + schema: *752 examples: default: value: @@ -111487,7 +111558,7 @@ paths: description: Response content: application/json: - schema: &752 + schema: &753 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -111499,7 +111570,7 @@ paths: required: - names examples: - default: &753 + default: &754 value: names: - octocat @@ -111554,9 +111625,9 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: *753 + default: *754 '404': *6 '422': *7 x-github: @@ -111579,7 +111650,7 @@ paths: parameters: - *459 - *460 - - &754 + - &755 name: per description: The time frame to display results for. in: query @@ -111610,7 +111681,7 @@ paths: - 128 clones: type: array - items: &755 + items: &756 title: Traffic type: object properties: @@ -111858,7 +111929,7 @@ paths: parameters: - *459 - *460 - - *754 + - *755 responses: '200': description: Response @@ -111879,7 +111950,7 @@ paths: - 3782 views: type: array - items: *755 + items: *756 required: - uniques - count @@ -112548,7 +112619,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *272 - - *652 + - *653 requestBody: required: true content: @@ -112614,9 +112685,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *655 + items: *656 examples: - default: *756 + default: *757 '400': *14 '403': *27 '404': *6 @@ -112653,7 +112724,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *272 - - *652 + - *653 requestBody: required: true content: @@ -112720,9 +112791,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *655 + items: *656 examples: - default: *756 + default: *757 '400': *14 '403': *27 '404': *6 @@ -112754,7 +112825,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *272 - - *652 + - *653 - *373 responses: '204': @@ -112797,7 +112868,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &764 + - &765 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -112807,7 +112878,7 @@ paths: type: string examples: - members - - &769 + - &770 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -112819,7 +112890,7 @@ paths: format: int32 examples: - 1 - - &770 + - &771 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -112863,7 +112934,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &759 + items: &760 allOf: - type: object required: @@ -112945,7 +113016,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &771 + meta: &772 type: object description: The metadata associated with the creation/updates to the user. @@ -113010,30 +113081,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &760 + '400': &761 description: Bad request content: application/json: - schema: *757 + schema: *758 application/scim+json: - schema: *757 - '401': *758 - '403': &761 + schema: *758 + '401': *759 + '403': &762 description: Permission denied - '429': &762 + '429': &763 description: Too many requests content: application/json: - schema: *757 + schema: *758 application/scim+json: - schema: *757 - '500': &763 + schema: *758 + '500': &764 description: Internal server error content: application/json: - schema: *757 + schema: *758 application/scim+json: - schema: *757 + schema: *758 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -113057,7 +113128,7 @@ paths: required: true content: application/json: - schema: &767 + schema: &768 type: object required: - schemas @@ -113121,9 +113192,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *759 + schema: *760 examples: - group: &765 + group: &766 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -113142,13 +113213,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *760 - '401': *758 - '403': *761 - '409': &768 + '400': *761 + '401': *759 + '403': *762 + '409': &769 description: Duplicate record detected - '429': *762 - '500': *763 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -113165,7 +113236,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &766 + - &767 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -113174,22 +113245,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *764 + - *765 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *759 + schema: *760 examples: - default: *765 - '400': *760 - '401': *758 - '403': *761 + default: *766 + '400': *761 + '401': *759 + '403': *762 '404': *6 - '429': *762 - '500': *763 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -113208,13 +113279,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *766 + - *767 - *39 requestBody: required: true content: application/json: - schema: *767 + schema: *768 examples: group: summary: Group @@ -113240,17 +113311,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *759 + schema: *760 examples: - group: *765 - groupWithMembers: *765 - '400': *760 - '401': *758 - '403': *761 + group: *766 + groupWithMembers: *766 + '400': *761 + '401': *759 + '403': *762 '404': *6 - '409': *768 - '429': *762 - '500': *763 + '409': *769 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -113274,13 +113345,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *766 + - *767 - *39 requestBody: required: true content: application/json: - schema: &778 + schema: &779 type: object required: - Operations @@ -113340,17 +113411,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *759 + schema: *760 examples: - updateGroup: *765 - addMembers: *765 - '400': *760 - '401': *758 - '403': *761 + updateGroup: *766 + addMembers: *766 + '400': *761 + '401': *759 + '403': *762 '404': *6 - '409': *768 - '429': *762 - '500': *763 + '409': *769 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -113366,17 +113437,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *766 + - *767 - *39 responses: '204': description: Group was deleted, no content - '400': *760 - '401': *758 - '403': *761 + '400': *761 + '401': *759 + '403': *762 '404': *6 - '429': *762 - '500': *763 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -113410,8 +113481,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *769 - *770 + - *771 - *39 responses: '200': @@ -113445,7 +113516,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &773 + items: &774 allOf: - type: object required: @@ -113537,7 +113608,7 @@ paths: address. examples: - true - roles: &772 + roles: &773 type: array description: The roles assigned to the user. items: @@ -113596,7 +113667,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *771 + meta: *772 startIndex: type: integer description: A starting index for the returned page @@ -113635,11 +113706,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *760 - '401': *758 - '403': *761 - '429': *762 - '500': *763 + '400': *761 + '401': *759 + '403': *762 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -113663,7 +113734,7 @@ paths: required: true content: application/json: - schema: &776 + schema: &777 type: object required: - schemas @@ -113756,9 +113827,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *772 + roles: *773 examples: - user: &777 + user: &778 summary: User value: schemas: @@ -113805,9 +113876,9 @@ paths: description: User has been created content: application/scim+json: - schema: *773 + schema: *774 examples: - user: &774 + user: &775 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -113833,13 +113904,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *774 - '400': *760 - '401': *758 - '403': *761 - '409': *768 - '429': *762 - '500': *763 + enterpriseOwner: *775 + '400': *761 + '401': *759 + '403': *762 + '409': *769 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -113856,7 +113927,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &775 + - &776 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -113869,15 +113940,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *773 + schema: *774 examples: - default: *774 - '400': *760 - '401': *758 - '403': *761 + default: *775 + '400': *761 + '401': *759 + '403': *762 '404': *6 - '429': *762 - '500': *763 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -113928,30 +113999,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *775 + - *776 - *39 requestBody: required: true content: application/json: - schema: *776 + schema: *777 examples: - user: *777 + user: *778 responses: '200': description: User was updated content: application/scim+json: - schema: *773 + schema: *774 examples: - user: *774 - '400': *760 - '401': *758 - '403': *761 + user: *775 + '400': *761 + '401': *759 + '403': *762 '404': *6 - '409': *768 - '429': *762 - '500': *763 + '409': *769 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -113992,13 +114063,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *775 + - *776 - *39 requestBody: required: true content: application/json: - schema: *778 + schema: *779 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -114038,18 +114109,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *773 + schema: *774 examples: - userMultiValuedProperties: *774 - userSingleValuedProperties: *774 - disableUser: *774 - '400': *760 - '401': *758 - '403': *761 + userMultiValuedProperties: *775 + userSingleValuedProperties: *775 + disableUser: *775 + '400': *761 + '401': *759 + '403': *762 '404': *6 - '409': *768 - '429': *762 - '500': *763 + '409': *769 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -114069,17 +114140,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *775 + - *776 - *39 responses: '204': description: User was deleted, no content - '400': *760 - '401': *758 - '403': *761 + '400': *761 + '401': *759 + '403': *762 '404': *6 - '429': *762 - '500': *763 + '429': *763 + '500': *764 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -114170,7 +114241,7 @@ paths: - 1 Resources: type: array - items: &779 + items: &780 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -114417,22 +114488,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &780 + '404': &781 description: Resource not found content: application/json: - schema: *757 + schema: *758 application/scim+json: - schema: *757 - '403': &781 + schema: *758 + '403': &782 description: Forbidden content: application/json: - schema: *757 + schema: *758 application/scim+json: - schema: *757 - '400': *760 - '429': *762 + schema: *758 + '400': *761 + '429': *763 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -114458,9 +114529,9 @@ paths: description: Response content: application/scim+json: - schema: *779 + schema: *780 examples: - default: &782 + default: &783 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -114483,17 +114554,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *780 - '403': *781 - '500': *763 + '404': *781 + '403': *782 + '500': *764 '409': description: Conflict content: application/json: - schema: *757 + schema: *758 application/scim+json: - schema: *757 - '400': *760 + schema: *758 + '400': *761 requestBody: required: true content: @@ -114593,17 +114664,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *87 - - *775 + - *776 responses: '200': description: Response content: application/scim+json: - schema: *779 + schema: *780 examples: - default: *782 - '404': *780 - '403': *781 + default: *783 + '404': *781 + '403': *782 '304': *35 x-github: githubCloudOnly: true @@ -114627,18 +114698,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *87 - - *775 + - *776 responses: '200': description: Response content: application/scim+json: - schema: *779 + schema: *780 examples: - default: *782 + default: *783 '304': *35 - '404': *780 - '403': *781 + '404': *781 + '403': *782 requestBody: required: true content: @@ -114753,19 +114824,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *87 - - *775 + - *776 responses: '200': description: Response content: application/scim+json: - schema: *779 + schema: *780 examples: - default: *782 + default: *783 '304': *35 - '404': *780 - '403': *781 - '400': *760 + '404': *781 + '403': *782 + '400': *761 '429': description: Response content: @@ -114861,12 +114932,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *87 - - *775 + - *776 responses: '204': description: Response - '404': *780 - '403': *781 + '404': *781 + '403': *782 '304': *35 x-github: githubCloudOnly: true @@ -115003,7 +115074,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &783 + text_matches: &784 title: Search Result Text Matches type: array items: @@ -115167,7 +115238,7 @@ paths: enum: - author-date - committer-date - - &784 + - &785 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 @@ -115255,7 +115326,7 @@ paths: url: type: string format: uri - verification: *633 + verification: *634 required: - author - committer @@ -115287,7 +115358,7 @@ paths: type: number node_id: type: string - text_matches: *783 + text_matches: *784 required: - sha - node_id @@ -115480,7 +115551,7 @@ paths: - interactions - created - updated - - *784 + - *785 - *17 - *19 - name: advanced_search @@ -115594,11 +115665,11 @@ paths: type: - string - 'null' - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: type: string state_reason: @@ -115626,7 +115697,7 @@ paths: - string - 'null' format: date-time - text_matches: *783 + text_matches: *784 pull_request: type: object properties: @@ -115892,7 +115963,7 @@ paths: enum: - created - updated - - *784 + - *785 - *17 - *19 responses: @@ -115937,7 +116008,7 @@ paths: - 'null' score: type: number - text_matches: *783 + text_matches: *784 required: - id - node_id @@ -116023,7 +116094,7 @@ paths: - forks - help-wanted-issues - updated - - *784 + - *785 - *17 - *19 responses: @@ -116269,7 +116340,7 @@ paths: - admin - pull - push - text_matches: *783 + text_matches: *784 temp_clone_token: type: string allow_merge_commit: @@ -116578,7 +116649,7 @@ paths: - string - 'null' format: uri - text_matches: *783 + text_matches: *784 related: type: - array @@ -116773,7 +116844,7 @@ paths: - followers - repositories - joined - - *784 + - *785 - *17 - *19 responses: @@ -116883,7 +116954,7 @@ paths: type: - boolean - 'null' - text_matches: *783 + text_matches: *784 blog: type: - string @@ -116965,7 +117036,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &787 + - &788 name: team_id description: The unique identifier of the team. in: path @@ -117006,7 +117077,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *787 + - *788 requestBody: required: true content: @@ -117107,7 +117178,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *787 + - *788 responses: '204': description: Response @@ -117136,7 +117207,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *787 + - *788 - *17 - *19 responses: @@ -117174,7 +117245,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *787 + - *788 - name: role description: Filters members returned by their role in the team. in: query @@ -117225,7 +117296,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *787 + - *788 - *139 responses: '204': @@ -117262,7 +117333,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *787 + - *788 - *139 responses: '204': @@ -117302,7 +117373,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *787 + - *788 - *139 responses: '204': @@ -117339,7 +117410,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *787 + - *788 - *139 responses: '200': @@ -117348,7 +117419,7 @@ paths: application/json: schema: *458 examples: - response-if-user-is-a-team-maintainer: *788 + response-if-user-is-a-team-maintainer: *789 '404': *6 x-github: githubCloudOnly: false @@ -117381,7 +117452,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *787 + - *788 - *139 requestBody: required: false @@ -117409,7 +117480,7 @@ paths: application/json: schema: *458 examples: - response-if-users-membership-with-team-is-now-pending: *789 + response-if-users-membership-with-team-is-now-pending: *790 '403': description: Forbidden if team synchronization is set up '422': @@ -117443,7 +117514,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *787 + - *788 - *139 responses: '204': @@ -117471,7 +117542,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *787 + - *788 - *17 - *19 responses: @@ -117513,7 +117584,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *787 + - *788 - *459 - *460 responses: @@ -117521,7 +117592,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *790 + schema: *791 examples: alternative-response-with-extra-repository-information: value: @@ -117672,7 +117743,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *787 + - *788 - *459 - *460 requestBody: @@ -117724,7 +117795,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *787 + - *788 - *459 - *460 responses: @@ -117755,7 +117826,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *787 + - *788 responses: '200': description: Response @@ -117790,7 +117861,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *787 + - *788 requestBody: required: true content: @@ -117882,7 +117953,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *787 + - *788 - *17 - *19 responses: @@ -117894,7 +117965,7 @@ paths: type: array items: *307 examples: - response-if-child-teams-exist: *791 + response-if-child-teams-exist: *792 headers: Link: *45 '404': *6 @@ -117927,7 +117998,7 @@ paths: application/json: schema: oneOf: - - &793 + - &794 title: Private User description: Private User type: object @@ -118177,7 +118248,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *792 + - *793 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -118337,7 +118408,7 @@ paths: description: Response content: application/json: - schema: *793 + schema: *794 examples: default: value: @@ -118735,7 +118806,7 @@ paths: type: integer secrets: type: array - items: &794 + items: &795 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -118855,7 +118926,7 @@ paths: description: Response content: application/json: - schema: *794 + schema: *795 examples: default: value: @@ -119268,7 +119339,7 @@ paths: description: Response content: application/json: - schema: &795 + schema: &796 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -119321,7 +119392,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &796 + default: &797 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -119366,9 +119437,9 @@ paths: description: Response content: application/json: - schema: *795 + schema: *796 examples: - default: *796 + default: *797 '404': *6 x-github: githubCloudOnly: false @@ -119407,7 +119478,7 @@ paths: type: array items: *563 examples: - default: *797 + default: *798 '304': *35 '500': *38 '401': *23 @@ -120373,7 +120444,7 @@ paths: type: array items: *389 examples: - default: &808 + default: &809 value: - id: 197 name: hello_docker @@ -120474,7 +120545,7 @@ paths: application/json: schema: type: array - items: &798 + items: &799 title: Email description: Email type: object @@ -120544,9 +120615,9 @@ paths: application/json: schema: type: array - items: *798 + items: *799 examples: - default: &810 + default: &811 value: - email: octocat@github.com verified: true @@ -120623,7 +120694,7 @@ paths: application/json: schema: type: array - items: *798 + items: *799 examples: default: value: @@ -120881,7 +120952,7 @@ paths: application/json: schema: type: array - items: &799 + items: &800 title: GPG Key description: A unique encryption key type: object @@ -121026,7 +121097,7 @@ paths: - subkeys - revoked examples: - default: &826 + default: &827 value: - id: 3 name: Octocat's GPG Key @@ -121111,9 +121182,9 @@ paths: description: Response content: application/json: - schema: *799 + schema: *800 examples: - default: &800 + default: &801 value: id: 3 name: Octocat's GPG Key @@ -121170,7 +121241,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &801 + - &802 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -121182,9 +121253,9 @@ paths: description: Response content: application/json: - schema: *799 + schema: *800 examples: - default: *800 + default: *801 '404': *6 '304': *35 '403': *27 @@ -121207,7 +121278,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *801 + - *802 responses: '204': description: Response @@ -121515,7 +121586,7 @@ paths: required: true content: application/json: - schema: *643 + schema: *644 examples: default: value: @@ -121665,7 +121736,7 @@ paths: application/json: schema: type: array - items: &802 + items: &803 title: Key description: Key type: object @@ -121768,9 +121839,9 @@ paths: description: Response content: application/json: - schema: *802 + schema: *803 examples: - default: &803 + default: &804 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -121803,15 +121874,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *673 + - *674 responses: '200': description: Response content: application/json: - schema: *802 + schema: *803 examples: - default: *803 + default: *804 '404': *6 '304': *35 '403': *27 @@ -121834,7 +121905,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *673 + - *674 responses: '204': description: Response @@ -121867,7 +121938,7 @@ paths: application/json: schema: type: array - items: &804 + items: &805 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -121946,7 +122017,7 @@ paths: - account - plan examples: - default: &805 + default: &806 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -122008,9 +122079,9 @@ paths: application/json: schema: type: array - items: *804 + items: *805 examples: - default: *805 + default: *806 headers: Link: *45 '304': *35 @@ -123028,7 +123099,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *385 - - *806 + - *807 responses: '204': description: Response @@ -123143,7 +123214,7 @@ paths: - docker - nuget - container - - *807 + - *808 - *19 - *17 responses: @@ -123155,8 +123226,8 @@ paths: type: array items: *389 examples: - default: *808 - '400': *809 + default: *809 + '400': *810 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123185,7 +123256,7 @@ paths: application/json: schema: *389 examples: - default: &827 + default: &828 value: id: 40201 name: octo-name @@ -123547,9 +123618,9 @@ paths: application/json: schema: type: array - items: *798 + items: *799 examples: - default: *810 + default: *811 headers: Link: *45 '304': *35 @@ -123662,7 +123733,7 @@ paths: type: array items: *78 examples: - default: &817 + default: &818 summary: Default response value: - id: 1296269 @@ -124020,9 +124091,9 @@ paths: application/json: schema: type: array - items: *645 + items: *646 examples: - default: *811 + default: *812 headers: Link: *45 '304': *35 @@ -124101,7 +124172,7 @@ paths: application/json: schema: type: array - items: &812 + items: &813 title: Social account description: Social media account type: object @@ -124118,7 +124189,7 @@ paths: - provider - url examples: - default: &813 + default: &814 value: - provider: twitter url: https://twitter.com/github @@ -124181,9 +124252,9 @@ paths: application/json: schema: type: array - items: *812 + items: *813 examples: - default: *813 + default: *814 '422': *15 '304': *35 '404': *6 @@ -124271,7 +124342,7 @@ paths: application/json: schema: type: array - items: &814 + items: &815 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -124291,7 +124362,7 @@ paths: - title - created_at examples: - default: &841 + default: &842 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -124356,9 +124427,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *815 examples: - default: &815 + default: &816 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -124388,7 +124459,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &816 + - &817 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -124400,9 +124471,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *815 examples: - default: *815 + default: *816 '404': *6 '304': *35 '403': *27 @@ -124425,7 +124496,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *816 + - *817 responses: '204': description: Response @@ -124454,7 +124525,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &842 + - &843 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 @@ -124479,11 +124550,11 @@ paths: type: array items: *78 examples: - default-response: *817 + default-response: *818 application/vnd.github.v3.star+json: schema: type: array - items: &843 + items: &844 title: Starred Repository description: Starred Repository type: object @@ -124852,10 +124923,10 @@ paths: application/json: schema: oneOf: + - *794 - *793 - - *792 examples: - default-response: &821 + default-response: &822 summary: Default response value: login: octocat @@ -124890,7 +124961,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &822 + response-with-git-hub-plan-information: &823 summary: Response with GitHub plan information value: login: octocat @@ -124947,7 +125018,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &819 + - &820 name: user_id description: The unique identifier of the user. in: path @@ -125013,7 +125084,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *818 + - *819 - *17 responses: '200': @@ -125048,7 +125119,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *819 + - *820 - *407 requestBody: required: true @@ -125123,7 +125194,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *820 + schema: *821 examples: table_view: summary: Response for creating a table view @@ -125175,11 +125246,11 @@ paths: application/json: schema: oneOf: + - *794 - *793 - - *792 examples: - default-response: *821 - response-with-git-hub-plan-information: *822 + default-response: *822 + response-with-git-hub-plan-information: *823 '404': *6 x-github: githubCloudOnly: false @@ -125229,8 +125300,8 @@ paths: required: - subject_digests examples: - default: *823 - withPredicateType: *824 + default: *824 + withPredicateType: *825 responses: '200': description: Response @@ -125284,7 +125355,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *825 + default: *826 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -125530,7 +125601,7 @@ paths: type: array items: *389 examples: - default: *808 + default: *809 '403': *27 '401': *23 x-github: @@ -125914,9 +125985,9 @@ paths: application/json: schema: type: array - items: *799 + items: *800 examples: - default: *826 + default: *827 headers: Link: *45 x-github: @@ -126145,7 +126216,7 @@ paths: - docker - nuget - container - - *807 + - *808 - *139 - *19 - *17 @@ -126158,10 +126229,10 @@ paths: type: array items: *389 examples: - default: *808 + default: *809 '403': *27 '401': *23 - '400': *809 + '400': *810 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -126191,7 +126262,7 @@ paths: application/json: schema: *389 examples: - default: *827 + default: *828 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -126540,7 +126611,7 @@ paths: type: array items: *410 examples: - default: *828 + default: *829 headers: Link: *45 '304': *35 @@ -126600,7 +126671,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *829 + items: *830 required: - name - data_type @@ -126616,7 +126687,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *830 + iteration_configuration: *831 required: - name - data_type @@ -126638,8 +126709,8 @@ paths: value: name: Due date data_type: date - single_select_field: *831 - iteration_field: *832 + single_select_field: *832 + iteration_field: *833 responses: '201': description: Response @@ -126647,11 +126718,11 @@ paths: application/json: schema: *410 examples: - text_field: *833 - number_field: *834 - date_field: *835 - single_select_field: *836 - iteration_field: *837 + text_field: *834 + number_field: *835 + date_field: *836 + single_select_field: *837 + iteration_field: *838 '304': *35 '403': *27 '401': *23 @@ -126673,7 +126744,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - *407 - - *838 + - *839 - *139 responses: '200': @@ -126682,7 +126753,7 @@ paths: application/json: schema: *410 examples: - default: *839 + default: *840 headers: Link: *45 '304': *35 @@ -127039,7 +127110,7 @@ paths: parameters: - *407 - *139 - - *840 + - *841 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -127318,9 +127389,9 @@ paths: application/json: schema: type: array - items: *812 + items: *813 examples: - default: *813 + default: *814 headers: Link: *45 x-github: @@ -127350,9 +127421,9 @@ paths: application/json: schema: type: array - items: *814 + items: *815 examples: - default: *841 + default: *842 headers: Link: *45 x-github: @@ -127377,7 +127448,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *139 - - *842 + - *843 - *110 - *17 - *19 @@ -127389,11 +127460,11 @@ paths: schema: anyOf: - type: array - items: *843 + items: *844 - type: array items: *78 examples: - default-response: *817 + default-response: *818 headers: Link: *45 x-github: @@ -127553,7 +127624,7 @@ webhooks: type: string enum: - disabled - enterprise: &844 + enterprise: &845 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -127622,7 +127693,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &845 + installation: &846 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -127643,7 +127714,7 @@ webhooks: required: - id - node_id - organization: &846 + organization: &847 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -127716,7 +127787,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &847 + repository: &848 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -128642,10 +128713,10 @@ webhooks: type: string enum: - enabled - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -128721,11 +128792,11 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - rule: &848 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + rule: &849 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest//github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -128948,11 +129019,11 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - rule: *848 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + rule: *849 sender: *4 required: - action @@ -129140,11 +129211,11 @@ webhooks: - everyone required: - from - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - rule: *848 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + rule: *849 sender: *4 required: - action @@ -129217,7 +129288,7 @@ webhooks: required: true content: application/json: - schema: &868 + schema: &869 title: Exemption request cancellation event type: object properties: @@ -129225,11 +129296,11 @@ webhooks: type: string enum: - cancelled - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - exemption_request: &849 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + exemption_request: &850 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -129538,7 +129609,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &850 + items: &851 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -129650,7 +129721,7 @@ webhooks: required: true content: application/json: - schema: &869 + schema: &870 title: Exemption request completed event type: object properties: @@ -129658,11 +129729,11 @@ webhooks: type: string enum: - completed - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - exemption_request: *849 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + exemption_request: *850 sender: *4 required: - action @@ -129734,7 +129805,7 @@ webhooks: required: true content: application/json: - schema: &866 + schema: &867 title: Exemption request created event type: object properties: @@ -129742,11 +129813,11 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - exemption_request: *849 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + exemption_request: *850 sender: *4 required: - action @@ -129818,7 +129889,7 @@ webhooks: required: true content: application/json: - schema: &870 + schema: &871 title: Exemption response dismissed event type: object properties: @@ -129826,12 +129897,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - exemption_request: *849 - exemption_response: *850 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + exemption_request: *850 + exemption_response: *851 sender: *4 required: - action @@ -129905,7 +129976,7 @@ webhooks: required: true content: application/json: - schema: &867 + schema: &868 title: Exemption response submitted event type: object properties: @@ -129913,12 +129984,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - exemption_request: *849 - exemption_response: *850 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + exemption_request: *850 + exemption_response: *851 sender: *4 required: - action @@ -130002,7 +130073,7 @@ webhooks: type: string enum: - completed - check_run: &852 + check_run: &853 title: CheckRun description: A check performed on the code of a given code change type: object @@ -130112,7 +130183,7 @@ webhooks: - examples: - neutral - deployment: *851 + deployment: *852 details_url: type: string examples: @@ -130210,10 +130281,10 @@ webhooks: - output - app - pull_requests - installation: *845 - enterprise: *844 - organization: *846 - repository: *847 + installation: *846 + enterprise: *845 + organization: *847 + repository: *848 sender: *4 required: - check_run @@ -130604,11 +130675,11 @@ webhooks: type: string enum: - created - check_run: *852 - installation: *845 - enterprise: *844 - organization: *846 - repository: *847 + check_run: *853 + installation: *846 + enterprise: *845 + organization: *847 + repository: *848 sender: *4 required: - check_run @@ -131002,11 +131073,11 @@ webhooks: type: string enum: - requested_action - check_run: *852 - installation: *845 - enterprise: *844 - organization: *846 - repository: *847 + check_run: *853 + installation: *846 + enterprise: *845 + organization: *847 + repository: *848 requested_action: description: The action requested by the user. type: object @@ -131409,11 +131480,11 @@ webhooks: type: string enum: - rerequested - check_run: *852 - installation: *845 - enterprise: *844 - organization: *846 - repository: *847 + check_run: *853 + installation: *846 + enterprise: *845 + organization: *847 + repository: *848 sender: *4 required: - check_run @@ -132398,10 +132469,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -133105,10 +133176,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -133806,10 +133877,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -134130,20 +134201,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &853 + commit_oid: &854 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: *844 - installation: *845 - organization: *846 - ref: &854 + enterprise: *845 + installation: *846 + organization: *847 + ref: &855 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: *847 + repository: *848 sender: *4 required: - action @@ -134551,12 +134622,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *853 - enterprise: *844 - installation: *845 - organization: *846 - ref: *854 - repository: *847 + commit_oid: *854 + enterprise: *845 + installation: *846 + organization: *847 + ref: *855 + repository: *848 sender: *4 required: - action @@ -134839,12 +134910,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *853 - enterprise: *844 - installation: *845 - organization: *846 - ref: *854 - repository: *847 + commit_oid: *854 + enterprise: *845 + installation: *846 + organization: *847 + ref: *855 + repository: *848 sender: *4 required: - action @@ -135190,12 +135261,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *853 - enterprise: *844 - installation: *845 - organization: *846 - ref: *854 - repository: *847 + commit_oid: *854 + enterprise: *845 + installation: *846 + organization: *847 + ref: *855 + repository: *848 sender: *4 required: - action @@ -135485,9 +135556,9 @@ webhooks: type: - string - 'null' - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -135495,7 +135566,7 @@ webhooks: type: - string - 'null' - repository: *847 + repository: *848 sender: *4 required: - action @@ -135741,12 +135812,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *853 - enterprise: *844 - installation: *845 - organization: *846 - ref: *854 - repository: *847 + commit_oid: *854 + enterprise: *845 + installation: *846 + organization: *847 + ref: *855 + repository: *848 sender: *4 required: - action @@ -136067,10 +136138,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -136330,10 +136401,10 @@ webhooks: - updated_at - author_association - body - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -136414,18 +136485,18 @@ webhooks: type: - string - 'null' - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *846 - pusher_type: &855 + organization: *847 + pusher_type: &856 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &856 + ref: &857 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -136435,7 +136506,7 @@ webhooks: enum: - tag - branch - repository: *847 + repository: *848 sender: *4 required: - ref @@ -136518,9 +136589,9 @@ webhooks: enum: - created definition: *153 - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 sender: *4 required: - action @@ -136605,9 +136676,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 sender: *4 required: - action @@ -136685,9 +136756,9 @@ webhooks: enum: - promote_to_enterprise definition: *153 - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 sender: *4 required: - action @@ -136765,9 +136836,9 @@ webhooks: enum: - updated definition: *153 - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 sender: *4 required: - action @@ -136844,10 +136915,10 @@ webhooks: type: string enum: - updated - enterprise: *844 - installation: *845 - repository: *847 - organization: *846 + enterprise: *845 + installation: *846 + repository: *848 + organization: *847 sender: *4 new_property_values: type: array @@ -136932,18 +137003,18 @@ webhooks: title: delete event type: object properties: - enterprise: *844 - installation: *845 - organization: *846 - pusher_type: *855 - ref: *856 + enterprise: *845 + installation: *846 + organization: *847 + pusher_type: *856 + ref: *857 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *847 + repository: *848 sender: *4 required: - ref @@ -137024,10 +137095,10 @@ webhooks: enum: - assignees_changed alert: *594 - installation: *845 - organization: *846 - enterprise: *844 - repository: *847 + installation: *846 + organization: *847 + enterprise: *845 + repository: *848 sender: *4 required: - action @@ -137108,10 +137179,10 @@ webhooks: enum: - auto_dismissed alert: *594 - installation: *845 - organization: *846 - enterprise: *844 - repository: *847 + installation: *846 + organization: *847 + enterprise: *845 + repository: *848 sender: *4 required: - action @@ -137193,10 +137264,10 @@ webhooks: enum: - auto_reopened alert: *594 - installation: *845 - organization: *846 - enterprise: *844 - repository: *847 + installation: *846 + organization: *847 + enterprise: *845 + repository: *848 sender: *4 required: - action @@ -137278,10 +137349,10 @@ webhooks: enum: - created alert: *594 - installation: *845 - organization: *846 - enterprise: *844 - repository: *847 + installation: *846 + organization: *847 + enterprise: *845 + repository: *848 sender: *4 required: - action @@ -137361,10 +137432,10 @@ webhooks: enum: - dismissed alert: *594 - installation: *845 - organization: *846 - enterprise: *844 - repository: *847 + installation: *846 + organization: *847 + enterprise: *845 + repository: *848 sender: *4 required: - action @@ -137444,10 +137515,10 @@ webhooks: enum: - fixed alert: *594 - installation: *845 - organization: *846 - enterprise: *844 - repository: *847 + installation: *846 + organization: *847 + enterprise: *845 + repository: *848 sender: *4 required: - action @@ -137528,10 +137599,10 @@ webhooks: enum: - reintroduced alert: *594 - installation: *845 - organization: *846 - enterprise: *844 - repository: *847 + installation: *846 + organization: *847 + enterprise: *845 + repository: *848 sender: *4 required: - action @@ -137611,10 +137682,10 @@ webhooks: enum: - reopened alert: *594 - installation: *845 - organization: *846 - enterprise: *844 - repository: *847 + installation: *846 + organization: *847 + enterprise: *845 + repository: *848 sender: *4 required: - action @@ -137691,9 +137762,9 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - key: &857 + enterprise: *845 + installation: *846 + key: &858 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -137731,8 +137802,8 @@ webhooks: - verified - created_at - read_only - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -137809,11 +137880,11 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - key: *857 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + key: *858 + organization: *847 + repository: *848 sender: *4 required: - action @@ -138380,12 +138451,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - workflow: &861 + workflow: &862 title: Workflow type: - object @@ -139136,13 +139207,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *600 + - *601 pull_requests: type: array - items: *693 - repository: *847 - organization: *846 - installation: *845 + items: *694 + repository: *848 + organization: *847 + installation: *846 sender: *4 responses: '200': @@ -139213,7 +139284,7 @@ webhooks: type: string enum: - approved - approver: &858 + approver: &859 type: object properties: avatar_url: @@ -139256,11 +139327,11 @@ webhooks: type: string comment: type: string - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - reviewers: &859 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + reviewers: &860 type: array items: type: object @@ -139341,7 +139412,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &860 + workflow_job_run: &861 type: object properties: conclusion: @@ -140087,18 +140158,18 @@ webhooks: type: string enum: - rejected - approver: *858 + approver: *859 comment: type: string - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - reviewers: *859 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + reviewers: *860 sender: *4 since: type: string - workflow_job_run: *860 + workflow_job_run: *861 workflow_job_runs: type: array items: @@ -140815,13 +140886,13 @@ webhooks: type: string enum: - requested - enterprise: *844 + enterprise: *845 environment: type: string - installation: *845 - organization: *846 - repository: *847 - requestor: &871 + installation: *846 + organization: *847 + repository: *848 + requestor: &872 title: User type: - object @@ -142754,12 +142825,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - workflow: *861 + workflow: *862 workflow_run: title: Deployment Workflow Run type: @@ -143450,7 +143521,7 @@ webhooks: type: string enum: - answered - answer: &864 + answer: &865 type: object properties: author_association: @@ -143610,11 +143681,11 @@ webhooks: - created_at - updated_at - body - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -143741,11 +143812,11 @@ webhooks: - from required: - category - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -143828,11 +143899,11 @@ webhooks: type: string enum: - closed - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -143914,7 +143985,7 @@ webhooks: type: string enum: - created - comment: &863 + comment: &864 type: object properties: author_association: @@ -144074,11 +144145,11 @@ webhooks: - updated_at - body - reactions - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -144161,12 +144232,12 @@ webhooks: type: string enum: - deleted - comment: *863 - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + comment: *864 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -144261,12 +144332,12 @@ webhooks: - from required: - body - comment: *863 - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + comment: *864 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -144350,11 +144421,11 @@ webhooks: type: string enum: - created - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -144436,11 +144507,11 @@ webhooks: type: string enum: - deleted - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -144540,11 +144611,11 @@ webhooks: type: string required: - from - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -144626,10 +144697,10 @@ webhooks: type: string enum: - labeled - discussion: *862 - enterprise: *844 - installation: *845 - label: &865 + discussion: *863 + enterprise: *845 + installation: *846 + label: &866 title: Label type: object properties: @@ -144662,8 +144733,8 @@ webhooks: - color - default - description - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -144746,11 +144817,11 @@ webhooks: type: string enum: - locked - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -144832,11 +144903,11 @@ webhooks: type: string enum: - pinned - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -144918,11 +144989,11 @@ webhooks: type: string enum: - reopened - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -145007,16 +145078,16 @@ webhooks: changes: type: object properties: - new_discussion: *862 - new_repository: *847 + new_discussion: *863 + new_repository: *848 required: - new_discussion - new_repository - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -145099,10 +145170,10 @@ webhooks: type: string enum: - unanswered - discussion: *862 - old_answer: *864 - organization: *846 - repository: *847 + discussion: *863 + old_answer: *865 + organization: *847 + repository: *848 sender: *4 required: - action @@ -145184,12 +145255,12 @@ webhooks: type: string enum: - unlabeled - discussion: *862 - enterprise: *844 - installation: *845 - label: *865 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + label: *866 + organization: *847 + repository: *848 sender: *4 required: - action @@ -145272,11 +145343,11 @@ webhooks: type: string enum: - unlocked - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -145358,11 +145429,11 @@ webhooks: type: string enum: - unpinned - discussion: *862 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + discussion: *863 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -145431,7 +145502,7 @@ webhooks: required: true content: application/json: - schema: *866 + schema: *867 responses: '200': description: Return a 200 status to indicate that the data was received @@ -145494,7 +145565,7 @@ webhooks: required: true content: application/json: - schema: *867 + schema: *868 responses: '200': description: Return a 200 status to indicate that the data was received @@ -145557,7 +145628,7 @@ webhooks: required: true content: application/json: - schema: *868 + schema: *869 responses: '200': description: Return a 200 status to indicate that the data was received @@ -145620,7 +145691,7 @@ webhooks: required: true content: application/json: - schema: *866 + schema: *867 responses: '200': description: Return a 200 status to indicate that the data was received @@ -145683,7 +145754,7 @@ webhooks: required: true content: application/json: - schema: *867 + schema: *868 responses: '200': description: Return a 200 status to indicate that the data was received @@ -145749,7 +145820,7 @@ webhooks: required: true content: application/json: - schema: *868 + schema: *869 responses: '200': description: Return a 200 status to indicate that the data was received @@ -145815,7 +145886,7 @@ webhooks: required: true content: application/json: - schema: *869 + schema: *870 responses: '200': description: Return a 200 status to indicate that the data was received @@ -145881,7 +145952,7 @@ webhooks: required: true content: application/json: - schema: *866 + schema: *867 responses: '200': description: Return a 200 status to indicate that the data was received @@ -145947,7 +146018,7 @@ webhooks: required: true content: application/json: - schema: *870 + schema: *871 responses: '200': description: Return a 200 status to indicate that the data was received @@ -146013,7 +146084,7 @@ webhooks: required: true content: application/json: - schema: *867 + schema: *868 responses: '200': description: Return a 200 status to indicate that the data was received @@ -146078,7 +146149,7 @@ webhooks: required: true content: application/json: - schema: *868 + schema: *869 responses: '200': description: Return a 200 status to indicate that the data was received @@ -146143,7 +146214,7 @@ webhooks: required: true content: application/json: - schema: *869 + schema: *870 responses: '200': description: Return a 200 status to indicate that the data was received @@ -146208,7 +146279,7 @@ webhooks: required: true content: application/json: - schema: *866 + schema: *867 responses: '200': description: Return a 200 status to indicate that the data was received @@ -146273,7 +146344,7 @@ webhooks: required: true content: application/json: - schema: *870 + schema: *871 responses: '200': description: Return a 200 status to indicate that the data was received @@ -146339,7 +146410,7 @@ webhooks: required: true content: application/json: - schema: *867 + schema: *868 responses: '200': description: Return a 200 status to indicate that the data was received @@ -146406,7 +146477,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *844 + enterprise: *845 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -147084,9 +147155,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *845 - organization: *846 - repository: *847 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - forkee @@ -147232,9 +147303,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 pages: description: The pages that were updated. type: array @@ -147272,7 +147343,7 @@ webhooks: - action - sha - html_url - repository: *847 + repository: *848 sender: *4 required: - pages @@ -147348,10 +147419,10 @@ webhooks: type: string enum: - created - enterprise: *844 + enterprise: *845 installation: *20 - organization: *846 - repositories: &872 + organization: *847 + repositories: &873 description: An array of repository objects that the installation can access. type: array @@ -147377,8 +147448,8 @@ webhooks: - name - full_name - private - repository: *847 - requester: *871 + repository: *848 + requester: *872 sender: *4 required: - action @@ -147453,11 +147524,11 @@ webhooks: type: string enum: - deleted - enterprise: *844 + enterprise: *845 installation: *20 - organization: *846 - repositories: *872 - repository: *847 + organization: *847 + repositories: *873 + repository: *848 requester: type: - 'null' @@ -147534,11 +147605,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *844 + enterprise: *845 installation: *20 - organization: *846 - repositories: *872 - repository: *847 + organization: *847 + repositories: *873 + repository: *848 requester: type: - 'null' @@ -147615,10 +147686,10 @@ webhooks: type: string enum: - added - enterprise: *844 + enterprise: *845 installation: *20 - organization: *846 - repositories_added: &873 + organization: *847 + repositories_added: &874 description: An array of repository objects, which were added to the installation. type: array @@ -147664,15 +147735,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *847 - repository_selection: &874 + repository: *848 + repository_selection: &875 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *871 + requester: *872 sender: *4 required: - action @@ -147751,10 +147822,10 @@ webhooks: type: string enum: - removed - enterprise: *844 + enterprise: *845 installation: *20 - organization: *846 - repositories_added: *873 + organization: *847 + repositories_added: *874 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -147781,9 +147852,9 @@ webhooks: - name - full_name - private - repository: *847 - repository_selection: *874 - requester: *871 + repository: *848 + repository_selection: *875 + requester: *872 sender: *4 required: - action @@ -147862,11 +147933,11 @@ webhooks: type: string enum: - suspend - enterprise: *844 + enterprise: *845 installation: *20 - organization: *846 - repositories: *872 - repository: *847 + organization: *847 + repositories: *873 + repository: *848 requester: type: - 'null' @@ -148049,10 +148120,10 @@ webhooks: type: string required: - from - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 target_type: type: string @@ -148131,11 +148202,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *844 + enterprise: *845 installation: *20 - organization: *846 - repositories: *872 - repository: *847 + organization: *847 + repositories: *873 + repository: *848 requester: type: - 'null' @@ -148301,7 +148372,7 @@ webhooks: pin: anyOf: - type: 'null' - - *670 + - *671 user: title: User type: @@ -148387,8 +148458,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -149200,8 +149271,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149562,8 +149633,8 @@ webhooks: - state - locked - assignee - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -149643,7 +149714,7 @@ webhooks: type: string enum: - deleted - comment: &875 + comment: &876 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -149800,7 +149871,7 @@ webhooks: pin: anyOf: - type: 'null' - - *670 + - *671 required: - url - html_url @@ -149814,8 +149885,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -150623,8 +150694,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150987,8 +151058,8 @@ webhooks: - state - locked - assignee - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -151068,7 +151139,7 @@ webhooks: type: string enum: - edited - changes: &899 + changes: &900 description: The changes to the comment. type: object properties: @@ -151080,9 +151151,9 @@ webhooks: type: string required: - from - comment: *875 - enterprise: *844 - installation: *845 + comment: *876 + enterprise: *845 + installation: *846 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -151893,8 +151964,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152255,8 +152326,8 @@ webhooks: - state - locked - assignee - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -152337,9 +152408,9 @@ webhooks: type: string enum: - pinned - comment: *875 - enterprise: *844 - installation: *845 + comment: *876 + enterprise: *845 + installation: *846 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -153152,8 +153223,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153516,8 +153587,8 @@ webhooks: - state - locked - assignee - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -153597,9 +153668,9 @@ webhooks: type: string enum: - unpinned - comment: *875 - enterprise: *844 - installation: *845 + comment: *876 + enterprise: *845 + installation: *846 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -154412,8 +154483,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154776,8 +154847,8 @@ webhooks: - state - locked - assignee - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -154866,9 +154937,9 @@ webhooks: type: number blocking_issue: *219 blocking_issue_repo: *78 - installation: *845 - organization: *846 - repository: *847 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -154957,9 +155028,9 @@ webhooks: type: number blocking_issue: *219 blocking_issue_repo: *78 - installation: *845 - organization: *846 - repository: *847 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -155047,9 +155118,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *219 - installation: *845 - organization: *846 - repository: *847 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -155138,9 +155209,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *219 - installation: *845 - organization: *846 - repository: *847 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -155220,10 +155291,10 @@ webhooks: type: string enum: - assigned - assignee: *871 - enterprise: *844 - installation: *845 - issue: &878 + assignee: *872 + enterprise: *845 + installation: *846 + issue: &879 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -156034,11 +156105,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156158,8 +156229,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -156239,8 +156310,8 @@ webhooks: type: string enum: - closed - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -157056,11 +157127,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157323,8 +157394,8 @@ webhooks: required: - state - closed_at - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -157403,8 +157474,8 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -158211,11 +158282,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158334,8 +158405,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -158414,8 +158485,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159245,11 +159316,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159347,7 +159418,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &876 + milestone: &877 title: Milestone description: A collection of related issues and pull requests. type: object @@ -159490,8 +159561,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -159590,8 +159661,8 @@ webhooks: type: string required: - from - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160402,11 +160473,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160526,9 +160597,9 @@ webhooks: - active_lock_reason - body - reactions - label: *865 - organization: *846 - repository: *847 + label: *866 + organization: *847 + repository: *848 sender: *4 required: - action @@ -160608,8 +160679,8 @@ webhooks: type: string enum: - labeled - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -161419,11 +161490,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161543,9 +161614,9 @@ webhooks: - active_lock_reason - body - reactions - label: *865 - organization: *846 - repository: *847 + label: *866 + organization: *847 + repository: *848 sender: *4 required: - action @@ -161625,8 +161696,8 @@ webhooks: type: string enum: - locked - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162461,11 +162532,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162562,8 +162633,8 @@ webhooks: format: uri user_view_type: type: string - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -162642,8 +162713,8 @@ webhooks: type: string enum: - milestoned - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -163472,11 +163543,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163573,9 +163644,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *876 - organization: *846 - repository: *847 + milestone: *877 + organization: *847 + repository: *848 sender: *4 required: - action @@ -164462,11 +164533,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165058,8 +165129,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -165866,11 +165937,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165993,8 +166064,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -166074,9 +166145,9 @@ webhooks: type: string enum: - pinned - enterprise: *844 - installation: *845 - issue: &877 + enterprise: *845 + installation: *846 + issue: &878 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -166881,11 +166952,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167004,8 +167075,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -167084,8 +167155,8 @@ webhooks: type: string enum: - reopened - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -167918,11 +167989,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168020,8 +168091,8 @@ webhooks: user_view_type: type: string type: *374 - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -168909,11 +168980,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169523,11 +169594,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *844 - installation: *845 - issue: *877 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + issue: *878 + organization: *847 + repository: *848 sender: *4 required: - action @@ -169607,12 +169678,12 @@ webhooks: type: string enum: - typed - enterprise: *844 - installation: *845 - issue: *878 + enterprise: *845 + installation: *846 + issue: *879 type: *374 - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -169693,7 +169764,7 @@ webhooks: type: string enum: - unassigned - assignee: &902 + assignee: &903 title: User type: - object @@ -169765,11 +169836,11 @@ webhooks: required: - login - id - enterprise: *844 - installation: *845 - issue: *878 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + issue: *879 + organization: *847 + repository: *848 sender: *4 required: - action @@ -169848,12 +169919,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *844 - installation: *845 - issue: *878 - label: *865 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + issue: *879 + label: *866 + organization: *847 + repository: *848 sender: *4 required: - action @@ -169933,8 +170004,8 @@ webhooks: type: string enum: - unlocked - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -170767,11 +170838,11 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *785 - issue_dependencies_summary: *786 + sub_issues_summary: *786 + issue_dependencies_summary: *787 issue_field_values: type: array - items: *655 + items: *656 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170868,8 +170939,8 @@ webhooks: format: uri user_view_type: type: string - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -170949,11 +171020,11 @@ webhooks: type: string enum: - unpinned - enterprise: *844 - installation: *845 - issue: *877 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + issue: *878 + organization: *847 + repository: *848 sender: *4 required: - action @@ -171032,12 +171103,12 @@ webhooks: type: string enum: - untyped - enterprise: *844 - installation: *845 - issue: *878 + enterprise: *845 + installation: *846 + issue: *879 type: *374 - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -171117,11 +171188,11 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - label: *865 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + label: *866 + organization: *847 + repository: *848 sender: *4 required: - action @@ -171199,11 +171270,11 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - label: *865 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + label: *866 + organization: *847 + repository: *848 sender: *4 required: - action @@ -171313,11 +171384,11 @@ webhooks: type: string required: - from - enterprise: *844 - installation: *845 - label: *865 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + label: *866 + organization: *847 + repository: *848 sender: *4 required: - action @@ -171399,9 +171470,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *844 - installation: *845 - marketplace_purchase: &879 + enterprise: *845 + installation: *846 + marketplace_purchase: &880 title: Marketplace Purchase type: object required: @@ -171489,8 +171560,8 @@ webhooks: type: integer unit_count: type: integer - organization: *846 - previous_marketplace_purchase: &880 + organization: *847 + previous_marketplace_purchase: &881 title: Marketplace Purchase type: object properties: @@ -171574,7 +171645,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *847 + repository: *848 sender: *4 required: - action @@ -171654,10 +171725,10 @@ webhooks: - changed effective_date: type: string - enterprise: *844 - installation: *845 - marketplace_purchase: *879 - organization: *846 + enterprise: *845 + installation: *846 + marketplace_purchase: *880 + organization: *847 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -171745,7 +171816,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *847 + repository: *848 sender: *4 required: - action @@ -171827,10 +171898,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *844 - installation: *845 - marketplace_purchase: *879 - organization: *846 + enterprise: *845 + installation: *846 + marketplace_purchase: *880 + organization: *847 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -171916,7 +171987,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *847 + repository: *848 sender: *4 required: - action @@ -171997,8 +172068,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 marketplace_purchase: title: Marketplace Purchase type: object @@ -172084,9 +172155,9 @@ webhooks: type: integer unit_count: type: integer - organization: *846 - previous_marketplace_purchase: *880 - repository: *847 + organization: *847 + previous_marketplace_purchase: *881 + repository: *848 sender: *4 required: - action @@ -172166,12 +172237,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *844 - installation: *845 - marketplace_purchase: *879 - organization: *846 - previous_marketplace_purchase: *880 - repository: *847 + enterprise: *845 + installation: *846 + marketplace_purchase: *880 + organization: *847 + previous_marketplace_purchase: *881 + repository: *848 sender: *4 required: - action @@ -172273,11 +172344,11 @@ webhooks: type: string required: - to - enterprise: *844 - installation: *845 - member: *871 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + member: *872 + organization: *847 + repository: *848 sender: *4 required: - action @@ -172379,11 +172450,11 @@ webhooks: type: - string - 'null' - enterprise: *844 - installation: *845 - member: *871 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + member: *872 + organization: *847 + repository: *848 sender: *4 required: - action @@ -172462,11 +172533,11 @@ webhooks: type: string enum: - removed - enterprise: *844 - installation: *845 - member: *871 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + member: *872 + organization: *847 + repository: *848 sender: *4 required: - action @@ -172544,11 +172615,11 @@ webhooks: type: string enum: - added - enterprise: *844 - installation: *845 - member: *871 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + member: *872 + organization: *847 + repository: *848 scope: description: The scope of the membership. Currently, can only be `team`. @@ -172626,7 +172697,7 @@ webhooks: required: - login - id - team: &881 + team: &882 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -172856,11 +172927,11 @@ webhooks: type: string enum: - removed - enterprise: *844 - installation: *845 - member: *871 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + member: *872 + organization: *847 + repository: *848 scope: description: The scope of the membership. Currently, can only be `team`. @@ -172939,7 +173010,7 @@ webhooks: required: - login - id - team: *881 + team: *882 required: - action - scope @@ -173021,8 +173092,8 @@ webhooks: type: string enum: - checks_requested - installation: *845 - merge_group: &882 + installation: *846 + merge_group: &883 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -173048,8 +173119,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -173135,10 +173206,10 @@ webhooks: - merged - invalidated - dequeued - installation: *845 - merge_group: *882 - organization: *846 - repository: *847 + installation: *846 + merge_group: *883 + organization: *847 + repository: *848 sender: *4 required: - action @@ -173211,7 +173282,7 @@ webhooks: type: string enum: - deleted - enterprise: *844 + enterprise: *845 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -173320,12 +173391,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *845 - organization: *846 + installation: *846 + organization: *847 repository: anyOf: - type: 'null' - - *847 + - *848 sender: *4 required: - action @@ -173405,11 +173476,11 @@ webhooks: type: string enum: - closed - enterprise: *844 - installation: *845 - milestone: *876 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + milestone: *877 + organization: *847 + repository: *848 sender: *4 required: - action @@ -173488,9 +173559,9 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - milestone: &883 + enterprise: *845 + installation: *846 + milestone: &884 title: Milestone description: A collection of related issues and pull requests. type: object @@ -173632,8 +173703,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -173712,11 +173783,11 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - milestone: *876 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + milestone: *877 + organization: *847 + repository: *848 sender: *4 required: - action @@ -173826,11 +173897,11 @@ webhooks: type: string required: - from - enterprise: *844 - installation: *845 - milestone: *876 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + milestone: *877 + organization: *847 + repository: *848 sender: *4 required: - action @@ -173910,11 +173981,11 @@ webhooks: type: string enum: - opened - enterprise: *844 - installation: *845 - milestone: *883 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + milestone: *884 + organization: *847 + repository: *848 sender: *4 required: - action @@ -173993,11 +174064,11 @@ webhooks: type: string enum: - blocked - blocked_user: *871 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + blocked_user: *872 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -174076,11 +174147,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *871 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + blocked_user: *872 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -174156,7 +174227,7 @@ webhooks: enum: - created definition: *147 - enterprise: *844 + enterprise: *845 sender: *4 required: - action @@ -174236,8 +174307,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 sender: *4 required: - action @@ -174310,8 +174381,8 @@ webhooks: enum: - updated definition: *147 - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 sender: *4 required: - action @@ -174383,9 +174454,9 @@ webhooks: type: string enum: - updated - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 sender: *4 new_property_values: type: array @@ -174473,9 +174544,9 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - membership: &884 + enterprise: *845 + installation: *846 + membership: &885 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -174585,8 +174656,8 @@ webhooks: - role - organization_url - user - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 required: - action @@ -174664,11 +174735,11 @@ webhooks: type: string enum: - member_added - enterprise: *844 - installation: *845 - membership: *884 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + membership: *885 + organization: *847 + repository: *848 sender: *4 required: - action @@ -174747,8 +174818,8 @@ webhooks: type: string enum: - member_invited - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -174870,10 +174941,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 - user: *871 + user: *872 required: - action - invitation @@ -174951,11 +175022,11 @@ webhooks: type: string enum: - member_removed - enterprise: *844 - installation: *845 - membership: *884 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + membership: *885 + organization: *847 + repository: *848 sender: *4 required: - action @@ -175042,11 +175113,11 @@ webhooks: properties: from: type: string - enterprise: *844 - installation: *845 - membership: *884 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + membership: *885 + organization: *847 + repository: *848 sender: *4 required: - action @@ -175124,9 +175195,9 @@ webhooks: type: string enum: - published - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 package: description: Information about the package. type: object @@ -175649,7 +175720,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &885 + items: &886 title: Ruby Gems metadata type: object properties: @@ -175746,7 +175817,7 @@ webhooks: - owner - package_version - registry - repository: *847 + repository: *848 sender: *4 required: - action @@ -175823,9 +175894,9 @@ webhooks: type: string enum: - updated - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 package: description: Information about the package. type: object @@ -176187,7 +176258,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *885 + items: *886 source_url: type: string format: uri @@ -176258,7 +176329,7 @@ webhooks: - owner - package_version - registry - repository: *847 + repository: *848 sender: *4 required: - action @@ -176438,12 +176509,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *844 + enterprise: *845 id: type: integer - installation: *845 - organization: *846 - repository: *847 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - id @@ -176520,7 +176591,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &886 + personal_access_token_request: &887 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -176670,10 +176741,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *844 - organization: *846 + enterprise: *845 + organization: *847 sender: *4 - installation: *845 + installation: *846 required: - action - personal_access_token_request @@ -176750,11 +176821,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *886 - enterprise: *844 - organization: *846 + personal_access_token_request: *887 + enterprise: *845 + organization: *847 sender: *4 - installation: *845 + installation: *846 required: - action - personal_access_token_request @@ -176830,11 +176901,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *886 - enterprise: *844 - organization: *846 + personal_access_token_request: *887 + enterprise: *845 + organization: *847 sender: *4 - installation: *845 + installation: *846 required: - action - personal_access_token_request @@ -176909,11 +176980,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *886 - organization: *846 - enterprise: *844 + personal_access_token_request: *887 + organization: *847 + enterprise: *845 sender: *4 - installation: *845 + installation: *846 required: - action - personal_access_token_request @@ -177018,7 +177089,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *887 + last_response: *888 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -177050,8 +177121,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 zen: description: Random string of GitHub zen. @@ -177296,10 +177367,10 @@ webhooks: - from required: - note - enterprise: *844 - installation: *845 - organization: *846 - project_card: &888 + enterprise: *845 + installation: *846 + organization: *847 + project_card: &889 title: Project Card type: object properties: @@ -177422,7 +177493,7 @@ webhooks: - creator - created_at - updated_at - repository: *847 + repository: *848 sender: *4 required: - action @@ -177503,11 +177574,11 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 - project_card: *888 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + project_card: *889 + repository: *848 sender: *4 required: - action @@ -177587,9 +177658,9 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 project_card: title: Project Card type: object @@ -177719,7 +177790,7 @@ webhooks: repository: anyOf: - type: 'null' - - *847 + - *848 sender: *4 required: - action @@ -177813,11 +177884,11 @@ webhooks: - from required: - note - enterprise: *844 - installation: *845 - organization: *846 - project_card: *888 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + project_card: *889 + repository: *848 sender: *4 required: - action @@ -177911,9 +177982,9 @@ webhooks: - from required: - column_id - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 project_card: allOf: - title: Project Card @@ -178110,7 +178181,7 @@ webhooks: type: string required: - after_id - repository: *847 + repository: *848 sender: *4 required: - action @@ -178190,10 +178261,10 @@ webhooks: type: string enum: - closed - enterprise: *844 - installation: *845 - organization: *846 - project: &890 + enterprise: *845 + installation: *846 + organization: *847 + project: &891 title: Project type: object properties: @@ -178320,7 +178391,7 @@ webhooks: - creator - created_at - updated_at - repository: *847 + repository: *848 sender: *4 required: - action @@ -178400,10 +178471,10 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 - project_column: &889 + enterprise: *845 + installation: *846 + organization: *847 + project_column: &890 title: Project Column type: object properties: @@ -178443,7 +178514,7 @@ webhooks: - name - created_at - updated_at - repository: *847 + repository: *848 sender: *4 required: - action @@ -178522,14 +178593,14 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - organization: *846 - project_column: *889 + enterprise: *845 + installation: *846 + organization: *847 + project_column: *890 repository: anyOf: - type: 'null' - - *847 + - *848 sender: *4 required: - action @@ -178618,11 +178689,11 @@ webhooks: type: string required: - from - enterprise: *844 - installation: *845 - organization: *846 - project_column: *889 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + project_column: *890 + repository: *848 sender: *4 required: - action @@ -178702,11 +178773,11 @@ webhooks: type: string enum: - moved - enterprise: *844 - installation: *845 - organization: *846 - project_column: *889 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + project_column: *890 + repository: *848 sender: *4 required: - action @@ -178786,11 +178857,11 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 - project: *890 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + project: *891 + repository: *848 sender: *4 required: - action @@ -178870,14 +178941,14 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - organization: *846 - project: *890 + enterprise: *845 + installation: *846 + organization: *847 + project: *891 repository: anyOf: - type: 'null' - - *847 + - *848 sender: *4 required: - action @@ -178978,11 +179049,11 @@ webhooks: type: string required: - from - enterprise: *844 - installation: *845 - organization: *846 - project: *890 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + project: *891 + repository: *848 sender: *4 required: - action @@ -179061,11 +179132,11 @@ webhooks: type: string enum: - reopened - enterprise: *844 - installation: *845 - organization: *846 - project: *890 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + project: *891 + repository: *848 sender: *4 required: - action @@ -179146,8 +179217,8 @@ webhooks: type: string enum: - closed - installation: *845 - organization: *846 + installation: *846 + organization: *847 projects_v2: *405 sender: *4 required: @@ -179229,8 +179300,8 @@ webhooks: type: string enum: - created - installation: *845 - organization: *846 + installation: *846 + organization: *847 projects_v2: *405 sender: *4 required: @@ -179312,8 +179383,8 @@ webhooks: type: string enum: - deleted - installation: *845 - organization: *846 + installation: *846 + organization: *847 projects_v2: *405 sender: *4 required: @@ -179435,8 +179506,8 @@ webhooks: type: string to: type: string - installation: *845 - organization: *846 + installation: *846 + organization: *847 projects_v2: *405 sender: *4 required: @@ -179520,7 +179591,7 @@ webhooks: type: string enum: - archived - changes: &894 + changes: &895 type: object properties: archived_at: @@ -179536,9 +179607,9 @@ webhooks: - string - 'null' format: date-time - installation: *845 - organization: *846 - projects_v2_item: &891 + installation: *846 + organization: *847 + projects_v2_item: &892 title: Projects v2 Item description: An item belonging to a project type: object @@ -179678,9 +179749,9 @@ webhooks: - 'null' to: type: string - installation: *845 - organization: *846 - projects_v2_item: *891 + installation: *846 + organization: *847 + projects_v2_item: *892 sender: *4 required: - action @@ -179762,9 +179833,9 @@ webhooks: type: string enum: - created - installation: *845 - organization: *846 - projects_v2_item: *891 + installation: *846 + organization: *847 + projects_v2_item: *892 sender: *4 required: - action @@ -179845,9 +179916,9 @@ webhooks: type: string enum: - deleted - installation: *845 - organization: *846 - projects_v2_item: *891 + installation: *846 + organization: *847 + projects_v2_item: *892 sender: *4 required: - action @@ -179952,7 +180023,7 @@ webhooks: oneOf: - type: string - type: integer - - &892 + - &893 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -179976,7 +180047,7 @@ webhooks: required: - id - name - - &893 + - &894 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -180016,8 +180087,8 @@ webhooks: oneOf: - type: string - type: integer - - *892 - *893 + - *894 type: - 'null' - string @@ -180040,9 +180111,9 @@ webhooks: - 'null' required: - body - installation: *845 - organization: *846 - projects_v2_item: *891 + installation: *846 + organization: *847 + projects_v2_item: *892 sender: *4 required: - action @@ -180139,9 +180210,9 @@ webhooks: type: - string - 'null' - installation: *845 - organization: *846 - projects_v2_item: *891 + installation: *846 + organization: *847 + projects_v2_item: *892 sender: *4 required: - action @@ -180224,10 +180295,10 @@ webhooks: type: string enum: - restored - changes: *894 - installation: *845 - organization: *846 - projects_v2_item: *891 + changes: *895 + installation: *846 + organization: *847 + projects_v2_item: *892 sender: *4 required: - action @@ -180309,8 +180380,8 @@ webhooks: type: string enum: - reopened - installation: *845 - organization: *846 + installation: *846 + organization: *847 projects_v2: *405 sender: *4 required: @@ -180392,9 +180463,9 @@ webhooks: type: string enum: - created - installation: *845 - organization: *846 - projects_v2_status_update: *895 + installation: *846 + organization: *847 + projects_v2_status_update: *896 sender: *4 required: - action @@ -180475,9 +180546,9 @@ webhooks: type: string enum: - deleted - installation: *845 - organization: *846 - projects_v2_status_update: *895 + installation: *846 + organization: *847 + projects_v2_status_update: *896 sender: *4 required: - action @@ -180623,9 +180694,9 @@ webhooks: - string - 'null' format: date - installation: *845 - organization: *846 - projects_v2_status_update: *895 + installation: *846 + organization: *847 + projects_v2_status_update: *896 sender: *4 required: - action @@ -180696,10 +180767,10 @@ webhooks: title: public event type: object properties: - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - repository @@ -180776,13 +180847,13 @@ webhooks: type: string enum: - assigned - assignee: *871 - enterprise: *844 - installation: *845 - number: &896 + assignee: *872 + enterprise: *845 + installation: *846 + number: &897 description: The pull request number. type: integer - organization: *846 + organization: *847 pull_request: title: Pull Request type: object @@ -183153,7 +183224,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 sender: *4 required: - action @@ -183235,11 +183306,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 number: type: integer - organization: *846 + organization: *847 pull_request: title: Pull Request type: object @@ -185603,7 +185674,7 @@ webhooks: - draft reason: type: string - repository: *847 + repository: *848 sender: *4 required: - action @@ -185685,11 +185756,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 number: type: integer - organization: *846 + organization: *847 pull_request: title: Pull Request type: object @@ -188053,7 +188124,7 @@ webhooks: - draft reason: type: string - repository: *847 + repository: *848 sender: *4 required: - action @@ -188135,13 +188206,13 @@ webhooks: type: string enum: - closed - enterprise: *844 - installation: *845 - number: *896 - organization: *846 - pull_request: &897 + enterprise: *845 + installation: *846 + number: *897 + organization: *847 + pull_request: &898 allOf: - - *693 + - *694 - type: object properties: allow_auto_merge: @@ -188203,7 +188274,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *847 + repository: *848 sender: *4 required: - action @@ -188284,12 +188355,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *844 - installation: *845 - number: *896 - organization: *846 - pull_request: *897 - repository: *847 + enterprise: *845 + installation: *846 + number: *897 + organization: *847 + pull_request: *898 + repository: *848 sender: *4 required: - action @@ -188369,11 +188440,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *844 + enterprise: *845 milestone: *408 - number: *896 - organization: *846 - pull_request: &898 + number: *897 + organization: *847 + pull_request: &899 title: Pull Request type: object properties: @@ -190722,7 +190793,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 sender: *4 required: - action @@ -190801,11 +190872,11 @@ webhooks: type: string enum: - dequeued - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 number: type: integer - organization: *846 + organization: *847 pull_request: title: Pull Request type: object @@ -193173,7 +193244,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *847 + repository: *848 sender: *4 required: - action @@ -193297,12 +193368,12 @@ webhooks: type: string required: - from - enterprise: *844 - installation: *845 - number: *896 - organization: *846 - pull_request: *897 - repository: *847 + enterprise: *845 + installation: *846 + number: *897 + organization: *847 + pull_request: *898 + repository: *848 sender: *4 required: - action @@ -193382,11 +193453,11 @@ webhooks: type: string enum: - enqueued - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 number: type: integer - organization: *846 + organization: *847 pull_request: title: Pull Request type: object @@ -195739,7 +195810,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 sender: *4 required: - action @@ -195819,11 +195890,11 @@ webhooks: type: string enum: - labeled - enterprise: *844 - installation: *845 - label: *865 - number: *896 - organization: *846 + enterprise: *845 + installation: *846 + label: *866 + number: *897 + organization: *847 pull_request: title: Pull Request type: object @@ -198193,7 +198264,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 sender: *4 required: - action @@ -198274,10 +198345,10 @@ webhooks: type: string enum: - locked - enterprise: *844 - installation: *845 - number: *896 - organization: *846 + enterprise: *845 + installation: *846 + number: *897 + organization: *847 pull_request: title: Pull Request type: object @@ -200645,7 +200716,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 sender: *4 required: - action @@ -200725,12 +200796,12 @@ webhooks: type: string enum: - milestoned - enterprise: *844 + enterprise: *845 milestone: *408 - number: *896 - organization: *846 - pull_request: *898 - repository: *847 + number: *897 + organization: *847 + pull_request: *899 + repository: *848 sender: *4 required: - action @@ -200809,12 +200880,12 @@ webhooks: type: string enum: - opened - enterprise: *844 - installation: *845 - number: *896 - organization: *846 - pull_request: *897 - repository: *847 + enterprise: *845 + installation: *846 + number: *897 + organization: *847 + pull_request: *898 + repository: *848 sender: *4 required: - action @@ -200895,12 +200966,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *844 - installation: *845 - number: *896 - organization: *846 - pull_request: *897 - repository: *847 + enterprise: *845 + installation: *846 + number: *897 + organization: *847 + pull_request: *898 + repository: *848 sender: *4 required: - action @@ -200980,12 +201051,12 @@ webhooks: type: string enum: - reopened - enterprise: *844 - installation: *845 - number: *896 - organization: *846 - pull_request: *897 - repository: *847 + enterprise: *845 + installation: *846 + number: *897 + organization: *847 + pull_request: *898 + repository: *848 sender: *4 required: - action @@ -201360,9 +201431,9 @@ webhooks: - start_side - side - reactions - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 pull_request: type: object properties: @@ -203614,7 +203685,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *847 + repository: *848 sender: *4 required: - action @@ -203694,7 +203765,7 @@ webhooks: type: string enum: - deleted - comment: &900 + comment: &901 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -203987,9 +204058,9 @@ webhooks: - start_side - side - reactions - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 pull_request: type: object properties: @@ -206229,7 +206300,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *847 + repository: *848 sender: *4 required: - action @@ -206309,11 +206380,11 @@ webhooks: type: string enum: - edited - changes: *899 - comment: *900 - enterprise: *844 - installation: *845 - organization: *846 + changes: *900 + comment: *901 + enterprise: *845 + installation: *846 + organization: *847 pull_request: type: object properties: @@ -208556,7 +208627,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *847 + repository: *848 sender: *4 required: - action @@ -208637,9 +208708,9 @@ webhooks: type: string enum: - dismissed - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 pull_request: title: Simple Pull Request type: object @@ -210894,7 +210965,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *847 + repository: *848 review: description: The review that was affected. type: object @@ -211145,9 +211216,9 @@ webhooks: type: string required: - from - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 pull_request: title: Simple Pull Request type: object @@ -213261,8 +213332,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *847 - review: &901 + repository: *848 + review: &902 description: The review that was affected. type: object properties: @@ -213500,12 +213571,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 number: description: The pull request number. type: integer - organization: *846 + organization: *847 pull_request: title: Pull Request type: object @@ -215874,7 +215945,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 requested_reviewer: title: User type: @@ -215960,12 +216031,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 number: description: The pull request number. type: integer - organization: *846 + organization: *847 pull_request: title: Pull Request type: object @@ -218341,7 +218412,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 requested_team: title: Team description: Groups of organization members that gives permissions @@ -218536,12 +218607,12 @@ webhooks: type: string enum: - review_requested - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 number: description: The pull request number. type: integer - organization: *846 + organization: *847 pull_request: title: Pull Request type: object @@ -220912,7 +220983,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 requested_reviewer: title: User type: @@ -220999,12 +221070,12 @@ webhooks: type: string enum: - review_requested - enterprise: *844 - installation: *845 + enterprise: *845 + installation: *846 number: description: The pull request number. type: integer - organization: *846 + organization: *847 pull_request: title: Pull Request type: object @@ -223366,7 +223437,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 requested_team: title: Team description: Groups of organization members that gives permissions @@ -223550,9 +223621,9 @@ webhooks: type: string enum: - submitted - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 pull_request: title: Simple Pull Request type: object @@ -225810,8 +225881,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *847 - review: *901 + repository: *848 + review: *902 sender: *4 required: - action @@ -225891,9 +225962,9 @@ webhooks: type: string enum: - resolved - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 pull_request: title: Simple Pull Request type: object @@ -228046,7 +228117,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *847 + repository: *848 sender: *4 thread: type: object @@ -228443,9 +228514,9 @@ webhooks: type: string enum: - unresolved - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 pull_request: title: Simple Pull Request type: object @@ -230581,7 +230652,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *847 + repository: *848 sender: *4 thread: type: object @@ -230980,10 +231051,10 @@ webhooks: type: string before: type: string - enterprise: *844 - installation: *845 - number: *896 - organization: *846 + enterprise: *845 + installation: *846 + number: *897 + organization: *847 pull_request: title: Pull Request type: object @@ -233340,7 +233411,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 sender: *4 required: - action @@ -233422,11 +233493,11 @@ webhooks: type: string enum: - unassigned - assignee: *902 - enterprise: *844 - installation: *845 - number: *896 - organization: *846 + assignee: *903 + enterprise: *845 + installation: *846 + number: *897 + organization: *847 pull_request: title: Pull Request type: object @@ -235798,7 +235869,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 sender: *4 required: - action @@ -235877,11 +235948,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *844 - installation: *845 - label: *865 - number: *896 - organization: *846 + enterprise: *845 + installation: *846 + label: *866 + number: *897 + organization: *847 pull_request: title: Pull Request type: object @@ -238242,7 +238313,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 sender: *4 required: - action @@ -238323,10 +238394,10 @@ webhooks: type: string enum: - unlocked - enterprise: *844 - installation: *845 - number: *896 - organization: *846 + enterprise: *845 + installation: *846 + number: *897 + organization: *847 pull_request: title: Pull Request type: object @@ -240677,7 +240748,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *847 + repository: *848 sender: *4 required: - action @@ -240880,7 +240951,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *844 + enterprise: *845 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -240975,8 +241046,8 @@ webhooks: - url - author - committer - installation: *845 - organization: *846 + installation: *846 + organization: *847 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -241575,9 +241646,9 @@ webhooks: type: string enum: - published - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 registry_package: type: object properties: @@ -242054,7 +242125,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *885 + items: *886 summary: type: string tag_name: @@ -242110,7 +242181,7 @@ webhooks: - owner - package_version - registry - repository: *847 + repository: *848 sender: *4 required: - action @@ -242188,9 +242259,9 @@ webhooks: type: string enum: - updated - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 registry_package: type: object properties: @@ -242502,7 +242573,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *885 + items: *886 summary: type: string tag_name: @@ -242552,7 +242623,7 @@ webhooks: - owner - package_version - registry - repository: *847 + repository: *848 sender: *4 required: - action @@ -242629,10 +242700,10 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 - release: &903 + enterprise: *845 + installation: *846 + organization: *847 + release: &904 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -242963,7 +243034,7 @@ webhooks: - updated_at - zipball_url - body - repository: *847 + repository: *848 sender: *4 required: - action @@ -243040,11 +243111,11 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - organization: *846 - release: *903 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + release: *904 + repository: *848 sender: *4 required: - action @@ -243161,11 +243232,11 @@ webhooks: type: boolean required: - to - enterprise: *844 - installation: *845 - organization: *846 - release: *903 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + release: *904 + repository: *848 sender: *4 required: - action @@ -243243,9 +243314,9 @@ webhooks: type: string enum: - prereleased - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -243581,7 +243652,7 @@ webhooks: - string - 'null' format: uri - repository: *847 + repository: *848 sender: *4 required: - action @@ -243657,10 +243728,10 @@ webhooks: type: string enum: - published - enterprise: *844 - installation: *845 - organization: *846 - release: &904 + enterprise: *845 + installation: *846 + organization: *847 + release: &905 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -243993,7 +244064,7 @@ webhooks: - string - 'null' format: uri - repository: *847 + repository: *848 sender: *4 required: - action @@ -244069,11 +244140,11 @@ webhooks: type: string enum: - released - enterprise: *844 - installation: *845 - organization: *846 - release: *903 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + release: *904 + repository: *848 sender: *4 required: - action @@ -244149,11 +244220,11 @@ webhooks: type: string enum: - unpublished - enterprise: *844 - installation: *845 - organization: *846 - release: *904 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + release: *905 + repository: *848 sender: *4 required: - action @@ -244229,11 +244300,11 @@ webhooks: type: string enum: - published - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - repository_advisory: *745 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + repository_advisory: *746 sender: *4 required: - action @@ -244309,11 +244380,11 @@ webhooks: type: string enum: - reported - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - repository_advisory: *745 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + repository_advisory: *746 sender: *4 required: - action @@ -244389,10 +244460,10 @@ webhooks: type: string enum: - archived - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -244469,10 +244540,10 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -244550,10 +244621,10 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -244638,10 +244709,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -244756,10 +244827,10 @@ webhooks: - 'null' items: type: string - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -244831,10 +244902,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 status: type: string @@ -244915,10 +244986,10 @@ webhooks: type: string enum: - privatized - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -244995,10 +245066,10 @@ webhooks: type: string enum: - publicized - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -245092,10 +245163,10 @@ webhooks: - name required: - repository - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -245175,10 +245246,10 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 repository_ruleset: *187 sender: *4 required: @@ -245257,10 +245328,10 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 repository_ruleset: *187 sender: *4 required: @@ -245339,10 +245410,10 @@ webhooks: type: string enum: - edited - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 repository_ruleset: *187 changes: type: object @@ -245404,16 +245475,16 @@ webhooks: properties: added: type: array - items: *713 + items: *714 deleted: type: array - items: *713 + items: *714 updated: type: array items: type: object properties: - rule: *713 + rule: *714 changes: type: object properties: @@ -245650,10 +245721,10 @@ webhooks: - from required: - owner - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -245731,10 +245802,10 @@ webhooks: type: string enum: - unarchived - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -245812,7 +245883,7 @@ webhooks: type: string enum: - create - alert: &905 + alert: &906 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -245937,10 +246008,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -246150,10 +246221,10 @@ webhooks: type: string enum: - dismissed - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -246231,11 +246302,11 @@ webhooks: type: string enum: - reopen - alert: *905 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + alert: *906 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -246437,10 +246508,10 @@ webhooks: enum: - fixed - open - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -246518,7 +246589,7 @@ webhooks: type: string enum: - assigned - alert: &906 + alert: &907 type: object properties: number: *126 @@ -246658,10 +246729,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -246739,11 +246810,11 @@ webhooks: type: string enum: - created - alert: *906 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + alert: *907 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -246824,11 +246895,11 @@ webhooks: type: string enum: - created - alert: *906 - installation: *845 - location: *907 - organization: *846 - repository: *847 + alert: *907 + installation: *846 + location: *908 + organization: *847 + repository: *848 sender: *4 required: - location @@ -247066,11 +247137,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *906 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + alert: *907 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -247148,11 +247219,11 @@ webhooks: type: string enum: - reopened - alert: *906 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + alert: *907 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -247230,11 +247301,11 @@ webhooks: type: string enum: - resolved - alert: *906 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + alert: *907 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -247312,12 +247383,12 @@ webhooks: type: string enum: - unassigned - alert: *906 + alert: *907 assignee: *4 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -247395,11 +247466,11 @@ webhooks: type: string enum: - validated - alert: *906 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + alert: *907 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -247529,10 +247600,10 @@ webhooks: - organization - enterprise - - repository: *847 - enterprise: *844 - installation: *845 - organization: *846 + repository: *848 + enterprise: *845 + installation: *846 + organization: *847 sender: *4 required: - action @@ -247610,11 +247681,11 @@ webhooks: type: string enum: - published - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - security_advisory: &908 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + security_advisory: &909 description: The details of the security advisory, including summary, description, and severity. type: object @@ -247800,11 +247871,11 @@ webhooks: type: string enum: - updated - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 - security_advisory: *908 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 + security_advisory: *909 sender: *4 required: - action @@ -247877,10 +247948,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -248067,9 +248138,9 @@ webhooks: type: object properties: security_and_analysis: *419 - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 repository: *464 sender: *4 required: @@ -248148,12 +248219,12 @@ webhooks: type: string enum: - cancelled - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - sponsorship: &909 + sponsorship: &910 type: object properties: created_at: @@ -248458,12 +248529,12 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - sponsorship: *909 + sponsorship: *910 required: - action - sponsorship @@ -248551,12 +248622,12 @@ webhooks: type: string required: - from - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - sponsorship: *909 + sponsorship: *910 required: - action - changes @@ -248633,17 +248704,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &910 + effective_date: &911 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: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - sponsorship: *909 + sponsorship: *910 required: - action - sponsorship @@ -248717,7 +248788,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &911 + changes: &912 type: object properties: tier: @@ -248761,13 +248832,13 @@ webhooks: - from required: - tier - effective_date: *910 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + effective_date: *911 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - sponsorship: *909 + sponsorship: *910 required: - action - changes @@ -248844,13 +248915,13 @@ webhooks: type: string enum: - tier_changed - changes: *911 - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + changes: *912 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - sponsorship: *909 + sponsorship: *910 required: - action - changes @@ -248924,10 +248995,10 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -249011,10 +249082,10 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -249448,15 +249519,15 @@ webhooks: type: - string - 'null' - enterprise: *844 + enterprise: *845 id: description: The unique identifier of the status. type: integer - installation: *845 + installation: *846 name: type: string - organization: *846 - repository: *847 + organization: *847 + repository: *848 sender: *4 sha: description: The Commit SHA. @@ -249572,9 +249643,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *219 - installation: *845 - organization: *846 - repository: *847 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -249664,9 +249735,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *219 - installation: *845 - organization: *846 - repository: *847 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -249756,9 +249827,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *219 - installation: *845 - organization: *846 - repository: *847 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -249848,9 +249919,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *219 - installation: *845 - organization: *846 - repository: *847 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -249927,12 +249998,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - team: &912 + team: &913 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -250162,9 +250233,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 repository: title: Repository description: A git repository @@ -250634,7 +250705,7 @@ webhooks: - topics - visibility sender: *4 - team: *912 + team: *913 required: - action - team @@ -250710,9 +250781,9 @@ webhooks: type: string enum: - created - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 repository: title: Repository description: A git repository @@ -251182,7 +251253,7 @@ webhooks: - topics - visibility sender: *4 - team: *912 + team: *913 required: - action - team @@ -251259,9 +251330,9 @@ webhooks: type: string enum: - deleted - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 repository: title: Repository description: A git repository @@ -251731,7 +251802,7 @@ webhooks: - topics - visibility sender: *4 - team: *912 + team: *913 required: - action - team @@ -251875,9 +251946,9 @@ webhooks: - from required: - permissions - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 repository: title: Repository description: A git repository @@ -252347,7 +252418,7 @@ webhooks: - topics - visibility sender: *4 - team: *912 + team: *913 required: - action - changes @@ -252425,9 +252496,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *844 - installation: *845 - organization: *846 + enterprise: *845 + installation: *846 + organization: *847 repository: title: Repository description: A git repository @@ -252897,7 +252968,7 @@ webhooks: - topics - visibility sender: *4 - team: *912 + team: *913 required: - action - team @@ -252973,10 +253044,10 @@ webhooks: type: string enum: - started - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 required: - action @@ -253049,17 +253120,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *844 + enterprise: *845 inputs: type: - object - 'null' additionalProperties: true - installation: *845 - organization: *846 + installation: *846 + organization: *847 ref: type: string - repository: *847 + repository: *848 sender: *4 workflow: type: string @@ -253141,10 +253212,10 @@ webhooks: type: string enum: - completed - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 workflow_job: allOf: @@ -253400,7 +253471,7 @@ webhooks: type: string required: - conclusion - deployment: *600 + deployment: *601 required: - action - repository @@ -253479,10 +253550,10 @@ webhooks: type: string enum: - in_progress - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 workflow_job: allOf: @@ -253764,7 +253835,7 @@ webhooks: required: - status - steps - deployment: *600 + deployment: *601 required: - action - repository @@ -253843,10 +253914,10 @@ webhooks: type: string enum: - queued - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 workflow_job: type: object @@ -253992,7 +254063,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *600 + deployment: *601 required: - action - repository @@ -254071,10 +254142,10 @@ webhooks: type: string enum: - waiting - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 workflow_job: type: object @@ -254221,7 +254292,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *600 + deployment: *601 required: - action - repository @@ -254301,12 +254372,12 @@ webhooks: type: string enum: - completed - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - workflow: *861 + workflow: *862 workflow_run: title: Workflow Run type: object @@ -255325,12 +255396,12 @@ webhooks: type: string enum: - in_progress - enterprise: *844 - installation: *845 - organization: *846 - repository: *847 + enterprise: *845 + installation: *846 + organization: *847 + repository: *848 sender: *4 - workflow: *861 + workflow: *862 workflow_run: title: Workflow Run type: object @@ -256334,12 +256405,12 @@ webhooks: type: string enum: - requested - enterprise: *844 - installation: *845 - {"code":"deadline_exceeded","msg":"operation timed out"}