diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 12a3ed65ab..cb13f5ed65 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -47369,6 +47369,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", @@ -305272,6 +305383,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/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index 6e56c1c7b4..7ee291d862 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -34558,6 +34558,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 @@ -230155,6 +230230,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/api.github.com/api.github.com.2026-03-10.json b/descriptions/api.github.com/api.github.com.2026-03-10.json index be8caa2cbf..a00d6249d9 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions/api.github.com/api.github.com.2026-03-10.json @@ -47291,6 +47291,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", @@ -304507,6 +304618,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/api.github.com/api.github.com.2026-03-10.yaml b/descriptions/api.github.com/api.github.com.2026-03-10.yaml index a47421e3b6..e8ed0188c0 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions/api.github.com/api.github.com.2026-03-10.yaml @@ -34496,6 +34496,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 @@ -229469,6 +229544,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/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 8318352729..6adc5f3326 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -47633,6 +47633,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", @@ -307450,6 +307561,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/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index e6cc892d76..6b15799279 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -34723,6 +34723,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 @@ -231578,6 +231653,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/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 2f292db723..bcc4529efd 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -331466,6 +331466,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/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 5e46913c73..b0623a9bbb 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -1023,7 +1023,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &663 + - &664 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -11023,7 +11023,7 @@ paths: properties: action: type: string - discussion: &757 + discussion: &758 title: Discussion description: A Discussion in a repository. type: object @@ -11390,7 +11390,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &549 + properties: &550 id: type: integer format: int64 @@ -11766,7 +11766,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &675 + sub_issues_summary: &676 title: Sub-issues Summary type: object properties: @@ -11853,7 +11853,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &571 + properties: &572 pinned_at: type: string format: date-time @@ -11865,7 +11865,7 @@ paths: properties: *20 required: *21 nullable: true - required: &572 + required: &573 - pinned_at - pinned_by nullable: true @@ -11879,7 +11879,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &676 + issue_dependencies_summary: &677 title: Issue Dependencies Summary type: object properties: @@ -11898,7 +11898,7 @@ paths: - total_blocking issue_field_values: type: array - items: &556 + items: &557 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11959,7 +11959,7 @@ paths: - node_id - data_type - value - required: &550 + required: &551 - assignee - closed_at - comments @@ -11997,7 +11997,7 @@ paths: action: type: string issue: *85 - comment: &545 + comment: &546 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -12661,7 +12661,7 @@ paths: type: string release: allOf: - - &605 + - &606 title: Release description: A release. type: object @@ -12732,7 +12732,7 @@ paths: author: *4 assets: type: array - items: &606 + items: &607 title: Release Asset description: Data related to a release. type: object @@ -13323,7 +13323,7 @@ paths: url: type: string format: uri - user: &682 + user: &683 title: Public User description: Public User type: object @@ -16715,7 +16715,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &581 + - &582 name: all description: If `true`, show notifications marked as read. in: query @@ -16723,7 +16723,7 @@ paths: schema: type: boolean default: false - - &582 + - &583 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16733,7 +16733,7 @@ paths: type: boolean default: false - *92 - - &583 + - &584 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: @@ -17263,7 +17263,7 @@ paths: - url - subscription_url examples: - default: &584 + default: &585 value: - id: '1' repository: @@ -18810,7 +18810,7 @@ paths: required: false schema: type: string - - &732 + - &733 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -18956,7 +18956,7 @@ paths: parameters: - *75 - *123 - - &733 + - &734 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 @@ -19068,7 +19068,7 @@ paths: - *123 - *125 - *124 - - &734 + - &735 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -19076,7 +19076,7 @@ paths: schema: type: string - *126 - - &735 + - &736 name: sku description: The SKU to query for usage. in: query @@ -25764,12 +25764,12 @@ paths: required: - subject_digests examples: - default: &714 + default: &715 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &715 + withPredicateType: &716 value: subject_digests: - sha256:abc123 @@ -25827,7 +25827,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &716 + default: &717 value: attestations_subject_digests: - sha256:abc: @@ -33718,7 +33718,7 @@ paths: application/json: schema: *22 examples: - default: &540 + default: &541 value: id: 1 account: @@ -33943,7 +33943,7 @@ paths: required: true content: application/json: - schema: &541 + schema: &542 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -36501,7 +36501,7 @@ paths: parameters: - *75 - *254 - - &697 + - &698 name: repo_name description: repo_name parameter in: path @@ -37542,7 +37542,7 @@ paths: - nuget - container - *75 - - &698 + - &699 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -37583,7 +37583,7 @@ paths: default: *261 '403': *29 '401': *25 - '400': &700 + '400': &701 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -39573,7 +39573,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &788 + properties: &789 id: type: number description: The unique identifier of the status update. @@ -39621,7 +39621,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &789 + required: &790 - id - node_id - created_at @@ -40061,7 +40061,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: &591 + auto_merge: &592 title: Auto merge description: The status of auto merging a pull request. type: object @@ -40439,7 +40439,7 @@ paths: - updated_at - project_url examples: - default: &719 + default: &720 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40616,7 +40616,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &720 + items: &721 type: object properties: name: @@ -40653,7 +40653,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &721 + iteration_configuration: &722 type: object description: The configuration for iteration fields. properties: @@ -40703,7 +40703,7 @@ paths: value: name: Due date data_type: date - single_select_field: &722 + single_select_field: &723 summary: Create a single select field value: name: Priority @@ -40730,7 +40730,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &723 + iteration_field: &724 summary: Create an iteration field value: name: Sprint @@ -40756,7 +40756,7 @@ paths: application/json: schema: *282 examples: - text_field: &724 + text_field: &725 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -40765,7 +40765,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: &725 + number_field: &726 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -40774,7 +40774,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: &726 + date_field: &727 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -40783,7 +40783,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: &727 + single_select_field: &728 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40817,7 +40817,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &728 + iteration_field: &729 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -40863,7 +40863,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *278 - - &729 + - &730 name: field_id description: The unique identifier of the field. in: path @@ -40878,7 +40878,7 @@ paths: application/json: schema: *282 examples: - default: &730 + default: &731 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -42075,7 +42075,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &711 + schema: &712 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -42252,7 +42252,7 @@ paths: parameters: - *278 - *75 - - &731 + - &732 name: view_number description: The number that identifies the project view. in: path @@ -44219,7 +44219,7 @@ paths: - *75 - *17 - *19 - - &613 + - &614 name: targets description: | A comma-separated list of rule targets to filter by. @@ -44500,7 +44500,7 @@ paths: - repository_property rules: type: array - items: &614 + items: &615 title: Repository Rule type: object description: A repository rule. @@ -44562,7 +44562,7 @@ paths: type: string enum: - required_linear_history - - &612 + - &613 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -45464,7 +45464,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *75 - - &615 + - &616 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 @@ -45479,7 +45479,7 @@ paths: in: query schema: type: string - - &616 + - &617 name: time_period description: |- The time period to filter by. @@ -45495,14 +45495,14 @@ paths: - week - month default: day - - &617 + - &618 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 - - &618 + - &619 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -45522,7 +45522,7 @@ paths: description: Response content: application/json: - schema: &619 + schema: &620 title: Rule Suites description: Response type: array @@ -45577,7 +45577,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &620 + default: &621 value: - id: 21 actor_id: 12 @@ -45621,7 +45621,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *75 - - &621 + - &622 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -45637,7 +45637,7 @@ paths: description: Response content: application/json: - schema: &622 + schema: &623 title: Rule Suite description: Response type: object @@ -45736,7 +45736,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &623 + default: &624 value: id: 21 actor_id: 12 @@ -45983,7 +45983,7 @@ paths: type: string format: date-time examples: - default: &625 + default: &626 value: - version_id: 3 actor: @@ -46036,7 +46036,7 @@ paths: description: Response content: application/json: - schema: &626 + schema: &627 allOf: - *327 - type: object @@ -46108,7 +46108,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *75 - - &627 + - &628 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -46119,7 +46119,7 @@ paths: enum: - open - resolved - - &628 + - &629 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -46129,7 +46129,7 @@ paths: required: false schema: type: string - - &629 + - &630 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -46140,7 +46140,7 @@ paths: required: false schema: type: string - - &630 + - &631 name: exclude_providers in: query description: |- @@ -46151,7 +46151,7 @@ paths: required: false schema: type: string - - &631 + - &632 name: providers in: query description: |- @@ -46162,7 +46162,7 @@ paths: required: false schema: type: string - - &632 + - &633 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -46171,7 +46171,7 @@ paths: required: false schema: type: string - - &633 + - &634 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -46190,7 +46190,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &634 + - &635 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. @@ -46205,7 +46205,7 @@ paths: - *61 - *19 - *17 - - &635 + - &636 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 @@ -46215,7 +46215,7 @@ paths: required: false schema: type: string - - &636 + - &637 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 @@ -46225,7 +46225,7 @@ paths: required: false schema: type: string - - &637 + - &638 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -46234,7 +46234,7 @@ paths: required: false schema: type: string - - &638 + - &639 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -46243,7 +46243,7 @@ paths: schema: type: boolean default: false - - &639 + - &640 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -46252,7 +46252,7 @@ paths: schema: type: boolean default: false - - &640 + - &641 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -46287,14 +46287,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &641 + state: &642 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: &642 + resolution: &643 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -46411,8 +46411,8 @@ paths: pull request. ' - oneOf: &643 - - &645 + oneOf: &644 + - &646 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -46470,7 +46470,7 @@ paths: - blob_url - commit_sha - commit_url - - &646 + - &647 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. @@ -46525,7 +46525,7 @@ paths: - page_url - commit_sha - commit_url - - &647 + - &648 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -46545,7 +46545,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &648 + - &649 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -46565,7 +46565,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &649 + - &650 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -46585,7 +46585,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &650 + - &651 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -46599,7 +46599,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &651 + - &652 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -46613,7 +46613,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &652 + - &653 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -46627,7 +46627,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &653 + - &654 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. @@ -46647,7 +46647,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &654 + - &655 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. @@ -46667,7 +46667,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &655 + - &656 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. @@ -46687,7 +46687,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &656 + - &657 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. @@ -46707,7 +46707,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &657 + - &658 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 request. @@ -47226,7 +47226,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 description: A repository security advisory. type: object properties: @@ -47517,7 +47517,7 @@ paths: - private_fork additionalProperties: false examples: - default: &662 + default: &663 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -49504,7 +49504,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &678 + response-if-user-is-a-team-maintainer: &679 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -49569,7 +49569,7 @@ paths: application/json: schema: *341 examples: - response-if-users-membership-with-team-is-now-pending: &679 + response-if-users-membership-with-team-is-now-pending: &680 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -49683,7 +49683,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &680 + schema: &681 title: Team Repository description: A team's access to a repository. type: object @@ -50340,7 +50340,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: &681 + response-if-child-teams-exist: &682 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -51794,11 +51794,11 @@ paths: '302': description: Response headers: - Location: + Location: &504 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': &544 + '410': &545 description: Gone content: application/json: @@ -55409,7 +55409,7 @@ paths: items: type: object properties: - type: &510 + type: &511 type: string description: The type of reviewer. enum: @@ -55543,12 +55543,12 @@ paths: application/json: schema: type: array - items: &505 + items: &506 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &751 + properties: &752 url: type: string format: uri @@ -55633,7 +55633,7 @@ paths: nullable: true properties: *80 required: *81 - required: &752 + required: &753 - id - node_id - sha @@ -55649,7 +55649,7 @@ paths: - created_at - updated_at examples: - default: &506 + default: &507 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -56032,7 +56032,7 @@ paths: application/json: schema: *387 examples: - default: &523 + default: &524 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -56251,7 +56251,7 @@ paths: application/json: schema: *391 examples: - default: &524 + default: &525 value: name: USERNAME value: octocat @@ -58056,7 +58056,7 @@ paths: required: - sha - url - verification: &530 + verification: &531 title: Verification type: object properties: @@ -61242,7 +61242,7 @@ paths: check. type: array items: *90 - deployment: &744 + deployment: &745 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -62154,7 +62154,7 @@ paths: type: string format: date-time nullable: true - head_commit: &772 + head_commit: &773 title: Simple Commit description: A commit. type: object @@ -66425,14 +66425,14 @@ paths: type: integer machines: type: array - items: &687 + items: &688 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *464 required: *465 examples: - default: &688 + default: &689 value: total_count: 2 machines: @@ -67115,7 +67115,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &543 + schema: &544 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -67819,7 +67819,7 @@ paths: - content - created_at examples: - default: &547 + default: &548 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -67956,7 +67956,7 @@ paths: - *342 - *343 - *101 - - &548 + - &549 name: reaction_id description: The unique identifier of the reaction. in: path @@ -68070,7 +68070,7 @@ paths: type: array items: *476 examples: - default: &598 + default: &599 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68361,7 +68361,7 @@ paths: type: array items: *480 examples: - default: &590 + default: &591 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -68919,7 +68919,7 @@ paths: application/json: schema: *476 examples: - default: &577 + default: &578 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69578,7 +69578,7 @@ paths: application/json: schema: type: array - items: &666 + items: &667 title: Status description: The status of a commit. type: object @@ -70547,7 +70547,7 @@ paths: - size - type - url - - &603 + - &604 title: Content File description: Content File type: object @@ -71140,7 +71140,7 @@ paths: schema: oneOf: - *3 - - &525 + - &526 description: Repository rule violation was detected type: object properties: @@ -71161,7 +71161,7 @@ paths: items: type: object properties: - placeholder_id: &658 + placeholder_id: &659 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -72732,6 +72732,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: + - *342 + - *343 + - 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: *504 + '202': + description: SBOM is still being processed, no content is returned. + '404': *6 + '403': *29 + 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: + - *342 + - *343 + 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': *29 + 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 @@ -72824,7 +72895,7 @@ paths: - version - url additionalProperties: false - metadata: &504 + metadata: &505 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -72857,7 +72928,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *504 + metadata: *505 resolved: type: object description: A collection of resolved package dependencies. @@ -72870,7 +72941,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *504 + metadata: *505 relationship: type: string description: A notation of whether a dependency is requested @@ -73040,9 +73111,9 @@ paths: application/json: schema: type: array - items: *505 + items: *506 examples: - default: *506 + default: *507 headers: Link: *67 x-github: @@ -73190,7 +73261,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *506 examples: simple-example: summary: Simple example @@ -73265,7 +73336,7 @@ paths: parameters: - *342 - *343 - - &507 + - &508 name: deployment_id description: deployment_id parameter in: path @@ -73277,7 +73348,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *506 examples: default: value: @@ -73344,7 +73415,7 @@ paths: parameters: - *342 - *343 - - *507 + - *508 responses: '204': description: Response @@ -73368,7 +73439,7 @@ paths: parameters: - *342 - *343 - - *507 + - *508 - *17 - *19 responses: @@ -73378,7 +73449,7 @@ paths: application/json: schema: type: array - items: &508 + items: &509 title: Deployment Status description: The status of a deployment. type: object @@ -73541,7 +73612,7 @@ paths: parameters: - *342 - *343 - - *507 + - *508 requestBody: required: true content: @@ -73616,9 +73687,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: &509 + default: &510 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -73676,7 +73747,7 @@ paths: parameters: - *342 - *343 - - *507 + - *508 - name: status_id in: path required: true @@ -73687,9 +73758,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: *509 + default: *510 '404': *6 x-github: githubCloudOnly: false @@ -73790,7 +73861,7 @@ paths: type: integer environments: type: array - items: &511 + items: &512 title: Environment description: Details of a deployment environment type: object @@ -73842,7 +73913,7 @@ paths: type: type: string example: wait_timer - wait_timer: &513 + wait_timer: &514 type: integer example: 30 description: The amount of time to delay a job after @@ -73879,7 +73950,7 @@ paths: items: type: object properties: - type: *510 + type: *511 reviewer: anyOf: - *4 @@ -73903,7 +73974,7 @@ paths: - id - node_id - type - deployment_branch_policy: &514 + deployment_branch_policy: &515 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -74021,7 +74092,7 @@ paths: parameters: - *342 - *343 - - &512 + - &513 name: environment_name in: path required: true @@ -74034,9 +74105,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: &515 + default: &516 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -74122,7 +74193,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 requestBody: required: false content: @@ -74131,7 +74202,7 @@ paths: type: object nullable: true properties: - wait_timer: *513 + wait_timer: *514 prevent_self_review: type: boolean example: false @@ -74148,13 +74219,13 @@ paths: items: type: object properties: - type: *510 + type: *511 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *514 + deployment_branch_policy: *515 additionalProperties: false examples: default: @@ -74174,9 +74245,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *515 + default: *516 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -74202,7 +74273,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 responses: '204': description: Default response @@ -74229,7 +74300,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *17 - *19 responses: @@ -74247,7 +74318,7 @@ paths: example: 2 branch_policies: type: array - items: &516 + items: &517 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -74306,7 +74377,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 requestBody: required: true content: @@ -74352,9 +74423,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: - example-wildcard: &517 + example-wildcard: &518 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -74398,8 +74469,8 @@ paths: parameters: - *342 - *343 - - *512 - - &518 + - *513 + - &519 name: branch_policy_id in: path required: true @@ -74411,9 +74482,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: - default: *517 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74434,8 +74505,8 @@ paths: parameters: - *342 - *343 - - *512 - - *518 + - *513 + - *519 requestBody: required: true content: @@ -74463,9 +74534,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: - default: *517 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74486,8 +74557,8 @@ paths: parameters: - *342 - *343 - - *512 - - *518 + - *513 + - *519 responses: '204': description: Response @@ -74512,7 +74583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *512 + - *513 - *343 - *342 responses: @@ -74530,7 +74601,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &519 + items: &520 title: Deployment protection rule description: Deployment protection rule type: object @@ -74549,7 +74620,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &520 + app: &521 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -74648,7 +74719,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: - - *512 + - *513 - *343 - *342 requestBody: @@ -74671,9 +74742,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *519 + schema: *520 examples: - default: &521 + default: &522 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -74708,7 +74779,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: - - *512 + - *513 - *343 - *342 - *19 @@ -74729,7 +74800,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *520 + items: *521 examples: default: value: @@ -74766,8 +74837,8 @@ paths: parameters: - *342 - *343 - - *512 - - &522 + - *513 + - &523 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -74779,9 +74850,9 @@ paths: description: Response content: application/json: - schema: *519 + schema: *520 examples: - default: *521 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74802,10 +74873,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *512 + - *513 - *343 - *342 - - *522 + - *523 responses: '204': description: Response @@ -74833,7 +74904,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *17 - *19 responses: @@ -74880,7 +74951,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 responses: '200': description: Response @@ -74912,7 +74983,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *168 responses: '200': @@ -74921,7 +74992,7 @@ paths: application/json: schema: *387 examples: - default: *523 + default: *524 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74945,7 +75016,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *168 requestBody: required: true @@ -75005,7 +75076,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *168 responses: '204': @@ -75033,7 +75104,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *358 - *19 responses: @@ -75078,7 +75149,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 requestBody: required: true content: @@ -75132,7 +75203,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *171 responses: '200': @@ -75141,7 +75212,7 @@ paths: application/json: schema: *391 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75165,7 +75236,7 @@ paths: - *342 - *343 - *171 - - *512 + - *513 requestBody: required: true content: @@ -75210,7 +75281,7 @@ paths: - *342 - *343 - *171 - - *512 + - *513 responses: '204': description: Response @@ -75578,7 +75649,7 @@ paths: schema: oneOf: - *129 - - *525 + - *526 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75813,7 +75884,7 @@ paths: description: Response content: application/json: - schema: &526 + schema: &527 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -76035,7 +76106,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *527 examples: default: value: @@ -76093,7 +76164,7 @@ paths: parameters: - *342 - *343 - - &527 + - &528 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. @@ -76110,7 +76181,7 @@ paths: application/json: schema: type: array - items: &528 + items: &529 title: Git Reference description: Git references within a repository type: object @@ -76187,15 +76258,15 @@ paths: parameters: - *342 - *343 - - *527 + - *528 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &529 + default: &530 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -76254,9 +76325,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -76284,7 +76355,7 @@ paths: parameters: - *342 - *343 - - *527 + - *528 requestBody: required: true content: @@ -76313,9 +76384,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 '422': *15 '409': *54 x-github: @@ -76335,7 +76406,7 @@ paths: parameters: - *342 - *343 - - *527 + - *528 responses: '204': description: Response @@ -76458,7 +76529,7 @@ paths: description: Response content: application/json: - schema: &531 + schema: &532 title: Git Tag description: Metadata for a Git tag type: object @@ -76509,7 +76580,7 @@ paths: - sha - type - url - verification: *530 + verification: *531 required: - sha - url @@ -76519,7 +76590,7 @@ paths: - tag - message examples: - default: &532 + default: &533 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -76604,9 +76675,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: - default: *532 + default: *533 '404': *6 '409': *54 x-github: @@ -76704,7 +76775,7 @@ paths: description: Response content: application/json: - schema: &533 + schema: &534 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -76824,7 +76895,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: default-response: summary: Default response @@ -76894,7 +76965,7 @@ paths: application/json: schema: type: array - items: &534 + items: &535 title: Webhook description: Webhooks for repositories. type: object @@ -76948,7 +77019,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &780 + last_response: &781 title: Hook Response type: object properties: @@ -77075,9 +77146,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: &535 + default: &536 value: type: Repository id: 12345678 @@ -77133,9 +77204,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: *535 + default: *536 '404': *6 x-github: githubCloudOnly: false @@ -77202,9 +77273,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: *535 + default: *536 '422': *15 '404': *6 x-github: @@ -77600,7 +77671,7 @@ paths: description: Response content: application/json: - schema: &536 + schema: &537 title: Import description: A repository import from an external source. type: object @@ -77699,7 +77770,7 @@ paths: - html_url - authors_url examples: - default: &539 + default: &540 value: vcs: subversion use_lfs: true @@ -77715,7 +77786,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': &537 + '503': &538 description: Unavailable due to service under maintenance. content: application/json: @@ -77793,7 +77864,7 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: default: value: @@ -77818,7 +77889,7 @@ paths: type: string '422': *15 '404': *6 - '503': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77896,7 +77967,7 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: example-1: summary: Example 1 @@ -77944,7 +78015,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': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77972,7 +78043,7 @@ paths: responses: '204': description: Response - '503': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78000,7 +78071,7 @@ paths: parameters: - *342 - *343 - - &709 + - &710 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -78014,7 +78085,7 @@ paths: application/json: schema: type: array - items: &538 + items: &539 title: Porter Author description: Porter Author type: object @@ -78068,7 +78139,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': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78124,7 +78195,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -78137,7 +78208,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78203,7 +78274,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78259,11 +78330,11 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: - default: *539 + default: *540 '422': *15 - '503': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78295,7 +78366,7 @@ paths: application/json: schema: *22 examples: - default: *540 + default: *541 '301': *346 '404': *6 x-github: @@ -78330,7 +78401,7 @@ paths: properties: {} additionalProperties: false examples: - default: &542 + default: &543 value: limit: collaborators_only origin: repository @@ -78361,7 +78432,7 @@ paths: required: true content: application/json: - schema: *541 + schema: *542 examples: default: summary: Example request body @@ -78375,7 +78446,7 @@ paths: application/json: schema: *234 examples: - default: *542 + default: *543 '409': description: Response x-github: @@ -78432,9 +78503,9 @@ paths: application/json: schema: type: array - items: *543 + items: *544 examples: - default: &702 + default: &703 value: - id: 1 repository: @@ -78596,7 +78667,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *544 examples: default: value: @@ -78834,7 +78905,7 @@ paths: type: array items: *85 examples: - default: &555 + default: &556 value: - id: 1 node_id: MDU6SXNzdWUx @@ -79097,7 +79168,7 @@ paths: application/json: schema: *85 examples: - default: &552 + default: &553 value: id: 1 node_id: MDU6SXNzdWUx @@ -79254,7 +79325,7 @@ paths: '422': *15 '503': *121 '404': *6 - '410': *544 + '410': *545 x-github: triggersNotification: true githubCloudOnly: false @@ -79304,9 +79375,9 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: &554 + default: &555 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -79372,9 +79443,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: &546 + default: &547 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -79453,9 +79524,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: *546 + default: *547 '422': *15 x-github: githubCloudOnly: false @@ -79511,7 +79582,7 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: default: value: @@ -79567,7 +79638,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *544 + '410': *545 '422': *15 x-github: githubCloudOnly: false @@ -79593,7 +79664,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *544 + '410': *545 '503': *121 x-github: githubCloudOnly: false @@ -79641,7 +79712,7 @@ paths: type: array items: *474 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 @@ -79730,7 +79801,7 @@ paths: - *342 - *343 - *101 - - *548 + - *549 responses: '204': description: Response @@ -79761,7 +79832,7 @@ paths: application/json: schema: type: array - items: &551 + items: &552 title: Issue Event description: Issue Event type: object @@ -79804,8 +79875,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *549 - required: *550 + properties: *550 + required: *551 nullable: true label: title: Issue Event Label @@ -80125,7 +80196,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -80318,7 +80389,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *544 + '410': *545 '403': *29 x-github: githubCloudOnly: false @@ -80354,7 +80425,7 @@ paths: parameters: - *342 - *343 - - &553 + - &554 name: issue_number description: The number that identifies the issue. in: path @@ -80370,7 +80441,7 @@ paths: examples: default: summary: Issue - value: *552 + value: *553 pinned_comment: summary: Issue with pinned comment value: @@ -80571,7 +80642,7 @@ paths: state_reason: completed '301': *346 '404': *6 - '410': *544 + '410': *545 '304': *37 x-github: githubCloudOnly: false @@ -80598,7 +80669,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: false content: @@ -80724,13 +80795,13 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 '422': *15 '503': *121 '403': *29 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80750,7 +80821,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: false content: @@ -80778,7 +80849,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80796,7 +80867,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: content: application/json: @@ -80823,7 +80894,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80847,7 +80918,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - name: assignee in: path required: true @@ -80889,7 +80960,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *92 - *17 - *19 @@ -80900,13 +80971,13 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *554 + default: *555 headers: Link: *67 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80937,7 +81008,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -80959,16 +81030,16 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: *546 + default: *547 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *544 + '410': *545 '422': *15 '404': *6 x-github: @@ -80998,7 +81069,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -81010,12 +81081,12 @@ paths: type: array items: *85 examples: - default: *555 + default: *556 headers: Link: *67 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81045,7 +81116,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -81069,7 +81140,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -81077,7 +81148,7 @@ paths: type: string '301': *346 '403': *29 - '410': *544 + '410': *545 '422': *15 '404': *6 x-github: @@ -81110,7 +81181,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -81124,13 +81195,13 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 '301': *346 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *544 + '410': *545 x-github: triggersNotification: true githubCloudOnly: false @@ -81158,7 +81229,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -81170,12 +81241,12 @@ paths: type: array items: *85 examples: - default: *555 + default: *556 headers: Link: *67 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81194,7 +81265,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -81208,7 +81279,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &558 + - &559 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -81262,7 +81333,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &560 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -81398,7 +81469,7 @@ paths: - performed_via_github_app - assignee - assigner - - &560 + - &561 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -81449,7 +81520,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &562 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -81500,7 +81571,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &562 + - &563 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -81554,7 +81625,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &563 + - &564 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -81601,7 +81672,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &565 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -81648,7 +81719,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &566 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -81708,7 +81779,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &567 title: Locked Issue Event description: Locked Issue Event type: object @@ -81756,7 +81827,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &568 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -81822,7 +81893,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &568 + - &569 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -81888,7 +81959,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &569 + - &570 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -81954,7 +82025,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &570 + - &571 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -82045,7 +82116,7 @@ paths: color: red headers: Link: *67 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82064,7 +82135,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -82074,9 +82145,9 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: - default: &672 + default: &673 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -82102,7 +82173,7 @@ paths: Link: *67 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82121,7 +82192,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -82133,7 +82204,7 @@ paths: type: array items: *84 examples: - default: &557 + default: &558 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82153,7 +82224,7 @@ paths: Link: *67 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82171,7 +82242,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: false content: @@ -82216,10 +82287,10 @@ paths: type: array items: *84 examples: - default: *557 + default: *558 '301': *346 '404': *6 - '410': *544 + '410': *545 '422': *15 x-github: githubCloudOnly: false @@ -82238,7 +82309,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: false content: @@ -82300,10 +82371,10 @@ paths: type: array items: *84 examples: - default: *557 + default: *558 '301': *346 '404': *6 - '410': *544 + '410': *545 '422': *15 x-github: githubCloudOnly: false @@ -82322,13 +82393,13 @@ paths: parameters: - *342 - *343 - - *553 + - *554 responses: '204': description: Response '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82349,7 +82420,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - name: name in: path required: true @@ -82375,7 +82446,7 @@ paths: default: true '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82397,7 +82468,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: false content: @@ -82425,7 +82496,7 @@ paths: '204': description: Response '403': *29 - '410': *544 + '410': *545 '404': *6 '422': *15 x-github: @@ -82445,7 +82516,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 responses: '204': description: Response @@ -82477,7 +82548,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 responses: '200': description: Response @@ -82485,10 +82556,10 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82507,7 +82578,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - 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. @@ -82535,11 +82606,11 @@ paths: type: array items: *474 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82559,7 +82630,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -82624,8 +82695,8 @@ paths: parameters: - *342 - *343 - - *553 - - *548 + - *554 + - *549 responses: '204': description: Response @@ -82656,7 +82727,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -82680,7 +82751,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -82715,7 +82786,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -82727,11 +82798,11 @@ paths: type: array items: *85 examples: - default: *555 + default: *556 headers: Link: *67 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82761,7 +82832,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -82790,14 +82861,14 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *544 + '410': *545 '422': *15 '404': *6 x-github: @@ -82819,7 +82890,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -82852,7 +82923,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 '403': *29 '404': *6 '422': *7 @@ -82876,7 +82947,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -82891,7 +82962,6 @@ paths: description: Timeline Event type: object anyOf: - - *558 - *559 - *560 - *561 @@ -82904,6 +82974,7 @@ paths: - *568 - *569 - *570 + - *571 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -82964,8 +83035,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *571 - required: *572 + properties: *572 + required: *573 nullable: true required: - event @@ -83220,7 +83291,7 @@ paths: type: string comments: type: array - items: &592 + items: &593 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83724,7 +83795,7 @@ paths: headers: Link: *67 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83752,7 +83823,7 @@ paths: application/json: schema: type: array - items: &573 + items: &574 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -83855,9 +83926,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: &574 + default: &575 value: id: 1 key: ssh-rsa AAA... @@ -83893,7 +83964,7 @@ paths: parameters: - *342 - *343 - - &575 + - &576 name: key_id description: The unique identifier of the key. in: path @@ -83905,9 +83976,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *574 + default: *575 '404': *6 x-github: githubCloudOnly: false @@ -83927,7 +83998,7 @@ paths: parameters: - *342 - *343 - - *575 + - *576 responses: '204': description: Response @@ -83960,7 +84031,7 @@ paths: type: array items: *84 examples: - default: *557 + default: *558 headers: Link: *67 '404': *6 @@ -84020,7 +84091,7 @@ paths: application/json: schema: *84 examples: - default: &576 + default: &577 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84066,7 +84137,7 @@ paths: application/json: schema: *84 examples: - default: *576 + default: *577 '404': *6 x-github: githubCloudOnly: false @@ -84466,7 +84537,7 @@ paths: application/json: schema: *476 examples: - default: *577 + default: *578 '204': description: Response when already merged '404': @@ -84533,7 +84604,7 @@ paths: application/json: schema: type: array - items: &578 + items: &579 title: Milestone description: A collection of related issues and pull requests. type: object @@ -84635,9 +84706,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: &579 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -84698,7 +84769,7 @@ paths: parameters: - *342 - *343 - - &580 + - &581 name: milestone_number description: The number that identifies the milestone. in: path @@ -84710,9 +84781,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -84731,7 +84802,7 @@ paths: parameters: - *342 - *343 - - *580 + - *581 requestBody: required: false content: @@ -84769,9 +84840,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *579 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84789,7 +84860,7 @@ paths: parameters: - *342 - *343 - - *580 + - *581 responses: '204': description: Response @@ -84812,7 +84883,7 @@ paths: parameters: - *342 - *343 - - *580 + - *581 - *17 - *19 responses: @@ -84824,7 +84895,7 @@ paths: type: array items: *84 examples: - default: *557 + default: *558 headers: Link: *67 x-github: @@ -84845,10 +84916,10 @@ paths: parameters: - *342 - *343 - - *581 - *582 - - *92 - *583 + - *92 + - *584 - *17 - *19 responses: @@ -84860,7 +84931,7 @@ paths: type: array items: *112 examples: - default: *584 + default: *585 headers: Link: *67 x-github: @@ -84950,7 +85021,7 @@ paths: description: Response content: application/json: - schema: &585 + schema: &586 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -85075,7 +85146,7 @@ paths: - custom_404 - public examples: - default: &586 + default: &587 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -85171,9 +85242,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 '409': *54 x-github: @@ -85334,7 +85405,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Page Build description: Page Build type: object @@ -85481,9 +85552,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: &588 + default: &589 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -85543,9 +85614,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *588 + default: *589 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85673,7 +85744,7 @@ paths: parameters: - *342 - *343 - - &589 + - &590 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -85733,7 +85804,7 @@ paths: parameters: - *342 - *343 - - *589 + - *590 responses: '204': *191 '404': *6 @@ -86268,7 +86339,7 @@ paths: type: array items: *480 examples: - default: *590 + default: *591 headers: Link: *67 '304': *37 @@ -86366,7 +86437,7 @@ paths: description: Response content: application/json: - schema: &594 + schema: &595 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -86577,7 +86648,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: *591 + auto_merge: *592 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -86669,7 +86740,7 @@ paths: - merged_by - review_comments examples: - default: &595 + default: &596 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -87226,9 +87297,9 @@ paths: application/json: schema: type: array - items: *592 + items: *593 examples: - default: &597 + default: &598 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87313,9 +87384,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: &593 + default: &594 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87414,9 +87485,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87485,7 +87556,7 @@ paths: type: array items: *474 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 @@ -87574,7 +87645,7 @@ paths: - *342 - *343 - *101 - - *548 + - *549 responses: '204': description: Response @@ -87619,7 +87690,7 @@ paths: parameters: - *342 - *343 - - &596 + - &597 name: pull_number description: The number that identifies the pull request. in: path @@ -87632,9 +87703,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *594 + schema: *595 examples: - default: *595 + default: *596 '304': *37 '404': *6 '406': @@ -87671,7 +87742,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: false content: @@ -87713,9 +87784,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: *595 + default: *596 '422': *15 '403': *29 x-github: @@ -87739,7 +87810,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: true content: @@ -87841,7 +87912,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 - *109 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -87862,9 +87933,9 @@ paths: application/json: schema: type: array - items: *592 + items: *593 examples: - default: *597 + default: *598 headers: Link: *67 x-github: @@ -87899,7 +87970,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: true content: @@ -88004,7 +88075,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: example-for-a-multi-line-comment: value: @@ -88094,7 +88165,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 - *101 requestBody: required: true @@ -88117,7 +88188,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: default: value: @@ -88205,7 +88276,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 - *17 - *19 responses: @@ -88217,7 +88288,7 @@ paths: type: array items: *476 examples: - default: *598 + default: *599 headers: Link: *67 x-github: @@ -88249,7 +88320,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 - *17 - *19 responses: @@ -88299,7 +88370,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 responses: '204': description: Response if pull request has been merged @@ -88324,7 +88395,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: false content: @@ -88437,7 +88508,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 responses: '200': description: Response @@ -88514,7 +88585,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: false content: @@ -89089,7 +89160,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: true content: @@ -89630,7 +89701,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 - *17 - *19 responses: @@ -89640,7 +89711,7 @@ paths: application/json: schema: type: array - items: &599 + items: &600 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -89793,7 +89864,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: false content: @@ -89879,9 +89950,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: &601 + default: &602 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89946,8 +90017,8 @@ paths: parameters: - *342 - *343 - - *596 - - &600 + - *597 + - &601 name: review_id description: The unique identifier of the review. in: path @@ -89959,9 +90030,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: &602 + default: &603 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90022,8 +90093,8 @@ paths: parameters: - *342 - *343 - - *596 - - *600 + - *597 + - *601 requestBody: required: true content: @@ -90046,7 +90117,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -90110,16 +90181,16 @@ paths: parameters: - *342 - *343 - - *596 - - *600 + - *597 + - *601 responses: '200': description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: *601 + default: *602 '422': *7 '404': *6 x-github: @@ -90148,8 +90219,8 @@ paths: parameters: - *342 - *343 - - *596 - - *600 + - *597 + - *601 - *17 - *19 responses: @@ -90386,8 +90457,8 @@ paths: parameters: - *342 - *343 - - *596 - - *600 + - *597 + - *601 requestBody: required: true content: @@ -90415,7 +90486,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -90480,8 +90551,8 @@ paths: parameters: - *342 - *343 - - *596 - - *600 + - *597 + - *601 requestBody: required: true content: @@ -90516,9 +90587,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: *602 + default: *603 '404': *6 '422': *7 '403': *29 @@ -90542,7 +90613,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: false content: @@ -90619,9 +90690,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: &604 + default: &605 value: type: file encoding: base64 @@ -90684,9 +90755,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: *604 + default: *605 '404': *6 '422': *15 x-github: @@ -90719,7 +90790,7 @@ paths: application/json: schema: type: array - items: *605 + items: *606 examples: default: value: @@ -90890,9 +90961,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: &609 + default: &610 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -90999,7 +91070,7 @@ paths: parameters: - *342 - *343 - - &607 + - &608 name: asset_id description: The unique identifier of the asset. in: path @@ -91011,9 +91082,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: &608 + default: &609 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 @@ -91066,7 +91137,7 @@ paths: parameters: - *342 - *343 - - *607 + - *608 requestBody: required: false content: @@ -91094,9 +91165,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: *608 + default: *609 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91114,7 +91185,7 @@ paths: parameters: - *342 - *343 - - *607 + - *608 responses: '204': description: Response @@ -91232,9 +91303,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *609 + default: *610 '404': *6 x-github: githubCloudOnly: false @@ -91266,9 +91337,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *609 + default: *610 '404': *6 x-github: githubCloudOnly: false @@ -91292,7 +91363,7 @@ paths: parameters: - *342 - *343 - - &610 + - &611 name: release_id description: The unique identifier of the release. in: path @@ -91306,9 +91377,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: *605 + schema: *606 examples: - default: *609 + default: *610 '401': description: Unauthorized x-github: @@ -91328,7 +91399,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 requestBody: required: false content: @@ -91392,9 +91463,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *609 + default: *610 '404': description: Not Found if the discussion category name is invalid content: @@ -91417,7 +91488,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 responses: '204': description: Response @@ -91440,7 +91511,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 - *17 - *19 responses: @@ -91450,7 +91521,7 @@ paths: application/json: schema: type: array - items: *606 + items: *607 examples: default: value: @@ -91533,7 +91604,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 - name: name in: query required: true @@ -91559,7 +91630,7 @@ paths: description: Response for successful upload content: application/json: - schema: *606 + schema: *607 examples: response-for-successful-upload: value: @@ -91616,7 +91687,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 - 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. @@ -91642,7 +91713,7 @@ paths: type: array items: *474 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 @@ -91665,7 +91736,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 requestBody: required: true content: @@ -91728,8 +91799,8 @@ paths: parameters: - *342 - *343 - - *610 - - *548 + - *611 + - *549 responses: '204': description: Response @@ -91772,7 +91843,7 @@ paths: oneOf: - allOf: - *303 - - &611 + - &612 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -91793,67 +91864,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *304 - - *611 + - *612 - allOf: - *305 - - *611 + - *612 - allOf: - *306 - - *611 + - *612 - allOf: + - *613 - *612 - - *611 - allOf: - *307 - - *611 + - *612 - allOf: - *308 - - *611 + - *612 - allOf: - *309 - - *611 + - *612 - allOf: - *310 - - *611 + - *612 - allOf: - *311 - - *611 + - *612 - allOf: - *312 - - *611 + - *612 - allOf: - *313 - - *611 + - *612 - allOf: - *314 - - *611 + - *612 - allOf: - *315 - - *611 + - *612 - allOf: - *316 - - *611 + - *612 - allOf: - *317 - - *611 + - *612 - allOf: - *318 - - *611 + - *612 - allOf: - *319 - - *611 + - *612 - allOf: - *320 - - *611 + - *612 - allOf: - *321 - - *611 + - *612 - allOf: - *322 - - *611 + - *612 - allOf: - *323 - - *611 + - *612 examples: default: value: @@ -91904,7 +91975,7 @@ paths: schema: type: boolean default: true - - *613 + - *614 responses: '200': description: Response @@ -91989,7 +92060,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *614 + items: *615 required: - name - enforcement @@ -92022,7 +92093,7 @@ paths: application/json: schema: *324 examples: - default: &624 + default: &625 value: id: 42 name: super cool ruleset @@ -92072,10 +92143,10 @@ paths: parameters: - *342 - *343 - - *615 - *616 - *617 - *618 + - *619 - *17 - *19 responses: @@ -92083,9 +92154,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: - default: *620 + default: *621 '404': *6 '500': *55 x-github: @@ -92108,15 +92179,15 @@ paths: parameters: - *342 - *343 - - *621 + - *622 responses: '200': description: Response content: application/json: - schema: *622 + schema: *623 examples: - default: *623 + default: *624 '404': *6 '500': *55 x-github: @@ -92167,7 +92238,7 @@ paths: application/json: schema: *324 examples: - default: *624 + default: *625 '404': *6 '500': *55 put: @@ -92220,7 +92291,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *614 + items: *615 examples: default: value: @@ -92250,7 +92321,7 @@ paths: application/json: schema: *324 examples: - default: *624 + default: *625 '404': *6 '422': *15 '500': *55 @@ -92312,7 +92383,7 @@ paths: type: array items: *327 examples: - default: *625 + default: *626 '404': *6 '500': *55 x-github: @@ -92350,7 +92421,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -92407,7 +92478,6 @@ paths: parameters: - *342 - *343 - - *627 - *628 - *629 - *630 @@ -92415,15 +92485,16 @@ paths: - *632 - *633 - *634 + - *635 - *61 - *19 - *17 - - *635 - *636 - *637 - *638 - *639 - *640 + - *641 responses: '200': description: Response @@ -92431,7 +92502,7 @@ paths: application/json: schema: type: array - items: &644 + items: &645 type: object properties: number: *178 @@ -92450,8 +92521,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *641 - resolution: *642 + state: *642 + resolution: *643 resolved_at: type: string format: date-time @@ -92557,7 +92628,7 @@ paths: pull request. ' - oneOf: *643 + oneOf: *644 nullable: true has_more_locations: type: boolean @@ -92724,13 +92795,13 @@ paths: - *342 - *343 - *440 - - *640 + - *641 responses: '200': description: Response content: application/json: - schema: *644 + schema: *645 examples: default: value: @@ -92794,8 +92865,8 @@ paths: schema: type: object properties: - state: *641 - resolution: *642 + state: *642 + resolution: *643 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -92831,7 +92902,7 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: default: value: @@ -92939,7 +93010,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &802 + items: &803 type: object properties: type: @@ -92965,7 +93036,6 @@ paths: example: commit details: oneOf: - - *645 - *646 - *647 - *648 @@ -92978,6 +93048,7 @@ paths: - *655 - *656 - *657 + - *658 examples: default: value: @@ -93072,14 +93143,14 @@ paths: schema: type: object properties: - reason: &659 + reason: &660 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *658 + placeholder_id: *659 required: - reason - placeholder_id @@ -93096,7 +93167,7 @@ paths: schema: type: object properties: - reason: *659 + reason: *660 expire_at: type: string format: date-time @@ -93158,7 +93229,7 @@ paths: properties: incremental_scans: type: array - items: &660 + items: &661 description: Information on a single scan performed by secret scanning on the repository type: object @@ -93184,15 +93255,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *660 + items: *661 backfill_scans: type: array - items: *660 + items: *661 custom_pattern_backfill_scans: type: array items: allOf: - - *660 + - *661 - type: object properties: pattern_name: @@ -93205,7 +93276,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *660 + items: *661 examples: default: value: @@ -93315,9 +93386,9 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: - default: *662 + default: *663 '400': *14 '404': *6 x-github: @@ -93501,9 +93572,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: &664 + default: &665 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -93841,7 +93912,7 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: default: value: @@ -93990,15 +94061,15 @@ paths: parameters: - *342 - *343 - - *663 + - *664 responses: '200': description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *664 + default: *665 '403': *29 '404': *6 x-github: @@ -94024,7 +94095,7 @@ paths: parameters: - *342 - *343 - - *663 + - *664 requestBody: required: true content: @@ -94183,10 +94254,10 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *664 - add_credit: *664 + default: *665 + add_credit: *665 '403': *29 '404': *6 '422': @@ -94226,7 +94297,7 @@ paths: parameters: - *342 - *343 - - *663 + - *664 responses: '202': *39 '400': *14 @@ -94255,7 +94326,7 @@ paths: parameters: - *342 - *343 - - *663 + - *664 responses: '202': description: Response @@ -94399,7 +94470,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -94772,7 +94843,7 @@ paths: application/json: schema: type: array - items: *665 + items: *666 examples: default: value: @@ -94860,7 +94931,7 @@ paths: description: Response content: application/json: - schema: *666 + schema: *667 examples: default: value: @@ -94954,7 +95025,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &667 + schema: &668 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -95049,7 +95120,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -95256,7 +95327,7 @@ paths: description: Response content: application/json: - schema: &668 + schema: &669 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -95268,7 +95339,7 @@ paths: required: - names examples: - default: &669 + default: &670 value: names: - octocat @@ -95323,9 +95394,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: *669 + default: *670 '404': *6 '422': *7 x-github: @@ -95348,7 +95419,7 @@ paths: parameters: - *342 - *343 - - &670 + - &671 name: per description: The time frame to display results for. in: query @@ -95377,7 +95448,7 @@ paths: example: 128 clones: type: array - items: &671 + items: &672 title: Traffic type: object properties: @@ -95618,7 +95689,7 @@ paths: parameters: - *342 - *343 - - *670 + - *671 responses: '200': description: Response @@ -95637,7 +95708,7 @@ paths: example: 3782 views: type: array - items: *671 + items: *672 required: - uniques - count @@ -96306,7 +96377,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *149 - - *553 + - *554 requestBody: required: true content: @@ -96370,9 +96441,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *556 + items: *557 examples: - default: *672 + default: *673 '400': *14 '403': *29 '404': *6 @@ -96409,7 +96480,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *149 - - *553 + - *554 requestBody: required: true content: @@ -96474,9 +96545,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *556 + items: *557 examples: - default: *672 + default: *673 '400': *14 '403': *29 '404': *6 @@ -96508,7 +96579,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *149 - - *553 + - *554 - *241 responses: '204': @@ -96651,7 +96722,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &673 + text_matches: &674 title: Search Result Text Matches type: array items: @@ -96813,7 +96884,7 @@ paths: enum: - author-date - committer-date - - &674 + - &675 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 @@ -96904,7 +96975,7 @@ paths: url: type: string format: uri - verification: *530 + verification: *531 required: - author - committer @@ -96941,7 +97012,7 @@ paths: type: number node_id: type: string - text_matches: *673 + text_matches: *674 required: - sha - node_id @@ -97133,7 +97204,7 @@ paths: - interactions - created - updated - - *674 + - *675 - *17 - *19 - name: advanced_search @@ -97247,11 +97318,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: type: string state_reason: @@ -97283,7 +97354,7 @@ paths: type: string format: date-time nullable: true - text_matches: *673 + text_matches: *674 pull_request: type: object properties: @@ -97555,7 +97626,7 @@ paths: enum: - created - updated - - *674 + - *675 - *17 - *19 responses: @@ -97599,7 +97670,7 @@ paths: nullable: true score: type: number - text_matches: *673 + text_matches: *674 required: - id - node_id @@ -97684,7 +97755,7 @@ paths: - forks - help-wanted-issues - updated - - *674 + - *675 - *17 - *19 responses: @@ -97932,7 +98003,7 @@ paths: - admin - pull - push - text_matches: *673 + text_matches: *674 temp_clone_token: type: string allow_merge_commit: @@ -98232,7 +98303,7 @@ paths: type: string format: uri nullable: true - text_matches: *673 + text_matches: *674 related: type: array nullable: true @@ -98423,7 +98494,7 @@ paths: - followers - repositories - joined - - *674 + - *675 - *17 - *19 responses: @@ -98527,7 +98598,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *673 + text_matches: *674 blog: type: string nullable: true @@ -98606,7 +98677,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &677 + - &678 name: team_id description: The unique identifier of the team. in: path @@ -98647,7 +98718,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *677 + - *678 requestBody: required: true content: @@ -98747,7 +98818,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *677 + - *678 responses: '204': description: Response @@ -98776,7 +98847,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *677 + - *678 - *17 - *19 responses: @@ -98814,7 +98885,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *677 + - *678 - name: role description: Filters members returned by their role in the team. in: query @@ -98865,7 +98936,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *677 + - *678 - *71 responses: '204': @@ -98902,7 +98973,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *677 + - *678 - *71 responses: '204': @@ -98942,7 +99013,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *677 + - *678 - *71 responses: '204': @@ -98979,7 +99050,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *677 + - *678 - *71 responses: '200': @@ -98988,7 +99059,7 @@ paths: application/json: schema: *341 examples: - response-if-user-is-a-team-maintainer: *678 + response-if-user-is-a-team-maintainer: *679 '404': *6 x-github: githubCloudOnly: false @@ -99021,7 +99092,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *677 + - *678 - *71 requestBody: required: false @@ -99049,7 +99120,7 @@ paths: application/json: schema: *341 examples: - response-if-users-membership-with-team-is-now-pending: *679 + response-if-users-membership-with-team-is-now-pending: *680 '403': description: Forbidden if team synchronization is set up '422': @@ -99083,7 +99154,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *677 + - *678 - *71 responses: '204': @@ -99111,7 +99182,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *677 + - *678 - *17 - *19 responses: @@ -99153,7 +99224,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *677 + - *678 - *342 - *343 responses: @@ -99161,7 +99232,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *680 + schema: *681 examples: alternative-response-with-extra-repository-information: value: @@ -99312,7 +99383,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *677 + - *678 - *342 - *343 requestBody: @@ -99364,7 +99435,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *677 + - *678 - *342 - *343 responses: @@ -99391,7 +99462,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *677 + - *678 - *17 - *19 responses: @@ -99403,7 +99474,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: *681 + response-if-child-teams-exist: *682 headers: Link: *67 '404': *6 @@ -99436,7 +99507,7 @@ paths: application/json: schema: oneOf: - - &683 + - &684 title: Private User description: Private User type: object @@ -99639,7 +99710,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *682 + - *683 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -99792,7 +99863,7 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: default: value: @@ -100190,7 +100261,7 @@ paths: type: integer secrets: type: array - items: &684 + items: &685 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -100306,7 +100377,7 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: default: value: @@ -100719,7 +100790,7 @@ paths: description: Response content: application/json: - schema: &685 + schema: &686 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -100760,7 +100831,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &686 + default: &687 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -100805,9 +100876,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *686 examples: - default: *686 + default: *687 '404': *6 x-github: githubCloudOnly: false @@ -100844,9 +100915,9 @@ paths: type: integer machines: type: array - items: *687 + items: *688 examples: - default: *688 + default: *689 '304': *37 '500': *55 '401': *25 @@ -101785,7 +101856,7 @@ paths: type: array items: *260 examples: - default: &699 + default: &700 value: - id: 197 name: hello_docker @@ -101886,7 +101957,7 @@ paths: application/json: schema: type: array - items: &689 + items: &690 title: Email description: Email type: object @@ -101951,9 +102022,9 @@ paths: application/json: schema: type: array - items: *689 + items: *690 examples: - default: &701 + default: &702 value: - email: octocat@github.com verified: true @@ -102028,7 +102099,7 @@ paths: application/json: schema: type: array - items: *689 + items: *690 examples: default: value: @@ -102284,7 +102355,7 @@ paths: application/json: schema: type: array - items: &690 + items: &691 title: GPG Key description: A unique encryption key type: object @@ -102415,7 +102486,7 @@ paths: - subkeys - revoked examples: - default: &717 + default: &718 value: - id: 3 name: Octocat's GPG Key @@ -102500,9 +102571,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *691 examples: - default: &691 + default: &692 value: id: 3 name: Octocat's GPG Key @@ -102559,7 +102630,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &692 + - &693 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -102571,9 +102642,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *691 examples: - default: *691 + default: *692 '404': *6 '304': *37 '403': *29 @@ -102596,7 +102667,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *692 + - *693 responses: '204': description: Response @@ -102904,7 +102975,7 @@ paths: required: true content: application/json: - schema: *541 + schema: *542 examples: default: value: @@ -103054,7 +103125,7 @@ paths: application/json: schema: type: array - items: &693 + items: &694 title: Key description: Key type: object @@ -103155,9 +103226,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: &694 + default: &695 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103190,15 +103261,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *575 + - *576 responses: '200': description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: *694 + default: *695 '404': *6 '304': *37 '403': *29 @@ -103221,7 +103292,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *575 + - *576 responses: '204': description: Response @@ -103254,7 +103325,7 @@ paths: application/json: schema: type: array - items: &695 + items: &696 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -103322,7 +103393,7 @@ paths: - account - plan examples: - default: &696 + default: &697 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -103384,9 +103455,9 @@ paths: application/json: schema: type: array - items: *695 + items: *696 examples: - default: *696 + default: *697 headers: Link: *67 '304': *37 @@ -104395,7 +104466,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *254 - - *697 + - *698 responses: '204': description: Response @@ -104510,7 +104581,7 @@ paths: - docker - nuget - container - - *698 + - *699 - *19 - *17 responses: @@ -104522,8 +104593,8 @@ paths: type: array items: *260 examples: - default: *699 - '400': *700 + default: *700 + '400': *701 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104552,7 +104623,7 @@ paths: application/json: schema: *260 examples: - default: &718 + default: &719 value: id: 40201 name: octo-name @@ -104914,9 +104985,9 @@ paths: application/json: schema: type: array - items: *689 + items: *690 examples: - default: *701 + default: *702 headers: Link: *67 '304': *37 @@ -105029,7 +105100,7 @@ paths: type: array items: *79 examples: - default: &708 + default: &709 summary: Default response value: - id: 1296269 @@ -105373,9 +105444,9 @@ paths: application/json: schema: type: array - items: *543 + items: *544 examples: - default: *702 + default: *703 headers: Link: *67 '304': *37 @@ -105454,7 +105525,7 @@ paths: application/json: schema: type: array - items: &703 + items: &704 title: Social account description: Social media account type: object @@ -105469,7 +105540,7 @@ paths: - provider - url examples: - default: &704 + default: &705 value: - provider: twitter url: https://twitter.com/github @@ -105531,9 +105602,9 @@ paths: application/json: schema: type: array - items: *703 + items: *704 examples: - default: *704 + default: *705 '422': *15 '304': *37 '404': *6 @@ -105620,7 +105691,7 @@ paths: application/json: schema: type: array - items: &705 + items: &706 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -105640,7 +105711,7 @@ paths: - title - created_at examples: - default: &736 + default: &737 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -105704,9 +105775,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *706 examples: - default: &706 + default: &707 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -105736,7 +105807,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: - - &707 + - &708 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -105748,9 +105819,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *706 examples: - default: *706 + default: *707 '404': *6 '304': *37 '403': *29 @@ -105773,7 +105844,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: - - *707 + - *708 responses: '204': description: Response @@ -105802,7 +105873,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &737 + - &738 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 @@ -105827,11 +105898,11 @@ paths: type: array items: *79 examples: - default-response: *708 + default-response: *709 application/vnd.github.v3.star+json: schema: type: array - items: &738 + items: &739 title: Starred Repository description: Starred Repository type: object @@ -106200,10 +106271,10 @@ paths: application/json: schema: oneOf: + - *684 - *683 - - *682 examples: - default-response: &712 + default-response: &713 summary: Default response value: login: octocat @@ -106238,7 +106309,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &713 + response-with-git-hub-plan-information: &714 summary: Response with GitHub plan information value: login: octocat @@ -106295,7 +106366,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &710 + - &711 name: user_id description: The unique identifier of the user. in: path @@ -106361,7 +106432,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *709 + - *710 - *17 responses: '200': @@ -106396,7 +106467,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *710 + - *711 - *278 requestBody: required: true @@ -106468,7 +106539,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *711 + schema: *712 examples: table_view: summary: Response for creating a table view @@ -106520,11 +106591,11 @@ paths: application/json: schema: oneOf: + - *684 - *683 - - *682 examples: - default-response: *712 - response-with-git-hub-plan-information: *713 + default-response: *713 + response-with-git-hub-plan-information: *714 '404': *6 x-github: githubCloudOnly: false @@ -106574,8 +106645,8 @@ paths: required: - subject_digests examples: - default: *714 - withPredicateType: *715 + default: *715 + withPredicateType: *716 responses: '200': description: Response @@ -106628,7 +106699,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *716 + default: *717 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106874,7 +106945,7 @@ paths: type: array items: *260 examples: - default: *699 + default: *700 '403': *29 '401': *25 x-github: @@ -107258,9 +107329,9 @@ paths: application/json: schema: type: array - items: *690 + items: *691 examples: - default: *717 + default: *718 headers: Link: *67 x-github: @@ -107364,7 +107435,7 @@ paths: application/json: schema: *22 examples: - default: *540 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107488,7 +107559,7 @@ paths: - docker - nuget - container - - *698 + - *699 - *71 - *19 - *17 @@ -107501,10 +107572,10 @@ paths: type: array items: *260 examples: - default: *699 + default: *700 '403': *29 '401': *25 - '400': *700 + '400': *701 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107534,7 +107605,7 @@ paths: application/json: schema: *260 examples: - default: *718 + default: *719 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107883,7 +107954,7 @@ paths: type: array items: *282 examples: - default: *719 + default: *720 headers: Link: *67 '304': *37 @@ -107943,7 +108014,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *720 + items: *721 required: - name - data_type @@ -107959,7 +108030,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *721 + iteration_configuration: *722 required: - name - data_type @@ -107981,8 +108052,8 @@ paths: value: name: Due date data_type: date - single_select_field: *722 - iteration_field: *723 + single_select_field: *723 + iteration_field: *724 responses: '201': description: Response @@ -107990,11 +108061,11 @@ paths: application/json: schema: *282 examples: - text_field: *724 - number_field: *725 - date_field: *726 - single_select_field: *727 - iteration_field: *728 + text_field: *725 + number_field: *726 + date_field: *727 + single_select_field: *728 + iteration_field: *729 '304': *37 '403': *29 '401': *25 @@ -108016,7 +108087,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *278 - - *729 + - *730 - *71 responses: '200': @@ -108025,7 +108096,7 @@ paths: application/json: schema: *282 examples: - default: *730 + default: *731 headers: Link: *67 '304': *37 @@ -108379,7 +108450,7 @@ paths: parameters: - *278 - *71 - - *731 + - *732 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -108654,7 +108725,7 @@ paths: - *123 - *125 - *124 - - *732 + - *733 - *126 responses: '200': @@ -108785,7 +108856,7 @@ paths: parameters: - *71 - *123 - - *733 + - *734 - *124 responses: '200': @@ -108884,9 +108955,9 @@ paths: - *123 - *125 - *124 - - *734 - - *126 - *735 + - *126 + - *736 responses: '200': description: Response when getting a billing usage summary @@ -109020,9 +109091,9 @@ paths: application/json: schema: type: array - items: *703 + items: *704 examples: - default: *704 + default: *705 headers: Link: *67 x-github: @@ -109052,9 +109123,9 @@ paths: application/json: schema: type: array - items: *705 + items: *706 examples: - default: *736 + default: *737 headers: Link: *67 x-github: @@ -109079,7 +109150,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *71 - - *737 + - *738 - *61 - *17 - *19 @@ -109091,11 +109162,11 @@ paths: schema: anyOf: - type: array - items: *738 + items: *739 - type: array items: *79 examples: - default-response: *708 + default-response: *709 headers: Link: *67 x-github: @@ -109254,7 +109325,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &739 + enterprise: &740 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -109312,7 +109383,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &740 + installation: &741 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -109331,7 +109402,7 @@ x-webhooks: required: - id - node_id - organization: &741 + organization: &742 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -109391,13 +109462,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &742 + repository: &743 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &774 + properties: &775 id: description: Unique identifier of the repository example: 42 @@ -110092,7 +110163,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &775 + required: &776 - archive_url - assignees_url - blobs_url @@ -110243,10 +110314,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -110322,11 +110393,11 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - rule: &743 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + rule: &744 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) @@ -110549,11 +110620,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - rule: *743 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + rule: *744 sender: *4 required: - action @@ -110736,11 +110807,11 @@ x-webhooks: - everyone required: - from - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - rule: *743 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + rule: *744 sender: *4 required: - action @@ -110824,7 +110895,7 @@ x-webhooks: type: string enum: - completed - check_run: &745 + check_run: &746 title: CheckRun description: A check performed on the code of a given code change type: object @@ -110915,7 +110986,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *744 + deployment: *745 details_url: example: https://example.com type: string @@ -111000,10 +111071,10 @@ x-webhooks: - output - app - pull_requests - installation: *740 - enterprise: *739 - organization: *741 - repository: *742 + installation: *741 + enterprise: *740 + organization: *742 + repository: *743 sender: *4 required: - check_run @@ -111394,11 +111465,11 @@ x-webhooks: type: string enum: - created - check_run: *745 - installation: *740 - enterprise: *739 - organization: *741 - repository: *742 + check_run: *746 + installation: *741 + enterprise: *740 + organization: *742 + repository: *743 sender: *4 required: - check_run @@ -111792,11 +111863,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *745 - installation: *740 - enterprise: *739 - organization: *741 - repository: *742 + check_run: *746 + installation: *741 + enterprise: *740 + organization: *742 + repository: *743 requested_action: description: The action requested by the user. type: object @@ -112199,11 +112270,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *745 - installation: *740 - enterprise: *739 - organization: *741 - repository: *742 + check_run: *746 + installation: *741 + enterprise: *740 + organization: *742 + repository: *743 sender: *4 required: - check_run @@ -113173,10 +113244,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -113865,10 +113936,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -114551,10 +114622,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -114865,20 +114936,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &746 + commit_oid: &747 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: *739 - installation: *740 - organization: *741 - ref: &747 + enterprise: *740 + installation: *741 + organization: *742 + ref: &748 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: *742 + repository: *743 sender: *4 required: - action @@ -115273,12 +115344,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *746 - enterprise: *739 - installation: *740 - organization: *741 - ref: *747 - repository: *742 + commit_oid: *747 + enterprise: *740 + installation: *741 + organization: *742 + ref: *748 + repository: *743 sender: *4 required: - action @@ -115544,12 +115615,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *746 - enterprise: *739 - installation: *740 - organization: *741 - ref: *747 - repository: *742 + commit_oid: *747 + enterprise: *740 + installation: *741 + organization: *742 + ref: *748 + repository: *743 sender: *4 required: - action @@ -115881,12 +115952,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *746 - enterprise: *739 - installation: *740 - organization: *741 - ref: *747 - repository: *742 + commit_oid: *747 + enterprise: *740 + installation: *741 + organization: *742 + ref: *748 + repository: *743 sender: *4 required: - action @@ -116160,16 +116231,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *742 + repository: *743 sender: *4 required: - action @@ -116406,12 +116477,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *746 - enterprise: *739 - installation: *740 - organization: *741 - ref: *747 - repository: *742 + commit_oid: *747 + enterprise: *740 + installation: *741 + organization: *742 + ref: *748 + repository: *743 sender: *4 required: - action @@ -116722,10 +116793,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -116980,10 +117051,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -117063,18 +117134,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *741 - pusher_type: &748 + organization: *742 + pusher_type: &749 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &749 + ref: &750 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -117084,7 +117155,7 @@ x-webhooks: enum: - tag - branch - repository: *742 + repository: *743 sender: *4 required: - ref @@ -117167,9 +117238,9 @@ x-webhooks: enum: - created definition: *290 - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 sender: *4 required: - action @@ -117254,9 +117325,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 sender: *4 required: - action @@ -117334,9 +117405,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *290 - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 sender: *4 required: - action @@ -117414,9 +117485,9 @@ x-webhooks: enum: - updated definition: *290 - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 sender: *4 required: - action @@ -117493,10 +117564,10 @@ x-webhooks: type: string enum: - updated - enterprise: *739 - installation: *740 - repository: *742 - organization: *741 + enterprise: *740 + installation: *741 + repository: *743 + organization: *742 sender: *4 new_property_values: type: array @@ -117581,18 +117652,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *739 - installation: *740 - organization: *741 - pusher_type: *748 - ref: *749 + enterprise: *740 + installation: *741 + organization: *742 + pusher_type: *749 + ref: *750 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *742 + repository: *743 sender: *4 required: - ref @@ -117673,10 +117744,10 @@ x-webhooks: enum: - assignees_changed alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117757,10 +117828,10 @@ x-webhooks: enum: - auto_dismissed alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117842,10 +117913,10 @@ x-webhooks: enum: - auto_reopened alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117927,10 +117998,10 @@ x-webhooks: enum: - created alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -118010,10 +118081,10 @@ x-webhooks: enum: - dismissed alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -118093,10 +118164,10 @@ x-webhooks: enum: - fixed alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -118177,10 +118248,10 @@ x-webhooks: enum: - reintroduced alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -118260,10 +118331,10 @@ x-webhooks: enum: - reopened alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -118340,9 +118411,9 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - key: &750 + enterprise: *740 + installation: *741 + key: &751 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -118378,8 +118449,8 @@ x-webhooks: - verified - created_at - read_only - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -118456,11 +118527,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - key: *750 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + key: *751 + organization: *742 + repository: *743 sender: *4 required: - action @@ -119016,12 +119087,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - workflow: &756 + workflow: &757 title: Workflow type: object nullable: true @@ -119762,15 +119833,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *751 - required: *752 + properties: *752 + required: *753 nullable: true pull_requests: type: array - items: *594 - repository: *742 - organization: *741 - installation: *740 + items: *595 + repository: *743 + organization: *742 + installation: *741 sender: *4 responses: '200': @@ -119841,7 +119912,7 @@ x-webhooks: type: string enum: - approved - approver: &753 + approver: &754 type: object properties: avatar_url: @@ -119884,11 +119955,11 @@ x-webhooks: type: string comment: type: string - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - reviewers: &754 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + reviewers: &755 type: array items: type: object @@ -119967,7 +120038,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &755 + workflow_job_run: &756 type: object properties: conclusion: @@ -120698,18 +120769,18 @@ x-webhooks: type: string enum: - rejected - approver: *753 + approver: *754 comment: type: string - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - reviewers: *754 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + reviewers: *755 sender: *4 since: type: string - workflow_job_run: *755 + workflow_job_run: *756 workflow_job_runs: type: array items: @@ -121413,13 +121484,13 @@ x-webhooks: type: string enum: - requested - enterprise: *739 + enterprise: *740 environment: type: string - installation: *740 - organization: *741 - repository: *742 - requestor: &761 + installation: *741 + organization: *742 + repository: *743 + requestor: &762 title: User type: object nullable: true @@ -123308,12 +123379,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - workflow: *756 + workflow: *757 workflow_run: title: Deployment Workflow Run type: object @@ -123993,7 +124064,7 @@ x-webhooks: type: string enum: - answered - answer: &759 + answer: &760 type: object properties: author_association: @@ -124150,11 +124221,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124281,11 +124352,11 @@ x-webhooks: - from required: - category - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124368,11 +124439,11 @@ x-webhooks: type: string enum: - closed - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124454,7 +124525,7 @@ x-webhooks: type: string enum: - created - comment: &758 + comment: &759 type: object properties: author_association: @@ -124611,11 +124682,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124698,12 +124769,12 @@ x-webhooks: type: string enum: - deleted - comment: *758 - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + comment: *759 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124798,12 +124869,12 @@ x-webhooks: - from required: - body - comment: *758 - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + comment: *759 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124887,11 +124958,11 @@ x-webhooks: type: string enum: - created - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124973,11 +125044,11 @@ x-webhooks: type: string enum: - deleted - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125077,11 +125148,11 @@ x-webhooks: type: string required: - from - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125163,10 +125234,10 @@ x-webhooks: type: string enum: - labeled - discussion: *757 - enterprise: *739 - installation: *740 - label: &760 + discussion: *758 + enterprise: *740 + installation: *741 + label: &761 title: Label type: object properties: @@ -125198,8 +125269,8 @@ x-webhooks: - color - default - description - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125282,11 +125353,11 @@ x-webhooks: type: string enum: - locked - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125368,11 +125439,11 @@ x-webhooks: type: string enum: - pinned - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125454,11 +125525,11 @@ x-webhooks: type: string enum: - reopened - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125543,16 +125614,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *757 - new_repository: *742 + new_discussion: *758 + new_repository: *743 required: - new_discussion - new_repository - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125635,10 +125706,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *757 - old_answer: *759 - organization: *741 - repository: *742 + discussion: *758 + old_answer: *760 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125720,12 +125791,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *757 - enterprise: *739 - installation: *740 - label: *760 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125808,11 +125879,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125894,11 +125965,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125971,7 +126042,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *739 + enterprise: *740 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -126631,9 +126702,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - forkee @@ -126779,9 +126850,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pages: description: The pages that were updated. type: array @@ -126818,7 +126889,7 @@ x-webhooks: - action - sha - html_url - repository: *742 + repository: *743 sender: *4 required: - pages @@ -126894,10 +126965,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories: &762 + organization: *742 + repositories: &763 description: An array of repository objects that the installation can access. type: array @@ -126923,8 +126994,8 @@ x-webhooks: - name - full_name - private - repository: *742 - requester: *761 + repository: *743 + requester: *762 sender: *4 required: - action @@ -126999,11 +127070,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories: *762 - repository: *742 + organization: *742 + repositories: *763 + repository: *743 requester: nullable: true sender: *4 @@ -127079,11 +127150,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories: *762 - repository: *742 + organization: *742 + repositories: *763 + repository: *743 requester: nullable: true sender: *4 @@ -127159,10 +127230,10 @@ x-webhooks: type: string enum: - added - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories_added: &763 + organization: *742 + repositories_added: &764 description: An array of repository objects, which were added to the installation. type: array @@ -127208,15 +127279,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *742 - repository_selection: &764 + repository: *743 + repository_selection: &765 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *761 + requester: *762 sender: *4 required: - action @@ -127295,10 +127366,10 @@ x-webhooks: type: string enum: - removed - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories_added: *763 + organization: *742 + repositories_added: *764 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -127325,9 +127396,9 @@ x-webhooks: - name - full_name - private - repository: *742 - repository_selection: *764 - requester: *761 + repository: *743 + repository_selection: *765 + requester: *762 sender: *4 required: - action @@ -127406,11 +127477,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories: *762 - repository: *742 + organization: *742 + repositories: *763 + repository: *743 requester: nullable: true sender: *4 @@ -127588,10 +127659,10 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 target_type: type: string @@ -127670,11 +127741,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories: *762 - repository: *742 + organization: *742 + repositories: *763 + repository: *743 requester: nullable: true sender: *4 @@ -127848,8 +127919,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *571 - required: *572 + properties: *572 + required: *573 nullable: true user: title: User @@ -127934,8 +128005,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128724,8 +128795,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129074,8 +129145,8 @@ x-webhooks: - state - locked - assignee - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -129155,7 +129226,7 @@ x-webhooks: type: string enum: - deleted - comment: &765 + comment: &766 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -129312,8 +129383,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *571 - required: *572 + properties: *572 + required: *573 nullable: true required: - url @@ -129328,8 +129399,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130114,8 +130185,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130466,8 +130537,8 @@ x-webhooks: - state - locked - assignee - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -130547,7 +130618,7 @@ x-webhooks: type: string enum: - edited - changes: &794 + changes: &795 description: The changes to the comment. type: object properties: @@ -130559,9 +130630,9 @@ x-webhooks: type: string required: - from - comment: *765 - enterprise: *739 - installation: *740 + comment: *766 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131349,8 +131420,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131699,8 +131770,8 @@ x-webhooks: - state - locked - assignee - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -131781,9 +131852,9 @@ x-webhooks: type: string enum: - pinned - comment: *765 - enterprise: *739 - installation: *740 + comment: *766 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132573,8 +132644,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132925,8 +132996,8 @@ x-webhooks: - state - locked - assignee - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -133006,9 +133077,9 @@ x-webhooks: type: string enum: - unpinned - comment: *765 - enterprise: *739 - installation: *740 + comment: *766 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133798,8 +133869,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134150,8 +134221,8 @@ x-webhooks: - state - locked - assignee - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -134240,9 +134311,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -134331,9 +134402,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -134421,9 +134492,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -134512,9 +134583,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -134594,10 +134665,10 @@ x-webhooks: type: string enum: - assigned - assignee: *761 - enterprise: *739 - installation: *740 - issue: &768 + assignee: *762 + enterprise: *740 + installation: *741 + issue: &769 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135389,11 +135460,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135510,8 +135581,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -135591,8 +135662,8 @@ x-webhooks: type: string enum: - closed - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136389,11 +136460,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136645,8 +136716,8 @@ x-webhooks: required: - state - closed_at - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -136725,8 +136796,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137514,11 +137585,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137634,8 +137705,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -137714,8 +137785,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138525,11 +138596,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138624,7 +138695,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &766 + milestone: &767 title: Milestone description: A collection of related issues and pull requests. type: object @@ -138762,8 +138833,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -138862,8 +138933,8 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139655,11 +139726,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139776,9 +139847,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *760 - organization: *741 - repository: *742 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -139858,8 +139929,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140650,11 +140721,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140771,9 +140842,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *760 - organization: *741 - repository: *742 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -140853,8 +140924,8 @@ x-webhooks: type: string enum: - locked - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141669,11 +141740,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141767,8 +141838,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -141847,8 +141918,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142657,11 +142728,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142755,9 +142826,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *766 - organization: *741 - repository: *742 + milestone: *767 + organization: *742 + repository: *743 sender: *4 required: - action @@ -143620,11 +143691,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144205,8 +144276,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144990,11 +145061,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145118,8 +145189,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -145199,9 +145270,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *739 - installation: *740 - issue: &767 + enterprise: *740 + installation: *741 + issue: &768 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145987,11 +146058,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146107,8 +146178,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -146187,8 +146258,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147001,11 +147072,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147100,8 +147171,8 @@ x-webhooks: user_view_type: type: string type: *242 - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -147970,11 +148041,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148569,11 +148640,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *739 - installation: *740 - issue: *767 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + issue: *768 + organization: *742 + repository: *743 sender: *4 required: - action @@ -148653,12 +148724,12 @@ x-webhooks: type: string enum: - typed - enterprise: *739 - installation: *740 - issue: *768 + enterprise: *740 + installation: *741 + issue: *769 type: *242 - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -148739,7 +148810,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &797 + assignee: &798 title: User type: object nullable: true @@ -148809,11 +148880,11 @@ x-webhooks: required: - login - id - enterprise: *739 - installation: *740 - issue: *768 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + issue: *769 + organization: *742 + repository: *743 sender: *4 required: - action @@ -148892,12 +148963,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *739 - installation: *740 - issue: *768 - label: *760 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + issue: *769 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -148977,8 +149048,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149791,11 +149862,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149889,8 +149960,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -149970,11 +150041,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *739 - installation: *740 - issue: *767 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + issue: *768 + organization: *742 + repository: *743 sender: *4 required: - action @@ -150053,12 +150124,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *739 - installation: *740 - issue: *768 + enterprise: *740 + installation: *741 + issue: *769 type: *242 - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -150138,11 +150209,11 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - label: *760 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -150220,11 +150291,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - label: *760 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -150334,11 +150405,11 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - label: *760 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -150420,9 +150491,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *739 - installation: *740 - marketplace_purchase: &769 + enterprise: *740 + installation: *741 + marketplace_purchase: &770 title: Marketplace Purchase type: object required: @@ -150505,8 +150576,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *741 - previous_marketplace_purchase: &770 + organization: *742 + previous_marketplace_purchase: &771 title: Marketplace Purchase type: object properties: @@ -150586,7 +150657,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *742 + repository: *743 sender: *4 required: - action @@ -150666,10 +150737,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *739 - installation: *740 - marketplace_purchase: *769 - organization: *741 + enterprise: *740 + installation: *741 + marketplace_purchase: *770 + organization: *742 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150752,7 +150823,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *742 + repository: *743 sender: *4 required: - action @@ -150834,10 +150905,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *739 - installation: *740 - marketplace_purchase: *769 - organization: *741 + enterprise: *740 + installation: *741 + marketplace_purchase: *770 + organization: *742 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150919,7 +150990,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *742 + repository: *743 sender: *4 required: - action @@ -151000,8 +151071,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 marketplace_purchase: title: Marketplace Purchase type: object @@ -151083,9 +151154,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *741 - previous_marketplace_purchase: *770 - repository: *742 + organization: *742 + previous_marketplace_purchase: *771 + repository: *743 sender: *4 required: - action @@ -151165,12 +151236,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *739 - installation: *740 - marketplace_purchase: *769 - organization: *741 - previous_marketplace_purchase: *770 - repository: *742 + enterprise: *740 + installation: *741 + marketplace_purchase: *770 + organization: *742 + previous_marketplace_purchase: *771 + repository: *743 sender: *4 required: - action @@ -151272,11 +151343,11 @@ x-webhooks: type: string required: - to - enterprise: *739 - installation: *740 - member: *761 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + member: *762 + organization: *742 + repository: *743 sender: *4 required: - action @@ -151376,11 +151447,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *739 - installation: *740 - member: *761 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + member: *762 + organization: *742 + repository: *743 sender: *4 required: - action @@ -151459,11 +151530,11 @@ x-webhooks: type: string enum: - removed - enterprise: *739 - installation: *740 - member: *761 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + member: *762 + organization: *742 + repository: *743 sender: *4 required: - action @@ -151541,11 +151612,11 @@ x-webhooks: type: string enum: - added - enterprise: *739 - installation: *740 - member: *761 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + member: *762 + organization: *742 + repository: *743 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151621,7 +151692,7 @@ x-webhooks: required: - login - id - team: &771 + team: &772 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -151844,11 +151915,11 @@ x-webhooks: type: string enum: - removed - enterprise: *739 - installation: *740 - member: *761 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + member: *762 + organization: *742 + repository: *743 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151925,7 +151996,7 @@ x-webhooks: required: - login - id - team: *771 + team: *772 required: - action - scope @@ -152007,8 +152078,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *740 - merge_group: &773 + installation: *741 + merge_group: &774 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -152027,15 +152098,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *772 + head_commit: *773 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152121,10 +152192,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *740 - merge_group: *773 - organization: *741 - repository: *742 + installation: *741 + merge_group: *774 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152197,7 +152268,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 + enterprise: *740 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -152306,16 +152377,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *740 - organization: *741 + installation: *741 + organization: *742 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *774 - required: *775 + properties: *775 + required: *776 nullable: true sender: *4 required: @@ -152396,11 +152467,11 @@ x-webhooks: type: string enum: - closed - enterprise: *739 - installation: *740 - milestone: *766 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + milestone: *767 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152479,9 +152550,9 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - milestone: &776 + enterprise: *740 + installation: *741 + milestone: &777 title: Milestone description: A collection of related issues and pull requests. type: object @@ -152618,8 +152689,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152698,11 +152769,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - milestone: *766 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + milestone: *767 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152812,11 +152883,11 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - milestone: *766 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + milestone: *767 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152896,11 +152967,11 @@ x-webhooks: type: string enum: - opened - enterprise: *739 - installation: *740 - milestone: *776 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + milestone: *777 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152979,11 +153050,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *761 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + blocked_user: *762 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -153062,11 +153133,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *761 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + blocked_user: *762 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -153145,9 +153216,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - membership: &777 + enterprise: *740 + installation: *741 + membership: &778 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -153254,8 +153325,8 @@ x-webhooks: - role - organization_url - user - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -153333,11 +153404,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *739 - installation: *740 - membership: *777 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + membership: *778 + organization: *742 + repository: *743 sender: *4 required: - action @@ -153416,8 +153487,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -153533,10 +153604,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 - user: *761 + user: *762 required: - action - invitation @@ -153614,11 +153685,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *739 - installation: *740 - membership: *777 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + membership: *778 + organization: *742 + repository: *743 sender: *4 required: - action @@ -153705,11 +153776,11 @@ x-webhooks: properties: from: type: string - enterprise: *739 - installation: *740 - membership: *777 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + membership: *778 + organization: *742 + repository: *743 sender: *4 required: - action @@ -153786,9 +153857,9 @@ x-webhooks: type: string enum: - published - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 package: description: Information about the package. type: object @@ -154287,7 +154358,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &778 + items: &779 title: Ruby Gems metadata type: object properties: @@ -154382,7 +154453,7 @@ x-webhooks: - owner - package_version - registry - repository: *742 + repository: *743 sender: *4 required: - action @@ -154458,9 +154529,9 @@ x-webhooks: type: string enum: - updated - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 package: description: Information about the package. type: object @@ -154813,7 +154884,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *778 + items: *779 source_url: type: string format: uri @@ -154883,7 +154954,7 @@ x-webhooks: - owner - package_version - registry - repository: *742 + repository: *743 sender: *4 required: - action @@ -155059,12 +155130,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *739 + enterprise: *740 id: type: integer - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - id @@ -155141,7 +155212,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &779 + personal_access_token_request: &780 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -155287,10 +155358,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *739 - organization: *741 + enterprise: *740 + organization: *742 sender: *4 - installation: *740 + installation: *741 required: - action - personal_access_token_request @@ -155367,11 +155438,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *779 - enterprise: *739 - organization: *741 + personal_access_token_request: *780 + enterprise: *740 + organization: *742 sender: *4 - installation: *740 + installation: *741 required: - action - personal_access_token_request @@ -155447,11 +155518,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *779 - enterprise: *739 - organization: *741 + personal_access_token_request: *780 + enterprise: *740 + organization: *742 sender: *4 - installation: *740 + installation: *741 required: - action - personal_access_token_request @@ -155526,11 +155597,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *779 - organization: *741 - enterprise: *739 + personal_access_token_request: *780 + organization: *742 + enterprise: *740 sender: *4 - installation: *740 + installation: *741 required: - action - personal_access_token_request @@ -155635,7 +155706,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *780 + last_response: *781 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -155667,8 +155738,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 zen: description: Random string of GitHub zen. @@ -155913,10 +155984,10 @@ x-webhooks: - from required: - note - enterprise: *739 - installation: *740 - organization: *741 - project_card: &781 + enterprise: *740 + installation: *741 + organization: *742 + project_card: &782 title: Project Card type: object properties: @@ -156035,7 +156106,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *742 + repository: *743 sender: *4 required: - action @@ -156116,11 +156187,11 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - project_card: *781 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project_card: *782 + repository: *743 sender: *4 required: - action @@ -156200,9 +156271,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 project_card: title: Project Card type: object @@ -156330,8 +156401,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *774 - required: *775 + properties: *775 + required: *776 nullable: true sender: *4 required: @@ -156425,11 +156496,11 @@ x-webhooks: - from required: - note - enterprise: *739 - installation: *740 - organization: *741 - project_card: *781 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project_card: *782 + repository: *743 sender: *4 required: - action @@ -156523,9 +156594,9 @@ x-webhooks: - from required: - column_id - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 project_card: allOf: - title: Project Card @@ -156715,7 +156786,7 @@ x-webhooks: type: string required: - after_id - repository: *742 + repository: *743 sender: *4 required: - action @@ -156795,10 +156866,10 @@ x-webhooks: type: string enum: - closed - enterprise: *739 - installation: *740 - organization: *741 - project: &783 + enterprise: *740 + installation: *741 + organization: *742 + project: &784 title: Project type: object properties: @@ -156922,7 +156993,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *742 + repository: *743 sender: *4 required: - action @@ -157002,10 +157073,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - project_column: &782 + enterprise: *740 + installation: *741 + organization: *742 + project_column: &783 title: Project Column type: object properties: @@ -157044,7 +157115,7 @@ x-webhooks: - name - created_at - updated_at - repository: *742 + repository: *743 sender: *4 required: - action @@ -157123,18 +157194,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - project_column: *782 + enterprise: *740 + installation: *741 + organization: *742 + project_column: *783 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *774 - required: *775 + properties: *775 + required: *776 nullable: true sender: *4 required: @@ -157224,11 +157295,11 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - organization: *741 - project_column: *782 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project_column: *783 + repository: *743 sender: *4 required: - action @@ -157308,11 +157379,11 @@ x-webhooks: type: string enum: - moved - enterprise: *739 - installation: *740 - organization: *741 - project_column: *782 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project_column: *783 + repository: *743 sender: *4 required: - action @@ -157392,11 +157463,11 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - project: *783 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project: *784 + repository: *743 sender: *4 required: - action @@ -157476,18 +157547,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - project: *783 + enterprise: *740 + installation: *741 + organization: *742 + project: *784 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *774 - required: *775 + properties: *775 + required: *776 nullable: true sender: *4 required: @@ -157589,11 +157660,11 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - organization: *741 - project: *783 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project: *784 + repository: *743 sender: *4 required: - action @@ -157672,11 +157743,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *739 - installation: *740 - organization: *741 - project: *783 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project: *784 + repository: *743 sender: *4 required: - action @@ -157757,8 +157828,8 @@ x-webhooks: type: string enum: - closed - installation: *740 - organization: *741 + installation: *741 + organization: *742 projects_v2: *276 sender: *4 required: @@ -157840,8 +157911,8 @@ x-webhooks: type: string enum: - created - installation: *740 - organization: *741 + installation: *741 + organization: *742 projects_v2: *276 sender: *4 required: @@ -157923,8 +157994,8 @@ x-webhooks: type: string enum: - deleted - installation: *740 - organization: *741 + installation: *741 + organization: *742 projects_v2: *276 sender: *4 required: @@ -158042,8 +158113,8 @@ x-webhooks: type: string to: type: string - installation: *740 - organization: *741 + installation: *741 + organization: *742 projects_v2: *276 sender: *4 required: @@ -158127,7 +158198,7 @@ x-webhooks: type: string enum: - archived - changes: &787 + changes: &788 type: object properties: archived_at: @@ -158141,9 +158212,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *740 - organization: *741 - projects_v2_item: &784 + installation: *741 + organization: *742 + projects_v2_item: &785 title: Projects v2 Item description: An item belonging to a project type: object @@ -158278,9 +158349,9 @@ x-webhooks: nullable: true to: type: string - installation: *740 - organization: *741 - projects_v2_item: *784 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158362,9 +158433,9 @@ x-webhooks: type: string enum: - created - installation: *740 - organization: *741 - projects_v2_item: *784 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158445,9 +158516,9 @@ x-webhooks: type: string enum: - deleted - installation: *740 - organization: *741 - projects_v2_item: *784 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158553,7 +158624,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &785 + - &786 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -158575,7 +158646,7 @@ x-webhooks: required: - id - name - - &786 + - &787 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -158609,8 +158680,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *785 - *786 + - *787 required: - field_value - type: object @@ -158626,9 +158697,9 @@ x-webhooks: nullable: true required: - body - installation: *740 - organization: *741 - projects_v2_item: *784 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158723,9 +158794,9 @@ x-webhooks: to: type: string nullable: true - installation: *740 - organization: *741 - projects_v2_item: *784 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158808,10 +158879,10 @@ x-webhooks: type: string enum: - restored - changes: *787 - installation: *740 - organization: *741 - projects_v2_item: *784 + changes: *788 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158893,8 +158964,8 @@ x-webhooks: type: string enum: - reopened - installation: *740 - organization: *741 + installation: *741 + organization: *742 projects_v2: *276 sender: *4 required: @@ -158976,14 +159047,14 @@ x-webhooks: type: string enum: - created - installation: *740 - organization: *741 - projects_v2_status_update: &790 + installation: *741 + organization: *742 + projects_v2_status_update: &791 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *788 - required: *789 + properties: *789 + required: *790 sender: *4 required: - action @@ -159064,9 +159135,9 @@ x-webhooks: type: string enum: - deleted - installation: *740 - organization: *741 - projects_v2_status_update: *790 + installation: *741 + organization: *742 + projects_v2_status_update: *791 sender: *4 required: - action @@ -159202,9 +159273,9 @@ x-webhooks: type: string format: date nullable: true - installation: *740 - organization: *741 - projects_v2_status_update: *790 + installation: *741 + organization: *742 + projects_v2_status_update: *791 sender: *4 required: - action @@ -159275,10 +159346,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - repository @@ -159355,13 +159426,13 @@ x-webhooks: type: string enum: - assigned - assignee: *761 - enterprise: *739 - installation: *740 - number: &791 + assignee: *762 + enterprise: *740 + installation: *741 + number: &792 description: The pull request number. type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -161666,7 +161737,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -161748,11 +161819,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -164052,7 +164123,7 @@ x-webhooks: - draft reason: type: string - repository: *742 + repository: *743 sender: *4 required: - action @@ -164134,11 +164205,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -166438,7 +166509,7 @@ x-webhooks: - draft reason: type: string - repository: *742 + repository: *743 sender: *4 required: - action @@ -166520,13 +166591,13 @@ x-webhooks: type: string enum: - closed - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: &792 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: &793 allOf: - - *594 + - *595 - type: object properties: allow_auto_merge: @@ -166588,7 +166659,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *742 + repository: *743 sender: *4 required: - action @@ -166669,12 +166740,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: *792 - repository: *742 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: *793 + repository: *743 sender: *4 required: - action @@ -166754,11 +166825,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *739 - milestone: *578 - number: *791 - organization: *741 - pull_request: &793 + enterprise: *740 + milestone: *579 + number: *792 + organization: *742 + pull_request: &794 title: Pull Request type: object properties: @@ -169043,7 +169114,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -169122,11 +169193,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -171430,7 +171501,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *742 + repository: *743 sender: *4 required: - action @@ -171554,12 +171625,12 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: *792 - repository: *742 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: *793 + repository: *743 sender: *4 required: - action @@ -171639,11 +171710,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -173932,7 +174003,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -174012,11 +174083,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *739 - installation: *740 - label: *760 - number: *791 - organization: *741 + enterprise: *740 + installation: *741 + label: *761 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -176320,7 +176391,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -176401,10 +176472,10 @@ x-webhooks: type: string enum: - locked - enterprise: *739 - installation: *740 - number: *791 - organization: *741 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -178706,7 +178777,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -178786,12 +178857,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *739 - milestone: *578 - number: *791 - organization: *741 - pull_request: *793 - repository: *742 + enterprise: *740 + milestone: *579 + number: *792 + organization: *742 + pull_request: *794 + repository: *743 sender: *4 required: - action @@ -178870,12 +178941,12 @@ x-webhooks: type: string enum: - opened - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: *792 - repository: *742 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: *793 + repository: *743 sender: *4 required: - action @@ -178956,12 +179027,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: *792 - repository: *742 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: *793 + repository: *743 sender: *4 required: - action @@ -179041,12 +179112,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: *792 - repository: *742 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: *793 + repository: *743 sender: *4 required: - action @@ -179412,9 +179483,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: type: object properties: @@ -181606,7 +181677,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *742 + repository: *743 sender: *4 required: - action @@ -181686,7 +181757,7 @@ x-webhooks: type: string enum: - deleted - comment: &795 + comment: &796 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -181971,9 +182042,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: type: object properties: @@ -184153,7 +184224,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *742 + repository: *743 sender: *4 required: - action @@ -184233,11 +184304,11 @@ x-webhooks: type: string enum: - edited - changes: *794 - comment: *795 - enterprise: *739 - installation: *740 - organization: *741 + changes: *795 + comment: *796 + enterprise: *740 + installation: *741 + organization: *742 pull_request: type: object properties: @@ -186420,7 +186491,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *742 + repository: *743 sender: *4 required: - action @@ -186501,9 +186572,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: title: Simple Pull Request type: object @@ -188698,7 +188769,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *742 + repository: *743 review: description: The review that was affected. type: object @@ -188945,9 +189016,9 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: title: Simple Pull Request type: object @@ -191001,8 +191072,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *742 - review: &796 + repository: *743 + review: &797 description: The review that was affected. type: object properties: @@ -191235,12 +191306,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: description: The pull request number. type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -193545,7 +193616,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 requested_reviewer: title: User type: object @@ -193629,12 +193700,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: description: The pull request number. type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -195946,7 +196017,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 requested_team: title: Team description: Groups of organization members that gives permissions @@ -196138,12 +196209,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: description: The pull request number. type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -198450,7 +198521,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 requested_reviewer: title: User type: object @@ -198535,12 +198606,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: description: The pull request number. type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -200838,7 +200909,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 requested_team: title: Team description: Groups of organization members that gives permissions @@ -201019,9 +201090,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: title: Simple Pull Request type: object @@ -203218,8 +203289,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *742 - review: *796 + repository: *743 + review: *797 sender: *4 required: - action @@ -203299,9 +203370,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: title: Simple Pull Request type: object @@ -205393,7 +205464,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *742 + repository: *743 sender: *4 thread: type: object @@ -205780,9 +205851,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: title: Simple Pull Request type: object @@ -207860,7 +207931,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *742 + repository: *743 sender: *4 thread: type: object @@ -208250,10 +208321,10 @@ x-webhooks: type: string before: type: string - enterprise: *739 - installation: *740 - number: *791 - organization: *741 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -210546,7 +210617,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -210628,11 +210699,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *797 - enterprise: *739 - installation: *740 - number: *791 - organization: *741 + assignee: *798 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -212937,7 +213008,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -213016,11 +213087,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *739 - installation: *740 - label: *760 - number: *791 - organization: *741 + enterprise: *740 + installation: *741 + label: *761 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -215315,7 +215386,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -215396,10 +215467,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *739 - installation: *740 - number: *791 - organization: *741 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -217686,7 +217757,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -217886,7 +217957,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *739 + enterprise: *740 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -217978,8 +218049,8 @@ x-webhooks: - url - author - committer - installation: *740 - organization: *741 + installation: *741 + organization: *742 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -218565,9 +218636,9 @@ x-webhooks: type: string enum: - published - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 registry_package: type: object properties: @@ -219013,7 +219084,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *778 + items: *779 summary: type: string tag_name: @@ -219067,7 +219138,7 @@ x-webhooks: - owner - package_version - registry - repository: *742 + repository: *743 sender: *4 required: - action @@ -219145,9 +219216,9 @@ x-webhooks: type: string enum: - updated - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 registry_package: type: object properties: @@ -219455,7 +219526,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *778 + items: *779 summary: type: string tag_name: @@ -219504,7 +219575,7 @@ x-webhooks: - owner - package_version - registry - repository: *742 + repository: *743 sender: *4 required: - action @@ -219581,10 +219652,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - release: &798 + enterprise: *740 + installation: *741 + organization: *742 + release: &799 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219902,7 +219973,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *742 + repository: *743 sender: *4 required: - action @@ -219979,11 +220050,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - release: *798 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + release: *799 + repository: *743 sender: *4 required: - action @@ -220100,11 +220171,11 @@ x-webhooks: type: boolean required: - to - enterprise: *739 - installation: *740 - organization: *741 - release: *798 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + release: *799 + repository: *743 sender: *4 required: - action @@ -220182,9 +220253,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -220506,7 +220577,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *742 + repository: *743 sender: *4 required: - action @@ -220582,10 +220653,10 @@ x-webhooks: type: string enum: - published - enterprise: *739 - installation: *740 - organization: *741 - release: &799 + enterprise: *740 + installation: *741 + organization: *742 + release: &800 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -220904,7 +220975,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *742 + repository: *743 sender: *4 required: - action @@ -220980,11 +221051,11 @@ x-webhooks: type: string enum: - released - enterprise: *739 - installation: *740 - organization: *741 - release: *798 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + release: *799 + repository: *743 sender: *4 required: - action @@ -221060,11 +221131,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *739 - installation: *740 - organization: *741 - release: *799 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + release: *800 + repository: *743 sender: *4 required: - action @@ -221140,11 +221211,11 @@ x-webhooks: type: string enum: - published - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - repository_advisory: *661 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + repository_advisory: *662 sender: *4 required: - action @@ -221220,11 +221291,11 @@ x-webhooks: type: string enum: - reported - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - repository_advisory: *661 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + repository_advisory: *662 sender: *4 required: - action @@ -221300,10 +221371,10 @@ x-webhooks: type: string enum: - archived - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221380,10 +221451,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221461,10 +221532,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221548,10 +221619,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221663,10 +221734,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221738,10 +221809,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 status: type: string @@ -221822,10 +221893,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221902,10 +221973,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221999,10 +222070,10 @@ x-webhooks: - name required: - repository - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -222082,10 +222153,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 repository_ruleset: *324 sender: *4 required: @@ -222164,10 +222235,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 repository_ruleset: *324 sender: *4 required: @@ -222246,10 +222317,10 @@ x-webhooks: type: string enum: - edited - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 repository_ruleset: *324 changes: type: object @@ -222311,16 +222382,16 @@ x-webhooks: properties: added: type: array - items: *614 + items: *615 deleted: type: array - items: *614 + items: *615 updated: type: array items: type: object properties: - rule: *614 + rule: *615 changes: type: object properties: @@ -222554,10 +222625,10 @@ x-webhooks: - from required: - owner - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -222635,10 +222706,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -222716,7 +222787,7 @@ x-webhooks: type: string enum: - create - alert: &800 + alert: &801 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -222838,10 +222909,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223047,10 +223118,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223128,11 +223199,11 @@ x-webhooks: type: string enum: - reopen - alert: *800 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *801 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223331,10 +223402,10 @@ x-webhooks: enum: - fixed - open - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223412,7 +223483,7 @@ x-webhooks: type: string enum: - assigned - alert: &801 + alert: &802 type: object properties: number: *178 @@ -223555,10 +223626,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223636,11 +223707,11 @@ x-webhooks: type: string enum: - created - alert: *801 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *802 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223721,11 +223792,11 @@ x-webhooks: type: string enum: - created - alert: *801 - installation: *740 - location: *802 - organization: *741 - repository: *742 + alert: *802 + installation: *741 + location: *803 + organization: *742 + repository: *743 sender: *4 required: - location @@ -223963,11 +224034,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *801 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *802 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -224045,11 +224116,11 @@ x-webhooks: type: string enum: - reopened - alert: *801 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *802 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -224127,11 +224198,11 @@ x-webhooks: type: string enum: - resolved - alert: *801 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *802 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -224209,12 +224280,12 @@ x-webhooks: type: string enum: - unassigned - alert: *801 + alert: *802 assignee: *4 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -224292,11 +224363,11 @@ x-webhooks: type: string enum: - validated - alert: *801 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *802 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -224422,10 +224493,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *742 - enterprise: *739 - installation: *740 - organization: *741 + repository: *743 + enterprise: *740 + installation: *741 + organization: *742 sender: *4 required: - action @@ -224503,11 +224574,11 @@ x-webhooks: type: string enum: - published - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - security_advisory: &803 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + security_advisory: &804 description: The details of the security advisory, including summary, description, and severity. type: object @@ -224690,11 +224761,11 @@ x-webhooks: type: string enum: - updated - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - security_advisory: *803 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + security_advisory: *804 sender: *4 required: - action @@ -224767,10 +224838,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -224955,9 +225026,9 @@ x-webhooks: type: object properties: security_and_analysis: *297 - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: *345 sender: *4 required: @@ -225036,12 +225107,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: &804 + sponsorship: &805 type: object properties: created_at: @@ -225342,12 +225413,12 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: *804 + sponsorship: *805 required: - action - sponsorship @@ -225435,12 +225506,12 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: *804 + sponsorship: *805 required: - action - changes @@ -225517,17 +225588,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &805 + effective_date: &806 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: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: *804 + sponsorship: *805 required: - action - sponsorship @@ -225601,7 +225672,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &806 + changes: &807 type: object properties: tier: @@ -225645,13 +225716,13 @@ x-webhooks: - from required: - tier - effective_date: *805 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + effective_date: *806 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: *804 + sponsorship: *805 required: - action - changes @@ -225728,13 +225799,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *806 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + changes: *807 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: *804 + sponsorship: *805 required: - action - changes @@ -225808,10 +225879,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -225894,10 +225965,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -226317,15 +226388,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *739 + enterprise: *740 id: description: The unique identifier of the status. type: integer - installation: *740 + installation: *741 name: type: string - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 sha: description: The Commit SHA. @@ -226440,9 +226511,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -226532,9 +226603,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -226624,9 +226695,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -226716,9 +226787,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -226795,12 +226866,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - team: &807 + team: &808 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -227023,9 +227094,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: title: Repository description: A git repository @@ -227483,7 +227554,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *807 + team: *808 required: - action - team @@ -227559,9 +227630,9 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: title: Repository description: A git repository @@ -228019,7 +228090,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *807 + team: *808 required: - action - team @@ -228096,9 +228167,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: title: Repository description: A git repository @@ -228556,7 +228627,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *807 + team: *808 required: - action - team @@ -228700,9 +228771,9 @@ x-webhooks: - from required: - permissions - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: title: Repository description: A git repository @@ -229160,7 +229231,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *807 + team: *808 required: - action - changes @@ -229238,9 +229309,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: title: Repository description: A git repository @@ -229698,7 +229769,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *807 + team: *808 required: - action - team @@ -229774,10 +229845,10 @@ x-webhooks: type: string enum: - started - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -229850,16 +229921,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *739 + enterprise: *740 inputs: type: object nullable: true additionalProperties: true - installation: *740 - organization: *741 + installation: *741 + organization: *742 ref: type: string - repository: *742 + repository: *743 sender: *4 workflow: type: string @@ -229941,10 +230012,10 @@ x-webhooks: type: string enum: - completed - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 workflow_job: allOf: @@ -230181,7 +230252,7 @@ x-webhooks: type: string required: - conclusion - deployment: *505 + deployment: *506 required: - action - repository @@ -230260,10 +230331,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 workflow_job: allOf: @@ -230523,7 +230594,7 @@ x-webhooks: required: - status - steps - deployment: *505 + deployment: *506 required: - action - repository @@ -230602,10 +230673,10 @@ x-webhooks: type: string enum: - queued - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 workflow_job: type: object @@ -230740,7 +230811,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *505 + deployment: *506 required: - action - repository @@ -230819,10 +230890,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 workflow_job: type: object @@ -230958,7 +231029,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *505 + deployment: *506 required: - action - repository @@ -231038,12 +231109,12 @@ x-webhooks: type: string enum: - completed - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - workflow: *756 + workflow: *757 workflow_run: title: Workflow Run type: object @@ -232042,12 +232113,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - workflow: *756 + workflow: *757 workflow_run: title: Workflow Run type: object @@ -233031,12 +233102,12 @@ x-webhooks: type: string enum: - requested - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - workflow: *756 + workflow: *757 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 3180df1188..7e48396b32 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -325076,6 +325076,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/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 573feb33e5..b92c1fbda7 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -994,7 +994,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &663 + - &664 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -10953,7 +10953,7 @@ paths: properties: action: type: string - discussion: &757 + discussion: &758 title: Discussion description: A Discussion in a repository. type: object @@ -11320,7 +11320,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &549 + properties: &550 id: type: integer format: int64 @@ -11689,7 +11689,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &675 + sub_issues_summary: &676 title: Sub-issues Summary type: object properties: @@ -11776,7 +11776,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &571 + properties: &572 pinned_at: type: string format: date-time @@ -11788,7 +11788,7 @@ paths: properties: *20 required: *21 nullable: true - required: &572 + required: &573 - pinned_at - pinned_by nullable: true @@ -11802,7 +11802,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &676 + issue_dependencies_summary: &677 title: Issue Dependencies Summary type: object properties: @@ -11821,7 +11821,7 @@ paths: - total_blocking issue_field_values: type: array - items: &556 + items: &557 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11882,7 +11882,7 @@ paths: - node_id - data_type - value - required: &550 + required: &551 - closed_at - comments - comments_url @@ -11919,7 +11919,7 @@ paths: action: type: string issue: *85 - comment: &545 + comment: &546 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -12583,7 +12583,7 @@ paths: type: string release: allOf: - - &605 + - &606 title: Release description: A release. type: object @@ -12654,7 +12654,7 @@ paths: author: *4 assets: type: array - items: &606 + items: &607 title: Release Asset description: Data related to a release. type: object @@ -16411,7 +16411,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &581 + - &582 name: all description: If `true`, show notifications marked as read. in: query @@ -16419,7 +16419,7 @@ paths: schema: type: boolean default: false - - &582 + - &583 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16429,7 +16429,7 @@ paths: type: boolean default: false - *92 - - &583 + - &584 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: @@ -16957,7 +16957,7 @@ paths: - url - subscription_url examples: - default: &584 + default: &585 value: - id: '1' repository: @@ -18504,7 +18504,7 @@ paths: required: false schema: type: string - - &732 + - &733 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -18650,7 +18650,7 @@ paths: parameters: - *75 - *123 - - &733 + - &734 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 @@ -18762,7 +18762,7 @@ paths: - *123 - *125 - *124 - - &734 + - &735 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -18770,7 +18770,7 @@ paths: schema: type: string - *126 - - &735 + - &736 name: sku description: The SKU to query for usage. in: query @@ -25449,12 +25449,12 @@ paths: required: - subject_digests examples: - default: &714 + default: &715 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &715 + withPredicateType: &716 value: subject_digests: - sha256:abc123 @@ -25498,7 +25498,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &716 + default: &717 value: attestations_subject_digests: - sha256:abc: @@ -33370,7 +33370,7 @@ paths: application/json: schema: *22 examples: - default: &540 + default: &541 value: id: 1 account: @@ -33595,7 +33595,7 @@ paths: required: true content: application/json: - schema: &541 + schema: &542 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -36155,7 +36155,7 @@ paths: parameters: - *75 - *254 - - &696 + - &697 name: repo_name description: repo_name parameter in: path @@ -37083,7 +37083,7 @@ paths: - nuget - container - *75 - - &697 + - &698 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -37124,7 +37124,7 @@ paths: default: *261 '403': *29 '401': *25 - '400': &699 + '400': &700 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -39225,7 +39225,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &788 + properties: &789 id: type: number description: The unique identifier of the status update. @@ -39273,7 +39273,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &789 + required: &790 - id - node_id - created_at @@ -39702,7 +39702,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: &591 + auto_merge: &592 title: Auto merge description: The status of auto merging a pull request. type: object @@ -40078,7 +40078,7 @@ paths: - updated_at - project_url examples: - default: &719 + default: &720 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40255,7 +40255,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &720 + items: &721 type: object properties: name: @@ -40292,7 +40292,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &721 + iteration_configuration: &722 type: object description: The configuration for iteration fields. properties: @@ -40342,7 +40342,7 @@ paths: value: name: Due date data_type: date - single_select_field: &722 + single_select_field: &723 summary: Create a single select field value: name: Priority @@ -40369,7 +40369,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &723 + iteration_field: &724 summary: Create an iteration field value: name: Sprint @@ -40395,7 +40395,7 @@ paths: application/json: schema: *282 examples: - text_field: &724 + text_field: &725 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -40404,7 +40404,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: &725 + number_field: &726 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -40413,7 +40413,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: &726 + date_field: &727 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -40422,7 +40422,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: &727 + single_select_field: &728 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40456,7 +40456,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &728 + iteration_field: &729 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -40502,7 +40502,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *278 - - &729 + - &730 name: field_id description: The unique identifier of the field. in: path @@ -40517,7 +40517,7 @@ paths: application/json: schema: *282 examples: - default: &730 + default: &731 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41714,7 +41714,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &711 + schema: &712 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -41891,7 +41891,7 @@ paths: parameters: - *278 - *75 - - &731 + - &732 name: view_number description: The number that identifies the project view. in: path @@ -43852,7 +43852,7 @@ paths: - *75 - *17 - *19 - - &613 + - &614 name: targets description: | A comma-separated list of rule targets to filter by. @@ -44133,7 +44133,7 @@ paths: - repository_property rules: type: array - items: &614 + items: &615 title: Repository Rule type: object description: A repository rule. @@ -44195,7 +44195,7 @@ paths: type: string enum: - required_linear_history - - &612 + - &613 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -45097,7 +45097,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *75 - - &615 + - &616 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 @@ -45112,7 +45112,7 @@ paths: in: query schema: type: string - - &616 + - &617 name: time_period description: |- The time period to filter by. @@ -45128,14 +45128,14 @@ paths: - week - month default: day - - &617 + - &618 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 - - &618 + - &619 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -45155,7 +45155,7 @@ paths: description: Response content: application/json: - schema: &619 + schema: &620 title: Rule Suites description: Response type: array @@ -45210,7 +45210,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &620 + default: &621 value: - id: 21 actor_id: 12 @@ -45254,7 +45254,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *75 - - &621 + - &622 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -45270,7 +45270,7 @@ paths: description: Response content: application/json: - schema: &622 + schema: &623 title: Rule Suite description: Response type: object @@ -45369,7 +45369,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &623 + default: &624 value: id: 21 actor_id: 12 @@ -45616,7 +45616,7 @@ paths: type: string format: date-time examples: - default: &625 + default: &626 value: - version_id: 3 actor: @@ -45669,7 +45669,7 @@ paths: description: Response content: application/json: - schema: &626 + schema: &627 allOf: - *327 - type: object @@ -45741,7 +45741,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *75 - - &627 + - &628 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -45752,7 +45752,7 @@ paths: enum: - open - resolved - - &628 + - &629 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -45762,7 +45762,7 @@ paths: required: false schema: type: string - - &629 + - &630 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -45773,7 +45773,7 @@ paths: required: false schema: type: string - - &630 + - &631 name: exclude_providers in: query description: |- @@ -45784,7 +45784,7 @@ paths: required: false schema: type: string - - &631 + - &632 name: providers in: query description: |- @@ -45795,7 +45795,7 @@ paths: required: false schema: type: string - - &632 + - &633 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -45804,7 +45804,7 @@ paths: required: false schema: type: string - - &633 + - &634 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -45823,7 +45823,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &634 + - &635 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. @@ -45838,7 +45838,7 @@ paths: - *61 - *19 - *17 - - &635 + - &636 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 @@ -45848,7 +45848,7 @@ paths: required: false schema: type: string - - &636 + - &637 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 @@ -45858,7 +45858,7 @@ paths: required: false schema: type: string - - &637 + - &638 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -45867,7 +45867,7 @@ paths: required: false schema: type: string - - &638 + - &639 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -45876,7 +45876,7 @@ paths: schema: type: boolean default: false - - &639 + - &640 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -45885,7 +45885,7 @@ paths: schema: type: boolean default: false - - &640 + - &641 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -45920,14 +45920,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &641 + state: &642 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: &642 + resolution: &643 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -46044,8 +46044,8 @@ paths: pull request. ' - oneOf: &643 - - &645 + oneOf: &644 + - &646 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -46103,7 +46103,7 @@ paths: - blob_url - commit_sha - commit_url - - &646 + - &647 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. @@ -46158,7 +46158,7 @@ paths: - page_url - commit_sha - commit_url - - &647 + - &648 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -46178,7 +46178,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &648 + - &649 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -46198,7 +46198,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &649 + - &650 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -46218,7 +46218,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &650 + - &651 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -46232,7 +46232,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &651 + - &652 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -46246,7 +46246,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &652 + - &653 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -46260,7 +46260,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &653 + - &654 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. @@ -46280,7 +46280,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &654 + - &655 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. @@ -46300,7 +46300,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &655 + - &656 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. @@ -46320,7 +46320,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &656 + - &657 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. @@ -46340,7 +46340,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &657 + - &658 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 request. @@ -46859,7 +46859,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 description: A repository security advisory. type: object properties: @@ -47131,7 +47131,7 @@ paths: - private_fork additionalProperties: false examples: - default: &662 + default: &663 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -49110,7 +49110,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &678 + response-if-user-is-a-team-maintainer: &679 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -49175,7 +49175,7 @@ paths: application/json: schema: *341 examples: - response-if-users-membership-with-team-is-now-pending: &679 + response-if-users-membership-with-team-is-now-pending: &680 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -49289,7 +49289,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &680 + schema: &681 title: Team Repository description: A team's access to a repository. type: object @@ -49939,7 +49939,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: &681 + response-if-child-teams-exist: &682 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -51385,11 +51385,11 @@ paths: '302': description: Response headers: - Location: + Location: &504 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': &544 + '410': &545 description: Gone content: application/json: @@ -55000,7 +55000,7 @@ paths: items: type: object properties: - type: &510 + type: &511 type: string description: The type of reviewer. enum: @@ -55134,12 +55134,12 @@ paths: application/json: schema: type: array - items: &505 + items: &506 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &751 + properties: &752 url: type: string format: uri @@ -55224,7 +55224,7 @@ paths: nullable: true properties: *80 required: *81 - required: &752 + required: &753 - id - node_id - sha @@ -55240,7 +55240,7 @@ paths: - created_at - updated_at examples: - default: &506 + default: &507 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -55623,7 +55623,7 @@ paths: application/json: schema: *387 examples: - default: &523 + default: &524 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -55842,7 +55842,7 @@ paths: application/json: schema: *391 examples: - default: &524 + default: &525 value: name: USERNAME value: octocat @@ -57625,7 +57625,7 @@ paths: required: - sha - url - verification: &530 + verification: &531 title: Verification type: object properties: @@ -60811,7 +60811,7 @@ paths: check. type: array items: *90 - deployment: &744 + deployment: &745 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61723,7 +61723,7 @@ paths: type: string format: date-time nullable: true - head_commit: &772 + head_commit: &773 title: Simple Commit description: A commit. type: object @@ -65992,14 +65992,14 @@ paths: type: integer machines: type: array - items: &686 + items: &687 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *464 required: *465 examples: - default: &687 + default: &688 value: total_count: 2 machines: @@ -66682,7 +66682,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &543 + schema: &544 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -67386,7 +67386,7 @@ paths: - content - created_at examples: - default: &547 + default: &548 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -67523,7 +67523,7 @@ paths: - *342 - *343 - *101 - - &548 + - &549 name: reaction_id description: The unique identifier of the reaction. in: path @@ -67637,7 +67637,7 @@ paths: type: array items: *476 examples: - default: &598 + default: &599 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67928,7 +67928,7 @@ paths: type: array items: *480 examples: - default: &590 + default: &591 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -68486,7 +68486,7 @@ paths: application/json: schema: *476 examples: - default: &577 + default: &578 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69145,7 +69145,7 @@ paths: application/json: schema: type: array - items: &666 + items: &667 title: Status description: The status of a commit. type: object @@ -70114,7 +70114,7 @@ paths: - size - type - url - - &603 + - &604 title: Content File description: Content File type: object @@ -70707,7 +70707,7 @@ paths: schema: oneOf: - *3 - - &525 + - &526 description: Repository rule violation was detected type: object properties: @@ -70728,7 +70728,7 @@ paths: items: type: object properties: - placeholder_id: &658 + placeholder_id: &659 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -72299,6 +72299,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: + - *342 + - *343 + - 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: *504 + '202': + description: SBOM is still being processed, no content is returned. + '404': *6 + '403': *29 + 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: + - *342 + - *343 + 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': *29 + 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 @@ -72391,7 +72462,7 @@ paths: - version - url additionalProperties: false - metadata: &504 + metadata: &505 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -72424,7 +72495,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *504 + metadata: *505 resolved: type: object description: A collection of resolved package dependencies. @@ -72437,7 +72508,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *504 + metadata: *505 relationship: type: string description: A notation of whether a dependency is requested @@ -72607,9 +72678,9 @@ paths: application/json: schema: type: array - items: *505 + items: *506 examples: - default: *506 + default: *507 headers: Link: *67 x-github: @@ -72757,7 +72828,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *506 examples: simple-example: summary: Simple example @@ -72832,7 +72903,7 @@ paths: parameters: - *342 - *343 - - &507 + - &508 name: deployment_id description: deployment_id parameter in: path @@ -72844,7 +72915,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *506 examples: default: value: @@ -72911,7 +72982,7 @@ paths: parameters: - *342 - *343 - - *507 + - *508 responses: '204': description: Response @@ -72935,7 +73006,7 @@ paths: parameters: - *342 - *343 - - *507 + - *508 - *17 - *19 responses: @@ -72945,7 +73016,7 @@ paths: application/json: schema: type: array - items: &508 + items: &509 title: Deployment Status description: The status of a deployment. type: object @@ -73108,7 +73179,7 @@ paths: parameters: - *342 - *343 - - *507 + - *508 requestBody: required: true content: @@ -73183,9 +73254,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: &509 + default: &510 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -73243,7 +73314,7 @@ paths: parameters: - *342 - *343 - - *507 + - *508 - name: status_id in: path required: true @@ -73254,9 +73325,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: *509 + default: *510 '404': *6 x-github: githubCloudOnly: false @@ -73357,7 +73428,7 @@ paths: type: integer environments: type: array - items: &511 + items: &512 title: Environment description: Details of a deployment environment type: object @@ -73409,7 +73480,7 @@ paths: type: type: string example: wait_timer - wait_timer: &513 + wait_timer: &514 type: integer example: 30 description: The amount of time to delay a job after @@ -73446,7 +73517,7 @@ paths: items: type: object properties: - type: *510 + type: *511 reviewer: anyOf: - *4 @@ -73470,7 +73541,7 @@ paths: - id - node_id - type - deployment_branch_policy: &514 + deployment_branch_policy: &515 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -73588,7 +73659,7 @@ paths: parameters: - *342 - *343 - - &512 + - &513 name: environment_name in: path required: true @@ -73601,9 +73672,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: &515 + default: &516 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -73689,7 +73760,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 requestBody: required: false content: @@ -73698,7 +73769,7 @@ paths: type: object nullable: true properties: - wait_timer: *513 + wait_timer: *514 prevent_self_review: type: boolean example: false @@ -73715,13 +73786,13 @@ paths: items: type: object properties: - type: *510 + type: *511 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *514 + deployment_branch_policy: *515 additionalProperties: false examples: default: @@ -73741,9 +73812,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *515 + default: *516 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -73769,7 +73840,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 responses: '204': description: Default response @@ -73796,7 +73867,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *17 - *19 responses: @@ -73814,7 +73885,7 @@ paths: example: 2 branch_policies: type: array - items: &516 + items: &517 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -73873,7 +73944,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 requestBody: required: true content: @@ -73919,9 +73990,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: - example-wildcard: &517 + example-wildcard: &518 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -73965,8 +74036,8 @@ paths: parameters: - *342 - *343 - - *512 - - &518 + - *513 + - &519 name: branch_policy_id in: path required: true @@ -73978,9 +74049,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: - default: *517 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74001,8 +74072,8 @@ paths: parameters: - *342 - *343 - - *512 - - *518 + - *513 + - *519 requestBody: required: true content: @@ -74030,9 +74101,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: - default: *517 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74053,8 +74124,8 @@ paths: parameters: - *342 - *343 - - *512 - - *518 + - *513 + - *519 responses: '204': description: Response @@ -74079,7 +74150,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *512 + - *513 - *343 - *342 responses: @@ -74097,7 +74168,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &519 + items: &520 title: Deployment protection rule description: Deployment protection rule type: object @@ -74116,7 +74187,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &520 + app: &521 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -74215,7 +74286,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: - - *512 + - *513 - *343 - *342 requestBody: @@ -74238,9 +74309,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *519 + schema: *520 examples: - default: &521 + default: &522 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -74275,7 +74346,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: - - *512 + - *513 - *343 - *342 - *19 @@ -74296,7 +74367,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *520 + items: *521 examples: default: value: @@ -74333,8 +74404,8 @@ paths: parameters: - *342 - *343 - - *512 - - &522 + - *513 + - &523 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -74346,9 +74417,9 @@ paths: description: Response content: application/json: - schema: *519 + schema: *520 examples: - default: *521 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74369,10 +74440,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *512 + - *513 - *343 - *342 - - *522 + - *523 responses: '204': description: Response @@ -74400,7 +74471,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *17 - *19 responses: @@ -74447,7 +74518,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 responses: '200': description: Response @@ -74479,7 +74550,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *168 responses: '200': @@ -74488,7 +74559,7 @@ paths: application/json: schema: *387 examples: - default: *523 + default: *524 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74512,7 +74583,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *168 requestBody: required: true @@ -74572,7 +74643,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *168 responses: '204': @@ -74600,7 +74671,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *358 - *19 responses: @@ -74645,7 +74716,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 requestBody: required: true content: @@ -74699,7 +74770,7 @@ paths: parameters: - *342 - *343 - - *512 + - *513 - *171 responses: '200': @@ -74708,7 +74779,7 @@ paths: application/json: schema: *391 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74732,7 +74803,7 @@ paths: - *342 - *343 - *171 - - *512 + - *513 requestBody: required: true content: @@ -74777,7 +74848,7 @@ paths: - *342 - *343 - *171 - - *512 + - *513 responses: '204': description: Response @@ -75145,7 +75216,7 @@ paths: schema: oneOf: - *129 - - *525 + - *526 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75380,7 +75451,7 @@ paths: description: Response content: application/json: - schema: &526 + schema: &527 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -75602,7 +75673,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *527 examples: default: value: @@ -75660,7 +75731,7 @@ paths: parameters: - *342 - *343 - - &527 + - &528 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. @@ -75677,7 +75748,7 @@ paths: application/json: schema: type: array - items: &528 + items: &529 title: Git Reference description: Git references within a repository type: object @@ -75754,15 +75825,15 @@ paths: parameters: - *342 - *343 - - *527 + - *528 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &529 + default: &530 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -75821,9 +75892,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -75851,7 +75922,7 @@ paths: parameters: - *342 - *343 - - *527 + - *528 requestBody: required: true content: @@ -75880,9 +75951,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 '422': *15 '409': *54 x-github: @@ -75902,7 +75973,7 @@ paths: parameters: - *342 - *343 - - *527 + - *528 responses: '204': description: Response @@ -76025,7 +76096,7 @@ paths: description: Response content: application/json: - schema: &531 + schema: &532 title: Git Tag description: Metadata for a Git tag type: object @@ -76076,7 +76147,7 @@ paths: - sha - type - url - verification: *530 + verification: *531 required: - sha - url @@ -76086,7 +76157,7 @@ paths: - tag - message examples: - default: &532 + default: &533 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -76171,9 +76242,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: - default: *532 + default: *533 '404': *6 '409': *54 x-github: @@ -76271,7 +76342,7 @@ paths: description: Response content: application/json: - schema: &533 + schema: &534 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -76391,7 +76462,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: default-response: summary: Default response @@ -76461,7 +76532,7 @@ paths: application/json: schema: type: array - items: &534 + items: &535 title: Webhook description: Webhooks for repositories. type: object @@ -76515,7 +76586,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &780 + last_response: &781 title: Hook Response type: object properties: @@ -76642,9 +76713,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: &535 + default: &536 value: type: Repository id: 12345678 @@ -76700,9 +76771,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: *535 + default: *536 '404': *6 x-github: githubCloudOnly: false @@ -76769,9 +76840,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: *535 + default: *536 '422': *15 '404': *6 x-github: @@ -77167,7 +77238,7 @@ paths: description: Response content: application/json: - schema: &536 + schema: &537 title: Import description: A repository import from an external source. type: object @@ -77266,7 +77337,7 @@ paths: - html_url - authors_url examples: - default: &539 + default: &540 value: vcs: subversion use_lfs: true @@ -77282,7 +77353,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': &537 + '503': &538 description: Unavailable due to service under maintenance. content: application/json: @@ -77360,7 +77431,7 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: default: value: @@ -77385,7 +77456,7 @@ paths: type: string '422': *15 '404': *6 - '503': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77463,7 +77534,7 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: example-1: summary: Example 1 @@ -77511,7 +77582,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': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77539,7 +77610,7 @@ paths: responses: '204': description: Response - '503': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77567,7 +77638,7 @@ paths: parameters: - *342 - *343 - - &709 + - &710 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -77581,7 +77652,7 @@ paths: application/json: schema: type: array - items: &538 + items: &539 title: Porter Author description: Porter Author type: object @@ -77635,7 +77706,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': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77691,7 +77762,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -77704,7 +77775,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77770,7 +77841,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77826,11 +77897,11 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: - default: *539 + default: *540 '422': *15 - '503': *537 + '503': *538 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77862,7 +77933,7 @@ paths: application/json: schema: *22 examples: - default: *540 + default: *541 '301': *346 '404': *6 x-github: @@ -77897,7 +77968,7 @@ paths: properties: {} additionalProperties: false examples: - default: &542 + default: &543 value: limit: collaborators_only origin: repository @@ -77928,7 +77999,7 @@ paths: required: true content: application/json: - schema: *541 + schema: *542 examples: default: summary: Example request body @@ -77942,7 +78013,7 @@ paths: application/json: schema: *234 examples: - default: *542 + default: *543 '409': description: Response x-github: @@ -77999,9 +78070,9 @@ paths: application/json: schema: type: array - items: *543 + items: *544 examples: - default: &701 + default: &702 value: - id: 1 repository: @@ -78163,7 +78234,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *544 examples: default: value: @@ -78401,7 +78472,7 @@ paths: type: array items: *85 examples: - default: &555 + default: &556 value: - id: 1 node_id: MDU6SXNzdWUx @@ -78657,7 +78728,7 @@ paths: application/json: schema: *85 examples: - default: &552 + default: &553 value: id: 1 node_id: MDU6SXNzdWUx @@ -78795,7 +78866,7 @@ paths: '422': *15 '503': *121 '404': *6 - '410': *544 + '410': *545 x-github: triggersNotification: true githubCloudOnly: false @@ -78845,9 +78916,9 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: &554 + default: &555 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78913,9 +78984,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: &546 + default: &547 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78994,9 +79065,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: *546 + default: *547 '422': *15 x-github: githubCloudOnly: false @@ -79052,7 +79123,7 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: default: value: @@ -79108,7 +79179,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *544 + '410': *545 '422': *15 x-github: githubCloudOnly: false @@ -79134,7 +79205,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *544 + '410': *545 '503': *121 x-github: githubCloudOnly: false @@ -79182,7 +79253,7 @@ paths: type: array items: *474 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 @@ -79271,7 +79342,7 @@ paths: - *342 - *343 - *101 - - *548 + - *549 responses: '204': description: Response @@ -79302,7 +79373,7 @@ paths: application/json: schema: type: array - items: &551 + items: &552 title: Issue Event description: Issue Event type: object @@ -79345,8 +79416,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *549 - required: *550 + properties: *550 + required: *551 nullable: true label: title: Issue Event Label @@ -79666,7 +79737,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -79859,7 +79930,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *544 + '410': *545 '403': *29 x-github: githubCloudOnly: false @@ -79895,7 +79966,7 @@ paths: parameters: - *342 - *343 - - &553 + - &554 name: issue_number description: The number that identifies the issue. in: path @@ -79911,7 +79982,7 @@ paths: examples: default: summary: Issue - value: *552 + value: *553 pinned_comment: summary: Issue with pinned comment value: @@ -80093,7 +80164,7 @@ paths: state_reason: completed '301': *346 '404': *6 - '410': *544 + '410': *545 '304': *37 x-github: githubCloudOnly: false @@ -80120,7 +80191,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: false content: @@ -80241,13 +80312,13 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 '422': *15 '503': *121 '403': *29 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80267,7 +80338,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: false content: @@ -80295,7 +80366,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80313,7 +80384,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: content: application/json: @@ -80340,7 +80411,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80364,7 +80435,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - name: assignee in: path required: true @@ -80406,7 +80477,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *92 - *17 - *19 @@ -80417,13 +80488,13 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *554 + default: *555 headers: Link: *67 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80454,7 +80525,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -80476,16 +80547,16 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: *546 + default: *547 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *544 + '410': *545 '422': *15 '404': *6 x-github: @@ -80515,7 +80586,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -80527,12 +80598,12 @@ paths: type: array items: *85 examples: - default: *555 + default: *556 headers: Link: *67 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80562,7 +80633,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -80586,7 +80657,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -80594,7 +80665,7 @@ paths: type: string '301': *346 '403': *29 - '410': *544 + '410': *545 '422': *15 '404': *6 x-github: @@ -80627,7 +80698,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -80641,13 +80712,13 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 '301': *346 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *544 + '410': *545 x-github: triggersNotification: true githubCloudOnly: false @@ -80675,7 +80746,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -80687,12 +80758,12 @@ paths: type: array items: *85 examples: - default: *555 + default: *556 headers: Link: *67 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80711,7 +80782,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -80725,7 +80796,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &558 + - &559 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -80779,7 +80850,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &560 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -80915,7 +80986,7 @@ paths: - performed_via_github_app - assignee - assigner - - &560 + - &561 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -80966,7 +81037,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &562 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -81017,7 +81088,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &562 + - &563 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -81071,7 +81142,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &563 + - &564 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -81118,7 +81189,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &565 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -81165,7 +81236,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &566 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -81225,7 +81296,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &567 title: Locked Issue Event description: Locked Issue Event type: object @@ -81273,7 +81344,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &568 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -81339,7 +81410,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &568 + - &569 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -81405,7 +81476,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &569 + - &570 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -81471,7 +81542,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &570 + - &571 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -81562,7 +81633,7 @@ paths: color: red headers: Link: *67 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81581,7 +81652,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -81591,9 +81662,9 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: - default: &672 + default: &673 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -81619,7 +81690,7 @@ paths: Link: *67 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81638,7 +81709,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -81650,7 +81721,7 @@ paths: type: array items: *84 examples: - default: &557 + default: &558 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -81670,7 +81741,7 @@ paths: Link: *67 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81688,7 +81759,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: false content: @@ -81733,10 +81804,10 @@ paths: type: array items: *84 examples: - default: *557 + default: *558 '301': *346 '404': *6 - '410': *544 + '410': *545 '422': *15 x-github: githubCloudOnly: false @@ -81755,7 +81826,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: false content: @@ -81817,10 +81888,10 @@ paths: type: array items: *84 examples: - default: *557 + default: *558 '301': *346 '404': *6 - '410': *544 + '410': *545 '422': *15 x-github: githubCloudOnly: false @@ -81839,13 +81910,13 @@ paths: parameters: - *342 - *343 - - *553 + - *554 responses: '204': description: Response '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81866,7 +81937,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - name: name in: path required: true @@ -81892,7 +81963,7 @@ paths: default: true '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81914,7 +81985,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: false content: @@ -81942,7 +82013,7 @@ paths: '204': description: Response '403': *29 - '410': *544 + '410': *545 '404': *6 '422': *15 x-github: @@ -81962,7 +82033,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 responses: '204': description: Response @@ -81994,7 +82065,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 responses: '200': description: Response @@ -82002,10 +82073,10 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 '301': *346 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82024,7 +82095,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - 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. @@ -82052,11 +82123,11 @@ paths: type: array items: *474 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82076,7 +82147,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -82141,8 +82212,8 @@ paths: parameters: - *342 - *343 - - *553 - - *548 + - *554 + - *549 responses: '204': description: Response @@ -82173,7 +82244,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -82197,7 +82268,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -82232,7 +82303,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -82244,11 +82315,11 @@ paths: type: array items: *85 examples: - default: *555 + default: *556 headers: Link: *67 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82278,7 +82349,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -82307,14 +82378,14 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *544 + '410': *545 '422': *15 '404': *6 x-github: @@ -82336,7 +82407,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 requestBody: required: true content: @@ -82369,7 +82440,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 '403': *29 '404': *6 '422': *7 @@ -82393,7 +82464,7 @@ paths: parameters: - *342 - *343 - - *553 + - *554 - *17 - *19 responses: @@ -82408,7 +82479,6 @@ paths: description: Timeline Event type: object anyOf: - - *558 - *559 - *560 - *561 @@ -82421,6 +82491,7 @@ paths: - *568 - *569 - *570 + - *571 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -82481,8 +82552,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *571 - required: *572 + properties: *572 + required: *573 nullable: true required: - event @@ -82737,7 +82808,7 @@ paths: type: string comments: type: array - items: &592 + items: &593 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83241,7 +83312,7 @@ paths: headers: Link: *67 '404': *6 - '410': *544 + '410': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83269,7 +83340,7 @@ paths: application/json: schema: type: array - items: &573 + items: &574 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -83372,9 +83443,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: &574 + default: &575 value: id: 1 key: ssh-rsa AAA... @@ -83410,7 +83481,7 @@ paths: parameters: - *342 - *343 - - &575 + - &576 name: key_id description: The unique identifier of the key. in: path @@ -83422,9 +83493,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *574 + default: *575 '404': *6 x-github: githubCloudOnly: false @@ -83444,7 +83515,7 @@ paths: parameters: - *342 - *343 - - *575 + - *576 responses: '204': description: Response @@ -83477,7 +83548,7 @@ paths: type: array items: *84 examples: - default: *557 + default: *558 headers: Link: *67 '404': *6 @@ -83537,7 +83608,7 @@ paths: application/json: schema: *84 examples: - default: &576 + default: &577 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83583,7 +83654,7 @@ paths: application/json: schema: *84 examples: - default: *576 + default: *577 '404': *6 x-github: githubCloudOnly: false @@ -83983,7 +84054,7 @@ paths: application/json: schema: *476 examples: - default: *577 + default: *578 '204': description: Response when already merged '404': @@ -84050,7 +84121,7 @@ paths: application/json: schema: type: array - items: &578 + items: &579 title: Milestone description: A collection of related issues and pull requests. type: object @@ -84152,9 +84223,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: &579 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -84215,7 +84286,7 @@ paths: parameters: - *342 - *343 - - &580 + - &581 name: milestone_number description: The number that identifies the milestone. in: path @@ -84227,9 +84298,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -84248,7 +84319,7 @@ paths: parameters: - *342 - *343 - - *580 + - *581 requestBody: required: false content: @@ -84286,9 +84357,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *579 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84306,7 +84377,7 @@ paths: parameters: - *342 - *343 - - *580 + - *581 responses: '204': description: Response @@ -84329,7 +84400,7 @@ paths: parameters: - *342 - *343 - - *580 + - *581 - *17 - *19 responses: @@ -84341,7 +84412,7 @@ paths: type: array items: *84 examples: - default: *557 + default: *558 headers: Link: *67 x-github: @@ -84362,10 +84433,10 @@ paths: parameters: - *342 - *343 - - *581 - *582 - - *92 - *583 + - *92 + - *584 - *17 - *19 responses: @@ -84377,7 +84448,7 @@ paths: type: array items: *112 examples: - default: *584 + default: *585 headers: Link: *67 x-github: @@ -84467,7 +84538,7 @@ paths: description: Response content: application/json: - schema: &585 + schema: &586 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -84592,7 +84663,7 @@ paths: - custom_404 - public examples: - default: &586 + default: &587 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -84688,9 +84759,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 '409': *54 x-github: @@ -84851,7 +84922,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Page Build description: Page Build type: object @@ -84998,9 +85069,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: &588 + default: &589 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -85060,9 +85131,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *588 + default: *589 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85190,7 +85261,7 @@ paths: parameters: - *342 - *343 - - &589 + - &590 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -85250,7 +85321,7 @@ paths: parameters: - *342 - *343 - - *589 + - *590 responses: '204': *191 '404': *6 @@ -85785,7 +85856,7 @@ paths: type: array items: *480 examples: - default: *590 + default: *591 headers: Link: *67 '304': *37 @@ -85883,7 +85954,7 @@ paths: description: Response content: application/json: - schema: &594 + schema: &595 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -86083,7 +86154,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: *591 + auto_merge: *592 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -86173,7 +86244,7 @@ paths: - merged_by - review_comments examples: - default: &595 + default: &596 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -86710,9 +86781,9 @@ paths: application/json: schema: type: array - items: *592 + items: *593 examples: - default: &597 + default: &598 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86797,9 +86868,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: &593 + default: &594 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86898,9 +86969,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86969,7 +87040,7 @@ paths: type: array items: *474 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 @@ -87058,7 +87129,7 @@ paths: - *342 - *343 - *101 - - *548 + - *549 responses: '204': description: Response @@ -87103,7 +87174,7 @@ paths: parameters: - *342 - *343 - - &596 + - &597 name: pull_number description: The number that identifies the pull request. in: path @@ -87116,9 +87187,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *594 + schema: *595 examples: - default: *595 + default: *596 '304': *37 '404': *6 '406': @@ -87155,7 +87226,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: false content: @@ -87197,9 +87268,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: *595 + default: *596 '422': *15 '403': *29 x-github: @@ -87223,7 +87294,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: true content: @@ -87325,7 +87396,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 - *109 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -87346,9 +87417,9 @@ paths: application/json: schema: type: array - items: *592 + items: *593 examples: - default: *597 + default: *598 headers: Link: *67 x-github: @@ -87383,7 +87454,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: true content: @@ -87488,7 +87559,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: example-for-a-multi-line-comment: value: @@ -87578,7 +87649,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 - *101 requestBody: required: true @@ -87601,7 +87672,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: default: value: @@ -87689,7 +87760,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 - *17 - *19 responses: @@ -87701,7 +87772,7 @@ paths: type: array items: *476 examples: - default: *598 + default: *599 headers: Link: *67 x-github: @@ -87733,7 +87804,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 - *17 - *19 responses: @@ -87783,7 +87854,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 responses: '204': description: Response if pull request has been merged @@ -87808,7 +87879,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: false content: @@ -87921,7 +87992,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 responses: '200': description: Response @@ -87998,7 +88069,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: false content: @@ -88573,7 +88644,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: true content: @@ -89094,7 +89165,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 - *17 - *19 responses: @@ -89104,7 +89175,7 @@ paths: application/json: schema: type: array - items: &599 + items: &600 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -89257,7 +89328,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: false content: @@ -89343,9 +89414,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: &601 + default: &602 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89410,8 +89481,8 @@ paths: parameters: - *342 - *343 - - *596 - - &600 + - *597 + - &601 name: review_id description: The unique identifier of the review. in: path @@ -89423,9 +89494,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: &602 + default: &603 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89486,8 +89557,8 @@ paths: parameters: - *342 - *343 - - *596 - - *600 + - *597 + - *601 requestBody: required: true content: @@ -89510,7 +89581,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -89574,16 +89645,16 @@ paths: parameters: - *342 - *343 - - *596 - - *600 + - *597 + - *601 responses: '200': description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: *601 + default: *602 '422': *7 '404': *6 x-github: @@ -89612,8 +89683,8 @@ paths: parameters: - *342 - *343 - - *596 - - *600 + - *597 + - *601 - *17 - *19 responses: @@ -89850,8 +89921,8 @@ paths: parameters: - *342 - *343 - - *596 - - *600 + - *597 + - *601 requestBody: required: true content: @@ -89879,7 +89950,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -89944,8 +90015,8 @@ paths: parameters: - *342 - *343 - - *596 - - *600 + - *597 + - *601 requestBody: required: true content: @@ -89980,9 +90051,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: *602 + default: *603 '404': *6 '422': *7 '403': *29 @@ -90006,7 +90077,7 @@ paths: parameters: - *342 - *343 - - *596 + - *597 requestBody: required: false content: @@ -90083,9 +90154,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: &604 + default: &605 value: type: file encoding: base64 @@ -90148,9 +90219,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: *604 + default: *605 '404': *6 '422': *15 x-github: @@ -90183,7 +90254,7 @@ paths: application/json: schema: type: array - items: *605 + items: *606 examples: default: value: @@ -90354,9 +90425,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: &609 + default: &610 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -90463,7 +90534,7 @@ paths: parameters: - *342 - *343 - - &607 + - &608 name: asset_id description: The unique identifier of the asset. in: path @@ -90475,9 +90546,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: &608 + default: &609 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 @@ -90530,7 +90601,7 @@ paths: parameters: - *342 - *343 - - *607 + - *608 requestBody: required: false content: @@ -90558,9 +90629,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: *608 + default: *609 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90578,7 +90649,7 @@ paths: parameters: - *342 - *343 - - *607 + - *608 responses: '204': description: Response @@ -90696,9 +90767,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *609 + default: *610 '404': *6 x-github: githubCloudOnly: false @@ -90730,9 +90801,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *609 + default: *610 '404': *6 x-github: githubCloudOnly: false @@ -90756,7 +90827,7 @@ paths: parameters: - *342 - *343 - - &610 + - &611 name: release_id description: The unique identifier of the release. in: path @@ -90770,9 +90841,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: *605 + schema: *606 examples: - default: *609 + default: *610 '401': description: Unauthorized x-github: @@ -90792,7 +90863,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 requestBody: required: false content: @@ -90856,9 +90927,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *609 + default: *610 '404': description: Not Found if the discussion category name is invalid content: @@ -90881,7 +90952,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 responses: '204': description: Response @@ -90904,7 +90975,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 - *17 - *19 responses: @@ -90914,7 +90985,7 @@ paths: application/json: schema: type: array - items: *606 + items: *607 examples: default: value: @@ -90997,7 +91068,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 - name: name in: query required: true @@ -91023,7 +91094,7 @@ paths: description: Response for successful upload content: application/json: - schema: *606 + schema: *607 examples: response-for-successful-upload: value: @@ -91080,7 +91151,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 - 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. @@ -91106,7 +91177,7 @@ paths: type: array items: *474 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 @@ -91129,7 +91200,7 @@ paths: parameters: - *342 - *343 - - *610 + - *611 requestBody: required: true content: @@ -91192,8 +91263,8 @@ paths: parameters: - *342 - *343 - - *610 - - *548 + - *611 + - *549 responses: '204': description: Response @@ -91236,7 +91307,7 @@ paths: oneOf: - allOf: - *303 - - &611 + - &612 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -91257,67 +91328,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *304 - - *611 + - *612 - allOf: - *305 - - *611 + - *612 - allOf: - *306 - - *611 + - *612 - allOf: + - *613 - *612 - - *611 - allOf: - *307 - - *611 + - *612 - allOf: - *308 - - *611 + - *612 - allOf: - *309 - - *611 + - *612 - allOf: - *310 - - *611 + - *612 - allOf: - *311 - - *611 + - *612 - allOf: - *312 - - *611 + - *612 - allOf: - *313 - - *611 + - *612 - allOf: - *314 - - *611 + - *612 - allOf: - *315 - - *611 + - *612 - allOf: - *316 - - *611 + - *612 - allOf: - *317 - - *611 + - *612 - allOf: - *318 - - *611 + - *612 - allOf: - *319 - - *611 + - *612 - allOf: - *320 - - *611 + - *612 - allOf: - *321 - - *611 + - *612 - allOf: - *322 - - *611 + - *612 - allOf: - *323 - - *611 + - *612 examples: default: value: @@ -91368,7 +91439,7 @@ paths: schema: type: boolean default: true - - *613 + - *614 responses: '200': description: Response @@ -91453,7 +91524,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *614 + items: *615 required: - name - enforcement @@ -91486,7 +91557,7 @@ paths: application/json: schema: *324 examples: - default: &624 + default: &625 value: id: 42 name: super cool ruleset @@ -91536,10 +91607,10 @@ paths: parameters: - *342 - *343 - - *615 - *616 - *617 - *618 + - *619 - *17 - *19 responses: @@ -91547,9 +91618,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: - default: *620 + default: *621 '404': *6 '500': *55 x-github: @@ -91572,15 +91643,15 @@ paths: parameters: - *342 - *343 - - *621 + - *622 responses: '200': description: Response content: application/json: - schema: *622 + schema: *623 examples: - default: *623 + default: *624 '404': *6 '500': *55 x-github: @@ -91631,7 +91702,7 @@ paths: application/json: schema: *324 examples: - default: *624 + default: *625 '404': *6 '500': *55 put: @@ -91684,7 +91755,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *614 + items: *615 examples: default: value: @@ -91714,7 +91785,7 @@ paths: application/json: schema: *324 examples: - default: *624 + default: *625 '404': *6 '422': *15 '500': *55 @@ -91776,7 +91847,7 @@ paths: type: array items: *327 examples: - default: *625 + default: *626 '404': *6 '500': *55 x-github: @@ -91814,7 +91885,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -91871,7 +91942,6 @@ paths: parameters: - *342 - *343 - - *627 - *628 - *629 - *630 @@ -91879,15 +91949,16 @@ paths: - *632 - *633 - *634 + - *635 - *61 - *19 - *17 - - *635 - *636 - *637 - *638 - *639 - *640 + - *641 responses: '200': description: Response @@ -91895,7 +91966,7 @@ paths: application/json: schema: type: array - items: &644 + items: &645 type: object properties: number: *178 @@ -91914,8 +91985,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *641 - resolution: *642 + state: *642 + resolution: *643 resolved_at: type: string format: date-time @@ -92021,7 +92092,7 @@ paths: pull request. ' - oneOf: *643 + oneOf: *644 nullable: true has_more_locations: type: boolean @@ -92188,13 +92259,13 @@ paths: - *342 - *343 - *440 - - *640 + - *641 responses: '200': description: Response content: application/json: - schema: *644 + schema: *645 examples: default: value: @@ -92258,8 +92329,8 @@ paths: schema: type: object properties: - state: *641 - resolution: *642 + state: *642 + resolution: *643 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -92295,7 +92366,7 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: default: value: @@ -92403,7 +92474,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &802 + items: &803 type: object properties: type: @@ -92429,7 +92500,6 @@ paths: example: commit details: oneOf: - - *645 - *646 - *647 - *648 @@ -92442,6 +92512,7 @@ paths: - *655 - *656 - *657 + - *658 examples: default: value: @@ -92536,14 +92607,14 @@ paths: schema: type: object properties: - reason: &659 + reason: &660 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *658 + placeholder_id: *659 required: - reason - placeholder_id @@ -92560,7 +92631,7 @@ paths: schema: type: object properties: - reason: *659 + reason: *660 expire_at: type: string format: date-time @@ -92622,7 +92693,7 @@ paths: properties: incremental_scans: type: array - items: &660 + items: &661 description: Information on a single scan performed by secret scanning on the repository type: object @@ -92648,15 +92719,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *660 + items: *661 backfill_scans: type: array - items: *660 + items: *661 custom_pattern_backfill_scans: type: array items: allOf: - - *660 + - *661 - type: object properties: pattern_name: @@ -92669,7 +92740,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *660 + items: *661 examples: default: value: @@ -92779,9 +92850,9 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: - default: *662 + default: *663 '400': *14 '404': *6 x-github: @@ -92965,9 +93036,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: &664 + default: &665 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -93302,7 +93373,7 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: default: value: @@ -93450,15 +93521,15 @@ paths: parameters: - *342 - *343 - - *663 + - *664 responses: '200': description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *664 + default: *665 '403': *29 '404': *6 x-github: @@ -93484,7 +93555,7 @@ paths: parameters: - *342 - *343 - - *663 + - *664 requestBody: required: true content: @@ -93643,10 +93714,10 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *664 - add_credit: *664 + default: *665 + add_credit: *665 '403': *29 '404': *6 '422': @@ -93686,7 +93757,7 @@ paths: parameters: - *342 - *343 - - *663 + - *664 responses: '202': *39 '400': *14 @@ -93715,7 +93786,7 @@ paths: parameters: - *342 - *343 - - *663 + - *664 responses: '202': description: Response @@ -93859,7 +93930,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -94232,7 +94303,7 @@ paths: application/json: schema: type: array - items: *665 + items: *666 examples: default: value: @@ -94320,7 +94391,7 @@ paths: description: Response content: application/json: - schema: *666 + schema: *667 examples: default: value: @@ -94414,7 +94485,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &667 + schema: &668 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -94509,7 +94580,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -94716,7 +94787,7 @@ paths: description: Response content: application/json: - schema: &668 + schema: &669 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94728,7 +94799,7 @@ paths: required: - names examples: - default: &669 + default: &670 value: names: - octocat @@ -94783,9 +94854,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: *669 + default: *670 '404': *6 '422': *7 x-github: @@ -94808,7 +94879,7 @@ paths: parameters: - *342 - *343 - - &670 + - &671 name: per description: The time frame to display results for. in: query @@ -94837,7 +94908,7 @@ paths: example: 128 clones: type: array - items: &671 + items: &672 title: Traffic type: object properties: @@ -95078,7 +95149,7 @@ paths: parameters: - *342 - *343 - - *670 + - *671 responses: '200': description: Response @@ -95097,7 +95168,7 @@ paths: example: 3782 views: type: array - items: *671 + items: *672 required: - uniques - count @@ -95765,7 +95836,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *149 - - *553 + - *554 requestBody: required: true content: @@ -95829,9 +95900,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *556 + items: *557 examples: - default: *672 + default: *673 '400': *14 '403': *29 '404': *6 @@ -95868,7 +95939,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *149 - - *553 + - *554 requestBody: required: true content: @@ -95933,9 +96004,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *556 + items: *557 examples: - default: *672 + default: *673 '400': *14 '403': *29 '404': *6 @@ -95967,7 +96038,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *149 - - *553 + - *554 - *241 responses: '204': @@ -96110,7 +96181,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &673 + text_matches: &674 title: Search Result Text Matches type: array items: @@ -96272,7 +96343,7 @@ paths: enum: - author-date - committer-date - - &674 + - &675 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 @@ -96363,7 +96434,7 @@ paths: url: type: string format: uri - verification: *530 + verification: *531 required: - author - committer @@ -96400,7 +96471,7 @@ paths: type: number node_id: type: string - text_matches: *673 + text_matches: *674 required: - sha - node_id @@ -96592,7 +96663,7 @@ paths: - interactions - created - updated - - *674 + - *675 - *17 - *19 - name: advanced_search @@ -96706,11 +96777,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: type: string state_reason: @@ -96735,7 +96806,7 @@ paths: type: string format: date-time nullable: true - text_matches: *673 + text_matches: *674 pull_request: type: object properties: @@ -97005,7 +97076,7 @@ paths: enum: - created - updated - - *674 + - *675 - *17 - *19 responses: @@ -97049,7 +97120,7 @@ paths: nullable: true score: type: number - text_matches: *673 + text_matches: *674 required: - id - node_id @@ -97134,7 +97205,7 @@ paths: - forks - help-wanted-issues - updated - - *674 + - *675 - *17 - *19 responses: @@ -97382,7 +97453,7 @@ paths: - admin - pull - push - text_matches: *673 + text_matches: *674 temp_clone_token: type: string allow_merge_commit: @@ -97682,7 +97753,7 @@ paths: type: string format: uri nullable: true - text_matches: *673 + text_matches: *674 related: type: array nullable: true @@ -97873,7 +97944,7 @@ paths: - followers - repositories - joined - - *674 + - *675 - *17 - *19 responses: @@ -97977,7 +98048,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *673 + text_matches: *674 blog: type: string nullable: true @@ -98056,7 +98127,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &677 + - &678 name: team_id description: The unique identifier of the team. in: path @@ -98097,7 +98168,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *677 + - *678 requestBody: required: true content: @@ -98197,7 +98268,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *677 + - *678 responses: '204': description: Response @@ -98226,7 +98297,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *677 + - *678 - *17 - *19 responses: @@ -98264,7 +98335,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *677 + - *678 - name: role description: Filters members returned by their role in the team. in: query @@ -98315,7 +98386,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *677 + - *678 - *71 responses: '204': @@ -98352,7 +98423,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *677 + - *678 - *71 responses: '204': @@ -98392,7 +98463,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *677 + - *678 - *71 responses: '204': @@ -98429,7 +98500,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *677 + - *678 - *71 responses: '200': @@ -98438,7 +98509,7 @@ paths: application/json: schema: *341 examples: - response-if-user-is-a-team-maintainer: *678 + response-if-user-is-a-team-maintainer: *679 '404': *6 x-github: githubCloudOnly: false @@ -98471,7 +98542,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *677 + - *678 - *71 requestBody: required: false @@ -98499,7 +98570,7 @@ paths: application/json: schema: *341 examples: - response-if-users-membership-with-team-is-now-pending: *679 + response-if-users-membership-with-team-is-now-pending: *680 '403': description: Forbidden if team synchronization is set up '422': @@ -98533,7 +98604,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *677 + - *678 - *71 responses: '204': @@ -98561,7 +98632,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *677 + - *678 - *17 - *19 responses: @@ -98603,7 +98674,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *677 + - *678 - *342 - *343 responses: @@ -98611,7 +98682,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *680 + schema: *681 examples: alternative-response-with-extra-repository-information: value: @@ -98761,7 +98832,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *677 + - *678 - *342 - *343 requestBody: @@ -98813,7 +98884,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *677 + - *678 - *342 - *343 responses: @@ -98840,7 +98911,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *677 + - *678 - *17 - *19 responses: @@ -98852,7 +98923,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: *681 + response-if-child-teams-exist: *682 headers: Link: *67 '404': *6 @@ -98885,7 +98956,7 @@ paths: application/json: schema: oneOf: - - &682 + - &683 title: Private User description: Private User type: object @@ -99088,7 +99159,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &708 + - &709 title: Public User description: Public User type: object @@ -99400,7 +99471,7 @@ paths: description: Response content: application/json: - schema: *682 + schema: *683 examples: default: value: @@ -99798,7 +99869,7 @@ paths: type: integer secrets: type: array - items: &683 + items: &684 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -99914,7 +99985,7 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: default: value: @@ -100327,7 +100398,7 @@ paths: description: Response content: application/json: - schema: &684 + schema: &685 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -100368,7 +100439,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &685 + default: &686 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -100413,9 +100484,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: *685 + default: *686 '404': *6 x-github: githubCloudOnly: false @@ -100452,9 +100523,9 @@ paths: type: integer machines: type: array - items: *686 + items: *687 examples: - default: *687 + default: *688 '304': *37 '500': *55 '401': *25 @@ -101393,7 +101464,7 @@ paths: type: array items: *260 examples: - default: &698 + default: &699 value: - id: 197 name: hello_docker @@ -101494,7 +101565,7 @@ paths: application/json: schema: type: array - items: &688 + items: &689 title: Email description: Email type: object @@ -101559,9 +101630,9 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: - default: &700 + default: &701 value: - email: octocat@github.com verified: true @@ -101636,7 +101707,7 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: default: value: @@ -101892,7 +101963,7 @@ paths: application/json: schema: type: array - items: &689 + items: &690 title: GPG Key description: A unique encryption key type: object @@ -102023,7 +102094,7 @@ paths: - subkeys - revoked examples: - default: &717 + default: &718 value: - id: 3 name: Octocat's GPG Key @@ -102108,9 +102179,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: &690 + default: &691 value: id: 3 name: Octocat's GPG Key @@ -102167,7 +102238,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &691 + - &692 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -102179,9 +102250,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: *690 + default: *691 '404': *6 '304': *37 '403': *29 @@ -102204,7 +102275,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *691 + - *692 responses: '204': description: Response @@ -102512,7 +102583,7 @@ paths: required: true content: application/json: - schema: *541 + schema: *542 examples: default: value: @@ -102662,7 +102733,7 @@ paths: application/json: schema: type: array - items: &692 + items: &693 title: Key description: Key type: object @@ -102763,9 +102834,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *693 examples: - default: &693 + default: &694 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -102798,15 +102869,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *575 + - *576 responses: '200': description: Response content: application/json: - schema: *692 + schema: *693 examples: - default: *693 + default: *694 '404': *6 '304': *37 '403': *29 @@ -102829,7 +102900,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *575 + - *576 responses: '204': description: Response @@ -102862,7 +102933,7 @@ paths: application/json: schema: type: array - items: &694 + items: &695 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -102930,7 +103001,7 @@ paths: - account - plan examples: - default: &695 + default: &696 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -102992,9 +103063,9 @@ paths: application/json: schema: type: array - items: *694 + items: *695 examples: - default: *695 + default: *696 headers: Link: *67 '304': *37 @@ -104003,7 +104074,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *254 - - *696 + - *697 responses: '204': description: Response @@ -104116,7 +104187,7 @@ paths: - docker - nuget - container - - *697 + - *698 - *19 - *17 responses: @@ -104128,8 +104199,8 @@ paths: type: array items: *260 examples: - default: *698 - '400': *699 + default: *699 + '400': *700 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104158,7 +104229,7 @@ paths: application/json: schema: *260 examples: - default: &718 + default: &719 value: id: 40201 name: octo-name @@ -104520,9 +104591,9 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: - default: *700 + default: *701 headers: Link: *67 '304': *37 @@ -104635,7 +104706,7 @@ paths: type: array items: *79 examples: - default: &707 + default: &708 summary: Default response value: - id: 1296269 @@ -104980,9 +105051,9 @@ paths: application/json: schema: type: array - items: *543 + items: *544 examples: - default: *701 + default: *702 headers: Link: *67 '304': *37 @@ -105062,7 +105133,7 @@ paths: application/json: schema: type: array - items: &702 + items: &703 title: Social account description: Social media account type: object @@ -105077,7 +105148,7 @@ paths: - provider - url examples: - default: &703 + default: &704 value: - provider: twitter url: https://twitter.com/github @@ -105139,9 +105210,9 @@ paths: application/json: schema: type: array - items: *702 + items: *703 examples: - default: *703 + default: *704 '422': *15 '304': *37 '404': *6 @@ -105228,7 +105299,7 @@ paths: application/json: schema: type: array - items: &704 + items: &705 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -105248,7 +105319,7 @@ paths: - title - created_at examples: - default: &736 + default: &737 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -105312,9 +105383,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: &705 + default: &706 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -105344,7 +105415,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: - - &706 + - &707 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -105356,9 +105427,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *705 + default: *706 '404': *6 '304': *37 '403': *29 @@ -105381,7 +105452,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: - - *706 + - *707 responses: '204': description: Response @@ -105410,7 +105481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &737 + - &738 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 @@ -105435,11 +105506,11 @@ paths: type: array items: *79 examples: - default-response: *707 + default-response: *708 application/vnd.github.v3.star+json: schema: type: array - items: &738 + items: &739 title: Starred Repository description: Starred Repository type: object @@ -105808,10 +105879,10 @@ paths: application/json: schema: oneOf: - - *682 - - *708 + - *683 + - *709 examples: - default-response: &712 + default-response: &713 summary: Default response value: login: octocat @@ -105846,7 +105917,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &713 + response-with-git-hub-plan-information: &714 summary: Response with GitHub plan information value: login: octocat @@ -105903,7 +105974,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &710 + - &711 name: user_id description: The unique identifier of the user. in: path @@ -105969,7 +106040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *709 + - *710 - *17 responses: '200': @@ -106004,7 +106075,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *710 + - *711 - *278 requestBody: required: true @@ -106076,7 +106147,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *711 + schema: *712 examples: table_view: summary: Response for creating a table view @@ -106128,11 +106199,11 @@ paths: application/json: schema: oneOf: - - *682 - - *708 + - *683 + - *709 examples: - default-response: *712 - response-with-git-hub-plan-information: *713 + default-response: *713 + response-with-git-hub-plan-information: *714 '404': *6 x-github: githubCloudOnly: false @@ -106182,8 +106253,8 @@ paths: required: - subject_digests examples: - default: *714 - withPredicateType: *715 + default: *715 + withPredicateType: *716 responses: '200': description: Response @@ -106222,7 +106293,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *716 + default: *717 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106452,7 +106523,7 @@ paths: type: array items: *260 examples: - default: *698 + default: *699 '403': *29 '401': *25 x-github: @@ -106836,9 +106907,9 @@ paths: application/json: schema: type: array - items: *689 + items: *690 examples: - default: *717 + default: *718 headers: Link: *67 x-github: @@ -106942,7 +107013,7 @@ paths: application/json: schema: *22 examples: - default: *540 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107066,7 +107137,7 @@ paths: - docker - nuget - container - - *697 + - *698 - *71 - *19 - *17 @@ -107079,10 +107150,10 @@ paths: type: array items: *260 examples: - default: *698 + default: *699 '403': *29 '401': *25 - '400': *699 + '400': *700 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107112,7 +107183,7 @@ paths: application/json: schema: *260 examples: - default: *718 + default: *719 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107461,7 +107532,7 @@ paths: type: array items: *282 examples: - default: *719 + default: *720 headers: Link: *67 '304': *37 @@ -107521,7 +107592,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *720 + items: *721 required: - name - data_type @@ -107537,7 +107608,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *721 + iteration_configuration: *722 required: - name - data_type @@ -107559,8 +107630,8 @@ paths: value: name: Due date data_type: date - single_select_field: *722 - iteration_field: *723 + single_select_field: *723 + iteration_field: *724 responses: '201': description: Response @@ -107568,11 +107639,11 @@ paths: application/json: schema: *282 examples: - text_field: *724 - number_field: *725 - date_field: *726 - single_select_field: *727 - iteration_field: *728 + text_field: *725 + number_field: *726 + date_field: *727 + single_select_field: *728 + iteration_field: *729 '304': *37 '403': *29 '401': *25 @@ -107594,7 +107665,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *278 - - *729 + - *730 - *71 responses: '200': @@ -107603,7 +107674,7 @@ paths: application/json: schema: *282 examples: - default: *730 + default: *731 headers: Link: *67 '304': *37 @@ -107957,7 +108028,7 @@ paths: parameters: - *278 - *71 - - *731 + - *732 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -108232,7 +108303,7 @@ paths: - *123 - *125 - *124 - - *732 + - *733 - *126 responses: '200': @@ -108363,7 +108434,7 @@ paths: parameters: - *71 - *123 - - *733 + - *734 - *124 responses: '200': @@ -108462,9 +108533,9 @@ paths: - *123 - *125 - *124 - - *734 - - *126 - *735 + - *126 + - *736 responses: '200': description: Response when getting a billing usage summary @@ -108598,9 +108669,9 @@ paths: application/json: schema: type: array - items: *702 + items: *703 examples: - default: *703 + default: *704 headers: Link: *67 x-github: @@ -108630,9 +108701,9 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: - default: *736 + default: *737 headers: Link: *67 x-github: @@ -108657,7 +108728,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *71 - - *737 + - *738 - *61 - *17 - *19 @@ -108669,11 +108740,11 @@ paths: schema: anyOf: - type: array - items: *738 + items: *739 - type: array items: *79 examples: - default-response: *707 + default-response: *708 headers: Link: *67 x-github: @@ -108832,7 +108903,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &739 + enterprise: &740 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -108890,7 +108961,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &740 + installation: &741 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -108909,7 +108980,7 @@ x-webhooks: required: - id - node_id - organization: &741 + organization: &742 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -108969,13 +109040,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &742 + repository: &743 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &774 + properties: &775 id: description: Unique identifier of the repository example: 42 @@ -109659,7 +109730,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &775 + required: &776 - archive_url - assignees_url - blobs_url @@ -109810,10 +109881,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -109889,11 +109960,11 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - rule: &743 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + rule: &744 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) @@ -110116,11 +110187,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - rule: *743 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + rule: *744 sender: *4 required: - action @@ -110303,11 +110374,11 @@ x-webhooks: - everyone required: - from - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - rule: *743 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + rule: *744 sender: *4 required: - action @@ -110391,7 +110462,7 @@ x-webhooks: type: string enum: - completed - check_run: &745 + check_run: &746 title: CheckRun description: A check performed on the code of a given code change type: object @@ -110482,7 +110553,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *744 + deployment: *745 details_url: example: https://example.com type: string @@ -110567,10 +110638,10 @@ x-webhooks: - output - app - pull_requests - installation: *740 - enterprise: *739 - organization: *741 - repository: *742 + installation: *741 + enterprise: *740 + organization: *742 + repository: *743 sender: *4 required: - check_run @@ -110961,11 +111032,11 @@ x-webhooks: type: string enum: - created - check_run: *745 - installation: *740 - enterprise: *739 - organization: *741 - repository: *742 + check_run: *746 + installation: *741 + enterprise: *740 + organization: *742 + repository: *743 sender: *4 required: - check_run @@ -111359,11 +111430,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *745 - installation: *740 - enterprise: *739 - organization: *741 - repository: *742 + check_run: *746 + installation: *741 + enterprise: *740 + organization: *742 + repository: *743 requested_action: description: The action requested by the user. type: object @@ -111766,11 +111837,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *745 - installation: *740 - enterprise: *739 - organization: *741 - repository: *742 + check_run: *746 + installation: *741 + enterprise: *740 + organization: *742 + repository: *743 sender: *4 required: - check_run @@ -112740,10 +112811,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -113432,10 +113503,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -114118,10 +114189,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -114432,20 +114503,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &746 + commit_oid: &747 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: *739 - installation: *740 - organization: *741 - ref: &747 + enterprise: *740 + installation: *741 + organization: *742 + ref: &748 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: *742 + repository: *743 sender: *4 required: - action @@ -114840,12 +114911,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *746 - enterprise: *739 - installation: *740 - organization: *741 - ref: *747 - repository: *742 + commit_oid: *747 + enterprise: *740 + installation: *741 + organization: *742 + ref: *748 + repository: *743 sender: *4 required: - action @@ -115111,12 +115182,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *746 - enterprise: *739 - installation: *740 - organization: *741 - ref: *747 - repository: *742 + commit_oid: *747 + enterprise: *740 + installation: *741 + organization: *742 + ref: *748 + repository: *743 sender: *4 required: - action @@ -115448,12 +115519,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *746 - enterprise: *739 - installation: *740 - organization: *741 - ref: *747 - repository: *742 + commit_oid: *747 + enterprise: *740 + installation: *741 + organization: *742 + ref: *748 + repository: *743 sender: *4 required: - action @@ -115727,16 +115798,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *742 + repository: *743 sender: *4 required: - action @@ -115973,12 +116044,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *746 - enterprise: *739 - installation: *740 - organization: *741 - ref: *747 - repository: *742 + commit_oid: *747 + enterprise: *740 + installation: *741 + organization: *742 + ref: *748 + repository: *743 sender: *4 required: - action @@ -116289,10 +116360,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -116547,10 +116618,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -116630,18 +116701,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *741 - pusher_type: &748 + organization: *742 + pusher_type: &749 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &749 + ref: &750 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -116651,7 +116722,7 @@ x-webhooks: enum: - tag - branch - repository: *742 + repository: *743 sender: *4 required: - ref @@ -116734,9 +116805,9 @@ x-webhooks: enum: - created definition: *290 - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 sender: *4 required: - action @@ -116821,9 +116892,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 sender: *4 required: - action @@ -116901,9 +116972,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *290 - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 sender: *4 required: - action @@ -116981,9 +117052,9 @@ x-webhooks: enum: - updated definition: *290 - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 sender: *4 required: - action @@ -117060,10 +117131,10 @@ x-webhooks: type: string enum: - updated - enterprise: *739 - installation: *740 - repository: *742 - organization: *741 + enterprise: *740 + installation: *741 + repository: *743 + organization: *742 sender: *4 new_property_values: type: array @@ -117148,18 +117219,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *739 - installation: *740 - organization: *741 - pusher_type: *748 - ref: *749 + enterprise: *740 + installation: *741 + organization: *742 + pusher_type: *749 + ref: *750 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *742 + repository: *743 sender: *4 required: - ref @@ -117240,10 +117311,10 @@ x-webhooks: enum: - assignees_changed alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117324,10 +117395,10 @@ x-webhooks: enum: - auto_dismissed alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117409,10 +117480,10 @@ x-webhooks: enum: - auto_reopened alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117494,10 +117565,10 @@ x-webhooks: enum: - created alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117577,10 +117648,10 @@ x-webhooks: enum: - dismissed alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117660,10 +117731,10 @@ x-webhooks: enum: - fixed alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117744,10 +117815,10 @@ x-webhooks: enum: - reintroduced alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117827,10 +117898,10 @@ x-webhooks: enum: - reopened alert: *499 - installation: *740 - organization: *741 - enterprise: *739 - repository: *742 + installation: *741 + organization: *742 + enterprise: *740 + repository: *743 sender: *4 required: - action @@ -117907,9 +117978,9 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - key: &750 + enterprise: *740 + installation: *741 + key: &751 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -117945,8 +118016,8 @@ x-webhooks: - verified - created_at - read_only - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -118023,11 +118094,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - key: *750 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + key: *751 + organization: *742 + repository: *743 sender: *4 required: - action @@ -118583,12 +118654,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - workflow: &756 + workflow: &757 title: Workflow type: object nullable: true @@ -119329,15 +119400,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *751 - required: *752 + properties: *752 + required: *753 nullable: true pull_requests: type: array - items: *594 - repository: *742 - organization: *741 - installation: *740 + items: *595 + repository: *743 + organization: *742 + installation: *741 sender: *4 responses: '200': @@ -119408,7 +119479,7 @@ x-webhooks: type: string enum: - approved - approver: &753 + approver: &754 type: object properties: avatar_url: @@ -119451,11 +119522,11 @@ x-webhooks: type: string comment: type: string - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - reviewers: &754 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + reviewers: &755 type: array items: type: object @@ -119534,7 +119605,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &755 + workflow_job_run: &756 type: object properties: conclusion: @@ -120265,18 +120336,18 @@ x-webhooks: type: string enum: - rejected - approver: *753 + approver: *754 comment: type: string - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - reviewers: *754 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + reviewers: *755 sender: *4 since: type: string - workflow_job_run: *755 + workflow_job_run: *756 workflow_job_runs: type: array items: @@ -120980,13 +121051,13 @@ x-webhooks: type: string enum: - requested - enterprise: *739 + enterprise: *740 environment: type: string - installation: *740 - organization: *741 - repository: *742 - requestor: &761 + installation: *741 + organization: *742 + repository: *743 + requestor: &762 title: User type: object nullable: true @@ -122875,12 +122946,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - workflow: *756 + workflow: *757 workflow_run: title: Deployment Workflow Run type: object @@ -123560,7 +123631,7 @@ x-webhooks: type: string enum: - answered - answer: &759 + answer: &760 type: object properties: author_association: @@ -123717,11 +123788,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -123848,11 +123919,11 @@ x-webhooks: - from required: - category - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -123935,11 +124006,11 @@ x-webhooks: type: string enum: - closed - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124021,7 +124092,7 @@ x-webhooks: type: string enum: - created - comment: &758 + comment: &759 type: object properties: author_association: @@ -124178,11 +124249,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124265,12 +124336,12 @@ x-webhooks: type: string enum: - deleted - comment: *758 - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + comment: *759 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124365,12 +124436,12 @@ x-webhooks: - from required: - body - comment: *758 - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + comment: *759 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124454,11 +124525,11 @@ x-webhooks: type: string enum: - created - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124540,11 +124611,11 @@ x-webhooks: type: string enum: - deleted - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124644,11 +124715,11 @@ x-webhooks: type: string required: - from - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124730,10 +124801,10 @@ x-webhooks: type: string enum: - labeled - discussion: *757 - enterprise: *739 - installation: *740 - label: &760 + discussion: *758 + enterprise: *740 + installation: *741 + label: &761 title: Label type: object properties: @@ -124765,8 +124836,8 @@ x-webhooks: - color - default - description - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124849,11 +124920,11 @@ x-webhooks: type: string enum: - locked - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -124935,11 +125006,11 @@ x-webhooks: type: string enum: - pinned - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125021,11 +125092,11 @@ x-webhooks: type: string enum: - reopened - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125110,16 +125181,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *757 - new_repository: *742 + new_discussion: *758 + new_repository: *743 required: - new_discussion - new_repository - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125202,10 +125273,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *757 - old_answer: *759 - organization: *741 - repository: *742 + discussion: *758 + old_answer: *760 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125287,12 +125358,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *757 - enterprise: *739 - installation: *740 - label: *760 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125375,11 +125446,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125461,11 +125532,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *757 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + discussion: *758 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -125538,7 +125609,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *739 + enterprise: *740 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -126198,9 +126269,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - forkee @@ -126346,9 +126417,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pages: description: The pages that were updated. type: array @@ -126385,7 +126456,7 @@ x-webhooks: - action - sha - html_url - repository: *742 + repository: *743 sender: *4 required: - pages @@ -126461,10 +126532,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories: &762 + organization: *742 + repositories: &763 description: An array of repository objects that the installation can access. type: array @@ -126490,8 +126561,8 @@ x-webhooks: - name - full_name - private - repository: *742 - requester: *761 + repository: *743 + requester: *762 sender: *4 required: - action @@ -126566,11 +126637,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories: *762 - repository: *742 + organization: *742 + repositories: *763 + repository: *743 requester: nullable: true sender: *4 @@ -126646,11 +126717,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories: *762 - repository: *742 + organization: *742 + repositories: *763 + repository: *743 requester: nullable: true sender: *4 @@ -126726,10 +126797,10 @@ x-webhooks: type: string enum: - added - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories_added: &763 + organization: *742 + repositories_added: &764 description: An array of repository objects, which were added to the installation. type: array @@ -126775,15 +126846,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *742 - repository_selection: &764 + repository: *743 + repository_selection: &765 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *761 + requester: *762 sender: *4 required: - action @@ -126862,10 +126933,10 @@ x-webhooks: type: string enum: - removed - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories_added: *763 + organization: *742 + repositories_added: *764 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -126892,9 +126963,9 @@ x-webhooks: - name - full_name - private - repository: *742 - repository_selection: *764 - requester: *761 + repository: *743 + repository_selection: *765 + requester: *762 sender: *4 required: - action @@ -126973,11 +127044,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories: *762 - repository: *742 + organization: *742 + repositories: *763 + repository: *743 requester: nullable: true sender: *4 @@ -127155,10 +127226,10 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 target_type: type: string @@ -127237,11 +127308,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *739 + enterprise: *740 installation: *22 - organization: *741 - repositories: *762 - repository: *742 + organization: *742 + repositories: *763 + repository: *743 requester: nullable: true sender: *4 @@ -127415,8 +127486,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *571 - required: *572 + properties: *572 + required: *573 nullable: true user: title: User @@ -127501,8 +127572,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128291,8 +128362,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128641,8 +128712,8 @@ x-webhooks: - state - locked - assignee - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -128722,7 +128793,7 @@ x-webhooks: type: string enum: - deleted - comment: &765 + comment: &766 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -128879,8 +128950,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *571 - required: *572 + properties: *572 + required: *573 nullable: true required: - url @@ -128895,8 +128966,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129681,8 +129752,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130033,8 +130104,8 @@ x-webhooks: - state - locked - assignee - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -130114,7 +130185,7 @@ x-webhooks: type: string enum: - edited - changes: &794 + changes: &795 description: The changes to the comment. type: object properties: @@ -130126,9 +130197,9 @@ x-webhooks: type: string required: - from - comment: *765 - enterprise: *739 - installation: *740 + comment: *766 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130916,8 +130987,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131266,8 +131337,8 @@ x-webhooks: - state - locked - assignee - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -131348,9 +131419,9 @@ x-webhooks: type: string enum: - pinned - comment: *765 - enterprise: *739 - installation: *740 + comment: *766 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132140,8 +132211,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132492,8 +132563,8 @@ x-webhooks: - state - locked - assignee - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -132573,9 +132644,9 @@ x-webhooks: type: string enum: - unpinned - comment: *765 - enterprise: *739 - installation: *740 + comment: *766 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133365,8 +133436,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133717,8 +133788,8 @@ x-webhooks: - state - locked - assignee - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -133807,9 +133878,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -133898,9 +133969,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -133988,9 +134059,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -134079,9 +134150,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -134161,10 +134232,10 @@ x-webhooks: type: string enum: - assigned - assignee: *761 - enterprise: *739 - installation: *740 - issue: &768 + assignee: *762 + enterprise: *740 + installation: *741 + issue: &769 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -134956,11 +135027,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135077,8 +135148,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -135158,8 +135229,8 @@ x-webhooks: type: string enum: - closed - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135956,11 +136027,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136212,8 +136283,8 @@ x-webhooks: required: - state - closed_at - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -136292,8 +136363,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137081,11 +137152,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137201,8 +137272,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -137281,8 +137352,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138092,11 +138163,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138191,7 +138262,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &766 + milestone: &767 title: Milestone description: A collection of related issues and pull requests. type: object @@ -138329,8 +138400,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -138429,8 +138500,8 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139222,11 +139293,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139343,9 +139414,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *760 - organization: *741 - repository: *742 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -139425,8 +139496,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140217,11 +140288,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140338,9 +140409,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *760 - organization: *741 - repository: *742 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -140420,8 +140491,8 @@ x-webhooks: type: string enum: - locked - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141236,11 +141307,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141334,8 +141405,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -141414,8 +141485,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142224,11 +142295,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142322,9 +142393,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *766 - organization: *741 - repository: *742 + milestone: *767 + organization: *742 + repository: *743 sender: *4 required: - action @@ -143187,11 +143258,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143772,8 +143843,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144557,11 +144628,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144685,8 +144756,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -144766,9 +144837,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *739 - installation: *740 - issue: &767 + enterprise: *740 + installation: *741 + issue: &768 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145554,11 +145625,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145674,8 +145745,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -145754,8 +145825,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146568,11 +146639,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146667,8 +146738,8 @@ x-webhooks: user_view_type: type: string type: *242 - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -147537,11 +147608,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148136,11 +148207,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *739 - installation: *740 - issue: *767 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + issue: *768 + organization: *742 + repository: *743 sender: *4 required: - action @@ -148220,12 +148291,12 @@ x-webhooks: type: string enum: - typed - enterprise: *739 - installation: *740 - issue: *768 + enterprise: *740 + installation: *741 + issue: *769 type: *242 - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -148306,7 +148377,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &797 + assignee: &798 title: User type: object nullable: true @@ -148376,11 +148447,11 @@ x-webhooks: required: - login - id - enterprise: *739 - installation: *740 - issue: *768 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + issue: *769 + organization: *742 + repository: *743 sender: *4 required: - action @@ -148459,12 +148530,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *739 - installation: *740 - issue: *768 - label: *760 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + issue: *769 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -148544,8 +148615,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149358,11 +149429,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *675 - issue_dependencies_summary: *676 + sub_issues_summary: *676 + issue_dependencies_summary: *677 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149456,8 +149527,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -149537,11 +149608,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *739 - installation: *740 - issue: *767 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + issue: *768 + organization: *742 + repository: *743 sender: *4 required: - action @@ -149620,12 +149691,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *739 - installation: *740 - issue: *768 + enterprise: *740 + installation: *741 + issue: *769 type: *242 - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -149705,11 +149776,11 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - label: *760 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -149787,11 +149858,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - label: *760 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -149901,11 +149972,11 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - label: *760 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + label: *761 + organization: *742 + repository: *743 sender: *4 required: - action @@ -149987,9 +150058,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *739 - installation: *740 - marketplace_purchase: &769 + enterprise: *740 + installation: *741 + marketplace_purchase: &770 title: Marketplace Purchase type: object required: @@ -150072,8 +150143,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *741 - previous_marketplace_purchase: &770 + organization: *742 + previous_marketplace_purchase: &771 title: Marketplace Purchase type: object properties: @@ -150153,7 +150224,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *742 + repository: *743 sender: *4 required: - action @@ -150233,10 +150304,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *739 - installation: *740 - marketplace_purchase: *769 - organization: *741 + enterprise: *740 + installation: *741 + marketplace_purchase: *770 + organization: *742 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150319,7 +150390,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *742 + repository: *743 sender: *4 required: - action @@ -150401,10 +150472,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *739 - installation: *740 - marketplace_purchase: *769 - organization: *741 + enterprise: *740 + installation: *741 + marketplace_purchase: *770 + organization: *742 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150486,7 +150557,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *742 + repository: *743 sender: *4 required: - action @@ -150567,8 +150638,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 marketplace_purchase: title: Marketplace Purchase type: object @@ -150650,9 +150721,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *741 - previous_marketplace_purchase: *770 - repository: *742 + organization: *742 + previous_marketplace_purchase: *771 + repository: *743 sender: *4 required: - action @@ -150732,12 +150803,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *739 - installation: *740 - marketplace_purchase: *769 - organization: *741 - previous_marketplace_purchase: *770 - repository: *742 + enterprise: *740 + installation: *741 + marketplace_purchase: *770 + organization: *742 + previous_marketplace_purchase: *771 + repository: *743 sender: *4 required: - action @@ -150839,11 +150910,11 @@ x-webhooks: type: string required: - to - enterprise: *739 - installation: *740 - member: *761 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + member: *762 + organization: *742 + repository: *743 sender: *4 required: - action @@ -150943,11 +151014,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *739 - installation: *740 - member: *761 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + member: *762 + organization: *742 + repository: *743 sender: *4 required: - action @@ -151026,11 +151097,11 @@ x-webhooks: type: string enum: - removed - enterprise: *739 - installation: *740 - member: *761 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + member: *762 + organization: *742 + repository: *743 sender: *4 required: - action @@ -151108,11 +151179,11 @@ x-webhooks: type: string enum: - added - enterprise: *739 - installation: *740 - member: *761 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + member: *762 + organization: *742 + repository: *743 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151188,7 +151259,7 @@ x-webhooks: required: - login - id - team: &771 + team: &772 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -151411,11 +151482,11 @@ x-webhooks: type: string enum: - removed - enterprise: *739 - installation: *740 - member: *761 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + member: *762 + organization: *742 + repository: *743 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151492,7 +151563,7 @@ x-webhooks: required: - login - id - team: *771 + team: *772 required: - action - scope @@ -151574,8 +151645,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *740 - merge_group: &773 + installation: *741 + merge_group: &774 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -151594,15 +151665,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *772 + head_commit: *773 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -151688,10 +151759,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *740 - merge_group: *773 - organization: *741 - repository: *742 + installation: *741 + merge_group: *774 + organization: *742 + repository: *743 sender: *4 required: - action @@ -151764,7 +151835,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 + enterprise: *740 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -151873,16 +151944,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *740 - organization: *741 + installation: *741 + organization: *742 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *774 - required: *775 + properties: *775 + required: *776 nullable: true sender: *4 required: @@ -151963,11 +152034,11 @@ x-webhooks: type: string enum: - closed - enterprise: *739 - installation: *740 - milestone: *766 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + milestone: *767 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152046,9 +152117,9 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - milestone: &776 + enterprise: *740 + installation: *741 + milestone: &777 title: Milestone description: A collection of related issues and pull requests. type: object @@ -152185,8 +152256,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152265,11 +152336,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - milestone: *766 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + milestone: *767 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152379,11 +152450,11 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - milestone: *766 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + milestone: *767 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152463,11 +152534,11 @@ x-webhooks: type: string enum: - opened - enterprise: *739 - installation: *740 - milestone: *776 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + milestone: *777 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152546,11 +152617,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *761 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + blocked_user: *762 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152629,11 +152700,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *761 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + blocked_user: *762 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152712,9 +152783,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - membership: &777 + enterprise: *740 + installation: *741 + membership: &778 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -152821,8 +152892,8 @@ x-webhooks: - role - organization_url - user - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152900,11 +152971,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *739 - installation: *740 - membership: *777 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + membership: *778 + organization: *742 + repository: *743 sender: *4 required: - action @@ -152983,8 +153054,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -153100,10 +153171,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 - user: *761 + user: *762 required: - action - invitation @@ -153181,11 +153252,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *739 - installation: *740 - membership: *777 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + membership: *778 + organization: *742 + repository: *743 sender: *4 required: - action @@ -153272,11 +153343,11 @@ x-webhooks: properties: from: type: string - enterprise: *739 - installation: *740 - membership: *777 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + membership: *778 + organization: *742 + repository: *743 sender: *4 required: - action @@ -153353,9 +153424,9 @@ x-webhooks: type: string enum: - published - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 package: description: Information about the package. type: object @@ -153854,7 +153925,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &778 + items: &779 title: Ruby Gems metadata type: object properties: @@ -153949,7 +154020,7 @@ x-webhooks: - owner - package_version - registry - repository: *742 + repository: *743 sender: *4 required: - action @@ -154025,9 +154096,9 @@ x-webhooks: type: string enum: - updated - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 package: description: Information about the package. type: object @@ -154380,7 +154451,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *778 + items: *779 source_url: type: string format: uri @@ -154450,7 +154521,7 @@ x-webhooks: - owner - package_version - registry - repository: *742 + repository: *743 sender: *4 required: - action @@ -154626,12 +154697,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *739 + enterprise: *740 id: type: integer - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - id @@ -154708,7 +154779,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &779 + personal_access_token_request: &780 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -154854,10 +154925,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *739 - organization: *741 + enterprise: *740 + organization: *742 sender: *4 - installation: *740 + installation: *741 required: - action - personal_access_token_request @@ -154934,11 +155005,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *779 - enterprise: *739 - organization: *741 + personal_access_token_request: *780 + enterprise: *740 + organization: *742 sender: *4 - installation: *740 + installation: *741 required: - action - personal_access_token_request @@ -155014,11 +155085,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *779 - enterprise: *739 - organization: *741 + personal_access_token_request: *780 + enterprise: *740 + organization: *742 sender: *4 - installation: *740 + installation: *741 required: - action - personal_access_token_request @@ -155093,11 +155164,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *779 - organization: *741 - enterprise: *739 + personal_access_token_request: *780 + organization: *742 + enterprise: *740 sender: *4 - installation: *740 + installation: *741 required: - action - personal_access_token_request @@ -155202,7 +155273,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *780 + last_response: *781 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -155234,8 +155305,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 zen: description: Random string of GitHub zen. @@ -155480,10 +155551,10 @@ x-webhooks: - from required: - note - enterprise: *739 - installation: *740 - organization: *741 - project_card: &781 + enterprise: *740 + installation: *741 + organization: *742 + project_card: &782 title: Project Card type: object properties: @@ -155602,7 +155673,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *742 + repository: *743 sender: *4 required: - action @@ -155683,11 +155754,11 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - project_card: *781 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project_card: *782 + repository: *743 sender: *4 required: - action @@ -155767,9 +155838,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 project_card: title: Project Card type: object @@ -155897,8 +155968,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *774 - required: *775 + properties: *775 + required: *776 nullable: true sender: *4 required: @@ -155992,11 +156063,11 @@ x-webhooks: - from required: - note - enterprise: *739 - installation: *740 - organization: *741 - project_card: *781 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project_card: *782 + repository: *743 sender: *4 required: - action @@ -156090,9 +156161,9 @@ x-webhooks: - from required: - column_id - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 project_card: allOf: - title: Project Card @@ -156282,7 +156353,7 @@ x-webhooks: type: string required: - after_id - repository: *742 + repository: *743 sender: *4 required: - action @@ -156362,10 +156433,10 @@ x-webhooks: type: string enum: - closed - enterprise: *739 - installation: *740 - organization: *741 - project: &783 + enterprise: *740 + installation: *741 + organization: *742 + project: &784 title: Project type: object properties: @@ -156489,7 +156560,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *742 + repository: *743 sender: *4 required: - action @@ -156569,10 +156640,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - project_column: &782 + enterprise: *740 + installation: *741 + organization: *742 + project_column: &783 title: Project Column type: object properties: @@ -156611,7 +156682,7 @@ x-webhooks: - name - created_at - updated_at - repository: *742 + repository: *743 sender: *4 required: - action @@ -156690,18 +156761,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - project_column: *782 + enterprise: *740 + installation: *741 + organization: *742 + project_column: *783 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *774 - required: *775 + properties: *775 + required: *776 nullable: true sender: *4 required: @@ -156791,11 +156862,11 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - organization: *741 - project_column: *782 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project_column: *783 + repository: *743 sender: *4 required: - action @@ -156875,11 +156946,11 @@ x-webhooks: type: string enum: - moved - enterprise: *739 - installation: *740 - organization: *741 - project_column: *782 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project_column: *783 + repository: *743 sender: *4 required: - action @@ -156959,11 +157030,11 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - project: *783 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project: *784 + repository: *743 sender: *4 required: - action @@ -157043,18 +157114,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - project: *783 + enterprise: *740 + installation: *741 + organization: *742 + project: *784 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *774 - required: *775 + properties: *775 + required: *776 nullable: true sender: *4 required: @@ -157156,11 +157227,11 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - organization: *741 - project: *783 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project: *784 + repository: *743 sender: *4 required: - action @@ -157239,11 +157310,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *739 - installation: *740 - organization: *741 - project: *783 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + project: *784 + repository: *743 sender: *4 required: - action @@ -157324,8 +157395,8 @@ x-webhooks: type: string enum: - closed - installation: *740 - organization: *741 + installation: *741 + organization: *742 projects_v2: *276 sender: *4 required: @@ -157407,8 +157478,8 @@ x-webhooks: type: string enum: - created - installation: *740 - organization: *741 + installation: *741 + organization: *742 projects_v2: *276 sender: *4 required: @@ -157490,8 +157561,8 @@ x-webhooks: type: string enum: - deleted - installation: *740 - organization: *741 + installation: *741 + organization: *742 projects_v2: *276 sender: *4 required: @@ -157609,8 +157680,8 @@ x-webhooks: type: string to: type: string - installation: *740 - organization: *741 + installation: *741 + organization: *742 projects_v2: *276 sender: *4 required: @@ -157694,7 +157765,7 @@ x-webhooks: type: string enum: - archived - changes: &787 + changes: &788 type: object properties: archived_at: @@ -157708,9 +157779,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *740 - organization: *741 - projects_v2_item: &784 + installation: *741 + organization: *742 + projects_v2_item: &785 title: Projects v2 Item description: An item belonging to a project type: object @@ -157845,9 +157916,9 @@ x-webhooks: nullable: true to: type: string - installation: *740 - organization: *741 - projects_v2_item: *784 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -157929,9 +158000,9 @@ x-webhooks: type: string enum: - created - installation: *740 - organization: *741 - projects_v2_item: *784 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158012,9 +158083,9 @@ x-webhooks: type: string enum: - deleted - installation: *740 - organization: *741 - projects_v2_item: *784 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158120,7 +158191,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &785 + - &786 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -158142,7 +158213,7 @@ x-webhooks: required: - id - name - - &786 + - &787 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -158176,8 +158247,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *785 - *786 + - *787 required: - field_value - type: object @@ -158193,9 +158264,9 @@ x-webhooks: nullable: true required: - body - installation: *740 - organization: *741 - projects_v2_item: *784 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158290,9 +158361,9 @@ x-webhooks: to: type: string nullable: true - installation: *740 - organization: *741 - projects_v2_item: *784 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158375,10 +158446,10 @@ x-webhooks: type: string enum: - restored - changes: *787 - installation: *740 - organization: *741 - projects_v2_item: *784 + changes: *788 + installation: *741 + organization: *742 + projects_v2_item: *785 sender: *4 required: - action @@ -158460,8 +158531,8 @@ x-webhooks: type: string enum: - reopened - installation: *740 - organization: *741 + installation: *741 + organization: *742 projects_v2: *276 sender: *4 required: @@ -158543,14 +158614,14 @@ x-webhooks: type: string enum: - created - installation: *740 - organization: *741 - projects_v2_status_update: &790 + installation: *741 + organization: *742 + projects_v2_status_update: &791 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *788 - required: *789 + properties: *789 + required: *790 sender: *4 required: - action @@ -158631,9 +158702,9 @@ x-webhooks: type: string enum: - deleted - installation: *740 - organization: *741 - projects_v2_status_update: *790 + installation: *741 + organization: *742 + projects_v2_status_update: *791 sender: *4 required: - action @@ -158769,9 +158840,9 @@ x-webhooks: type: string format: date nullable: true - installation: *740 - organization: *741 - projects_v2_status_update: *790 + installation: *741 + organization: *742 + projects_v2_status_update: *791 sender: *4 required: - action @@ -158842,10 +158913,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - repository @@ -158922,13 +158993,13 @@ x-webhooks: type: string enum: - assigned - assignee: *761 - enterprise: *739 - installation: *740 - number: &791 + assignee: *762 + enterprise: *740 + installation: *741 + number: &792 description: The pull request number. type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -161215,7 +161286,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -161297,11 +161368,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -163583,7 +163654,7 @@ x-webhooks: - draft reason: type: string - repository: *742 + repository: *743 sender: *4 required: - action @@ -163665,11 +163736,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -165951,7 +166022,7 @@ x-webhooks: - draft reason: type: string - repository: *742 + repository: *743 sender: *4 required: - action @@ -166033,13 +166104,13 @@ x-webhooks: type: string enum: - closed - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: &792 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: &793 allOf: - - *594 + - *595 - type: object properties: allow_auto_merge: @@ -166101,7 +166172,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *742 + repository: *743 sender: *4 required: - action @@ -166182,12 +166253,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: *792 - repository: *742 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: *793 + repository: *743 sender: *4 required: - action @@ -166267,11 +166338,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *739 - milestone: *578 - number: *791 - organization: *741 - pull_request: &793 + enterprise: *740 + milestone: *579 + number: *792 + organization: *742 + pull_request: &794 title: Pull Request type: object properties: @@ -168552,7 +168623,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -168631,11 +168702,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -170935,7 +171006,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *742 + repository: *743 sender: *4 required: - action @@ -171059,12 +171130,12 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: *792 - repository: *742 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: *793 + repository: *743 sender: *4 required: - action @@ -171144,11 +171215,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -173433,7 +173504,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -173513,11 +173584,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *739 - installation: *740 - label: *760 - number: *791 - organization: *741 + enterprise: *740 + installation: *741 + label: *761 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -175803,7 +175874,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -175884,10 +175955,10 @@ x-webhooks: type: string enum: - locked - enterprise: *739 - installation: *740 - number: *791 - organization: *741 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -178171,7 +178242,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -178251,12 +178322,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *739 - milestone: *578 - number: *791 - organization: *741 - pull_request: *793 - repository: *742 + enterprise: *740 + milestone: *579 + number: *792 + organization: *742 + pull_request: *794 + repository: *743 sender: *4 required: - action @@ -178335,12 +178406,12 @@ x-webhooks: type: string enum: - opened - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: *792 - repository: *742 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: *793 + repository: *743 sender: *4 required: - action @@ -178421,12 +178492,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: *792 - repository: *742 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: *793 + repository: *743 sender: *4 required: - action @@ -178506,12 +178577,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *739 - installation: *740 - number: *791 - organization: *741 - pull_request: *792 - repository: *742 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 + pull_request: *793 + repository: *743 sender: *4 required: - action @@ -178877,9 +178948,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: type: object properties: @@ -181053,7 +181124,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *742 + repository: *743 sender: *4 required: - action @@ -181133,7 +181204,7 @@ x-webhooks: type: string enum: - deleted - comment: &795 + comment: &796 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -181418,9 +181489,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: type: object properties: @@ -183582,7 +183653,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *742 + repository: *743 sender: *4 required: - action @@ -183662,11 +183733,11 @@ x-webhooks: type: string enum: - edited - changes: *794 - comment: *795 - enterprise: *739 - installation: *740 - organization: *741 + changes: *795 + comment: *796 + enterprise: *740 + installation: *741 + organization: *742 pull_request: type: object properties: @@ -185831,7 +185902,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *742 + repository: *743 sender: *4 required: - action @@ -185912,9 +185983,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: title: Simple Pull Request type: object @@ -188091,7 +188162,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *742 + repository: *743 review: description: The review that was affected. type: object @@ -188338,9 +188409,9 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: title: Simple Pull Request type: object @@ -190390,8 +190461,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *742 - review: &796 + repository: *743 + review: &797 description: The review that was affected. type: object properties: @@ -190624,12 +190695,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: description: The pull request number. type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -192916,7 +192987,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 requested_reviewer: title: User type: object @@ -193000,12 +193071,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: description: The pull request number. type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -195299,7 +195370,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 requested_team: title: Team description: Groups of organization members that gives permissions @@ -195491,12 +195562,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: description: The pull request number. type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -197785,7 +197856,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 requested_reviewer: title: User type: object @@ -197870,12 +197941,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *739 - installation: *740 + enterprise: *740 + installation: *741 number: description: The pull request number. type: integer - organization: *741 + organization: *742 pull_request: title: Pull Request type: object @@ -200155,7 +200226,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 requested_team: title: Team description: Groups of organization members that gives permissions @@ -200336,9 +200407,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: title: Simple Pull Request type: object @@ -202517,8 +202588,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *742 - review: *796 + repository: *743 + review: *797 sender: *4 required: - action @@ -202598,9 +202669,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: title: Simple Pull Request type: object @@ -204688,7 +204759,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *742 + repository: *743 sender: *4 thread: type: object @@ -205075,9 +205146,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 pull_request: title: Simple Pull Request type: object @@ -207151,7 +207222,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *742 + repository: *743 sender: *4 thread: type: object @@ -207541,10 +207612,10 @@ x-webhooks: type: string before: type: string - enterprise: *739 - installation: *740 - number: *791 - organization: *741 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -209819,7 +209890,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -209901,11 +209972,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *797 - enterprise: *739 - installation: *740 - number: *791 - organization: *741 + assignee: *798 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -212192,7 +212263,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -212271,11 +212342,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *739 - installation: *740 - label: *760 - number: *791 - organization: *741 + enterprise: *740 + installation: *741 + label: *761 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -214552,7 +214623,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -214633,10 +214704,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *739 - installation: *740 - number: *791 - organization: *741 + enterprise: *740 + installation: *741 + number: *792 + organization: *742 pull_request: title: Pull Request type: object @@ -216905,7 +216976,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *742 + repository: *743 sender: *4 required: - action @@ -217105,7 +217176,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *739 + enterprise: *740 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -217197,8 +217268,8 @@ x-webhooks: - url - author - committer - installation: *740 - organization: *741 + installation: *741 + organization: *742 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -217784,9 +217855,9 @@ x-webhooks: type: string enum: - published - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 registry_package: type: object properties: @@ -218232,7 +218303,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *778 + items: *779 summary: type: string tag_name: @@ -218286,7 +218357,7 @@ x-webhooks: - owner - package_version - registry - repository: *742 + repository: *743 sender: *4 required: - action @@ -218364,9 +218435,9 @@ x-webhooks: type: string enum: - updated - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 registry_package: type: object properties: @@ -218674,7 +218745,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *778 + items: *779 summary: type: string tag_name: @@ -218723,7 +218794,7 @@ x-webhooks: - owner - package_version - registry - repository: *742 + repository: *743 sender: *4 required: - action @@ -218800,10 +218871,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - release: &798 + enterprise: *740 + installation: *741 + organization: *742 + release: &799 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219121,7 +219192,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *742 + repository: *743 sender: *4 required: - action @@ -219198,11 +219269,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - release: *798 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + release: *799 + repository: *743 sender: *4 required: - action @@ -219319,11 +219390,11 @@ x-webhooks: type: boolean required: - to - enterprise: *739 - installation: *740 - organization: *741 - release: *798 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + release: *799 + repository: *743 sender: *4 required: - action @@ -219401,9 +219472,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -219725,7 +219796,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *742 + repository: *743 sender: *4 required: - action @@ -219801,10 +219872,10 @@ x-webhooks: type: string enum: - published - enterprise: *739 - installation: *740 - organization: *741 - release: &799 + enterprise: *740 + installation: *741 + organization: *742 + release: &800 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -220123,7 +220194,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *742 + repository: *743 sender: *4 required: - action @@ -220199,11 +220270,11 @@ x-webhooks: type: string enum: - released - enterprise: *739 - installation: *740 - organization: *741 - release: *798 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + release: *799 + repository: *743 sender: *4 required: - action @@ -220279,11 +220350,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *739 - installation: *740 - organization: *741 - release: *799 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + release: *800 + repository: *743 sender: *4 required: - action @@ -220359,11 +220430,11 @@ x-webhooks: type: string enum: - published - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - repository_advisory: *661 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + repository_advisory: *662 sender: *4 required: - action @@ -220439,11 +220510,11 @@ x-webhooks: type: string enum: - reported - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - repository_advisory: *661 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + repository_advisory: *662 sender: *4 required: - action @@ -220519,10 +220590,10 @@ x-webhooks: type: string enum: - archived - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -220599,10 +220670,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -220680,10 +220751,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -220767,10 +220838,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -220882,10 +220953,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -220957,10 +221028,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 status: type: string @@ -221041,10 +221112,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221121,10 +221192,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221218,10 +221289,10 @@ x-webhooks: - name required: - repository - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221301,10 +221372,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 repository_ruleset: *324 sender: *4 required: @@ -221383,10 +221454,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 repository_ruleset: *324 sender: *4 required: @@ -221465,10 +221536,10 @@ x-webhooks: type: string enum: - edited - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 repository_ruleset: *324 changes: type: object @@ -221530,16 +221601,16 @@ x-webhooks: properties: added: type: array - items: *614 + items: *615 deleted: type: array - items: *614 + items: *615 updated: type: array items: type: object properties: - rule: *614 + rule: *615 changes: type: object properties: @@ -221773,10 +221844,10 @@ x-webhooks: - from required: - owner - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221854,10 +221925,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -221935,7 +222006,7 @@ x-webhooks: type: string enum: - create - alert: &800 + alert: &801 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -222057,10 +222128,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -222266,10 +222337,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -222347,11 +222418,11 @@ x-webhooks: type: string enum: - reopen - alert: *800 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *801 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -222550,10 +222621,10 @@ x-webhooks: enum: - fixed - open - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -222631,7 +222702,7 @@ x-webhooks: type: string enum: - assigned - alert: &801 + alert: &802 type: object properties: number: *178 @@ -222774,10 +222845,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -222855,11 +222926,11 @@ x-webhooks: type: string enum: - created - alert: *801 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *802 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -222940,11 +223011,11 @@ x-webhooks: type: string enum: - created - alert: *801 - installation: *740 - location: *802 - organization: *741 - repository: *742 + alert: *802 + installation: *741 + location: *803 + organization: *742 + repository: *743 sender: *4 required: - location @@ -223182,11 +223253,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *801 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *802 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223264,11 +223335,11 @@ x-webhooks: type: string enum: - reopened - alert: *801 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *802 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223346,11 +223417,11 @@ x-webhooks: type: string enum: - resolved - alert: *801 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *802 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223428,12 +223499,12 @@ x-webhooks: type: string enum: - unassigned - alert: *801 + alert: *802 assignee: *4 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223511,11 +223582,11 @@ x-webhooks: type: string enum: - validated - alert: *801 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + alert: *802 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -223641,10 +223712,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *742 - enterprise: *739 - installation: *740 - organization: *741 + repository: *743 + enterprise: *740 + installation: *741 + organization: *742 sender: *4 required: - action @@ -223722,11 +223793,11 @@ x-webhooks: type: string enum: - published - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - security_advisory: &803 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + security_advisory: &804 description: The details of the security advisory, including summary, description, and severity. type: object @@ -223897,11 +223968,11 @@ x-webhooks: type: string enum: - updated - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 - security_advisory: *803 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 + security_advisory: *804 sender: *4 required: - action @@ -223974,10 +224045,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -224150,9 +224221,9 @@ x-webhooks: type: object properties: security_and_analysis: *297 - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: *345 sender: *4 required: @@ -224231,12 +224302,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: &804 + sponsorship: &805 type: object properties: created_at: @@ -224537,12 +224608,12 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: *804 + sponsorship: *805 required: - action - sponsorship @@ -224630,12 +224701,12 @@ x-webhooks: type: string required: - from - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: *804 + sponsorship: *805 required: - action - changes @@ -224712,17 +224783,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &805 + effective_date: &806 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: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: *804 + sponsorship: *805 required: - action - sponsorship @@ -224796,7 +224867,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &806 + changes: &807 type: object properties: tier: @@ -224840,13 +224911,13 @@ x-webhooks: - from required: - tier - effective_date: *805 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + effective_date: *806 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: *804 + sponsorship: *805 required: - action - changes @@ -224923,13 +224994,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *806 - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + changes: *807 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - sponsorship: *804 + sponsorship: *805 required: - action - changes @@ -225003,10 +225074,10 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -225089,10 +225160,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -225512,15 +225583,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *739 + enterprise: *740 id: description: The unique identifier of the status. type: integer - installation: *740 + installation: *741 name: type: string - organization: *741 - repository: *742 + organization: *742 + repository: *743 sender: *4 sha: description: The Commit SHA. @@ -225635,9 +225706,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -225727,9 +225798,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -225819,9 +225890,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -225911,9 +225982,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *740 - organization: *741 - repository: *742 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -225990,12 +226061,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - team: &807 + team: &808 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -226218,9 +226289,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: title: Repository description: A git repository @@ -226678,7 +226749,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *807 + team: *808 required: - action - team @@ -226754,9 +226825,9 @@ x-webhooks: type: string enum: - created - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: title: Repository description: A git repository @@ -227214,7 +227285,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *807 + team: *808 required: - action - team @@ -227291,9 +227362,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: title: Repository description: A git repository @@ -227751,7 +227822,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *807 + team: *808 required: - action - team @@ -227895,9 +227966,9 @@ x-webhooks: - from required: - permissions - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: title: Repository description: A git repository @@ -228355,7 +228426,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *807 + team: *808 required: - action - changes @@ -228433,9 +228504,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *739 - installation: *740 - organization: *741 + enterprise: *740 + installation: *741 + organization: *742 repository: title: Repository description: A git repository @@ -228893,7 +228964,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *807 + team: *808 required: - action - team @@ -228969,10 +229040,10 @@ x-webhooks: type: string enum: - started - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 required: - action @@ -229045,16 +229116,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *739 + enterprise: *740 inputs: type: object nullable: true additionalProperties: true - installation: *740 - organization: *741 + installation: *741 + organization: *742 ref: type: string - repository: *742 + repository: *743 sender: *4 workflow: type: string @@ -229136,10 +229207,10 @@ x-webhooks: type: string enum: - completed - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 workflow_job: allOf: @@ -229376,7 +229447,7 @@ x-webhooks: type: string required: - conclusion - deployment: *505 + deployment: *506 required: - action - repository @@ -229455,10 +229526,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 workflow_job: allOf: @@ -229718,7 +229789,7 @@ x-webhooks: required: - status - steps - deployment: *505 + deployment: *506 required: - action - repository @@ -229797,10 +229868,10 @@ x-webhooks: type: string enum: - queued - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 workflow_job: type: object @@ -229935,7 +230006,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *505 + deployment: *506 required: - action - repository @@ -230014,10 +230085,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 workflow_job: type: object @@ -230153,7 +230224,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *505 + deployment: *506 required: - action - repository @@ -230233,12 +230304,12 @@ x-webhooks: type: string enum: - completed - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - workflow: *756 + workflow: *757 workflow_run: title: Workflow Run type: object @@ -231237,12 +231308,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - workflow: *756 + workflow: *757 workflow_run: title: Workflow Run type: object @@ -232226,12 +232297,12 @@ x-webhooks: type: string enum: - requested - enterprise: *739 - installation: *740 - organization: *741 - repository: *742 + enterprise: *740 + installation: *741 + organization: *742 + repository: *743 sender: *4 - workflow: *756 + workflow: *757 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index 5d74bb3c5a..2baae77f6c 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -339528,6 +339528,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/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index e3a0ad0747..96c55507b8 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -1074,7 +1074,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &666 + - &667 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -11196,7 +11196,7 @@ paths: properties: action: type: string - discussion: &760 + discussion: &761 title: Discussion description: A Discussion in a repository. type: object @@ -11563,7 +11563,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &551 + properties: &552 id: type: integer format: int64 @@ -11939,7 +11939,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &678 + sub_issues_summary: &679 title: Sub-issues Summary type: object properties: @@ -12026,7 +12026,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &574 + properties: &575 pinned_at: type: string format: date-time @@ -12038,7 +12038,7 @@ paths: properties: *20 required: *21 nullable: true - required: &575 + required: &576 - pinned_at - pinned_by nullable: true @@ -12052,7 +12052,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &679 + issue_dependencies_summary: &680 title: Issue Dependencies Summary type: object properties: @@ -12071,7 +12071,7 @@ paths: - total_blocking issue_field_values: type: array - items: &559 + items: &560 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12132,7 +12132,7 @@ paths: - node_id - data_type - value - required: &552 + required: &553 - assignee - closed_at - comments @@ -12153,7 +12153,7 @@ paths: - user - created_at - updated_at - x-github-breaking-changes: &553 + x-github-breaking-changes: &554 - changeset: deprecate_beta_media_type patch: properties: @@ -12213,7 +12213,7 @@ paths: action: type: string issue: *85 - comment: &547 + comment: &548 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -12877,7 +12877,7 @@ paths: type: string release: allOf: - - &608 + - &609 title: Release description: A release. type: object @@ -12948,7 +12948,7 @@ paths: author: *4 assets: type: array - items: &609 + items: &610 title: Release Asset description: Data related to a release. type: object @@ -13568,7 +13568,7 @@ paths: url: type: string format: uri - user: &685 + user: &686 title: Public User description: Public User type: object @@ -16974,7 +16974,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &584 + - &585 name: all description: If `true`, show notifications marked as read. in: query @@ -16982,7 +16982,7 @@ paths: schema: type: boolean default: false - - &585 + - &586 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16992,7 +16992,7 @@ paths: type: boolean default: false - *92 - - &586 + - &587 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: @@ -17528,7 +17528,7 @@ paths: - url - subscription_url examples: - default: &587 + default: &588 value: - id: '1' repository: @@ -19075,7 +19075,7 @@ paths: required: false schema: type: string - - &735 + - &736 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -19221,7 +19221,7 @@ paths: parameters: - *75 - *123 - - &736 + - &737 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 @@ -19333,7 +19333,7 @@ paths: - *123 - *125 - *124 - - &737 + - &738 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -19341,7 +19341,7 @@ paths: schema: type: string - *126 - - &738 + - &739 name: sku description: The SKU to query for usage. in: query @@ -26057,12 +26057,12 @@ paths: required: - subject_digests examples: - default: &717 + default: &718 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &718 + withPredicateType: &719 value: subject_digests: - sha256:abc123 @@ -26120,7 +26120,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &719 + default: &720 value: attestations_subject_digests: - sha256:abc: @@ -34049,7 +34049,7 @@ paths: application/json: schema: *22 examples: - default: &542 + default: &543 value: id: 1 account: @@ -34274,7 +34274,7 @@ paths: required: true content: application/json: - schema: &543 + schema: &544 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -36855,7 +36855,7 @@ paths: parameters: - *75 - *255 - - &700 + - &701 name: repo_name description: repo_name parameter in: path @@ -37914,7 +37914,7 @@ paths: - nuget - container - *75 - - &701 + - &702 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -37955,7 +37955,7 @@ paths: default: *262 '403': *29 '401': *25 - '400': &703 + '400': &704 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -39945,7 +39945,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &792 + properties: &793 id: type: number description: The unique identifier of the status update. @@ -39993,7 +39993,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &793 + required: &794 - id - node_id - created_at @@ -40433,7 +40433,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: &594 + auto_merge: &595 title: Auto merge description: The status of auto merging a pull request. type: object @@ -40883,7 +40883,7 @@ paths: - updated_at - project_url examples: - default: &722 + default: &723 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41060,7 +41060,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &723 + items: &724 type: object properties: name: @@ -41097,7 +41097,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &724 + iteration_configuration: &725 type: object description: The configuration for iteration fields. properties: @@ -41147,7 +41147,7 @@ paths: value: name: Due date data_type: date - single_select_field: &725 + single_select_field: &726 summary: Create a single select field value: name: Priority @@ -41174,7 +41174,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &726 + iteration_field: &727 summary: Create an iteration field value: name: Sprint @@ -41200,7 +41200,7 @@ paths: application/json: schema: *283 examples: - text_field: &727 + text_field: &728 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -41209,7 +41209,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: &728 + number_field: &729 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -41218,7 +41218,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: &729 + date_field: &730 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -41227,7 +41227,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: &730 + single_select_field: &731 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41261,7 +41261,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &731 + iteration_field: &732 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -41307,7 +41307,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *279 - - &732 + - &733 name: field_id description: The unique identifier of the field. in: path @@ -41322,7 +41322,7 @@ paths: application/json: schema: *283 examples: - default: &733 + default: &734 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -42519,7 +42519,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &714 + schema: &715 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -42696,7 +42696,7 @@ paths: parameters: - *279 - *75 - - &734 + - &735 name: view_number description: The number that identifies the project view. in: path @@ -44687,7 +44687,7 @@ paths: - *75 - *17 - *19 - - &616 + - &617 name: targets description: | A comma-separated list of rule targets to filter by. @@ -44968,7 +44968,7 @@ paths: - repository_property rules: type: array - items: &617 + items: &618 title: Repository Rule type: object description: A repository rule. @@ -45030,7 +45030,7 @@ paths: type: string enum: - required_linear_history - - &615 + - &616 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -45932,7 +45932,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *75 - - &618 + - &619 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 @@ -45947,7 +45947,7 @@ paths: in: query schema: type: string - - &619 + - &620 name: time_period description: |- The time period to filter by. @@ -45963,14 +45963,14 @@ paths: - week - month default: day - - &620 + - &621 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 - - &621 + - &622 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -45990,7 +45990,7 @@ paths: description: Response content: application/json: - schema: &622 + schema: &623 title: Rule Suites description: Response type: array @@ -46045,7 +46045,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &623 + default: &624 value: - id: 21 actor_id: 12 @@ -46089,7 +46089,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *75 - - &624 + - &625 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -46105,7 +46105,7 @@ paths: description: Response content: application/json: - schema: &625 + schema: &626 title: Rule Suite description: Response type: object @@ -46204,7 +46204,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &626 + default: &627 value: id: 21 actor_id: 12 @@ -46451,7 +46451,7 @@ paths: type: string format: date-time examples: - default: &628 + default: &629 value: - version_id: 3 actor: @@ -46504,7 +46504,7 @@ paths: description: Response content: application/json: - schema: &629 + schema: &630 allOf: - *329 - type: object @@ -46576,7 +46576,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *75 - - &630 + - &631 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -46587,7 +46587,7 @@ paths: enum: - open - resolved - - &631 + - &632 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -46597,7 +46597,7 @@ paths: required: false schema: type: string - - &632 + - &633 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -46608,7 +46608,7 @@ paths: required: false schema: type: string - - &633 + - &634 name: exclude_providers in: query description: |- @@ -46619,7 +46619,7 @@ paths: required: false schema: type: string - - &634 + - &635 name: providers in: query description: |- @@ -46630,7 +46630,7 @@ paths: required: false schema: type: string - - &635 + - &636 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -46639,7 +46639,7 @@ paths: required: false schema: type: string - - &636 + - &637 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -46658,7 +46658,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &637 + - &638 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. @@ -46673,7 +46673,7 @@ paths: - *61 - *19 - *17 - - &638 + - &639 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 @@ -46683,7 +46683,7 @@ paths: required: false schema: type: string - - &639 + - &640 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 @@ -46693,7 +46693,7 @@ paths: required: false schema: type: string - - &640 + - &641 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -46702,7 +46702,7 @@ paths: required: false schema: type: string - - &641 + - &642 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -46711,7 +46711,7 @@ paths: schema: type: boolean default: false - - &642 + - &643 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -46720,7 +46720,7 @@ paths: schema: type: boolean default: false - - &643 + - &644 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -46755,14 +46755,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &644 + state: &645 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: &645 + resolution: &646 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -46879,8 +46879,8 @@ paths: pull request. ' - oneOf: &646 - - &648 + oneOf: &647 + - &649 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -46938,7 +46938,7 @@ paths: - blob_url - commit_sha - commit_url - - &649 + - &650 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. @@ -46993,7 +46993,7 @@ paths: - page_url - commit_sha - commit_url - - &650 + - &651 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -47013,7 +47013,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &651 + - &652 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -47033,7 +47033,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &652 + - &653 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -47053,7 +47053,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &653 + - &654 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -47067,7 +47067,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &654 + - &655 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -47081,7 +47081,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &655 + - &656 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -47095,7 +47095,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &656 + - &657 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. @@ -47115,7 +47115,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &657 + - &658 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. @@ -47135,7 +47135,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &658 + - &659 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. @@ -47155,7 +47155,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &659 + - &660 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. @@ -47175,7 +47175,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &660 + - &661 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 request. @@ -47694,7 +47694,7 @@ paths: application/json: schema: type: array - items: &664 + items: &665 description: A repository security advisory. type: object properties: @@ -48017,7 +48017,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &665 + default: &666 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -50015,7 +50015,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &681 + response-if-user-is-a-team-maintainer: &682 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -50080,7 +50080,7 @@ paths: application/json: schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: &682 + response-if-users-membership-with-team-is-now-pending: &683 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -50194,7 +50194,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &683 + schema: &684 title: Team Repository description: A team's access to a repository. type: object @@ -50936,7 +50936,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: &684 + response-if-child-teams-exist: &685 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -52410,11 +52410,11 @@ paths: '302': description: Response headers: - Location: + Location: &506 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': &546 + '410': &547 description: Gone content: application/json: @@ -56025,7 +56025,7 @@ paths: items: type: object properties: - type: &512 + type: &513 type: string description: The type of reviewer. enum: @@ -56159,12 +56159,12 @@ paths: application/json: schema: type: array - items: &507 + items: &508 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &754 + properties: &755 url: type: string format: uri @@ -56249,7 +56249,7 @@ paths: nullable: true properties: *80 required: *81 - required: &755 + required: &756 - id - node_id - sha @@ -56265,7 +56265,7 @@ paths: - created_at - updated_at examples: - default: &508 + default: &509 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -56648,7 +56648,7 @@ paths: application/json: schema: *389 examples: - default: &525 + default: &526 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -56867,7 +56867,7 @@ paths: application/json: schema: *393 examples: - default: &526 + default: &527 value: name: USERNAME value: octocat @@ -58694,7 +58694,7 @@ paths: required: - sha - url - verification: &532 + verification: &533 title: Verification type: object properties: @@ -61880,7 +61880,7 @@ paths: check. type: array items: *90 - deployment: &747 + deployment: &748 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -62792,7 +62792,7 @@ paths: type: string format: date-time nullable: true - head_commit: &775 + head_commit: &776 title: Simple Commit description: A commit. type: object @@ -67080,14 +67080,14 @@ paths: type: integer machines: type: array - items: &690 + items: &691 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *466 required: *467 examples: - default: &691 + default: &692 value: total_count: 2 machines: @@ -67770,7 +67770,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &545 + schema: &546 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -68474,7 +68474,7 @@ paths: - content - created_at examples: - default: &549 + default: &550 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -68611,7 +68611,7 @@ paths: - *344 - *345 - *101 - - &550 + - &551 name: reaction_id description: The unique identifier of the reaction. in: path @@ -68725,7 +68725,7 @@ paths: type: array items: *478 examples: - default: &601 + default: &602 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69016,7 +69016,7 @@ paths: type: array items: *482 examples: - default: &593 + default: &594 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -69574,7 +69574,7 @@ paths: application/json: schema: *478 examples: - default: &580 + default: &581 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -70233,7 +70233,7 @@ paths: application/json: schema: type: array - items: &669 + items: &670 title: Status description: The status of a commit. type: object @@ -71202,7 +71202,7 @@ paths: - size - type - url - - &606 + - &607 title: Content File description: Content File type: object @@ -71825,7 +71825,7 @@ paths: schema: oneOf: - *3 - - &527 + - &528 description: Repository rule violation was detected type: object properties: @@ -71846,7 +71846,7 @@ paths: items: type: object properties: - placeholder_id: &661 + placeholder_id: &662 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -73417,6 +73417,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: + - *344 + - *345 + - 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: *506 + '202': + description: SBOM is still being processed, no content is returned. + '404': *6 + '403': *29 + 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: + - *344 + - *345 + 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': *29 + 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 @@ -73509,7 +73580,7 @@ paths: - version - url additionalProperties: false - metadata: &506 + metadata: &507 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -73542,7 +73613,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *506 + metadata: *507 resolved: type: object description: A collection of resolved package dependencies. @@ -73555,7 +73626,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *506 + metadata: *507 relationship: type: string description: A notation of whether a dependency is requested @@ -73725,9 +73796,9 @@ paths: application/json: schema: type: array - items: *507 + items: *508 examples: - default: *508 + default: *509 headers: Link: *67 x-github: @@ -73875,7 +73946,7 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: simple-example: summary: Simple example @@ -73950,7 +74021,7 @@ paths: parameters: - *344 - *345 - - &509 + - &510 name: deployment_id description: deployment_id parameter in: path @@ -73962,7 +74033,7 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: default: value: @@ -74029,7 +74100,7 @@ paths: parameters: - *344 - *345 - - *509 + - *510 responses: '204': description: Response @@ -74053,7 +74124,7 @@ paths: parameters: - *344 - *345 - - *509 + - *510 - *17 - *19 responses: @@ -74063,7 +74134,7 @@ paths: application/json: schema: type: array - items: &510 + items: &511 title: Deployment Status description: The status of a deployment. type: object @@ -74226,7 +74297,7 @@ paths: parameters: - *344 - *345 - - *509 + - *510 requestBody: required: true content: @@ -74301,9 +74372,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *511 examples: - default: &511 + default: &512 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -74361,7 +74432,7 @@ paths: parameters: - *344 - *345 - - *509 + - *510 - name: status_id in: path required: true @@ -74372,9 +74443,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *511 examples: - default: *511 + default: *512 '404': *6 x-github: githubCloudOnly: false @@ -74475,7 +74546,7 @@ paths: type: integer environments: type: array - items: &513 + items: &514 title: Environment description: Details of a deployment environment type: object @@ -74527,7 +74598,7 @@ paths: type: type: string example: wait_timer - wait_timer: &515 + wait_timer: &516 type: integer example: 30 description: The amount of time to delay a job after @@ -74564,7 +74635,7 @@ paths: items: type: object properties: - type: *512 + type: *513 reviewer: anyOf: - *4 @@ -74588,7 +74659,7 @@ paths: - id - node_id - type - deployment_branch_policy: &516 + deployment_branch_policy: &517 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -74706,7 +74777,7 @@ paths: parameters: - *344 - *345 - - &514 + - &515 name: environment_name in: path required: true @@ -74719,9 +74790,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: &517 + default: &518 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -74807,7 +74878,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 requestBody: required: false content: @@ -74816,7 +74887,7 @@ paths: type: object nullable: true properties: - wait_timer: *515 + wait_timer: *516 prevent_self_review: type: boolean example: false @@ -74833,13 +74904,13 @@ paths: items: type: object properties: - type: *512 + type: *513 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *516 + deployment_branch_policy: *517 additionalProperties: false examples: default: @@ -74859,9 +74930,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: *517 + default: *518 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -74887,7 +74958,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 responses: '204': description: Default response @@ -74914,7 +74985,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 - *17 - *19 responses: @@ -74932,7 +75003,7 @@ paths: example: 2 branch_policies: type: array - items: &518 + items: &519 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -74991,7 +75062,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 requestBody: required: true content: @@ -75037,9 +75108,9 @@ paths: description: Response content: application/json: - schema: *518 + schema: *519 examples: - example-wildcard: &519 + example-wildcard: &520 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -75083,8 +75154,8 @@ paths: parameters: - *344 - *345 - - *514 - - &520 + - *515 + - &521 name: branch_policy_id in: path required: true @@ -75096,9 +75167,9 @@ paths: description: Response content: application/json: - schema: *518 + schema: *519 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75119,8 +75190,8 @@ paths: parameters: - *344 - *345 - - *514 - - *520 + - *515 + - *521 requestBody: required: true content: @@ -75148,9 +75219,9 @@ paths: description: Response content: application/json: - schema: *518 + schema: *519 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75171,8 +75242,8 @@ paths: parameters: - *344 - *345 - - *514 - - *520 + - *515 + - *521 responses: '204': description: Response @@ -75197,7 +75268,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *514 + - *515 - *345 - *344 responses: @@ -75215,7 +75286,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &521 + items: &522 title: Deployment protection rule description: Deployment protection rule type: object @@ -75234,7 +75305,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &522 + app: &523 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -75333,7 +75404,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: - - *514 + - *515 - *345 - *344 requestBody: @@ -75356,9 +75427,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *521 + schema: *522 examples: - default: &523 + default: &524 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -75393,7 +75464,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: - - *514 + - *515 - *345 - *344 - *19 @@ -75414,7 +75485,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *522 + items: *523 examples: default: value: @@ -75451,8 +75522,8 @@ paths: parameters: - *344 - *345 - - *514 - - &524 + - *515 + - &525 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -75464,9 +75535,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: *523 + default: *524 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75487,10 +75558,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *514 + - *515 - *345 - *344 - - *524 + - *525 responses: '204': description: Response @@ -75518,7 +75589,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 - *17 - *19 responses: @@ -75565,7 +75636,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 responses: '200': description: Response @@ -75597,7 +75668,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 - *168 responses: '200': @@ -75606,7 +75677,7 @@ paths: application/json: schema: *389 examples: - default: *525 + default: *526 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75630,7 +75701,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 - *168 requestBody: required: true @@ -75690,7 +75761,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 - *168 responses: '204': @@ -75718,7 +75789,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 - *360 - *19 responses: @@ -75763,7 +75834,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 requestBody: required: true content: @@ -75817,7 +75888,7 @@ paths: parameters: - *344 - *345 - - *514 + - *515 - *171 responses: '200': @@ -75826,7 +75897,7 @@ paths: application/json: schema: *393 examples: - default: *526 + default: *527 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75850,7 +75921,7 @@ paths: - *344 - *345 - *171 - - *514 + - *515 requestBody: required: true content: @@ -75895,7 +75966,7 @@ paths: - *344 - *345 - *171 - - *514 + - *515 responses: '204': description: Response @@ -76263,7 +76334,7 @@ paths: schema: oneOf: - *129 - - *527 + - *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76498,7 +76569,7 @@ paths: description: Response content: application/json: - schema: &528 + schema: &529 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -76720,7 +76791,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: default: value: @@ -76778,7 +76849,7 @@ paths: parameters: - *344 - *345 - - &529 + - &530 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. @@ -76795,7 +76866,7 @@ paths: application/json: schema: type: array - items: &530 + items: &531 title: Git Reference description: Git references within a repository type: object @@ -76872,15 +76943,15 @@ paths: parameters: - *344 - *345 - - *529 + - *530 responses: '200': description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: &531 + default: &532 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -76939,9 +77010,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *531 + default: *532 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -76969,7 +77040,7 @@ paths: parameters: - *344 - *345 - - *529 + - *530 requestBody: required: true content: @@ -76998,9 +77069,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *531 + default: *532 '422': *15 '409': *54 x-github: @@ -77020,7 +77091,7 @@ paths: parameters: - *344 - *345 - - *529 + - *530 responses: '204': description: Response @@ -77143,7 +77214,7 @@ paths: description: Response content: application/json: - schema: &533 + schema: &534 title: Git Tag description: Metadata for a Git tag type: object @@ -77194,7 +77265,7 @@ paths: - sha - type - url - verification: *532 + verification: *533 required: - sha - url @@ -77204,7 +77275,7 @@ paths: - tag - message examples: - default: &534 + default: &535 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -77289,9 +77360,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *534 + default: *535 '404': *6 '409': *54 x-github: @@ -77389,7 +77460,7 @@ paths: description: Response content: application/json: - schema: &535 + schema: &536 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -77509,7 +77580,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: default-response: summary: Default response @@ -77579,7 +77650,7 @@ paths: application/json: schema: type: array - items: &536 + items: &537 title: Webhook description: Webhooks for repositories. type: object @@ -77633,7 +77704,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &784 + last_response: &785 title: Hook Response type: object properties: @@ -77760,9 +77831,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: - default: &537 + default: &538 value: type: Repository id: 12345678 @@ -77818,9 +77889,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: - default: *537 + default: *538 '404': *6 x-github: githubCloudOnly: false @@ -77887,9 +77958,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: - default: *537 + default: *538 '422': *15 '404': *6 x-github: @@ -78285,7 +78356,7 @@ paths: description: Response content: application/json: - schema: &538 + schema: &539 title: Import description: A repository import from an external source. type: object @@ -78384,7 +78455,7 @@ paths: - html_url - authors_url examples: - default: &541 + default: &542 value: vcs: subversion use_lfs: true @@ -78400,7 +78471,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': &539 + '503': &540 description: Unavailable due to service under maintenance. content: application/json: @@ -78478,7 +78549,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -78503,7 +78574,7 @@ paths: type: string '422': *15 '404': *6 - '503': *539 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78581,7 +78652,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: example-1: summary: Example 1 @@ -78629,7 +78700,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': *539 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78657,7 +78728,7 @@ paths: responses: '204': description: Response - '503': *539 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78685,7 +78756,7 @@ paths: parameters: - *344 - *345 - - &712 + - &713 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -78699,7 +78770,7 @@ paths: application/json: schema: type: array - items: &540 + items: &541 title: Porter Author description: Porter Author type: object @@ -78753,7 +78824,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': *539 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78809,7 +78880,7 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: default: value: @@ -78822,7 +78893,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *539 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78888,7 +78959,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *539 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78944,11 +79015,11 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: - default: *541 + default: *542 '422': *15 - '503': *539 + '503': *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78980,7 +79051,7 @@ paths: application/json: schema: *22 examples: - default: *542 + default: *543 '301': *348 '404': *6 x-github: @@ -79015,7 +79086,7 @@ paths: properties: {} additionalProperties: false examples: - default: &544 + default: &545 value: limit: collaborators_only origin: repository @@ -79046,7 +79117,7 @@ paths: required: true content: application/json: - schema: *543 + schema: *544 examples: default: summary: Example request body @@ -79060,7 +79131,7 @@ paths: application/json: schema: *235 examples: - default: *544 + default: *545 '409': description: Response x-github: @@ -79117,9 +79188,9 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: &705 + default: &706 value: - id: 1 repository: @@ -79281,7 +79352,7 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: default: value: @@ -79519,7 +79590,7 @@ paths: type: array items: *85 examples: - default: &558 + default: &559 value: - id: 1 node_id: MDU6SXNzdWUx @@ -79782,7 +79853,7 @@ paths: application/json: schema: *85 examples: - default: &555 + default: &556 value: id: 1 node_id: MDU6SXNzdWUx @@ -79945,7 +80016,7 @@ paths: '422': *15 '503': *121 '404': *6 - '410': *546 + '410': *547 x-github: triggersNotification: true githubCloudOnly: false @@ -80005,9 +80076,9 @@ paths: application/json: schema: type: array - items: *547 + items: *548 examples: - default: &557 + default: &558 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80073,9 +80144,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: &548 + default: &549 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80154,9 +80225,9 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 '422': *15 x-github: githubCloudOnly: false @@ -80212,7 +80283,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: default: value: @@ -80268,7 +80339,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *546 + '410': *547 '422': *15 x-github: githubCloudOnly: false @@ -80294,7 +80365,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *546 + '410': *547 '503': *121 x-github: githubCloudOnly: false @@ -80342,7 +80413,7 @@ paths: type: array items: *476 examples: - default: *549 + default: *550 headers: Link: *67 '404': *6 @@ -80431,7 +80502,7 @@ paths: - *344 - *345 - *101 - - *550 + - *551 responses: '204': description: Response @@ -80462,7 +80533,7 @@ paths: application/json: schema: type: array - items: &554 + items: &555 title: Issue Event description: Issue Event type: object @@ -80505,9 +80576,9 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *551 - required: *552 - x-github-breaking-changes: *553 + properties: *552 + required: *553 + x-github-breaking-changes: *554 nullable: true label: title: Issue Event Label @@ -80827,7 +80898,7 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: default: value: @@ -81020,7 +81091,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *546 + '410': *547 '403': *29 x-github: githubCloudOnly: false @@ -81056,7 +81127,7 @@ paths: parameters: - *344 - *345 - - &556 + - &557 name: issue_number description: The number that identifies the issue. in: path @@ -81072,7 +81143,7 @@ paths: examples: default: summary: Issue - value: *555 + value: *556 pinned_comment: summary: Issue with pinned comment value: @@ -81279,7 +81350,7 @@ paths: version: '2026-03-10' '301': *348 '404': *6 - '410': *546 + '410': *547 '304': *37 x-github: githubCloudOnly: false @@ -81306,7 +81377,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: false content: @@ -81432,13 +81503,13 @@ paths: application/json: schema: *85 examples: - default: *555 + default: *556 '422': *15 '503': *121 '403': *29 '301': *348 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81468,7 +81539,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: false content: @@ -81496,7 +81567,7 @@ paths: application/json: schema: *85 examples: - default: *555 + default: *556 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81514,7 +81585,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: content: application/json: @@ -81541,7 +81612,7 @@ paths: application/json: schema: *85 examples: - default: *555 + default: *556 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81565,7 +81636,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - name: assignee in: path required: true @@ -81607,7 +81678,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - *92 - *17 - *19 @@ -81618,13 +81689,13 @@ paths: application/json: schema: type: array - items: *547 + items: *548 examples: - default: *557 + default: *558 headers: Link: *67 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81655,7 +81726,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: true content: @@ -81677,16 +81748,16 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: - default: *548 + default: *549 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *546 + '410': *547 '422': *15 '404': *6 x-github: @@ -81716,7 +81787,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - *17 - *19 responses: @@ -81728,12 +81799,12 @@ paths: type: array items: *85 examples: - default: *558 + default: *559 headers: Link: *67 '301': *348 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81763,7 +81834,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: true content: @@ -81787,7 +81858,7 @@ paths: application/json: schema: *85 examples: - default: *555 + default: *556 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -81795,7 +81866,7 @@ paths: type: string '301': *348 '403': *29 - '410': *546 + '410': *547 '422': *15 '404': *6 x-github: @@ -81828,7 +81899,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -81842,13 +81913,13 @@ paths: application/json: schema: *85 examples: - default: *555 + default: *556 '301': *348 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *546 + '410': *547 x-github: triggersNotification: true githubCloudOnly: false @@ -81876,7 +81947,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - *17 - *19 responses: @@ -81888,12 +81959,12 @@ paths: type: array items: *85 examples: - default: *558 + default: *559 headers: Link: *67 '301': *348 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81912,7 +81983,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - *17 - *19 responses: @@ -81926,7 +81997,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &561 + - &562 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -81980,7 +82051,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &562 + - &563 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -82116,7 +82187,7 @@ paths: - performed_via_github_app - assignee - assigner - - &563 + - &564 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -82167,7 +82238,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &565 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -82218,7 +82289,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &566 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -82272,7 +82343,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &567 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -82319,7 +82390,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &568 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -82366,7 +82437,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &568 + - &569 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -82426,7 +82497,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &569 + - &570 title: Locked Issue Event description: Locked Issue Event type: object @@ -82474,7 +82545,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &570 + - &571 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -82540,7 +82611,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &572 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -82606,7 +82677,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &572 + - &573 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -82672,7 +82743,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &573 + - &574 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -82763,7 +82834,7 @@ paths: color: red headers: Link: *67 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82782,7 +82853,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - *17 - *19 responses: @@ -82792,9 +82863,9 @@ paths: application/json: schema: type: array - items: *559 + items: *560 examples: - default: &675 + default: &676 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -82820,7 +82891,7 @@ paths: Link: *67 '301': *348 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82839,7 +82910,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - *17 - *19 responses: @@ -82851,7 +82922,7 @@ paths: type: array items: *84 examples: - default: &560 + default: &561 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82871,7 +82942,7 @@ paths: Link: *67 '301': *348 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82889,7 +82960,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: false content: @@ -82934,10 +83005,10 @@ paths: type: array items: *84 examples: - default: *560 + default: *561 '301': *348 '404': *6 - '410': *546 + '410': *547 '422': *15 x-github: githubCloudOnly: false @@ -82956,7 +83027,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: false content: @@ -83018,10 +83089,10 @@ paths: type: array items: *84 examples: - default: *560 + default: *561 '301': *348 '404': *6 - '410': *546 + '410': *547 '422': *15 x-github: githubCloudOnly: false @@ -83040,13 +83111,13 @@ paths: parameters: - *344 - *345 - - *556 + - *557 responses: '204': description: Response '301': *348 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83067,7 +83138,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - name: name in: path required: true @@ -83093,7 +83164,7 @@ paths: default: true '301': *348 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83115,7 +83186,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: false content: @@ -83143,7 +83214,7 @@ paths: '204': description: Response '403': *29 - '410': *546 + '410': *547 '404': *6 '422': *15 x-github: @@ -83163,7 +83234,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 responses: '204': description: Response @@ -83195,7 +83266,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 responses: '200': description: Response @@ -83203,10 +83274,10 @@ paths: application/json: schema: *85 examples: - default: *555 + default: *556 '301': *348 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83225,7 +83296,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - 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. @@ -83253,11 +83324,11 @@ paths: type: array items: *476 examples: - default: *549 + default: *550 headers: Link: *67 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83277,7 +83348,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: true content: @@ -83342,8 +83413,8 @@ paths: parameters: - *344 - *345 - - *556 - - *550 + - *557 + - *551 responses: '204': description: Response @@ -83374,7 +83445,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: true content: @@ -83398,7 +83469,7 @@ paths: application/json: schema: *85 examples: - default: *555 + default: *556 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -83433,7 +83504,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - *17 - *19 responses: @@ -83445,11 +83516,11 @@ paths: type: array items: *85 examples: - default: *558 + default: *559 headers: Link: *67 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83479,7 +83550,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: true content: @@ -83508,14 +83579,14 @@ paths: application/json: schema: *85 examples: - default: *555 + default: *556 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *546 + '410': *547 '422': *15 '404': *6 x-github: @@ -83537,7 +83608,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 requestBody: required: true content: @@ -83570,7 +83641,7 @@ paths: application/json: schema: *85 examples: - default: *555 + default: *556 '403': *29 '404': *6 '422': *7 @@ -83594,7 +83665,7 @@ paths: parameters: - *344 - *345 - - *556 + - *557 - *17 - *19 responses: @@ -83609,7 +83680,6 @@ paths: description: Timeline Event type: object anyOf: - - *561 - *562 - *563 - *564 @@ -83622,6 +83692,7 @@ paths: - *571 - *572 - *573 + - *574 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -83682,8 +83753,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *574 - required: *575 + properties: *575 + required: *576 nullable: true required: - event @@ -83938,7 +84009,7 @@ paths: type: string comments: type: array - items: &595 + items: &596 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -84442,7 +84513,7 @@ paths: headers: Link: *67 '404': *6 - '410': *546 + '410': *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84470,7 +84541,7 @@ paths: application/json: schema: type: array - items: &576 + items: &577 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -84573,9 +84644,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: &577 + default: &578 value: id: 1 key: ssh-rsa AAA... @@ -84611,7 +84682,7 @@ paths: parameters: - *344 - *345 - - &578 + - &579 name: key_id description: The unique identifier of the key. in: path @@ -84623,9 +84694,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *577 + default: *578 '404': *6 x-github: githubCloudOnly: false @@ -84645,7 +84716,7 @@ paths: parameters: - *344 - *345 - - *578 + - *579 responses: '204': description: Response @@ -84678,7 +84749,7 @@ paths: type: array items: *84 examples: - default: *560 + default: *561 headers: Link: *67 '404': *6 @@ -84738,7 +84809,7 @@ paths: application/json: schema: *84 examples: - default: &579 + default: &580 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84784,7 +84855,7 @@ paths: application/json: schema: *84 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -85184,7 +85255,7 @@ paths: application/json: schema: *478 examples: - default: *580 + default: *581 '204': description: Response when already merged '404': @@ -85251,7 +85322,7 @@ paths: application/json: schema: type: array - items: &581 + items: &582 title: Milestone description: A collection of related issues and pull requests. type: object @@ -85353,9 +85424,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: &582 + default: &583 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -85416,7 +85487,7 @@ paths: parameters: - *344 - *345 - - &583 + - &584 name: milestone_number description: The number that identifies the milestone. in: path @@ -85428,9 +85499,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: *582 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -85449,7 +85520,7 @@ paths: parameters: - *344 - *345 - - *583 + - *584 requestBody: required: false content: @@ -85487,9 +85558,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: *582 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85507,7 +85578,7 @@ paths: parameters: - *344 - *345 - - *583 + - *584 responses: '204': description: Response @@ -85530,7 +85601,7 @@ paths: parameters: - *344 - *345 - - *583 + - *584 - *17 - *19 responses: @@ -85542,7 +85613,7 @@ paths: type: array items: *84 examples: - default: *560 + default: *561 headers: Link: *67 x-github: @@ -85563,10 +85634,10 @@ paths: parameters: - *344 - *345 - - *584 - *585 - - *92 - *586 + - *92 + - *587 - *17 - *19 responses: @@ -85578,7 +85649,7 @@ paths: type: array items: *112 examples: - default: *587 + default: *588 headers: Link: *67 x-github: @@ -85668,7 +85739,7 @@ paths: description: Response content: application/json: - schema: &588 + schema: &589 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -85793,7 +85864,7 @@ paths: - custom_404 - public examples: - default: &589 + default: &590 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -85889,9 +85960,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: - default: *589 + default: *590 '422': *15 '409': *54 x-github: @@ -86052,7 +86123,7 @@ paths: application/json: schema: type: array - items: &590 + items: &591 title: Page Build description: Page Build type: object @@ -86199,9 +86270,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *591 examples: - default: &591 + default: &592 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -86261,9 +86332,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *591 examples: - default: *591 + default: *592 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86391,7 +86462,7 @@ paths: parameters: - *344 - *345 - - &592 + - &593 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -86451,7 +86522,7 @@ paths: parameters: - *344 - *345 - - *592 + - *593 responses: '204': *191 '404': *6 @@ -86986,7 +87057,7 @@ paths: type: array items: *482 examples: - default: *593 + default: *594 headers: Link: *67 '304': *37 @@ -87084,7 +87155,7 @@ paths: description: Response content: application/json: - schema: &597 + schema: &598 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -87295,7 +87366,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: *594 + auto_merge: *595 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -87481,7 +87552,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &598 + default: &599 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -88049,9 +88120,9 @@ paths: application/json: schema: type: array - items: *595 + items: *596 examples: - default: &600 + default: &601 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -88136,9 +88207,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: &596 + default: &597 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -88237,9 +88308,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: - default: *596 + default: *597 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88308,7 +88379,7 @@ paths: type: array items: *476 examples: - default: *549 + default: *550 headers: Link: *67 '404': *6 @@ -88397,7 +88468,7 @@ paths: - *344 - *345 - *101 - - *550 + - *551 responses: '204': description: Response @@ -88442,7 +88513,7 @@ paths: parameters: - *344 - *345 - - &599 + - &600 name: pull_number description: The number that identifies the pull request. in: path @@ -88455,9 +88526,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *597 + schema: *598 examples: - default: *598 + default: *599 '304': *37 '404': *6 '406': @@ -88494,7 +88565,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 requestBody: required: false content: @@ -88536,9 +88607,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: *598 + default: *599 '422': *15 '403': *29 x-github: @@ -88562,7 +88633,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 requestBody: required: true content: @@ -88664,7 +88735,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 - *109 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -88685,9 +88756,9 @@ paths: application/json: schema: type: array - items: *595 + items: *596 examples: - default: *600 + default: *601 headers: Link: *67 x-github: @@ -88722,7 +88793,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 requestBody: required: true content: @@ -88827,7 +88898,7 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: example-for-a-multi-line-comment: value: @@ -88917,7 +88988,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 - *101 requestBody: required: true @@ -88940,7 +89011,7 @@ paths: description: Response content: application/json: - schema: *595 + schema: *596 examples: default: value: @@ -89028,7 +89099,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 - *17 - *19 responses: @@ -89040,7 +89111,7 @@ paths: type: array items: *478 examples: - default: *601 + default: *602 headers: Link: *67 x-github: @@ -89072,7 +89143,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 - *17 - *19 responses: @@ -89122,7 +89193,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 responses: '204': description: Response if pull request has been merged @@ -89147,7 +89218,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 requestBody: required: false content: @@ -89260,7 +89331,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 responses: '200': description: Response @@ -89337,7 +89408,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 requestBody: required: false content: @@ -89912,7 +89983,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 requestBody: required: true content: @@ -90464,7 +90535,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 - *17 - *19 responses: @@ -90474,7 +90545,7 @@ paths: application/json: schema: type: array - items: &602 + items: &603 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -90627,7 +90698,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 requestBody: required: false content: @@ -90713,9 +90784,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: &604 + default: &605 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90780,8 +90851,8 @@ paths: parameters: - *344 - *345 - - *599 - - &603 + - *600 + - &604 name: review_id description: The unique identifier of the review. in: path @@ -90793,9 +90864,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: &605 + default: &606 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90856,8 +90927,8 @@ paths: parameters: - *344 - *345 - - *599 - - *603 + - *600 + - *604 requestBody: required: true content: @@ -90880,7 +90951,7 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: default: value: @@ -90944,16 +91015,16 @@ paths: parameters: - *344 - *345 - - *599 - - *603 + - *600 + - *604 responses: '200': description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *604 + default: *605 '422': *7 '404': *6 x-github: @@ -90982,8 +91053,8 @@ paths: parameters: - *344 - *345 - - *599 - - *603 + - *600 + - *604 - *17 - *19 responses: @@ -91220,8 +91291,8 @@ paths: parameters: - *344 - *345 - - *599 - - *603 + - *600 + - *604 requestBody: required: true content: @@ -91249,7 +91320,7 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: default: value: @@ -91314,8 +91385,8 @@ paths: parameters: - *344 - *345 - - *599 - - *603 + - *600 + - *604 requestBody: required: true content: @@ -91350,9 +91421,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *605 + default: *606 '404': *6 '422': *7 '403': *29 @@ -91376,7 +91447,7 @@ paths: parameters: - *344 - *345 - - *599 + - *600 requestBody: required: false content: @@ -91453,9 +91524,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: &607 + default: &608 value: type: file encoding: base64 @@ -91518,9 +91589,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: *607 + default: *608 '404': *6 '422': *15 x-github: @@ -91553,7 +91624,7 @@ paths: application/json: schema: type: array - items: *608 + items: *609 examples: default: value: @@ -91724,9 +91795,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: &612 + default: &613 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -91833,7 +91904,7 @@ paths: parameters: - *344 - *345 - - &610 + - &611 name: asset_id description: The unique identifier of the asset. in: path @@ -91845,9 +91916,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: - default: &611 + default: &612 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 @@ -91900,7 +91971,7 @@ paths: parameters: - *344 - *345 - - *610 + - *611 requestBody: required: false content: @@ -91928,9 +91999,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: - default: *611 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91948,7 +92019,7 @@ paths: parameters: - *344 - *345 - - *610 + - *611 responses: '204': description: Response @@ -92066,9 +92137,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *612 + default: *613 '404': *6 x-github: githubCloudOnly: false @@ -92100,9 +92171,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *612 + default: *613 '404': *6 x-github: githubCloudOnly: false @@ -92126,7 +92197,7 @@ paths: parameters: - *344 - *345 - - &613 + - &614 name: release_id description: The unique identifier of the release. in: path @@ -92140,9 +92211,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: *608 + schema: *609 examples: - default: *612 + default: *613 '401': description: Unauthorized x-github: @@ -92162,7 +92233,7 @@ paths: parameters: - *344 - *345 - - *613 + - *614 requestBody: required: false content: @@ -92226,9 +92297,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *612 + default: *613 '404': description: Not Found if the discussion category name is invalid content: @@ -92251,7 +92322,7 @@ paths: parameters: - *344 - *345 - - *613 + - *614 responses: '204': description: Response @@ -92274,7 +92345,7 @@ paths: parameters: - *344 - *345 - - *613 + - *614 - *17 - *19 responses: @@ -92284,7 +92355,7 @@ paths: application/json: schema: type: array - items: *609 + items: *610 examples: default: value: @@ -92367,7 +92438,7 @@ paths: parameters: - *344 - *345 - - *613 + - *614 - name: name in: query required: true @@ -92393,7 +92464,7 @@ paths: description: Response for successful upload content: application/json: - schema: *609 + schema: *610 examples: response-for-successful-upload: value: @@ -92450,7 +92521,7 @@ paths: parameters: - *344 - *345 - - *613 + - *614 - 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. @@ -92476,7 +92547,7 @@ paths: type: array items: *476 examples: - default: *549 + default: *550 headers: Link: *67 '404': *6 @@ -92499,7 +92570,7 @@ paths: parameters: - *344 - *345 - - *613 + - *614 requestBody: required: true content: @@ -92562,8 +92633,8 @@ paths: parameters: - *344 - *345 - - *613 - - *550 + - *614 + - *551 responses: '204': description: Response @@ -92606,7 +92677,7 @@ paths: oneOf: - allOf: - *305 - - &614 + - &615 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -92627,67 +92698,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *306 - - *614 + - *615 - allOf: - *307 - - *614 + - *615 - allOf: - *308 - - *614 + - *615 - allOf: + - *616 - *615 - - *614 - allOf: - *309 - - *614 + - *615 - allOf: - *310 - - *614 + - *615 - allOf: - *311 - - *614 + - *615 - allOf: - *312 - - *614 + - *615 - allOf: - *313 - - *614 + - *615 - allOf: - *314 - - *614 + - *615 - allOf: - *315 - - *614 + - *615 - allOf: - *316 - - *614 + - *615 - allOf: - *317 - - *614 + - *615 - allOf: - *318 - - *614 + - *615 - allOf: - *319 - - *614 + - *615 - allOf: - *320 - - *614 + - *615 - allOf: - *321 - - *614 + - *615 - allOf: - *322 - - *614 + - *615 - allOf: - *323 - - *614 + - *615 - allOf: - *324 - - *614 + - *615 - allOf: - *325 - - *614 + - *615 examples: default: value: @@ -92738,7 +92809,7 @@ paths: schema: type: boolean default: true - - *616 + - *617 responses: '200': description: Response @@ -92823,7 +92894,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *617 + items: *618 required: - name - enforcement @@ -92856,7 +92927,7 @@ paths: application/json: schema: *326 examples: - default: &627 + default: &628 value: id: 42 name: super cool ruleset @@ -92906,10 +92977,10 @@ paths: parameters: - *344 - *345 - - *618 - *619 - *620 - *621 + - *622 - *17 - *19 responses: @@ -92917,9 +92988,9 @@ paths: description: Response content: application/json: - schema: *622 + schema: *623 examples: - default: *623 + default: *624 '404': *6 '500': *55 x-github: @@ -92942,15 +93013,15 @@ paths: parameters: - *344 - *345 - - *624 + - *625 responses: '200': description: Response content: application/json: - schema: *625 + schema: *626 examples: - default: *626 + default: *627 '404': *6 '500': *55 x-github: @@ -93001,7 +93072,7 @@ paths: application/json: schema: *326 examples: - default: *627 + default: *628 '404': *6 '500': *55 put: @@ -93054,7 +93125,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *617 + items: *618 examples: default: value: @@ -93084,7 +93155,7 @@ paths: application/json: schema: *326 examples: - default: *627 + default: *628 '404': *6 '422': *15 '500': *55 @@ -93146,7 +93217,7 @@ paths: type: array items: *329 examples: - default: *628 + default: *629 '404': *6 '500': *55 x-github: @@ -93184,7 +93255,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: default: value: @@ -93241,7 +93312,6 @@ paths: parameters: - *344 - *345 - - *630 - *631 - *632 - *633 @@ -93249,15 +93319,16 @@ paths: - *635 - *636 - *637 + - *638 - *61 - *19 - *17 - - *638 - *639 - *640 - *641 - *642 - *643 + - *644 responses: '200': description: Response @@ -93265,7 +93336,7 @@ paths: application/json: schema: type: array - items: &647 + items: &648 type: object properties: number: *178 @@ -93284,8 +93355,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *644 - resolution: *645 + state: *645 + resolution: *646 resolved_at: type: string format: date-time @@ -93391,7 +93462,7 @@ paths: pull request. ' - oneOf: *646 + oneOf: *647 nullable: true has_more_locations: type: boolean @@ -93558,13 +93629,13 @@ paths: - *344 - *345 - *442 - - *643 + - *644 responses: '200': description: Response content: application/json: - schema: *647 + schema: *648 examples: default: value: @@ -93628,8 +93699,8 @@ paths: schema: type: object properties: - state: *644 - resolution: *645 + state: *645 + resolution: *646 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -93665,7 +93736,7 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: default: value: @@ -93773,7 +93844,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &806 + items: &807 type: object properties: type: @@ -93799,7 +93870,6 @@ paths: example: commit details: oneOf: - - *648 - *649 - *650 - *651 @@ -93812,6 +93882,7 @@ paths: - *658 - *659 - *660 + - *661 examples: default: value: @@ -93906,14 +93977,14 @@ paths: schema: type: object properties: - reason: &662 + reason: &663 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *661 + placeholder_id: *662 required: - reason - placeholder_id @@ -93930,7 +94001,7 @@ paths: schema: type: object properties: - reason: *662 + reason: *663 expire_at: type: string format: date-time @@ -93992,7 +94063,7 @@ paths: properties: incremental_scans: type: array - items: &663 + items: &664 description: Information on a single scan performed by secret scanning on the repository type: object @@ -94018,15 +94089,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *663 + items: *664 backfill_scans: type: array - items: *663 + items: *664 custom_pattern_backfill_scans: type: array items: allOf: - - *663 + - *664 - type: object properties: pattern_name: @@ -94039,7 +94110,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *663 + items: *664 examples: default: value: @@ -94149,9 +94220,9 @@ paths: application/json: schema: type: array - items: *664 + items: *665 examples: - default: *665 + default: *666 '400': *14 '404': *6 x-github: @@ -94335,9 +94406,9 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: &667 + default: &668 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -94681,7 +94752,7 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: default: value: @@ -94836,15 +94907,15 @@ paths: parameters: - *344 - *345 - - *666 + - *667 responses: '200': description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: *667 + default: *668 '403': *29 '404': *6 x-github: @@ -94870,7 +94941,7 @@ paths: parameters: - *344 - *345 - - *666 + - *667 requestBody: required: true content: @@ -95029,10 +95100,10 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: *667 - add_credit: *667 + default: *668 + add_credit: *668 '403': *29 '404': *6 '422': @@ -95072,7 +95143,7 @@ paths: parameters: - *344 - *345 - - *666 + - *667 responses: '202': *39 '400': *14 @@ -95101,7 +95172,7 @@ paths: parameters: - *344 - *345 - - *666 + - *667 responses: '202': description: Response @@ -95245,7 +95316,7 @@ paths: application/json: schema: type: array - items: &668 + items: &669 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -95618,7 +95689,7 @@ paths: application/json: schema: type: array - items: *668 + items: *669 examples: default: value: @@ -95706,7 +95777,7 @@ paths: description: Response content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -95800,7 +95871,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &670 + schema: &671 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -95895,7 +95966,7 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: default: value: @@ -96102,7 +96173,7 @@ paths: description: Response content: application/json: - schema: &671 + schema: &672 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -96114,7 +96185,7 @@ paths: required: - names examples: - default: &672 + default: &673 value: names: - octocat @@ -96169,9 +96240,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '404': *6 '422': *7 x-github: @@ -96194,7 +96265,7 @@ paths: parameters: - *344 - *345 - - &673 + - &674 name: per description: The time frame to display results for. in: query @@ -96223,7 +96294,7 @@ paths: example: 128 clones: type: array - items: &674 + items: &675 title: Traffic type: object properties: @@ -96464,7 +96535,7 @@ paths: parameters: - *344 - *345 - - *673 + - *674 responses: '200': description: Response @@ -96483,7 +96554,7 @@ paths: example: 3782 views: type: array - items: *674 + items: *675 required: - uniques - count @@ -97158,7 +97229,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *149 - - *556 + - *557 requestBody: required: true content: @@ -97222,9 +97293,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *559 + items: *560 examples: - default: *675 + default: *676 '400': *14 '403': *29 '404': *6 @@ -97261,7 +97332,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *149 - - *556 + - *557 requestBody: required: true content: @@ -97326,9 +97397,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *559 + items: *560 examples: - default: *675 + default: *676 '400': *14 '403': *29 '404': *6 @@ -97360,7 +97431,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *149 - - *556 + - *557 - *242 responses: '204': @@ -97503,7 +97574,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &676 + text_matches: &677 title: Search Result Text Matches type: array items: @@ -97665,7 +97736,7 @@ paths: enum: - author-date - committer-date - - &677 + - &678 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 @@ -97756,7 +97827,7 @@ paths: url: type: string format: uri - verification: *532 + verification: *533 required: - author - committer @@ -97793,7 +97864,7 @@ paths: type: number node_id: type: string - text_matches: *676 + text_matches: *677 required: - sha - node_id @@ -97985,7 +98056,7 @@ paths: - interactions - created - updated - - *677 + - *678 - *17 - *19 - name: advanced_search @@ -98099,11 +98170,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: type: string state_reason: @@ -98135,7 +98206,7 @@ paths: type: string format: date-time nullable: true - text_matches: *676 + text_matches: *677 pull_request: type: object properties: @@ -98441,7 +98512,7 @@ paths: enum: - created - updated - - *677 + - *678 - *17 - *19 responses: @@ -98485,7 +98556,7 @@ paths: nullable: true score: type: number - text_matches: *676 + text_matches: *677 required: - id - node_id @@ -98570,7 +98641,7 @@ paths: - forks - help-wanted-issues - updated - - *677 + - *678 - *17 - *19 responses: @@ -98818,7 +98889,7 @@ paths: - admin - pull - push - text_matches: *676 + text_matches: *677 temp_clone_token: type: string allow_merge_commit: @@ -99118,7 +99189,7 @@ paths: type: string format: uri nullable: true - text_matches: *676 + text_matches: *677 related: type: array nullable: true @@ -99309,7 +99380,7 @@ paths: - followers - repositories - joined - - *677 + - *678 - *17 - *19 responses: @@ -99413,7 +99484,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *676 + text_matches: *677 blog: type: string nullable: true @@ -99492,7 +99563,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &680 + - &681 name: team_id description: The unique identifier of the team. in: path @@ -99533,7 +99604,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *680 + - *681 requestBody: required: true content: @@ -99633,7 +99704,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *680 + - *681 responses: '204': description: Response @@ -99662,7 +99733,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *680 + - *681 - *17 - *19 responses: @@ -99700,7 +99771,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *680 + - *681 - name: role description: Filters members returned by their role in the team. in: query @@ -99751,7 +99822,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *680 + - *681 - *71 responses: '204': @@ -99788,7 +99859,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *680 + - *681 - *71 responses: '204': @@ -99828,7 +99899,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *680 + - *681 - *71 responses: '204': @@ -99865,7 +99936,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *680 + - *681 - *71 responses: '200': @@ -99874,7 +99945,7 @@ paths: application/json: schema: *343 examples: - response-if-user-is-a-team-maintainer: *681 + response-if-user-is-a-team-maintainer: *682 '404': *6 x-github: githubCloudOnly: false @@ -99907,7 +99978,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *680 + - *681 - *71 requestBody: required: false @@ -99935,7 +100006,7 @@ paths: application/json: schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: *682 + response-if-users-membership-with-team-is-now-pending: *683 '403': description: Forbidden if team synchronization is set up '422': @@ -99969,7 +100040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *680 + - *681 - *71 responses: '204': @@ -99997,7 +100068,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *680 + - *681 - *17 - *19 responses: @@ -100039,7 +100110,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *680 + - *681 - *344 - *345 responses: @@ -100047,7 +100118,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *683 + schema: *684 examples: alternative-response-with-extra-repository-information: value: @@ -100204,7 +100275,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *680 + - *681 - *344 - *345 requestBody: @@ -100256,7 +100327,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *680 + - *681 - *344 - *345 responses: @@ -100283,7 +100354,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *680 + - *681 - *17 - *19 responses: @@ -100295,7 +100366,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: *684 + response-if-child-teams-exist: *685 headers: Link: *67 '404': *6 @@ -100328,7 +100399,7 @@ paths: application/json: schema: oneOf: - - &686 + - &687 title: Private User description: Private User type: object @@ -100531,7 +100602,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *685 + - *686 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -100684,7 +100755,7 @@ paths: description: Response content: application/json: - schema: *686 + schema: *687 examples: default: value: @@ -101082,7 +101153,7 @@ paths: type: integer secrets: type: array - items: &687 + items: &688 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -101198,7 +101269,7 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: default: value: @@ -101611,7 +101682,7 @@ paths: description: Response content: application/json: - schema: &688 + schema: &689 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -101652,7 +101723,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &689 + default: &690 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -101697,9 +101768,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *689 + default: *690 '404': *6 x-github: githubCloudOnly: false @@ -101736,9 +101807,9 @@ paths: type: integer machines: type: array - items: *690 + items: *691 examples: - default: *691 + default: *692 '304': *37 '500': *55 '401': *25 @@ -102677,7 +102748,7 @@ paths: type: array items: *261 examples: - default: &702 + default: &703 value: - id: 197 name: hello_docker @@ -102778,7 +102849,7 @@ paths: application/json: schema: type: array - items: &692 + items: &693 title: Email description: Email type: object @@ -102843,9 +102914,9 @@ paths: application/json: schema: type: array - items: *692 + items: *693 examples: - default: &704 + default: &705 value: - email: octocat@github.com verified: true @@ -102920,7 +102991,7 @@ paths: application/json: schema: type: array - items: *692 + items: *693 examples: default: value: @@ -103176,7 +103247,7 @@ paths: application/json: schema: type: array - items: &693 + items: &694 title: GPG Key description: A unique encryption key type: object @@ -103307,7 +103378,7 @@ paths: - subkeys - revoked examples: - default: &720 + default: &721 value: - id: 3 name: Octocat's GPG Key @@ -103392,9 +103463,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: &694 + default: &695 value: id: 3 name: Octocat's GPG Key @@ -103451,7 +103522,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &695 + - &696 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -103463,9 +103534,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: *694 + default: *695 '404': *6 '304': *37 '403': *29 @@ -103488,7 +103559,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *695 + - *696 responses: '204': description: Response @@ -103796,7 +103867,7 @@ paths: required: true content: application/json: - schema: *543 + schema: *544 examples: default: value: @@ -103946,7 +104017,7 @@ paths: application/json: schema: type: array - items: &696 + items: &697 title: Key description: Key type: object @@ -104047,9 +104118,9 @@ paths: description: Response content: application/json: - schema: *696 + schema: *697 examples: - default: &697 + default: &698 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -104082,15 +104153,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *578 + - *579 responses: '200': description: Response content: application/json: - schema: *696 + schema: *697 examples: - default: *697 + default: *698 '404': *6 '304': *37 '403': *29 @@ -104113,7 +104184,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *578 + - *579 responses: '204': description: Response @@ -104146,7 +104217,7 @@ paths: application/json: schema: type: array - items: &698 + items: &699 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -104214,7 +104285,7 @@ paths: - account - plan examples: - default: &699 + default: &700 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -104276,9 +104347,9 @@ paths: application/json: schema: type: array - items: *698 + items: *699 examples: - default: *699 + default: *700 headers: Link: *67 '304': *37 @@ -105287,7 +105358,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *255 - - *700 + - *701 responses: '204': description: Response @@ -105420,7 +105491,7 @@ paths: - docker - nuget - container - - *701 + - *702 - *19 - *17 responses: @@ -105432,8 +105503,8 @@ paths: type: array items: *261 examples: - default: *702 - '400': *703 + default: *703 + '400': *704 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105462,7 +105533,7 @@ paths: application/json: schema: *261 examples: - default: &721 + default: &722 value: id: 40201 name: octo-name @@ -105824,9 +105895,9 @@ paths: application/json: schema: type: array - items: *692 + items: *693 examples: - default: *704 + default: *705 headers: Link: *67 '304': *37 @@ -105939,7 +106010,7 @@ paths: type: array items: *79 examples: - default: &711 + default: &712 summary: Default response value: - id: 1296269 @@ -106289,9 +106360,9 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *705 + default: *706 headers: Link: *67 '304': *37 @@ -106376,7 +106447,7 @@ paths: application/json: schema: type: array - items: &706 + items: &707 title: Social account description: Social media account type: object @@ -106391,7 +106462,7 @@ paths: - provider - url examples: - default: &707 + default: &708 value: - provider: twitter url: https://twitter.com/github @@ -106453,9 +106524,9 @@ paths: application/json: schema: type: array - items: *706 + items: *707 examples: - default: *707 + default: *708 '422': *15 '304': *37 '404': *6 @@ -106542,7 +106613,7 @@ paths: application/json: schema: type: array - items: &708 + items: &709 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -106562,7 +106633,7 @@ paths: - title - created_at examples: - default: &739 + default: &740 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -106626,9 +106697,9 @@ paths: description: Response content: application/json: - schema: *708 + schema: *709 examples: - default: &709 + default: &710 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -106658,7 +106729,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: - - &710 + - &711 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -106670,9 +106741,9 @@ paths: description: Response content: application/json: - schema: *708 + schema: *709 examples: - default: *709 + default: *710 '404': *6 '304': *37 '403': *29 @@ -106695,7 +106766,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: - - *710 + - *711 responses: '204': description: Response @@ -106724,7 +106795,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &740 + - &741 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 @@ -106749,11 +106820,11 @@ paths: type: array items: *79 examples: - default-response: *711 + default-response: *712 application/vnd.github.v3.star+json: schema: type: array - items: &741 + items: &742 title: Starred Repository description: Starred Repository type: object @@ -107122,10 +107193,10 @@ paths: application/json: schema: oneOf: + - *687 - *686 - - *685 examples: - default-response: &715 + default-response: &716 summary: Default response value: login: octocat @@ -107160,7 +107231,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &716 + response-with-git-hub-plan-information: &717 summary: Response with GitHub plan information value: login: octocat @@ -107217,7 +107288,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &713 + - &714 name: user_id description: The unique identifier of the user. in: path @@ -107283,7 +107354,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *712 + - *713 - *17 responses: '200': @@ -107318,7 +107389,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *713 + - *714 - *279 requestBody: required: true @@ -107390,7 +107461,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *714 + schema: *715 examples: table_view: summary: Response for creating a table view @@ -107442,11 +107513,11 @@ paths: application/json: schema: oneOf: + - *687 - *686 - - *685 examples: - default-response: *715 - response-with-git-hub-plan-information: *716 + default-response: *716 + response-with-git-hub-plan-information: *717 '404': *6 x-github: githubCloudOnly: false @@ -107496,8 +107567,8 @@ paths: required: - subject_digests examples: - default: *717 - withPredicateType: *718 + default: *718 + withPredicateType: *719 responses: '200': description: Response @@ -107550,7 +107621,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *719 + default: *720 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107825,7 +107896,7 @@ paths: type: array items: *261 examples: - default: *702 + default: *703 '403': *29 '401': *25 x-github: @@ -108209,9 +108280,9 @@ paths: application/json: schema: type: array - items: *693 + items: *694 examples: - default: *720 + default: *721 headers: Link: *67 x-github: @@ -108315,7 +108386,7 @@ paths: application/json: schema: *22 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108439,7 +108510,7 @@ paths: - docker - nuget - container - - *701 + - *702 - *71 - *19 - *17 @@ -108452,10 +108523,10 @@ paths: type: array items: *261 examples: - default: *702 + default: *703 '403': *29 '401': *25 - '400': *703 + '400': *704 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108485,7 +108556,7 @@ paths: application/json: schema: *261 examples: - default: *721 + default: *722 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108834,7 +108905,7 @@ paths: type: array items: *283 examples: - default: *722 + default: *723 headers: Link: *67 '304': *37 @@ -108894,7 +108965,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *723 + items: *724 required: - name - data_type @@ -108910,7 +108981,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *724 + iteration_configuration: *725 required: - name - data_type @@ -108932,8 +109003,8 @@ paths: value: name: Due date data_type: date - single_select_field: *725 - iteration_field: *726 + single_select_field: *726 + iteration_field: *727 responses: '201': description: Response @@ -108941,11 +109012,11 @@ paths: application/json: schema: *283 examples: - text_field: *727 - number_field: *728 - date_field: *729 - single_select_field: *730 - iteration_field: *731 + text_field: *728 + number_field: *729 + date_field: *730 + single_select_field: *731 + iteration_field: *732 '304': *37 '403': *29 '401': *25 @@ -108967,7 +109038,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *279 - - *732 + - *733 - *71 responses: '200': @@ -108976,7 +109047,7 @@ paths: application/json: schema: *283 examples: - default: *733 + default: *734 headers: Link: *67 '304': *37 @@ -109330,7 +109401,7 @@ paths: parameters: - *279 - *71 - - *734 + - *735 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -109605,7 +109676,7 @@ paths: - *123 - *125 - *124 - - *735 + - *736 - *126 responses: '200': @@ -109736,7 +109807,7 @@ paths: parameters: - *71 - *123 - - *736 + - *737 - *124 responses: '200': @@ -109835,9 +109906,9 @@ paths: - *123 - *125 - *124 - - *737 - - *126 - *738 + - *126 + - *739 responses: '200': description: Response when getting a billing usage summary @@ -109971,9 +110042,9 @@ paths: application/json: schema: type: array - items: *706 + items: *707 examples: - default: *707 + default: *708 headers: Link: *67 x-github: @@ -110003,9 +110074,9 @@ paths: application/json: schema: type: array - items: *708 + items: *709 examples: - default: *739 + default: *740 headers: Link: *67 x-github: @@ -110030,7 +110101,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *71 - - *740 + - *741 - *61 - *17 - *19 @@ -110042,11 +110113,11 @@ paths: schema: anyOf: - type: array - items: *741 + items: *742 - type: array items: *79 examples: - default-response: *711 + default-response: *712 headers: Link: *67 x-github: @@ -110205,7 +110276,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &742 + enterprise: &743 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -110263,7 +110334,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &743 + installation: &744 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -110282,7 +110353,7 @@ x-webhooks: required: - id - node_id - organization: &744 + organization: &745 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -110342,13 +110413,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &745 + repository: &746 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &777 + properties: &778 id: description: Unique identifier of the repository example: 42 @@ -111043,7 +111114,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &778 + required: &779 - archive_url - assignees_url - blobs_url @@ -111117,7 +111188,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &779 + x-github-breaking-changes: &780 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -111208,10 +111279,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -111287,11 +111358,11 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: &746 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 + rule: &747 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) @@ -111514,11 +111585,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: *746 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 + rule: *747 sender: *4 required: - action @@ -111701,11 +111772,11 @@ x-webhooks: - everyone required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - rule: *746 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 + rule: *747 sender: *4 required: - action @@ -111789,7 +111860,7 @@ x-webhooks: type: string enum: - completed - check_run: &748 + check_run: &749 title: CheckRun description: A check performed on the code of a given code change type: object @@ -111880,7 +111951,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *747 + deployment: *748 details_url: example: https://example.com type: string @@ -111965,10 +112036,10 @@ x-webhooks: - output - app - pull_requests - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + installation: *744 + enterprise: *743 + organization: *745 + repository: *746 sender: *4 required: - check_run @@ -112359,11 +112430,11 @@ x-webhooks: type: string enum: - created - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *749 + installation: *744 + enterprise: *743 + organization: *745 + repository: *746 sender: *4 required: - check_run @@ -112757,11 +112828,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *749 + installation: *744 + enterprise: *743 + organization: *745 + repository: *746 requested_action: description: The action requested by the user. type: object @@ -113164,11 +113235,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *748 - installation: *743 - enterprise: *742 - organization: *744 - repository: *745 + check_run: *749 + installation: *744 + enterprise: *743 + organization: *745 + repository: *746 sender: *4 required: - check_run @@ -114138,10 +114209,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -114830,10 +114901,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -115516,10 +115587,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -115830,20 +115901,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &749 + commit_oid: &750 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: *742 - installation: *743 - organization: *744 - ref: &750 + enterprise: *743 + installation: *744 + organization: *745 + ref: &751 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: *745 + repository: *746 sender: *4 required: - action @@ -116238,12 +116309,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *750 + enterprise: *743 + installation: *744 + organization: *745 + ref: *751 + repository: *746 sender: *4 required: - action @@ -116509,12 +116580,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *750 + enterprise: *743 + installation: *744 + organization: *745 + ref: *751 + repository: *746 sender: *4 required: - action @@ -116846,12 +116917,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *750 + enterprise: *743 + installation: *744 + organization: *745 + ref: *751 + repository: *746 sender: *4 required: - action @@ -117125,16 +117196,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *745 + repository: *746 sender: *4 required: - action @@ -117371,12 +117442,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *749 - enterprise: *742 - installation: *743 - organization: *744 - ref: *750 - repository: *745 + commit_oid: *750 + enterprise: *743 + installation: *744 + organization: *745 + ref: *751 + repository: *746 sender: *4 required: - action @@ -117687,10 +117758,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -117945,10 +118016,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -118028,18 +118099,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *744 - pusher_type: &751 + organization: *745 + pusher_type: &752 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &752 + ref: &753 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -118049,7 +118120,7 @@ x-webhooks: enum: - tag - branch - repository: *745 + repository: *746 sender: *4 required: - ref @@ -118132,9 +118203,9 @@ x-webhooks: enum: - created definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 sender: *4 required: - action @@ -118219,9 +118290,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 sender: *4 required: - action @@ -118299,9 +118370,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 sender: *4 required: - action @@ -118379,9 +118450,9 @@ x-webhooks: enum: - updated definition: *291 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 sender: *4 required: - action @@ -118458,10 +118529,10 @@ x-webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - repository: *745 - organization: *744 + enterprise: *743 + installation: *744 + repository: *746 + organization: *745 sender: *4 new_property_values: type: array @@ -118546,18 +118617,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - pusher_type: *751 - ref: *752 + enterprise: *743 + installation: *744 + organization: *745 + pusher_type: *752 + ref: *753 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *745 + repository: *746 sender: *4 required: - ref @@ -118638,10 +118709,10 @@ x-webhooks: enum: - assignees_changed alert: *501 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *744 + organization: *745 + enterprise: *743 + repository: *746 sender: *4 required: - action @@ -118722,10 +118793,10 @@ x-webhooks: enum: - auto_dismissed alert: *501 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *744 + organization: *745 + enterprise: *743 + repository: *746 sender: *4 required: - action @@ -118807,10 +118878,10 @@ x-webhooks: enum: - auto_reopened alert: *501 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *744 + organization: *745 + enterprise: *743 + repository: *746 sender: *4 required: - action @@ -118892,10 +118963,10 @@ x-webhooks: enum: - created alert: *501 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *744 + organization: *745 + enterprise: *743 + repository: *746 sender: *4 required: - action @@ -118975,10 +119046,10 @@ x-webhooks: enum: - dismissed alert: *501 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *744 + organization: *745 + enterprise: *743 + repository: *746 sender: *4 required: - action @@ -119058,10 +119129,10 @@ x-webhooks: enum: - fixed alert: *501 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *744 + organization: *745 + enterprise: *743 + repository: *746 sender: *4 required: - action @@ -119142,10 +119213,10 @@ x-webhooks: enum: - reintroduced alert: *501 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *744 + organization: *745 + enterprise: *743 + repository: *746 sender: *4 required: - action @@ -119225,10 +119296,10 @@ x-webhooks: enum: - reopened alert: *501 - installation: *743 - organization: *744 - enterprise: *742 - repository: *745 + installation: *744 + organization: *745 + enterprise: *743 + repository: *746 sender: *4 required: - action @@ -119305,9 +119376,9 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - key: &753 + enterprise: *743 + installation: *744 + key: &754 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -119343,8 +119414,8 @@ x-webhooks: - verified - created_at - read_only - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -119421,11 +119492,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - key: *753 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + key: *754 + organization: *745 + repository: *746 sender: *4 required: - action @@ -119981,12 +120052,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - workflow: &759 + workflow: &760 title: Workflow type: object nullable: true @@ -120727,15 +120798,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *754 - required: *755 + properties: *755 + required: *756 nullable: true pull_requests: type: array - items: *597 - repository: *745 - organization: *744 - installation: *743 + items: *598 + repository: *746 + organization: *745 + installation: *744 sender: *4 responses: '200': @@ -120806,7 +120877,7 @@ x-webhooks: type: string enum: - approved - approver: &756 + approver: &757 type: object properties: avatar_url: @@ -120849,11 +120920,11 @@ x-webhooks: type: string comment: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - reviewers: &757 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 + reviewers: &758 type: array items: type: object @@ -120932,7 +121003,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &758 + workflow_job_run: &759 type: object properties: conclusion: @@ -121663,18 +121734,18 @@ x-webhooks: type: string enum: - rejected - approver: *756 + approver: *757 comment: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - reviewers: *757 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 + reviewers: *758 sender: *4 since: type: string - workflow_job_run: *758 + workflow_job_run: *759 workflow_job_runs: type: array items: @@ -122378,13 +122449,13 @@ x-webhooks: type: string enum: - requested - enterprise: *742 + enterprise: *743 environment: type: string - installation: *743 - organization: *744 - repository: *745 - requestor: &764 + installation: *744 + organization: *745 + repository: *746 + requestor: &765 title: User type: object nullable: true @@ -124273,12 +124344,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - workflow: *759 + workflow: *760 workflow_run: title: Deployment Workflow Run type: object @@ -124958,7 +125029,7 @@ x-webhooks: type: string enum: - answered - answer: &762 + answer: &763 type: object properties: author_association: @@ -125115,11 +125186,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -125246,11 +125317,11 @@ x-webhooks: - from required: - category - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -125333,11 +125404,11 @@ x-webhooks: type: string enum: - closed - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -125419,7 +125490,7 @@ x-webhooks: type: string enum: - created - comment: &761 + comment: &762 type: object properties: author_association: @@ -125576,11 +125647,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -125663,12 +125734,12 @@ x-webhooks: type: string enum: - deleted - comment: *761 - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + comment: *762 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -125763,12 +125834,12 @@ x-webhooks: - from required: - body - comment: *761 - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + comment: *762 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -125852,11 +125923,11 @@ x-webhooks: type: string enum: - created - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -125938,11 +126009,11 @@ x-webhooks: type: string enum: - deleted - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126042,11 +126113,11 @@ x-webhooks: type: string required: - from - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126128,10 +126199,10 @@ x-webhooks: type: string enum: - labeled - discussion: *760 - enterprise: *742 - installation: *743 - label: &763 + discussion: *761 + enterprise: *743 + installation: *744 + label: &764 title: Label type: object properties: @@ -126163,8 +126234,8 @@ x-webhooks: - color - default - description - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126247,11 +126318,11 @@ x-webhooks: type: string enum: - locked - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126333,11 +126404,11 @@ x-webhooks: type: string enum: - pinned - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126419,11 +126490,11 @@ x-webhooks: type: string enum: - reopened - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126508,16 +126579,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *760 - new_repository: *745 + new_discussion: *761 + new_repository: *746 required: - new_discussion - new_repository - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126600,10 +126671,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *760 - old_answer: *762 - organization: *744 - repository: *745 + discussion: *761 + old_answer: *763 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126685,12 +126756,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *760 - enterprise: *742 - installation: *743 - label: *763 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + label: *764 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126773,11 +126844,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126859,11 +126930,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *760 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + discussion: *761 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -126936,7 +127007,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *742 + enterprise: *743 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -127596,9 +127667,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *743 - organization: *744 - repository: *745 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - forkee @@ -127744,9 +127815,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 pages: description: The pages that were updated. type: array @@ -127783,7 +127854,7 @@ x-webhooks: - action - sha - html_url - repository: *745 + repository: *746 sender: *4 required: - pages @@ -127859,10 +127930,10 @@ x-webhooks: type: string enum: - created - enterprise: *742 + enterprise: *743 installation: *22 - organization: *744 - repositories: &765 + organization: *745 + repositories: &766 description: An array of repository objects that the installation can access. type: array @@ -127888,8 +127959,8 @@ x-webhooks: - name - full_name - private - repository: *745 - requester: *764 + repository: *746 + requester: *765 sender: *4 required: - action @@ -127964,11 +128035,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 + enterprise: *743 installation: *22 - organization: *744 - repositories: *765 - repository: *745 + organization: *745 + repositories: *766 + repository: *746 requester: nullable: true sender: *4 @@ -128044,11 +128115,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *742 + enterprise: *743 installation: *22 - organization: *744 - repositories: *765 - repository: *745 + organization: *745 + repositories: *766 + repository: *746 requester: nullable: true sender: *4 @@ -128124,10 +128195,10 @@ x-webhooks: type: string enum: - added - enterprise: *742 + enterprise: *743 installation: *22 - organization: *744 - repositories_added: &766 + organization: *745 + repositories_added: &767 description: An array of repository objects, which were added to the installation. type: array @@ -128173,15 +128244,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *745 - repository_selection: &767 + repository: *746 + repository_selection: &768 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *764 + requester: *765 sender: *4 required: - action @@ -128260,10 +128331,10 @@ x-webhooks: type: string enum: - removed - enterprise: *742 + enterprise: *743 installation: *22 - organization: *744 - repositories_added: *766 + organization: *745 + repositories_added: *767 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -128290,9 +128361,9 @@ x-webhooks: - name - full_name - private - repository: *745 - repository_selection: *767 - requester: *764 + repository: *746 + repository_selection: *768 + requester: *765 sender: *4 required: - action @@ -128371,11 +128442,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *742 + enterprise: *743 installation: *22 - organization: *744 - repositories: *765 - repository: *745 + organization: *745 + repositories: *766 + repository: *746 requester: nullable: true sender: *4 @@ -128553,10 +128624,10 @@ x-webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 target_type: type: string @@ -128635,11 +128706,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *742 + enterprise: *743 installation: *22 - organization: *744 - repositories: *765 - repository: *745 + organization: *745 + repositories: *766 + repository: *746 requester: nullable: true sender: *4 @@ -128813,8 +128884,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *574 - required: *575 + properties: *575 + required: *576 nullable: true user: title: User @@ -128899,8 +128970,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129689,8 +129760,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130039,8 +130110,8 @@ x-webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -130120,7 +130191,7 @@ x-webhooks: type: string enum: - deleted - comment: &768 + comment: &769 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -130277,8 +130348,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *574 - required: *575 + properties: *575 + required: *576 nullable: true required: - url @@ -130293,8 +130364,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131079,8 +131150,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131431,8 +131502,8 @@ x-webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -131512,7 +131583,7 @@ x-webhooks: type: string enum: - edited - changes: &798 + changes: &799 description: The changes to the comment. type: object properties: @@ -131524,9 +131595,9 @@ x-webhooks: type: string required: - from - comment: *768 - enterprise: *742 - installation: *743 + comment: *769 + enterprise: *743 + installation: *744 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132314,8 +132385,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132664,8 +132735,8 @@ x-webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -132746,9 +132817,9 @@ x-webhooks: type: string enum: - pinned - comment: *768 - enterprise: *742 - installation: *743 + comment: *769 + enterprise: *743 + installation: *744 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133538,8 +133609,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133890,8 +133961,8 @@ x-webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -133971,9 +134042,9 @@ x-webhooks: type: string enum: - unpinned - comment: *768 - enterprise: *742 - installation: *743 + comment: *769 + enterprise: *743 + installation: *744 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134763,8 +134834,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135115,8 +135186,8 @@ x-webhooks: - state - locked - assignee - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -135205,9 +135276,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *743 - organization: *744 - repository: *745 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -135296,9 +135367,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *743 - organization: *744 - repository: *745 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -135386,9 +135457,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *743 - organization: *744 - repository: *745 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -135477,9 +135548,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *743 - organization: *744 - repository: *745 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -135559,10 +135630,10 @@ x-webhooks: type: string enum: - assigned - assignee: *764 - enterprise: *742 - installation: *743 - issue: &771 + assignee: *765 + enterprise: *743 + installation: *744 + issue: &772 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136354,11 +136425,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136475,8 +136546,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -136556,8 +136627,8 @@ x-webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -137354,11 +137425,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137610,8 +137681,8 @@ x-webhooks: required: - state - closed_at - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -137690,8 +137761,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138479,11 +138550,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138599,8 +138670,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -138679,8 +138750,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139490,11 +139561,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139589,7 +139660,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &769 + milestone: &770 title: Milestone description: A collection of related issues and pull requests. type: object @@ -139727,8 +139798,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -139827,8 +139898,8 @@ x-webhooks: type: string required: - from - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140620,11 +140691,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140741,9 +140812,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *763 - organization: *744 - repository: *745 + label: *764 + organization: *745 + repository: *746 sender: *4 required: - action @@ -140823,8 +140894,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141615,11 +141686,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141736,9 +141807,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *763 - organization: *744 - repository: *745 + label: *764 + organization: *745 + repository: *746 sender: *4 required: - action @@ -141818,8 +141889,8 @@ x-webhooks: type: string enum: - locked - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142634,11 +142705,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142732,8 +142803,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -142812,8 +142883,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143622,11 +143693,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143720,9 +143791,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *769 - organization: *744 - repository: *745 + milestone: *770 + organization: *745 + repository: *746 sender: *4 required: - action @@ -144585,11 +144656,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145170,8 +145241,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145955,11 +146026,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146083,8 +146154,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -146164,9 +146235,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *742 - installation: *743 - issue: &770 + enterprise: *743 + installation: *744 + issue: &771 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -146952,11 +147023,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147072,8 +147143,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -147152,8 +147223,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147966,11 +148037,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148065,8 +148136,8 @@ x-webhooks: user_view_type: type: string type: *243 - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -148935,11 +149006,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149534,11 +149605,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *742 - installation: *743 - issue: *770 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + issue: *771 + organization: *745 + repository: *746 sender: *4 required: - action @@ -149618,12 +149689,12 @@ x-webhooks: type: string enum: - typed - enterprise: *742 - installation: *743 - issue: *771 + enterprise: *743 + installation: *744 + issue: *772 type: *243 - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -149704,7 +149775,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &801 + assignee: &802 title: User type: object nullable: true @@ -149774,11 +149845,11 @@ x-webhooks: required: - login - id - enterprise: *742 - installation: *743 - issue: *771 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + issue: *772 + organization: *745 + repository: *746 sender: *4 required: - action @@ -149857,12 +149928,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *742 - installation: *743 - issue: *771 - label: *763 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + issue: *772 + label: *764 + organization: *745 + repository: *746 sender: *4 required: - action @@ -149942,8 +150013,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150756,11 +150827,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *678 - issue_dependencies_summary: *679 + sub_issues_summary: *679 + issue_dependencies_summary: *680 issue_field_values: type: array - items: *559 + items: *560 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150854,8 +150925,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -150935,11 +151006,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *742 - installation: *743 - issue: *770 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + issue: *771 + organization: *745 + repository: *746 sender: *4 required: - action @@ -151018,12 +151089,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *742 - installation: *743 - issue: *771 + enterprise: *743 + installation: *744 + issue: *772 type: *243 - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -151103,11 +151174,11 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - label: *763 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + label: *764 + organization: *745 + repository: *746 sender: *4 required: - action @@ -151185,11 +151256,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - label: *763 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + label: *764 + organization: *745 + repository: *746 sender: *4 required: - action @@ -151299,11 +151370,11 @@ x-webhooks: type: string required: - from - enterprise: *742 - installation: *743 - label: *763 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + label: *764 + organization: *745 + repository: *746 sender: *4 required: - action @@ -151385,9 +151456,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: &772 + enterprise: *743 + installation: *744 + marketplace_purchase: &773 title: Marketplace Purchase type: object required: @@ -151470,8 +151541,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *744 - previous_marketplace_purchase: &773 + organization: *745 + previous_marketplace_purchase: &774 title: Marketplace Purchase type: object properties: @@ -151551,7 +151622,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *746 sender: *4 required: - action @@ -151631,10 +151702,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *772 - organization: *744 + enterprise: *743 + installation: *744 + marketplace_purchase: *773 + organization: *745 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -151717,7 +151788,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *746 sender: *4 required: - action @@ -151799,10 +151870,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *772 - organization: *744 + enterprise: *743 + installation: *744 + marketplace_purchase: *773 + organization: *745 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -151884,7 +151955,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *745 + repository: *746 sender: *4 required: - action @@ -151965,8 +152036,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 marketplace_purchase: title: Marketplace Purchase type: object @@ -152048,9 +152119,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *744 - previous_marketplace_purchase: *773 - repository: *745 + organization: *745 + previous_marketplace_purchase: *774 + repository: *746 sender: *4 required: - action @@ -152130,12 +152201,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *742 - installation: *743 - marketplace_purchase: *772 - organization: *744 - previous_marketplace_purchase: *773 - repository: *745 + enterprise: *743 + installation: *744 + marketplace_purchase: *773 + organization: *745 + previous_marketplace_purchase: *774 + repository: *746 sender: *4 required: - action @@ -152237,11 +152308,11 @@ x-webhooks: type: string required: - to - enterprise: *742 - installation: *743 - member: *764 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + member: *765 + organization: *745 + repository: *746 sender: *4 required: - action @@ -152341,11 +152412,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *742 - installation: *743 - member: *764 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + member: *765 + organization: *745 + repository: *746 sender: *4 required: - action @@ -152424,11 +152495,11 @@ x-webhooks: type: string enum: - removed - enterprise: *742 - installation: *743 - member: *764 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + member: *765 + organization: *745 + repository: *746 sender: *4 required: - action @@ -152506,11 +152577,11 @@ x-webhooks: type: string enum: - added - enterprise: *742 - installation: *743 - member: *764 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + member: *765 + organization: *745 + repository: *746 scope: description: The scope of the membership. Currently, can only be `team`. @@ -152586,7 +152657,7 @@ x-webhooks: required: - login - id - team: &774 + team: &775 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -152809,11 +152880,11 @@ x-webhooks: type: string enum: - removed - enterprise: *742 - installation: *743 - member: *764 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + member: *765 + organization: *745 + repository: *746 scope: description: The scope of the membership. Currently, can only be `team`. @@ -152890,7 +152961,7 @@ x-webhooks: required: - login - id - team: *774 + team: *775 required: - action - scope @@ -152972,8 +153043,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *743 - merge_group: &776 + installation: *744 + merge_group: &777 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -152992,15 +153063,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *775 + head_commit: *776 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -153086,10 +153157,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *743 - merge_group: *776 - organization: *744 - repository: *745 + installation: *744 + merge_group: *777 + organization: *745 + repository: *746 sender: *4 required: - action @@ -153162,7 +153233,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 + enterprise: *743 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -153271,17 +153342,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *743 - organization: *744 + installation: *744 + organization: *745 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *777 - required: *778 - x-github-breaking-changes: *779 + properties: *778 + required: *779 + x-github-breaking-changes: *780 nullable: true sender: *4 required: @@ -153362,11 +153433,11 @@ x-webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - milestone: *769 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + milestone: *770 + organization: *745 + repository: *746 sender: *4 required: - action @@ -153445,9 +153516,9 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - milestone: &780 + enterprise: *743 + installation: *744 + milestone: &781 title: Milestone description: A collection of related issues and pull requests. type: object @@ -153584,8 +153655,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -153664,11 +153735,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - milestone: *769 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + milestone: *770 + organization: *745 + repository: *746 sender: *4 required: - action @@ -153778,11 +153849,11 @@ x-webhooks: type: string required: - from - enterprise: *742 - installation: *743 - milestone: *769 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + milestone: *770 + organization: *745 + repository: *746 sender: *4 required: - action @@ -153862,11 +153933,11 @@ x-webhooks: type: string enum: - opened - enterprise: *742 - installation: *743 - milestone: *780 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + milestone: *781 + organization: *745 + repository: *746 sender: *4 required: - action @@ -153945,11 +154016,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *764 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + blocked_user: *765 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -154028,11 +154099,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *764 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + blocked_user: *765 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -154111,9 +154182,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - membership: &781 + enterprise: *743 + installation: *744 + membership: &782 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -154220,8 +154291,8 @@ x-webhooks: - role - organization_url - user - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 required: - action @@ -154299,11 +154370,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *742 - installation: *743 - membership: *781 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + membership: *782 + organization: *745 + repository: *746 sender: *4 required: - action @@ -154382,8 +154453,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -154499,10 +154570,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 - user: *764 + user: *765 required: - action - invitation @@ -154580,11 +154651,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *742 - installation: *743 - membership: *781 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + membership: *782 + organization: *745 + repository: *746 sender: *4 required: - action @@ -154671,11 +154742,11 @@ x-webhooks: properties: from: type: string - enterprise: *742 - installation: *743 - membership: *781 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + membership: *782 + organization: *745 + repository: *746 sender: *4 required: - action @@ -154752,9 +154823,9 @@ x-webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 package: description: Information about the package. type: object @@ -155253,7 +155324,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &782 + items: &783 title: Ruby Gems metadata type: object properties: @@ -155348,7 +155419,7 @@ x-webhooks: - owner - package_version - registry - repository: *745 + repository: *746 sender: *4 required: - action @@ -155424,9 +155495,9 @@ x-webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 package: description: Information about the package. type: object @@ -155779,7 +155850,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *782 + items: *783 source_url: type: string format: uri @@ -155849,7 +155920,7 @@ x-webhooks: - owner - package_version - registry - repository: *745 + repository: *746 sender: *4 required: - action @@ -156025,12 +156096,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *742 + enterprise: *743 id: type: integer - installation: *743 - organization: *744 - repository: *745 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - id @@ -156107,7 +156178,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &783 + personal_access_token_request: &784 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -156253,10 +156324,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *742 - organization: *744 + enterprise: *743 + organization: *745 sender: *4 - installation: *743 + installation: *744 required: - action - personal_access_token_request @@ -156333,11 +156404,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *783 - enterprise: *742 - organization: *744 + personal_access_token_request: *784 + enterprise: *743 + organization: *745 sender: *4 - installation: *743 + installation: *744 required: - action - personal_access_token_request @@ -156413,11 +156484,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *783 - enterprise: *742 - organization: *744 + personal_access_token_request: *784 + enterprise: *743 + organization: *745 sender: *4 - installation: *743 + installation: *744 required: - action - personal_access_token_request @@ -156492,11 +156563,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *783 - organization: *744 - enterprise: *742 + personal_access_token_request: *784 + organization: *745 + enterprise: *743 sender: *4 - installation: *743 + installation: *744 required: - action - personal_access_token_request @@ -156601,7 +156672,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *784 + last_response: *785 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -156633,8 +156704,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 zen: description: Random string of GitHub zen. @@ -156879,10 +156950,10 @@ x-webhooks: - from required: - note - enterprise: *742 - installation: *743 - organization: *744 - project_card: &785 + enterprise: *743 + installation: *744 + organization: *745 + project_card: &786 title: Project Card type: object properties: @@ -157001,7 +157072,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *745 + repository: *746 sender: *4 required: - action @@ -157082,11 +157153,11 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project_card: *785 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + project_card: *786 + repository: *746 sender: *4 required: - action @@ -157166,9 +157237,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 project_card: title: Project Card type: object @@ -157296,9 +157367,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *777 - required: *778 - x-github-breaking-changes: *779 + properties: *778 + required: *779 + x-github-breaking-changes: *780 nullable: true sender: *4 required: @@ -157392,11 +157463,11 @@ x-webhooks: - from required: - note - enterprise: *742 - installation: *743 - organization: *744 - project_card: *785 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + project_card: *786 + repository: *746 sender: *4 required: - action @@ -157490,9 +157561,9 @@ x-webhooks: - from required: - column_id - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 project_card: allOf: - title: Project Card @@ -157682,7 +157753,7 @@ x-webhooks: type: string required: - after_id - repository: *745 + repository: *746 sender: *4 required: - action @@ -157762,10 +157833,10 @@ x-webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - organization: *744 - project: &787 + enterprise: *743 + installation: *744 + organization: *745 + project: &788 title: Project type: object properties: @@ -157889,7 +157960,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *745 + repository: *746 sender: *4 required: - action @@ -157969,10 +158040,10 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project_column: &786 + enterprise: *743 + installation: *744 + organization: *745 + project_column: &787 title: Project Column type: object properties: @@ -158011,7 +158082,7 @@ x-webhooks: - name - created_at - updated_at - repository: *745 + repository: *746 sender: *4 required: - action @@ -158090,19 +158161,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - project_column: *786 + enterprise: *743 + installation: *744 + organization: *745 + project_column: *787 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *777 - required: *778 - x-github-breaking-changes: *779 + properties: *778 + required: *779 + x-github-breaking-changes: *780 nullable: true sender: *4 required: @@ -158192,11 +158263,11 @@ x-webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - project_column: *786 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + project_column: *787 + repository: *746 sender: *4 required: - action @@ -158276,11 +158347,11 @@ x-webhooks: type: string enum: - moved - enterprise: *742 - installation: *743 - organization: *744 - project_column: *786 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + project_column: *787 + repository: *746 sender: *4 required: - action @@ -158360,11 +158431,11 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - project: *787 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + project: *788 + repository: *746 sender: *4 required: - action @@ -158444,19 +158515,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - project: *787 + enterprise: *743 + installation: *744 + organization: *745 + project: *788 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *777 - required: *778 - x-github-breaking-changes: *779 + properties: *778 + required: *779 + x-github-breaking-changes: *780 nullable: true sender: *4 required: @@ -158558,11 +158629,11 @@ x-webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - project: *787 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + project: *788 + repository: *746 sender: *4 required: - action @@ -158641,11 +158712,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 - organization: *744 - project: *787 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + project: *788 + repository: *746 sender: *4 required: - action @@ -158726,8 +158797,8 @@ x-webhooks: type: string enum: - closed - installation: *743 - organization: *744 + installation: *744 + organization: *745 projects_v2: *277 sender: *4 required: @@ -158809,8 +158880,8 @@ x-webhooks: type: string enum: - created - installation: *743 - organization: *744 + installation: *744 + organization: *745 projects_v2: *277 sender: *4 required: @@ -158892,8 +158963,8 @@ x-webhooks: type: string enum: - deleted - installation: *743 - organization: *744 + installation: *744 + organization: *745 projects_v2: *277 sender: *4 required: @@ -159011,8 +159082,8 @@ x-webhooks: type: string to: type: string - installation: *743 - organization: *744 + installation: *744 + organization: *745 projects_v2: *277 sender: *4 required: @@ -159096,7 +159167,7 @@ x-webhooks: type: string enum: - archived - changes: &791 + changes: &792 type: object properties: archived_at: @@ -159110,9 +159181,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *743 - organization: *744 - projects_v2_item: &788 + installation: *744 + organization: *745 + projects_v2_item: &789 title: Projects v2 Item description: An item belonging to a project type: object @@ -159247,9 +159318,9 @@ x-webhooks: nullable: true to: type: string - installation: *743 - organization: *744 - projects_v2_item: *788 + installation: *744 + organization: *745 + projects_v2_item: *789 sender: *4 required: - action @@ -159331,9 +159402,9 @@ x-webhooks: type: string enum: - created - installation: *743 - organization: *744 - projects_v2_item: *788 + installation: *744 + organization: *745 + projects_v2_item: *789 sender: *4 required: - action @@ -159414,9 +159485,9 @@ x-webhooks: type: string enum: - deleted - installation: *743 - organization: *744 - projects_v2_item: *788 + installation: *744 + organization: *745 + projects_v2_item: *789 sender: *4 required: - action @@ -159522,7 +159593,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &789 + - &790 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -159544,7 +159615,7 @@ x-webhooks: required: - id - name - - &790 + - &791 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -159578,8 +159649,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *789 - *790 + - *791 required: - field_value - type: object @@ -159595,9 +159666,9 @@ x-webhooks: nullable: true required: - body - installation: *743 - organization: *744 - projects_v2_item: *788 + installation: *744 + organization: *745 + projects_v2_item: *789 sender: *4 required: - action @@ -159692,9 +159763,9 @@ x-webhooks: to: type: string nullable: true - installation: *743 - organization: *744 - projects_v2_item: *788 + installation: *744 + organization: *745 + projects_v2_item: *789 sender: *4 required: - action @@ -159777,10 +159848,10 @@ x-webhooks: type: string enum: - restored - changes: *791 - installation: *743 - organization: *744 - projects_v2_item: *788 + changes: *792 + installation: *744 + organization: *745 + projects_v2_item: *789 sender: *4 required: - action @@ -159862,8 +159933,8 @@ x-webhooks: type: string enum: - reopened - installation: *743 - organization: *744 + installation: *744 + organization: *745 projects_v2: *277 sender: *4 required: @@ -159945,14 +160016,14 @@ x-webhooks: type: string enum: - created - installation: *743 - organization: *744 - projects_v2_status_update: &794 + installation: *744 + organization: *745 + projects_v2_status_update: &795 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *792 - required: *793 + properties: *793 + required: *794 sender: *4 required: - action @@ -160033,9 +160104,9 @@ x-webhooks: type: string enum: - deleted - installation: *743 - organization: *744 - projects_v2_status_update: *794 + installation: *744 + organization: *745 + projects_v2_status_update: *795 sender: *4 required: - action @@ -160171,9 +160242,9 @@ x-webhooks: type: string format: date nullable: true - installation: *743 - organization: *744 - projects_v2_status_update: *794 + installation: *744 + organization: *745 + projects_v2_status_update: *795 sender: *4 required: - action @@ -160244,10 +160315,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - repository @@ -160324,13 +160395,13 @@ x-webhooks: type: string enum: - assigned - assignee: *764 - enterprise: *742 - installation: *743 - number: &795 + assignee: *765 + enterprise: *743 + installation: *744 + number: &796 description: The pull request number. type: integer - organization: *744 + organization: *745 pull_request: title: Pull Request type: object @@ -162635,7 +162706,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 sender: *4 required: - action @@ -162732,11 +162803,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 number: type: integer - organization: *744 + organization: *745 pull_request: title: Pull Request type: object @@ -165036,7 +165107,7 @@ x-webhooks: - draft reason: type: string - repository: *745 + repository: *746 sender: *4 required: - action @@ -165133,11 +165204,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 number: type: integer - organization: *744 + organization: *745 pull_request: title: Pull Request type: object @@ -167437,7 +167508,7 @@ x-webhooks: - draft reason: type: string - repository: *745 + repository: *746 sender: *4 required: - action @@ -167534,13 +167605,13 @@ x-webhooks: type: string enum: - closed - enterprise: *742 - installation: *743 - number: *795 - organization: *744 - pull_request: &796 + enterprise: *743 + installation: *744 + number: *796 + organization: *745 + pull_request: &797 allOf: - - *597 + - *598 - type: object properties: allow_auto_merge: @@ -167602,7 +167673,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *745 + repository: *746 sender: *4 required: - action @@ -167683,12 +167754,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *742 - installation: *743 - number: *795 - organization: *744 - pull_request: *796 - repository: *745 + enterprise: *743 + installation: *744 + number: *796 + organization: *745 + pull_request: *797 + repository: *746 sender: *4 required: - action @@ -167768,11 +167839,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *742 - milestone: *581 - number: *795 - organization: *744 - pull_request: &797 + enterprise: *743 + milestone: *582 + number: *796 + organization: *745 + pull_request: &798 title: Pull Request type: object properties: @@ -170099,7 +170170,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *745 + repository: *746 sender: *4 required: - action @@ -170178,11 +170249,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 number: type: integer - organization: *744 + organization: *745 pull_request: title: Pull Request type: object @@ -172486,7 +172557,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *745 + repository: *746 sender: *4 required: - action @@ -172618,12 +172689,12 @@ x-webhooks: type: string required: - from - enterprise: *742 - installation: *743 - number: *795 - organization: *744 - pull_request: *796 - repository: *745 + enterprise: *743 + installation: *744 + number: *796 + organization: *745 + pull_request: *797 + repository: *746 sender: *4 required: - action @@ -172703,11 +172774,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 number: type: integer - organization: *744 + organization: *745 pull_request: title: Pull Request type: object @@ -174996,7 +175067,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 sender: *4 required: - action @@ -175084,11 +175155,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *742 - installation: *743 - label: *763 - number: *795 - organization: *744 + enterprise: *743 + installation: *744 + label: *764 + number: *796 + organization: *745 pull_request: title: Pull Request type: object @@ -177392,7 +177463,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 sender: *4 required: - action @@ -177488,10 +177559,10 @@ x-webhooks: type: string enum: - locked - enterprise: *742 - installation: *743 - number: *795 - organization: *744 + enterprise: *743 + installation: *744 + number: *796 + organization: *745 pull_request: title: Pull Request type: object @@ -179793,7 +179864,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 sender: *4 required: - action @@ -179888,12 +179959,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *742 - milestone: *581 - number: *795 - organization: *744 - pull_request: *797 - repository: *745 + enterprise: *743 + milestone: *582 + number: *796 + organization: *745 + pull_request: *798 + repository: *746 sender: *4 required: - action @@ -179972,12 +180043,12 @@ x-webhooks: type: string enum: - opened - enterprise: *742 - installation: *743 - number: *795 - organization: *744 - pull_request: *796 - repository: *745 + enterprise: *743 + installation: *744 + number: *796 + organization: *745 + pull_request: *797 + repository: *746 sender: *4 required: - action @@ -180058,12 +180129,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *742 - installation: *743 - number: *795 - organization: *744 - pull_request: *796 - repository: *745 + enterprise: *743 + installation: *744 + number: *796 + organization: *745 + pull_request: *797 + repository: *746 sender: *4 required: - action @@ -180143,12 +180214,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *742 - installation: *743 - number: *795 - organization: *744 - pull_request: *796 - repository: *745 + enterprise: *743 + installation: *744 + number: *796 + organization: *745 + pull_request: *797 + repository: *746 sender: *4 required: - action @@ -180514,9 +180585,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 pull_request: type: object properties: @@ -182708,7 +182779,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *746 sender: *4 required: - action @@ -182803,7 +182874,7 @@ x-webhooks: type: string enum: - deleted - comment: &799 + comment: &800 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -183088,9 +183159,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 pull_request: type: object properties: @@ -185270,7 +185341,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *746 sender: *4 required: - action @@ -185365,11 +185436,11 @@ x-webhooks: type: string enum: - edited - changes: *798 - comment: *799 - enterprise: *742 - installation: *743 - organization: *744 + changes: *799 + comment: *800 + enterprise: *743 + installation: *744 + organization: *745 pull_request: type: object properties: @@ -187552,7 +187623,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *745 + repository: *746 sender: *4 required: - action @@ -187648,9 +187719,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 pull_request: title: Simple Pull Request type: object @@ -189845,7 +189916,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *746 review: description: The review that was affected. type: object @@ -190107,9 +190178,9 @@ x-webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 pull_request: title: Simple Pull Request type: object @@ -192163,8 +192234,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 - review: &800 + repository: *746 + review: &801 description: The review that was affected. type: object properties: @@ -192405,12 +192476,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 number: description: The pull request number. type: integer - organization: *744 + organization: *745 pull_request: title: Pull Request type: object @@ -194715,7 +194786,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 requested_reviewer: title: User type: object @@ -194799,12 +194870,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 number: description: The pull request number. type: integer - organization: *744 + organization: *745 pull_request: title: Pull Request type: object @@ -197116,7 +197187,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 requested_team: title: Team description: Groups of organization members that gives permissions @@ -197331,12 +197402,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 number: description: The pull request number. type: integer - organization: *744 + organization: *745 pull_request: title: Pull Request type: object @@ -199643,7 +199714,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 requested_reviewer: title: User type: object @@ -199728,12 +199799,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *742 - installation: *743 + enterprise: *743 + installation: *744 number: description: The pull request number. type: integer - organization: *744 + organization: *745 pull_request: title: Pull Request type: object @@ -202031,7 +202102,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 requested_team: title: Team description: Groups of organization members that gives permissions @@ -202235,9 +202306,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 pull_request: title: Simple Pull Request type: object @@ -204434,8 +204505,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 - review: *800 + repository: *746 + review: *801 sender: *4 required: - action @@ -204530,9 +204601,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 pull_request: title: Simple Pull Request type: object @@ -206624,7 +206695,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *746 sender: *4 thread: type: object @@ -207019,9 +207090,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 pull_request: title: Simple Pull Request type: object @@ -209099,7 +209170,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *745 + repository: *746 sender: *4 thread: type: object @@ -209497,10 +209568,10 @@ x-webhooks: type: string before: type: string - enterprise: *742 - installation: *743 - number: *795 - organization: *744 + enterprise: *743 + installation: *744 + number: *796 + organization: *745 pull_request: title: Pull Request type: object @@ -211793,7 +211864,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 sender: *4 required: - action @@ -211890,11 +211961,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *801 - enterprise: *742 - installation: *743 - number: *795 - organization: *744 + assignee: *802 + enterprise: *743 + installation: *744 + number: *796 + organization: *745 pull_request: title: Pull Request type: object @@ -214199,7 +214270,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 sender: *4 required: - action @@ -214293,11 +214364,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *742 - installation: *743 - label: *763 - number: *795 - organization: *744 + enterprise: *743 + installation: *744 + label: *764 + number: *796 + organization: *745 pull_request: title: Pull Request type: object @@ -216592,7 +216663,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 sender: *4 required: - action @@ -216688,10 +216759,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *742 - installation: *743 - number: *795 - organization: *744 + enterprise: *743 + installation: *744 + number: *796 + organization: *745 pull_request: title: Pull Request type: object @@ -218978,7 +219049,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *745 + repository: *746 sender: *4 required: - action @@ -219193,7 +219264,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *742 + enterprise: *743 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -219285,8 +219356,8 @@ x-webhooks: - url - author - committer - installation: *743 - organization: *744 + installation: *744 + organization: *745 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -219872,9 +219943,9 @@ x-webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 registry_package: type: object properties: @@ -220320,7 +220391,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *782 + items: *783 summary: type: string tag_name: @@ -220374,7 +220445,7 @@ x-webhooks: - owner - package_version - registry - repository: *745 + repository: *746 sender: *4 required: - action @@ -220452,9 +220523,9 @@ x-webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 registry_package: type: object properties: @@ -220762,7 +220833,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *782 + items: *783 summary: type: string tag_name: @@ -220811,7 +220882,7 @@ x-webhooks: - owner - package_version - registry - repository: *745 + repository: *746 sender: *4 required: - action @@ -220888,10 +220959,10 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - release: &802 + enterprise: *743 + installation: *744 + organization: *745 + release: &803 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -221209,7 +221280,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *745 + repository: *746 sender: *4 required: - action @@ -221286,11 +221357,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - release: *802 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + release: *803 + repository: *746 sender: *4 required: - action @@ -221407,11 +221478,11 @@ x-webhooks: type: boolean required: - to - enterprise: *742 - installation: *743 - organization: *744 - release: *802 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + release: *803 + repository: *746 sender: *4 required: - action @@ -221489,9 +221560,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -221813,7 +221884,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *745 + repository: *746 sender: *4 required: - action @@ -221889,10 +221960,10 @@ x-webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - release: &803 + enterprise: *743 + installation: *744 + organization: *745 + release: &804 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -222211,7 +222282,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *745 + repository: *746 sender: *4 required: - action @@ -222287,11 +222358,11 @@ x-webhooks: type: string enum: - released - enterprise: *742 - installation: *743 - organization: *744 - release: *802 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + release: *803 + repository: *746 sender: *4 required: - action @@ -222367,11 +222438,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *742 - installation: *743 - organization: *744 - release: *803 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + release: *804 + repository: *746 sender: *4 required: - action @@ -222447,11 +222518,11 @@ x-webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - repository_advisory: *664 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 + repository_advisory: *665 sender: *4 required: - action @@ -222527,11 +222598,11 @@ x-webhooks: type: string enum: - reported - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - repository_advisory: *664 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 + repository_advisory: *665 sender: *4 required: - action @@ -222607,10 +222678,10 @@ x-webhooks: type: string enum: - archived - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -222687,10 +222758,10 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -222768,10 +222839,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -222855,10 +222926,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -222970,10 +223041,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -223045,10 +223116,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 status: type: string @@ -223129,10 +223200,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -223209,10 +223280,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -223306,10 +223377,10 @@ x-webhooks: - name required: - repository - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -223389,10 +223460,10 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 repository_ruleset: *326 sender: *4 required: @@ -223471,10 +223542,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 repository_ruleset: *326 sender: *4 required: @@ -223553,10 +223624,10 @@ x-webhooks: type: string enum: - edited - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 repository_ruleset: *326 changes: type: object @@ -223618,16 +223689,16 @@ x-webhooks: properties: added: type: array - items: *617 + items: *618 deleted: type: array - items: *617 + items: *618 updated: type: array items: type: object properties: - rule: *617 + rule: *618 changes: type: object properties: @@ -223861,10 +223932,10 @@ x-webhooks: - from required: - owner - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -223942,10 +224013,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -224023,7 +224094,7 @@ x-webhooks: type: string enum: - create - alert: &804 + alert: &805 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -224145,10 +224216,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -224354,10 +224425,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -224435,11 +224506,11 @@ x-webhooks: type: string enum: - reopen - alert: *804 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *805 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -224638,10 +224709,10 @@ x-webhooks: enum: - fixed - open - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -224719,7 +224790,7 @@ x-webhooks: type: string enum: - assigned - alert: &805 + alert: &806 type: object properties: number: *178 @@ -224862,10 +224933,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -224943,11 +225014,11 @@ x-webhooks: type: string enum: - created - alert: *805 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *806 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -225028,11 +225099,11 @@ x-webhooks: type: string enum: - created - alert: *805 - installation: *743 - location: *806 - organization: *744 - repository: *745 + alert: *806 + installation: *744 + location: *807 + organization: *745 + repository: *746 sender: *4 required: - location @@ -225270,11 +225341,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *805 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *806 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -225352,11 +225423,11 @@ x-webhooks: type: string enum: - reopened - alert: *805 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *806 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -225434,11 +225505,11 @@ x-webhooks: type: string enum: - resolved - alert: *805 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *806 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -225516,12 +225587,12 @@ x-webhooks: type: string enum: - unassigned - alert: *805 + alert: *806 assignee: *4 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -225599,11 +225670,11 @@ x-webhooks: type: string enum: - validated - alert: *805 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + alert: *806 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -225729,10 +225800,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *745 - enterprise: *742 - installation: *743 - organization: *744 + repository: *746 + enterprise: *743 + installation: *744 + organization: *745 sender: *4 required: - action @@ -225810,11 +225881,11 @@ x-webhooks: type: string enum: - published - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - security_advisory: &807 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 + security_advisory: &808 description: The details of the security advisory, including summary, description, and severity. type: object @@ -226015,11 +226086,11 @@ x-webhooks: type: string enum: - updated - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 - security_advisory: *807 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 + security_advisory: *808 sender: *4 required: - action @@ -226092,10 +226163,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -226288,9 +226359,9 @@ x-webhooks: type: object properties: security_and_analysis: *299 - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 repository: *347 sender: *4 required: @@ -226369,12 +226440,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - sponsorship: &808 + sponsorship: &809 type: object properties: created_at: @@ -226675,12 +226746,12 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - sponsorship: *808 + sponsorship: *809 required: - action - sponsorship @@ -226768,12 +226839,12 @@ x-webhooks: type: string required: - from - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - sponsorship: *808 + sponsorship: *809 required: - action - changes @@ -226850,17 +226921,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &809 + effective_date: &810 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: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - sponsorship: *808 + sponsorship: *809 required: - action - sponsorship @@ -226934,7 +227005,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &810 + changes: &811 type: object properties: tier: @@ -226978,13 +227049,13 @@ x-webhooks: - from required: - tier - effective_date: *809 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + effective_date: *810 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - sponsorship: *808 + sponsorship: *809 required: - action - changes @@ -227061,13 +227132,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *810 - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + changes: *811 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - sponsorship: *808 + sponsorship: *809 required: - action - changes @@ -227141,10 +227212,10 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227227,10 +227298,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227650,15 +227721,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *742 + enterprise: *743 id: description: The unique identifier of the status. type: integer - installation: *743 + installation: *744 name: type: string - organization: *744 - repository: *745 + organization: *745 + repository: *746 sender: *4 sha: description: The Commit SHA. @@ -227773,9 +227844,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *743 - organization: *744 - repository: *745 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -227865,9 +227936,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *743 - organization: *744 - repository: *745 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -227957,9 +228028,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *743 - organization: *744 - repository: *745 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -228049,9 +228120,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *743 - organization: *744 - repository: *745 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -228128,12 +228199,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - team: &811 + team: &812 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -228356,9 +228427,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 repository: title: Repository description: A git repository @@ -228816,7 +228887,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *811 + team: *812 required: - action - team @@ -228892,9 +228963,9 @@ x-webhooks: type: string enum: - created - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 repository: title: Repository description: A git repository @@ -229352,7 +229423,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *811 + team: *812 required: - action - team @@ -229429,9 +229500,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 repository: title: Repository description: A git repository @@ -229889,7 +229960,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *811 + team: *812 required: - action - team @@ -230033,9 +230104,9 @@ x-webhooks: - from required: - permissions - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 repository: title: Repository description: A git repository @@ -230493,7 +230564,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *811 + team: *812 required: - action - changes @@ -230571,9 +230642,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *742 - installation: *743 - organization: *744 + enterprise: *743 + installation: *744 + organization: *745 repository: title: Repository description: A git repository @@ -231031,7 +231102,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *811 + team: *812 required: - action - team @@ -231107,10 +231178,10 @@ x-webhooks: type: string enum: - started - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 required: - action @@ -231183,16 +231254,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *742 + enterprise: *743 inputs: type: object nullable: true additionalProperties: true - installation: *743 - organization: *744 + installation: *744 + organization: *745 ref: type: string - repository: *745 + repository: *746 sender: *4 workflow: type: string @@ -231274,10 +231345,10 @@ x-webhooks: type: string enum: - completed - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 workflow_job: allOf: @@ -231514,7 +231585,7 @@ x-webhooks: type: string required: - conclusion - deployment: *507 + deployment: *508 required: - action - repository @@ -231593,10 +231664,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 workflow_job: allOf: @@ -231856,7 +231927,7 @@ x-webhooks: required: - status - steps - deployment: *507 + deployment: *508 required: - action - repository @@ -231935,10 +232006,10 @@ x-webhooks: type: string enum: - queued - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 workflow_job: type: object @@ -232073,7 +232144,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *507 + deployment: *508 required: - action - repository @@ -232152,10 +232223,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 workflow_job: type: object @@ -232291,7 +232362,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *507 + deployment: *508 required: - action - repository @@ -232371,12 +232442,12 @@ x-webhooks: type: string enum: - completed - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - workflow: *759 + workflow: *760 workflow_run: title: Workflow Run type: object @@ -233375,12 +233446,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - workflow: *759 + workflow: *760 workflow_run: title: Workflow Run type: object @@ -234364,12 +234435,12 @@ x-webhooks: type: string enum: - requested - enterprise: *742 - installation: *743 - organization: *744 - repository: *745 + enterprise: *743 + installation: *744 + organization: *745 + repository: *746 sender: *4 - workflow: *759 + workflow: *760 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 4cfbc898a0..e124406e87 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -389202,6 +389202,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/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 357cf515a2..dd848debd9 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1031,7 +1031,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: - - &776 + - &777 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1728,7 +1728,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &786 + schema: &787 title: Scim Error description: Scim Error type: object @@ -9083,7 +9083,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &787 + '401': &788 description: Authorization failure '404': *6 x-github: @@ -21936,7 +21936,7 @@ paths: - *167 rules: type: array - items: &742 + items: &743 title: Repository Rule type: object description: A repository rule. @@ -21945,7 +21945,7 @@ paths: - *173 - *174 - *175 - - &740 + - &741 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -22541,14 +22541,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &754 + state: &755 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: &755 + resolution: &756 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -22665,8 +22665,8 @@ paths: pull request. ' - oneOf: &756 - - &758 + oneOf: &757 + - &759 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -22724,7 +22724,7 @@ paths: - blob_url - commit_sha - commit_url - - &759 + - &760 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. @@ -22779,7 +22779,7 @@ paths: - page_url - commit_sha - commit_url - - &760 + - &761 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -22799,7 +22799,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &761 + - &762 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -22819,7 +22819,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &762 + - &763 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -22839,7 +22839,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &763 + - &764 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22853,7 +22853,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &764 + - &765 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22867,7 +22867,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &765 + - &766 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22881,7 +22881,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &766 + - &767 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. @@ -22901,7 +22901,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &767 + - &768 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. @@ -22921,7 +22921,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &768 + - &769 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. @@ -22941,7 +22941,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &769 + - &770 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. @@ -22961,7 +22961,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &770 + - &771 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 request. @@ -26624,7 +26624,7 @@ paths: properties: action: type: string - discussion: &894 + discussion: &895 title: Discussion description: A Discussion in a repository. type: object @@ -26991,7 +26991,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &675 + properties: &676 id: type: integer format: int64 @@ -27367,7 +27367,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &814 + sub_issues_summary: &815 title: Sub-issues Summary type: object properties: @@ -27454,7 +27454,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &697 + properties: &698 pinned_at: type: string format: date-time @@ -27466,7 +27466,7 @@ paths: properties: *20 required: *21 nullable: true - required: &698 + required: &699 - pinned_at - pinned_by nullable: true @@ -27480,7 +27480,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &815 + issue_dependencies_summary: &816 title: Issue Dependencies Summary type: object properties: @@ -27499,7 +27499,7 @@ paths: - total_blocking issue_field_values: type: array - items: &682 + items: &683 title: Issue Field Value description: A value assigned to an issue field type: object @@ -27560,7 +27560,7 @@ paths: - node_id - data_type - value - required: &676 + required: &677 - assignee - closed_at - comments @@ -27598,7 +27598,7 @@ paths: action: type: string issue: *227 - comment: &671 + comment: &672 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -28262,7 +28262,7 @@ paths: type: string release: allOf: - - &733 + - &734 title: Release description: A release. type: object @@ -28333,7 +28333,7 @@ paths: author: *4 assets: type: array - items: &734 + items: &735 title: Release Asset description: Data related to a release. type: object @@ -28912,7 +28912,7 @@ paths: url: type: string format: uri - user: &821 + user: &822 title: Public User description: Public User type: object @@ -32304,7 +32304,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &707 + - &708 name: all description: If `true`, show notifications marked as read. in: query @@ -32312,7 +32312,7 @@ paths: schema: type: boolean default: false - - &708 + - &709 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -32322,7 +32322,7 @@ paths: type: boolean default: false - *234 - - &709 + - &710 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: @@ -32860,7 +32860,7 @@ paths: - url - subscription_url examples: - default: &710 + default: &711 value: - id: '1' repository: @@ -33977,7 +33977,7 @@ paths: type: array items: *158 examples: - default: &716 + default: &717 value: - property_name: environment value: production @@ -34027,7 +34027,7 @@ paths: required: - properties examples: - default: &717 + default: &718 value: properties: - property_name: environment @@ -39848,12 +39848,12 @@ paths: required: - subject_digests examples: - default: &853 + default: &854 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &854 + withPredicateType: &855 value: subject_digests: - sha256:abc123 @@ -39911,7 +39911,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &855 + default: &856 value: attestations_subject_digests: - sha256:abc: @@ -45926,7 +45926,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - &629 + - &630 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -45934,7 +45934,7 @@ paths: required: false schema: type: string - - &630 + - &631 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -45942,7 +45942,7 @@ paths: required: false schema: type: string - - &631 + - &632 name: time_period description: |- The time period to filter by. @@ -45958,7 +45958,7 @@ paths: - week - month default: month - - &632 + - &633 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -45983,7 +45983,7 @@ paths: application/json: schema: type: array - items: &633 + items: &634 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -46139,7 +46139,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &634 + default: &635 value: - id: 21 number: 42 @@ -46241,7 +46241,7 @@ paths: application/json: schema: type: array - items: &635 + items: &636 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -46358,7 +46358,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &636 + default: &637 value: - id: 21 number: 42 @@ -48400,7 +48400,7 @@ paths: required: true content: application/json: - schema: &667 + schema: &668 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -50966,7 +50966,7 @@ paths: parameters: - *89 - *399 - - &836 + - &837 name: repo_name description: repo_name parameter in: path @@ -52294,7 +52294,7 @@ paths: - nuget - container - *89 - - &837 + - &838 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -52335,7 +52335,7 @@ paths: default: *405 '403': *29 '401': *25 - '400': &839 + '400': &840 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -54325,7 +54325,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &930 + properties: &931 id: type: number description: The unique identifier of the status update. @@ -54373,7 +54373,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &931 + required: &932 - id - node_id - created_at @@ -54813,7 +54813,7 @@ paths: - review_comment - self author_association: *224 - auto_merge: &719 + auto_merge: &720 title: Auto merge description: The status of auto merging a pull request. type: object @@ -55191,7 +55191,7 @@ paths: - updated_at - project_url examples: - default: &858 + default: &859 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55368,7 +55368,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &859 + items: &860 type: object properties: name: @@ -55405,7 +55405,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &860 + iteration_configuration: &861 type: object description: The configuration for iteration fields. properties: @@ -55455,7 +55455,7 @@ paths: value: name: Due date data_type: date - single_select_field: &861 + single_select_field: &862 summary: Create a single select field value: name: Priority @@ -55482,7 +55482,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &862 + iteration_field: &863 summary: Create an iteration field value: name: Sprint @@ -55508,7 +55508,7 @@ paths: application/json: schema: *426 examples: - text_field: &863 + text_field: &864 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -55517,7 +55517,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: &864 + number_field: &865 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -55526,7 +55526,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: &865 + date_field: &866 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -55535,7 +55535,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: &866 + single_select_field: &867 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55569,7 +55569,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &867 + iteration_field: &868 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -55615,7 +55615,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - *422 - - &868 + - &869 name: field_id description: The unique identifier of the field. in: path @@ -55630,7 +55630,7 @@ paths: application/json: schema: *426 examples: - default: &869 + default: &870 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -56827,7 +56827,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &850 + schema: &851 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -57004,7 +57004,7 @@ paths: parameters: - *422 - *89 - - &870 + - &871 name: view_number description: The number that identifies the project view. in: path @@ -58832,7 +58832,7 @@ paths: - *89 - *17 - *19 - - &741 + - &742 name: targets description: | A comma-separated list of rule targets to filter by. @@ -59048,7 +59048,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &743 + - &744 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 @@ -59060,14 +59060,14 @@ paths: x-multi-segment: true - *316 - *107 - - &744 + - &745 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 - - &745 + - &746 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -59087,7 +59087,7 @@ paths: description: Response content: application/json: - schema: &746 + schema: &747 title: Rule Suites description: Response type: array @@ -59142,7 +59142,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &747 + default: &748 value: - id: 21 actor_id: 12 @@ -59186,7 +59186,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &748 + - &749 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -59202,7 +59202,7 @@ paths: description: Response content: application/json: - schema: &749 + schema: &750 title: Rule Suite description: Response type: object @@ -59301,7 +59301,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &750 + default: &751 value: id: 21 actor_id: 12 @@ -59637,7 +59637,7 @@ paths: - *112 - *19 - *17 - - &752 + - &753 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 @@ -59647,7 +59647,7 @@ paths: required: false schema: type: string - - &753 + - &754 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 @@ -59860,7 +59860,7 @@ paths: application/json: schema: type: array - items: &774 + items: &775 description: A repository security advisory. type: object properties: @@ -60151,7 +60151,7 @@ paths: - private_fork additionalProperties: false examples: - default: &775 + default: &776 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -62246,7 +62246,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &817 + response-if-user-is-a-team-maintainer: &818 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -62311,7 +62311,7 @@ paths: application/json: schema: *477 examples: - response-if-users-membership-with-team-is-now-pending: &818 + response-if-users-membership-with-team-is-now-pending: &819 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -62425,7 +62425,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &819 + schema: &820 title: Team Repository description: A team's access to a repository. type: object @@ -63193,7 +63193,7 @@ paths: type: array items: *319 examples: - response-if-child-teams-exist: &820 + response-if-child-teams-exist: &821 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -64661,11 +64661,11 @@ paths: '302': description: Response headers: - Location: + Location: &623 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': &670 + '410': &671 description: Gone content: application/json: @@ -68285,7 +68285,7 @@ paths: items: type: object properties: - type: &637 + type: &638 type: string description: The type of reviewer. enum: @@ -68419,12 +68419,12 @@ paths: application/json: schema: type: array - items: &624 + items: &625 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &888 + properties: &889 url: type: string format: uri @@ -68509,7 +68509,7 @@ paths: nullable: true properties: *222 required: *223 - required: &889 + required: &890 - id - node_id - sha @@ -68525,7 +68525,7 @@ paths: - created_at - updated_at examples: - default: &625 + default: &626 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -68909,7 +68909,7 @@ paths: application/json: schema: *509 examples: - default: &650 + default: &651 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -69128,7 +69128,7 @@ paths: application/json: schema: *513 examples: - default: &651 + default: &652 value: name: USERNAME value: octocat @@ -70934,7 +70934,7 @@ paths: required: - sha - url - verification: &657 + verification: &658 title: Verification type: object properties: @@ -74447,7 +74447,7 @@ paths: check. type: array items: *232 - deployment: &881 + deployment: &882 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -75359,7 +75359,7 @@ paths: type: string format: date-time nullable: true - head_commit: &914 + head_commit: &915 title: Simple Commit description: A commit. type: object @@ -79630,14 +79630,14 @@ paths: type: integer machines: type: array - items: &826 + items: &827 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *583 required: *584 examples: - default: &827 + default: &828 value: total_count: 2 machines: @@ -80320,7 +80320,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &669 + schema: &670 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -81024,7 +81024,7 @@ paths: - content - created_at examples: - default: &673 + default: &674 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -81161,7 +81161,7 @@ paths: - *478 - *479 - *243 - - &674 + - &675 name: reaction_id description: The unique identifier of the reaction. in: path @@ -81275,7 +81275,7 @@ paths: type: array items: *595 examples: - default: &726 + default: &727 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -81566,7 +81566,7 @@ paths: type: array items: *599 examples: - default: &718 + default: &719 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -82124,7 +82124,7 @@ paths: application/json: schema: *595 examples: - default: &703 + default: &704 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -82783,7 +82783,7 @@ paths: application/json: schema: type: array - items: &779 + items: &780 title: Status description: The status of a commit. type: object @@ -83752,7 +83752,7 @@ paths: - size - type - url - - &731 + - &732 title: Content File description: Content File type: object @@ -84345,7 +84345,7 @@ paths: schema: oneOf: - *3 - - &652 + - &653 description: Repository rule violation was detected type: object properties: @@ -84366,7 +84366,7 @@ paths: items: type: object properties: - placeholder_id: &771 + placeholder_id: &772 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -85937,6 +85937,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: + - *478 + - *479 + - 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: *623 + '202': + description: SBOM is still being processed, no content is returned. + '404': *6 + '403': *29 + 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: + - *478 + - *479 + 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': *29 + 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 @@ -86029,7 +86100,7 @@ paths: - version - url additionalProperties: false - metadata: &623 + metadata: &624 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -86062,7 +86133,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *623 + metadata: *624 resolved: type: object description: A collection of resolved package dependencies. @@ -86075,7 +86146,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *623 + metadata: *624 relationship: type: string description: A notation of whether a dependency is requested @@ -86245,9 +86316,9 @@ paths: application/json: schema: type: array - items: *624 + items: *625 examples: - default: *625 + default: *626 headers: Link: *47 x-github: @@ -86395,7 +86466,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *625 examples: simple-example: summary: Simple example @@ -86470,7 +86541,7 @@ paths: parameters: - *478 - *479 - - &626 + - &627 name: deployment_id description: deployment_id parameter in: path @@ -86482,7 +86553,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *625 examples: default: value: @@ -86549,7 +86620,7 @@ paths: parameters: - *478 - *479 - - *626 + - *627 responses: '204': description: Response @@ -86573,7 +86644,7 @@ paths: parameters: - *478 - *479 - - *626 + - *627 - *17 - *19 responses: @@ -86583,7 +86654,7 @@ paths: application/json: schema: type: array - items: &627 + items: &628 title: Deployment Status description: The status of a deployment. type: object @@ -86746,7 +86817,7 @@ paths: parameters: - *478 - *479 - - *626 + - *627 requestBody: required: true content: @@ -86821,9 +86892,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: &628 + default: &629 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -86881,7 +86952,7 @@ paths: parameters: - *478 - *479 - - *626 + - *627 - name: status_id in: path required: true @@ -86892,9 +86963,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '404': *6 x-github: githubCloudOnly: false @@ -86923,10 +86994,10 @@ paths: parameters: - *478 - *479 - - *629 - *630 - *631 - *632 + - *633 - *17 - *19 responses: @@ -86936,9 +87007,9 @@ paths: application/json: schema: type: array - items: *633 + items: *634 examples: - default: *634 + default: *635 '404': *6 '403': *29 '500': *40 @@ -86975,7 +87046,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *633 + schema: *634 examples: default: value: @@ -87093,10 +87164,10 @@ paths: parameters: - *478 - *479 - - *629 - *630 - *631 - *632 + - *633 - *17 - *19 responses: @@ -87106,9 +87177,9 @@ paths: application/json: schema: type: array - items: *635 + items: *636 examples: - default: *636 + default: *637 '404': *6 '403': *29 '500': *40 @@ -87145,7 +87216,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -87235,7 +87306,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -87651,7 +87722,7 @@ paths: type: integer environments: type: array - items: &638 + items: &639 title: Environment description: Details of a deployment environment type: object @@ -87703,7 +87774,7 @@ paths: type: type: string example: wait_timer - wait_timer: &640 + wait_timer: &641 type: integer example: 30 description: The amount of time to delay a job after @@ -87740,7 +87811,7 @@ paths: items: type: object properties: - type: *637 + type: *638 reviewer: anyOf: - *4 @@ -87764,7 +87835,7 @@ paths: - id - node_id - type - deployment_branch_policy: &641 + deployment_branch_policy: &642 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -87882,7 +87953,7 @@ paths: parameters: - *478 - *479 - - &639 + - &640 name: environment_name in: path required: true @@ -87895,9 +87966,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: - default: &642 + default: &643 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -87983,7 +88054,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 requestBody: required: false content: @@ -87992,7 +88063,7 @@ paths: type: object nullable: true properties: - wait_timer: *640 + wait_timer: *641 prevent_self_review: type: boolean example: false @@ -88009,13 +88080,13 @@ paths: items: type: object properties: - type: *637 + type: *638 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *641 + deployment_branch_policy: *642 additionalProperties: false examples: default: @@ -88035,9 +88106,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: - default: *642 + default: *643 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -88063,7 +88134,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 responses: '204': description: Default response @@ -88090,7 +88161,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *17 - *19 responses: @@ -88108,7 +88179,7 @@ paths: example: 2 branch_policies: type: array - items: &643 + items: &644 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -88167,7 +88238,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 requestBody: required: true content: @@ -88213,9 +88284,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - example-wildcard: &644 + example-wildcard: &645 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -88259,8 +88330,8 @@ paths: parameters: - *478 - *479 - - *639 - - &645 + - *640 + - &646 name: branch_policy_id in: path required: true @@ -88272,9 +88343,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *644 + default: *645 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88295,8 +88366,8 @@ paths: parameters: - *478 - *479 - - *639 - - *645 + - *640 + - *646 requestBody: required: true content: @@ -88324,9 +88395,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *644 + default: *645 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88347,8 +88418,8 @@ paths: parameters: - *478 - *479 - - *639 - - *645 + - *640 + - *646 responses: '204': description: Response @@ -88373,7 +88444,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: - - *639 + - *640 - *479 - *478 responses: @@ -88391,7 +88462,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &646 + items: &647 title: Deployment protection rule description: Deployment protection rule type: object @@ -88410,7 +88481,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &647 + app: &648 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -88509,7 +88580,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: - - *639 + - *640 - *479 - *478 requestBody: @@ -88532,9 +88603,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *646 + schema: *647 examples: - default: &648 + default: &649 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -88569,7 +88640,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: - - *639 + - *640 - *479 - *478 - *19 @@ -88590,7 +88661,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *647 + items: *648 examples: default: value: @@ -88627,8 +88698,8 @@ paths: parameters: - *478 - *479 - - *639 - - &649 + - *640 + - &650 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -88640,9 +88711,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *647 examples: - default: *648 + default: *649 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88663,10 +88734,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: - - *639 + - *640 - *479 - *478 - - *649 + - *650 responses: '204': description: Response @@ -88694,7 +88765,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *17 - *19 responses: @@ -88741,7 +88812,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 responses: '200': description: Response @@ -88773,7 +88844,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *300 responses: '200': @@ -88782,7 +88853,7 @@ paths: application/json: schema: *509 examples: - default: *650 + default: *651 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88806,7 +88877,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *300 requestBody: required: true @@ -88866,7 +88937,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *300 responses: '204': @@ -88894,7 +88965,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *496 - *19 responses: @@ -88939,7 +89010,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 requestBody: required: true content: @@ -88993,7 +89064,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *303 responses: '200': @@ -89002,7 +89073,7 @@ paths: application/json: schema: *513 examples: - default: *651 + default: *652 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89026,7 +89097,7 @@ paths: - *478 - *479 - *303 - - *639 + - *640 requestBody: required: true content: @@ -89071,7 +89142,7 @@ paths: - *478 - *479 - *303 - - *639 + - *640 responses: '204': description: Response @@ -89439,7 +89510,7 @@ paths: schema: oneOf: - *265 - - *652 + - *653 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89674,7 +89745,7 @@ paths: description: Response content: application/json: - schema: &653 + schema: &654 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -89896,7 +89967,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: default: value: @@ -89954,7 +90025,7 @@ paths: parameters: - *478 - *479 - - &654 + - &655 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. @@ -89971,7 +90042,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 title: Git Reference description: Git references within a repository type: object @@ -90048,15 +90119,15 @@ paths: parameters: - *478 - *479 - - *654 + - *655 responses: '200': description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: &656 + default: &657 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -90115,9 +90186,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *656 + default: *657 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -90145,7 +90216,7 @@ paths: parameters: - *478 - *479 - - *654 + - *655 requestBody: required: true content: @@ -90174,9 +90245,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *656 + default: *657 '422': *15 '409': *121 x-github: @@ -90196,7 +90267,7 @@ paths: parameters: - *478 - *479 - - *654 + - *655 responses: '204': description: Response @@ -90319,7 +90390,7 @@ paths: description: Response content: application/json: - schema: &658 + schema: &659 title: Git Tag description: Metadata for a Git tag type: object @@ -90370,7 +90441,7 @@ paths: - sha - type - url - verification: *657 + verification: *658 required: - sha - url @@ -90380,7 +90451,7 @@ paths: - tag - message examples: - default: &659 + default: &660 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -90465,9 +90536,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 '404': *6 '409': *121 x-github: @@ -90565,7 +90636,7 @@ paths: description: Response content: application/json: - schema: &660 + schema: &661 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -90685,7 +90756,7 @@ paths: description: Response content: application/json: - schema: *660 + schema: *661 examples: default-response: summary: Default response @@ -90755,7 +90826,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 title: Webhook description: Webhooks for repositories. type: object @@ -90809,7 +90880,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &922 + last_response: &923 title: Hook Response type: object properties: @@ -90936,9 +91007,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: &662 + default: &663 value: type: Repository id: 12345678 @@ -90994,9 +91065,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *662 + default: *663 '404': *6 x-github: githubCloudOnly: false @@ -91063,9 +91134,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *662 + default: *663 '422': *15 '404': *6 x-github: @@ -91461,7 +91532,7 @@ paths: description: Response content: application/json: - schema: &663 + schema: &664 title: Import description: A repository import from an external source. type: object @@ -91560,7 +91631,7 @@ paths: - html_url - authors_url examples: - default: &666 + default: &667 value: vcs: subversion use_lfs: true @@ -91576,7 +91647,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': &664 + '503': &665 description: Unavailable due to service under maintenance. content: application/json: @@ -91654,7 +91725,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: default: value: @@ -91679,7 +91750,7 @@ paths: type: string '422': *15 '404': *6 - '503': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91757,7 +91828,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: example-1: summary: Example 1 @@ -91805,7 +91876,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': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91833,7 +91904,7 @@ paths: responses: '204': description: Response - '503': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91861,7 +91932,7 @@ paths: parameters: - *478 - *479 - - &848 + - &849 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -91875,7 +91946,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Porter Author description: Porter Author type: object @@ -91929,7 +92000,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': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91985,7 +92056,7 @@ paths: description: Response content: application/json: - schema: *665 + schema: *666 examples: default: value: @@ -91998,7 +92069,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92064,7 +92135,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92120,11 +92191,11 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: - default: *666 + default: *667 '422': *15 - '503': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92191,7 +92262,7 @@ paths: properties: {} additionalProperties: false examples: - default: &668 + default: &669 value: limit: collaborators_only origin: repository @@ -92222,7 +92293,7 @@ paths: required: true content: application/json: - schema: *667 + schema: *668 examples: default: summary: Example request body @@ -92236,7 +92307,7 @@ paths: application/json: schema: *380 examples: - default: *668 + default: *669 '409': description: Response x-github: @@ -92293,9 +92364,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: &841 + default: &842 value: - id: 1 repository: @@ -92457,7 +92528,7 @@ paths: description: Response content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -92695,7 +92766,7 @@ paths: type: array items: *227 examples: - default: &681 + default: &682 value: - id: 1 node_id: MDU6SXNzdWUx @@ -92958,7 +93029,7 @@ paths: application/json: schema: *227 examples: - default: &678 + default: &679 value: id: 1 node_id: MDU6SXNzdWUx @@ -93115,7 +93186,7 @@ paths: '422': *15 '503': *198 '404': *6 - '410': *670 + '410': *671 x-github: triggersNotification: true githubCloudOnly: false @@ -93165,9 +93236,9 @@ paths: application/json: schema: type: array - items: *671 + items: *672 examples: - default: &680 + default: &681 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -93233,9 +93304,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: &672 + default: &673 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -93314,9 +93385,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '422': *15 x-github: githubCloudOnly: false @@ -93372,7 +93443,7 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: default: value: @@ -93428,7 +93499,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *670 + '410': *671 '422': *15 x-github: githubCloudOnly: false @@ -93454,7 +93525,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *670 + '410': *671 '503': *198 x-github: githubCloudOnly: false @@ -93502,7 +93573,7 @@ paths: type: array items: *593 examples: - default: *673 + default: *674 headers: Link: *47 '404': *6 @@ -93591,7 +93662,7 @@ paths: - *478 - *479 - *243 - - *674 + - *675 responses: '204': description: Response @@ -93622,7 +93693,7 @@ paths: application/json: schema: type: array - items: &677 + items: &678 title: Issue Event description: Issue Event type: object @@ -93665,8 +93736,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *675 - required: *676 + properties: *676 + required: *677 nullable: true label: title: Issue Event Label @@ -93986,7 +94057,7 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: default: value: @@ -94179,7 +94250,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *670 + '410': *671 '403': *29 x-github: githubCloudOnly: false @@ -94215,7 +94286,7 @@ paths: parameters: - *478 - *479 - - &679 + - &680 name: issue_number description: The number that identifies the issue. in: path @@ -94231,7 +94302,7 @@ paths: examples: default: summary: Issue - value: *678 + value: *679 pinned_comment: summary: Issue with pinned comment value: @@ -94432,7 +94503,7 @@ paths: state_reason: completed '301': *484 '404': *6 - '410': *670 + '410': *671 '304': *37 x-github: githubCloudOnly: false @@ -94459,7 +94530,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: false content: @@ -94585,13 +94656,13 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 '422': *15 '503': *198 '403': *29 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94611,7 +94682,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: false content: @@ -94639,7 +94710,7 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94657,7 +94728,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: content: application/json: @@ -94684,7 +94755,7 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94708,7 +94779,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - name: assignee in: path required: true @@ -94750,7 +94821,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *234 - *17 - *19 @@ -94761,13 +94832,13 @@ paths: application/json: schema: type: array - items: *671 + items: *672 examples: - default: *680 + default: *681 headers: Link: *47 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94798,7 +94869,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -94820,16 +94891,16 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *670 + '410': *671 '422': *15 '404': *6 x-github: @@ -94859,7 +94930,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -94871,12 +94942,12 @@ paths: type: array items: *227 examples: - default: *681 + default: *682 headers: Link: *47 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94906,7 +94977,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -94930,7 +95001,7 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -94938,7 +95009,7 @@ paths: type: string '301': *484 '403': *29 - '410': *670 + '410': *671 '422': *15 '404': *6 x-github: @@ -94971,7 +95042,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -94985,13 +95056,13 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 '301': *484 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *670 + '410': *671 x-github: triggersNotification: true githubCloudOnly: false @@ -95019,7 +95090,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -95031,12 +95102,12 @@ paths: type: array items: *227 examples: - default: *681 + default: *682 headers: Link: *47 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95055,7 +95126,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -95069,7 +95140,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &684 + - &685 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -95123,7 +95194,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &685 + - &686 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -95259,7 +95330,7 @@ paths: - performed_via_github_app - assignee - assigner - - &686 + - &687 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -95310,7 +95381,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &687 + - &688 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -95361,7 +95432,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &688 + - &689 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -95415,7 +95486,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &689 + - &690 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -95462,7 +95533,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &690 + - &691 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -95509,7 +95580,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &691 + - &692 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -95569,7 +95640,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &692 + - &693 title: Locked Issue Event description: Locked Issue Event type: object @@ -95617,7 +95688,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &693 + - &694 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -95683,7 +95754,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &694 + - &695 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -95749,7 +95820,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &695 + - &696 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -95815,7 +95886,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &696 + - &697 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -95906,7 +95977,7 @@ paths: color: red headers: Link: *47 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95925,7 +95996,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -95935,9 +96006,9 @@ paths: application/json: schema: type: array - items: *682 + items: *683 examples: - default: &785 + default: &786 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -95963,7 +96034,7 @@ paths: Link: *47 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95982,7 +96053,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -95994,7 +96065,7 @@ paths: type: array items: *226 examples: - default: &683 + default: &684 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96014,7 +96085,7 @@ paths: Link: *47 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96032,7 +96103,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: false content: @@ -96077,10 +96148,10 @@ paths: type: array items: *226 examples: - default: *683 + default: *684 '301': *484 '404': *6 - '410': *670 + '410': *671 '422': *15 x-github: githubCloudOnly: false @@ -96099,7 +96170,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: false content: @@ -96161,10 +96232,10 @@ paths: type: array items: *226 examples: - default: *683 + default: *684 '301': *484 '404': *6 - '410': *670 + '410': *671 '422': *15 x-github: githubCloudOnly: false @@ -96183,13 +96254,13 @@ paths: parameters: - *478 - *479 - - *679 + - *680 responses: '204': description: Response '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96210,7 +96281,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - name: name in: path required: true @@ -96236,7 +96307,7 @@ paths: default: true '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96258,7 +96329,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: false content: @@ -96286,7 +96357,7 @@ paths: '204': description: Response '403': *29 - '410': *670 + '410': *671 '404': *6 '422': *15 x-github: @@ -96306,7 +96377,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 responses: '204': description: Response @@ -96338,7 +96409,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 responses: '200': description: Response @@ -96346,10 +96417,10 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96368,7 +96439,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - 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. @@ -96396,11 +96467,11 @@ paths: type: array items: *593 examples: - default: *673 + default: *674 headers: Link: *47 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96420,7 +96491,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -96485,8 +96556,8 @@ paths: parameters: - *478 - *479 - - *679 - - *674 + - *680 + - *675 responses: '204': description: Response @@ -96517,7 +96588,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -96541,7 +96612,7 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -96576,7 +96647,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -96588,11 +96659,11 @@ paths: type: array items: *227 examples: - default: *681 + default: *682 headers: Link: *47 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96622,7 +96693,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -96651,14 +96722,14 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *670 + '410': *671 '422': *15 '404': *6 x-github: @@ -96680,7 +96751,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -96713,7 +96784,7 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 '403': *29 '404': *6 '422': *7 @@ -96737,7 +96808,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -96752,7 +96823,6 @@ paths: description: Timeline Event type: object anyOf: - - *684 - *685 - *686 - *687 @@ -96765,6 +96835,7 @@ paths: - *694 - *695 - *696 + - *697 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -96825,8 +96896,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *697 - required: *698 + properties: *698 + required: *699 nullable: true required: - event @@ -97081,7 +97152,7 @@ paths: type: string comments: type: array - items: &720 + items: &721 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -97585,7 +97656,7 @@ paths: headers: Link: *47 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97613,7 +97684,7 @@ paths: application/json: schema: type: array - items: &699 + items: &700 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -97716,9 +97787,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: &700 + default: &701 value: id: 1 key: ssh-rsa AAA... @@ -97754,7 +97825,7 @@ paths: parameters: - *478 - *479 - - &701 + - &702 name: key_id description: The unique identifier of the key. in: path @@ -97766,9 +97837,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: *700 + default: *701 '404': *6 x-github: githubCloudOnly: false @@ -97788,7 +97859,7 @@ paths: parameters: - *478 - *479 - - *701 + - *702 responses: '204': description: Response @@ -97821,7 +97892,7 @@ paths: type: array items: *226 examples: - default: *683 + default: *684 headers: Link: *47 '404': *6 @@ -97881,7 +97952,7 @@ paths: application/json: schema: *226 examples: - default: &702 + default: &703 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -97927,7 +97998,7 @@ paths: application/json: schema: *226 examples: - default: *702 + default: *703 '404': *6 x-github: githubCloudOnly: false @@ -98380,7 +98451,7 @@ paths: application/json: schema: *595 examples: - default: *703 + default: *704 '204': description: Response when already merged '404': @@ -98447,7 +98518,7 @@ paths: application/json: schema: type: array - items: &704 + items: &705 title: Milestone description: A collection of related issues and pull requests. type: object @@ -98549,9 +98620,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: &705 + default: &706 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -98612,7 +98683,7 @@ paths: parameters: - *478 - *479 - - &706 + - &707 name: milestone_number description: The number that identifies the milestone. in: path @@ -98624,9 +98695,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *705 + default: *706 '404': *6 x-github: githubCloudOnly: false @@ -98645,7 +98716,7 @@ paths: parameters: - *478 - *479 - - *706 + - *707 requestBody: required: false content: @@ -98683,9 +98754,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *705 + default: *706 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98703,7 +98774,7 @@ paths: parameters: - *478 - *479 - - *706 + - *707 responses: '204': description: Response @@ -98726,7 +98797,7 @@ paths: parameters: - *478 - *479 - - *706 + - *707 - *17 - *19 responses: @@ -98738,7 +98809,7 @@ paths: type: array items: *226 examples: - default: *683 + default: *684 headers: Link: *47 x-github: @@ -98759,10 +98830,10 @@ paths: parameters: - *478 - *479 - - *707 - *708 - - *234 - *709 + - *234 + - *710 - *17 - *19 responses: @@ -98774,7 +98845,7 @@ paths: type: array items: *254 examples: - default: *710 + default: *711 headers: Link: *47 x-github: @@ -98864,7 +98935,7 @@ paths: description: Response content: application/json: - schema: &711 + schema: &712 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -98989,7 +99060,7 @@ paths: - custom_404 - public examples: - default: &712 + default: &713 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -99085,9 +99156,9 @@ paths: description: Response content: application/json: - schema: *711 + schema: *712 examples: - default: *712 + default: *713 '422': *15 '409': *121 x-github: @@ -99256,7 +99327,7 @@ paths: application/json: schema: type: array - items: &713 + items: &714 title: Page Build description: Page Build type: object @@ -99403,9 +99474,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *714 examples: - default: &714 + default: &715 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -99465,9 +99536,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *714 examples: - default: *714 + default: *715 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99595,7 +99666,7 @@ paths: parameters: - *478 - *479 - - &715 + - &716 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -99655,7 +99726,7 @@ paths: parameters: - *478 - *479 - - *715 + - *716 responses: '204': *157 '404': *6 @@ -100035,7 +100106,7 @@ paths: type: array items: *158 examples: - default: *716 + default: *717 '403': *29 '404': *6 x-github: @@ -100074,7 +100145,7 @@ paths: required: - properties examples: - default: *717 + default: *718 responses: '204': description: No Content when custom property values are successfully created @@ -100175,7 +100246,7 @@ paths: type: array items: *599 examples: - default: *718 + default: *719 headers: Link: *47 '304': *37 @@ -100273,7 +100344,7 @@ paths: description: Response content: application/json: - schema: &722 + schema: &723 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -100484,7 +100555,7 @@ paths: - review_comment - self author_association: *224 - auto_merge: *719 + auto_merge: *720 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -100576,7 +100647,7 @@ paths: - merged_by - review_comments examples: - default: &723 + default: &724 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -101133,9 +101204,9 @@ paths: application/json: schema: type: array - items: *720 + items: *721 examples: - default: &725 + default: &726 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -101220,9 +101291,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: &721 + default: &722 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -101321,9 +101392,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: *721 + default: *722 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101392,7 +101463,7 @@ paths: type: array items: *593 examples: - default: *673 + default: *674 headers: Link: *47 '404': *6 @@ -101481,7 +101552,7 @@ paths: - *478 - *479 - *243 - - *674 + - *675 responses: '204': description: Response @@ -101526,7 +101597,7 @@ paths: parameters: - *478 - *479 - - &724 + - &725 name: pull_number description: The number that identifies the pull request. in: path @@ -101539,9 +101610,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *722 + schema: *723 examples: - default: *723 + default: *724 '304': *37 '404': *6 '406': @@ -101578,7 +101649,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: false content: @@ -101620,9 +101691,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *723 examples: - default: *723 + default: *724 '422': *15 '403': *29 x-github: @@ -101646,7 +101717,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: true content: @@ -101748,7 +101819,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 - *251 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -101769,9 +101840,9 @@ paths: application/json: schema: type: array - items: *720 + items: *721 examples: - default: *725 + default: *726 headers: Link: *47 x-github: @@ -101806,7 +101877,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: true content: @@ -101911,7 +101982,7 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: example-for-a-multi-line-comment: value: @@ -102001,7 +102072,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 - *243 requestBody: required: true @@ -102024,7 +102095,7 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: default: value: @@ -102112,7 +102183,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 - *17 - *19 responses: @@ -102124,7 +102195,7 @@ paths: type: array items: *595 examples: - default: *726 + default: *727 headers: Link: *47 x-github: @@ -102156,7 +102227,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 - *17 - *19 responses: @@ -102206,7 +102277,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 responses: '204': description: Response if pull request has been merged @@ -102231,7 +102302,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: false content: @@ -102344,7 +102415,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 responses: '200': description: Response @@ -102421,7 +102492,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: false content: @@ -102996,7 +103067,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: true content: @@ -103537,7 +103608,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 - *17 - *19 responses: @@ -103547,7 +103618,7 @@ paths: application/json: schema: type: array - items: &727 + items: &728 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -103700,7 +103771,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: false content: @@ -103786,9 +103857,9 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: - default: &729 + default: &730 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103853,8 +103924,8 @@ paths: parameters: - *478 - *479 - - *724 - - &728 + - *725 + - &729 name: review_id description: The unique identifier of the review. in: path @@ -103866,9 +103937,9 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: - default: &730 + default: &731 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103929,8 +104000,8 @@ paths: parameters: - *478 - *479 - - *724 - - *728 + - *725 + - *729 requestBody: required: true content: @@ -103953,7 +104024,7 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: default: value: @@ -104017,16 +104088,16 @@ paths: parameters: - *478 - *479 - - *724 - - *728 + - *725 + - *729 responses: '200': description: Response content: application/json: - schema: *727 + schema: *728 examples: - default: *729 + default: *730 '422': *7 '404': *6 x-github: @@ -104055,8 +104126,8 @@ paths: parameters: - *478 - *479 - - *724 - - *728 + - *725 + - *729 - *17 - *19 responses: @@ -104293,8 +104364,8 @@ paths: parameters: - *478 - *479 - - *724 - - *728 + - *725 + - *729 requestBody: required: true content: @@ -104322,7 +104393,7 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: default: value: @@ -104387,8 +104458,8 @@ paths: parameters: - *478 - *479 - - *724 - - *728 + - *725 + - *729 requestBody: required: true content: @@ -104423,9 +104494,9 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: - default: *730 + default: *731 '404': *6 '422': *7 '403': *29 @@ -104449,7 +104520,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: false content: @@ -104526,9 +104597,9 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: - default: &732 + default: &733 value: type: file encoding: base64 @@ -104591,9 +104662,9 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: - default: *732 + default: *733 '404': *6 '422': *15 x-github: @@ -104626,7 +104697,7 @@ paths: application/json: schema: type: array - items: *733 + items: *734 examples: default: value: @@ -104797,9 +104868,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: &737 + default: &738 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -104906,7 +104977,7 @@ paths: parameters: - *478 - *479 - - &735 + - &736 name: asset_id description: The unique identifier of the asset. in: path @@ -104918,9 +104989,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: &736 + default: &737 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 @@ -104973,7 +105044,7 @@ paths: parameters: - *478 - *479 - - *735 + - *736 requestBody: required: false content: @@ -105001,9 +105072,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *736 + default: *737 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105021,7 +105092,7 @@ paths: parameters: - *478 - *479 - - *735 + - *736 responses: '204': description: Response @@ -105139,9 +105210,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: *737 + default: *738 '404': *6 x-github: githubCloudOnly: false @@ -105173,9 +105244,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: *737 + default: *738 '404': *6 x-github: githubCloudOnly: false @@ -105199,7 +105270,7 @@ paths: parameters: - *478 - *479 - - &738 + - &739 name: release_id description: The unique identifier of the release. in: path @@ -105213,9 +105284,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: *733 + schema: *734 examples: - default: *737 + default: *738 '401': description: Unauthorized x-github: @@ -105235,7 +105306,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 requestBody: required: false content: @@ -105299,9 +105370,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: *737 + default: *738 '404': description: Not Found if the discussion category name is invalid content: @@ -105324,7 +105395,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 responses: '204': description: Response @@ -105347,7 +105418,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 - *17 - *19 responses: @@ -105357,7 +105428,7 @@ paths: application/json: schema: type: array - items: *734 + items: *735 examples: default: value: @@ -105441,7 +105512,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 - name: name in: query required: true @@ -105467,7 +105538,7 @@ paths: description: Response for successful upload content: application/json: - schema: *734 + schema: *735 examples: response-for-successful-upload: value: @@ -105524,7 +105595,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 - 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. @@ -105550,7 +105621,7 @@ paths: type: array items: *593 examples: - default: *673 + default: *674 headers: Link: *47 '404': *6 @@ -105573,7 +105644,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 requestBody: required: true content: @@ -105636,8 +105707,8 @@ paths: parameters: - *478 - *479 - - *738 - - *674 + - *739 + - *675 responses: '204': description: Response @@ -105680,7 +105751,7 @@ paths: oneOf: - allOf: - *172 - - &739 + - &740 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -105701,67 +105772,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *173 - - *739 + - *740 - allOf: - *174 - - *739 + - *740 - allOf: - *175 - - *739 + - *740 - allOf: + - *741 - *740 - - *739 - allOf: - *176 - - *739 + - *740 - allOf: - *177 - - *739 + - *740 - allOf: - *178 - - *739 + - *740 - allOf: - *179 - - *739 + - *740 - allOf: - *180 - - *739 + - *740 - allOf: - *181 - - *739 + - *740 - allOf: - *182 - - *739 + - *740 - allOf: - *183 - - *739 + - *740 - allOf: - *184 - - *739 + - *740 - allOf: - *185 - - *739 + - *740 - allOf: - *186 - - *739 + - *740 - allOf: - *187 - - *739 + - *740 - allOf: - *188 - - *739 + - *740 - allOf: - *189 - - *739 + - *740 - allOf: - *190 - - *739 + - *740 - allOf: - *191 - - *739 + - *740 - allOf: - *192 - - *739 + - *740 examples: default: value: @@ -105812,7 +105883,7 @@ paths: schema: type: boolean default: true - - *741 + - *742 responses: '200': description: Response @@ -105897,7 +105968,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *742 + items: *743 required: - name - enforcement @@ -105930,7 +106001,7 @@ paths: application/json: schema: *193 examples: - default: &751 + default: &752 value: id: 42 name: super cool ruleset @@ -105980,10 +106051,10 @@ paths: parameters: - *478 - *479 - - *743 - - *107 - *744 + - *107 - *745 + - *746 - *17 - *19 responses: @@ -105991,9 +106062,9 @@ paths: description: Response content: application/json: - schema: *746 + schema: *747 examples: - default: *747 + default: *748 '404': *6 '500': *40 x-github: @@ -106016,15 +106087,15 @@ paths: parameters: - *478 - *479 - - *748 + - *749 responses: '200': description: Response content: application/json: - schema: *749 + schema: *750 examples: - default: *750 + default: *751 '404': *6 '500': *40 x-github: @@ -106075,7 +106146,7 @@ paths: application/json: schema: *193 examples: - default: *751 + default: *752 '404': *6 '500': *40 put: @@ -106128,7 +106199,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *742 + items: *743 examples: default: value: @@ -106158,7 +106229,7 @@ paths: application/json: schema: *193 examples: - default: *751 + default: *752 '404': *6 '422': *15 '500': *40 @@ -106326,8 +106397,8 @@ paths: - *112 - *19 - *17 - - *752 - *753 + - *754 - *453 - *454 - *455 @@ -106339,7 +106410,7 @@ paths: application/json: schema: type: array - items: &757 + items: &758 type: object properties: number: *130 @@ -106358,8 +106429,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *754 - resolution: *755 + state: *755 + resolution: *756 resolved_at: type: string format: date-time @@ -106465,7 +106536,7 @@ paths: pull request. ' - oneOf: *756 + oneOf: *757 nullable: true has_more_locations: type: boolean @@ -106638,7 +106709,7 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: default: value: @@ -106702,8 +106773,8 @@ paths: schema: type: object properties: - state: *754 - resolution: *755 + state: *755 + resolution: *756 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -106739,7 +106810,7 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: default: value: @@ -106847,7 +106918,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &944 + items: &945 type: object properties: type: @@ -106873,7 +106944,6 @@ paths: example: commit details: oneOf: - - *758 - *759 - *760 - *761 @@ -106886,6 +106956,7 @@ paths: - *768 - *769 - *770 + - *771 examples: default: value: @@ -106980,14 +107051,14 @@ paths: schema: type: object properties: - reason: &772 + reason: &773 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *771 + placeholder_id: *772 required: - reason - placeholder_id @@ -107004,7 +107075,7 @@ paths: schema: type: object properties: - reason: *772 + reason: *773 expire_at: type: string format: date-time @@ -107066,7 +107137,7 @@ paths: properties: incremental_scans: type: array - items: &773 + items: &774 description: Information on a single scan performed by secret scanning on the repository type: object @@ -107092,15 +107163,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *773 + items: *774 backfill_scans: type: array - items: *773 + items: *774 custom_pattern_backfill_scans: type: array items: allOf: - - *773 + - *774 - type: object properties: pattern_name: @@ -107113,7 +107184,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *773 + items: *774 examples: default: value: @@ -107223,9 +107294,9 @@ paths: application/json: schema: type: array - items: *774 + items: *775 examples: - default: *775 + default: *776 '400': *14 '404': *6 x-github: @@ -107409,9 +107480,9 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: - default: &777 + default: &778 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -107749,7 +107820,7 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: default: value: @@ -107898,15 +107969,15 @@ paths: parameters: - *478 - *479 - - *776 + - *777 responses: '200': description: Response content: application/json: - schema: *774 + schema: *775 examples: - default: *777 + default: *778 '403': *29 '404': *6 x-github: @@ -107932,7 +108003,7 @@ paths: parameters: - *478 - *479 - - *776 + - *777 requestBody: required: true content: @@ -108091,10 +108162,10 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: - default: *777 - add_credit: *777 + default: *778 + add_credit: *778 '403': *29 '404': *6 '422': @@ -108134,7 +108205,7 @@ paths: parameters: - *478 - *479 - - *776 + - *777 responses: '202': *39 '400': *14 @@ -108163,7 +108234,7 @@ paths: parameters: - *478 - *479 - - *776 + - *777 responses: '202': description: Response @@ -108307,7 +108378,7 @@ paths: application/json: schema: type: array - items: &778 + items: &779 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -108680,7 +108751,7 @@ paths: application/json: schema: type: array - items: *778 + items: *779 examples: default: value: @@ -108768,7 +108839,7 @@ paths: description: Response content: application/json: - schema: *779 + schema: *780 examples: default: value: @@ -108862,7 +108933,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &780 + schema: &781 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -108957,7 +109028,7 @@ paths: description: Response content: application/json: - schema: *780 + schema: *781 examples: default: value: @@ -109164,7 +109235,7 @@ paths: description: Response content: application/json: - schema: &781 + schema: &782 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -109176,7 +109247,7 @@ paths: required: - names examples: - default: &782 + default: &783 value: names: - octocat @@ -109231,9 +109302,9 @@ paths: description: Response content: application/json: - schema: *781 + schema: *782 examples: - default: *782 + default: *783 '404': *6 '422': *7 x-github: @@ -109256,7 +109327,7 @@ paths: parameters: - *478 - *479 - - &783 + - &784 name: per description: The time frame to display results for. in: query @@ -109285,7 +109356,7 @@ paths: example: 128 clones: type: array - items: &784 + items: &785 title: Traffic type: object properties: @@ -109526,7 +109597,7 @@ paths: parameters: - *478 - *479 - - *783 + - *784 responses: '200': description: Response @@ -109545,7 +109616,7 @@ paths: example: 3782 views: type: array - items: *784 + items: *785 required: - uniques - count @@ -110214,7 +110285,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *284 - - *679 + - *680 requestBody: required: true content: @@ -110278,9 +110349,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *682 + items: *683 examples: - default: *785 + default: *786 '400': *14 '403': *29 '404': *6 @@ -110317,7 +110388,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *284 - - *679 + - *680 requestBody: required: true content: @@ -110382,9 +110453,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *682 + items: *683 examples: - default: *785 + default: *786 '400': *14 '403': *29 '404': *6 @@ -110416,7 +110487,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *284 - - *679 + - *680 - *387 responses: '204': @@ -110459,7 +110530,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &793 + - &794 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -110468,7 +110539,7 @@ paths: schema: type: string example: members - - &798 + - &799 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -110479,7 +110550,7 @@ paths: default: 1 format: int32 example: 1 - - &799 + - &800 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -110521,7 +110592,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &788 + items: &789 allOf: - type: object required: @@ -110596,7 +110667,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: &800 + meta: &801 type: object description: The metadata associated with the creation/updates to the user. @@ -110656,30 +110727,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &789 + '400': &790 description: Bad request content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 - '401': *787 - '403': &790 + schema: *787 + '401': *788 + '403': &791 description: Permission denied - '429': &791 + '429': &792 description: Too many requests content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 - '500': &792 + schema: *787 + '500': &793 description: Internal server error content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 + schema: *787 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110703,7 +110774,7 @@ paths: required: true content: application/json: - schema: &796 + schema: &797 type: object required: - schemas @@ -110763,9 +110834,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *788 + schema: *789 examples: - group: &794 + group: &795 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -110784,13 +110855,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': *789 - '401': *787 - '403': *790 - '409': &797 + '400': *790 + '401': *788 + '403': *791 + '409': &798 description: Duplicate record detected - '429': *791 - '500': *792 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110807,7 +110878,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: - - &795 + - &796 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -110815,22 +110886,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *793 + - *794 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *788 + schema: *789 examples: - default: *794 - '400': *789 - '401': *787 - '403': *790 + default: *795 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '429': *791 - '500': *792 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110849,13 +110920,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: - - *795 + - *796 - *41 requestBody: required: true content: application/json: - schema: *796 + schema: *797 examples: group: summary: Group @@ -110881,17 +110952,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *788 + schema: *789 examples: - group: *794 - groupWithMembers: *794 - '400': *789 - '401': *787 - '403': *790 + group: *795 + groupWithMembers: *795 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '409': *797 - '429': *791 - '500': *792 + '409': *798 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110915,13 +110986,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: - - *795 + - *796 - *41 requestBody: required: true content: application/json: - schema: &807 + schema: &808 type: object required: - Operations @@ -110981,17 +111052,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *788 + schema: *789 examples: - updateGroup: *794 - addMembers: *794 - '400': *789 - '401': *787 - '403': *790 + updateGroup: *795 + addMembers: *795 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '409': *797 - '429': *791 - '500': *792 + '409': *798 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111007,17 +111078,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: - - *795 + - *796 - *41 responses: '204': description: Group was deleted, no content - '400': *789 - '401': *787 - '403': *790 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '429': *791 - '500': *792 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111051,8 +111122,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *798 - *799 + - *800 - *41 responses: '200': @@ -111085,7 +111156,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &802 + items: &803 allOf: - type: object required: @@ -111164,7 +111235,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &801 + roles: &802 type: array description: The roles assigned to the user. items: @@ -111220,7 +111291,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *800 + meta: *801 startIndex: type: integer description: A starting index for the returned page @@ -111257,11 +111328,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *789 - '401': *787 - '403': *790 - '429': *791 - '500': *792 + '400': *790 + '401': *788 + '403': *791 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111285,7 +111356,7 @@ paths: required: true content: application/json: - schema: &805 + schema: &806 type: object required: - schemas @@ -111367,9 +111438,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *801 + roles: *802 examples: - user: &806 + user: &807 summary: User value: schemas: @@ -111416,9 +111487,9 @@ paths: description: User has been created content: application/scim+json: - schema: *802 + schema: *803 examples: - user: &803 + user: &804 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -111444,13 +111515,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: *803 - '400': *789 - '401': *787 - '403': *790 - '409': *797 - '429': *791 - '500': *792 + enterpriseOwner: *804 + '400': *790 + '401': *788 + '403': *791 + '409': *798 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111467,7 +111538,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: - - &804 + - &805 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -111480,15 +111551,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *802 + schema: *803 examples: - default: *803 - '400': *789 - '401': *787 - '403': *790 + default: *804 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '429': *791 - '500': *792 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111539,30 +111610,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: - - *804 + - *805 - *41 requestBody: required: true content: application/json: - schema: *805 + schema: *806 examples: - user: *806 + user: *807 responses: '200': description: User was updated content: application/scim+json: - schema: *802 + schema: *803 examples: - user: *803 - '400': *789 - '401': *787 - '403': *790 + user: *804 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '409': *797 - '429': *791 - '500': *792 + '409': *798 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111603,13 +111674,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: - - *804 + - *805 - *41 requestBody: required: true content: application/json: - schema: *807 + schema: *808 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -111649,18 +111720,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *802 + schema: *803 examples: - userMultiValuedProperties: *803 - userSingleValuedProperties: *803 - disableUser: *803 - '400': *789 - '401': *787 - '403': *790 + userMultiValuedProperties: *804 + userSingleValuedProperties: *804 + disableUser: *804 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '409': *797 - '429': *791 - '500': *792 + '409': *798 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111680,17 +111751,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: - - *804 + - *805 - *41 responses: '204': description: User was deleted, no content - '400': *789 - '401': *787 - '403': *790 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '429': *791 - '500': *792 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111777,7 +111848,7 @@ paths: example: 1 Resources: type: array - items: &808 + items: &809 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -112008,22 +112079,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &809 + '404': &810 description: Resource not found content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 - '403': &810 + schema: *787 + '403': &811 description: Forbidden content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 - '400': *789 - '429': *791 + schema: *787 + '400': *790 + '429': *792 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -112049,9 +112120,9 @@ paths: description: Response content: application/scim+json: - schema: *808 + schema: *809 examples: - default: &811 + default: &812 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -112074,17 +112145,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *809 - '403': *810 - '500': *792 + '404': *810 + '403': *811 + '500': *793 '409': description: Conflict content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 - '400': *789 + schema: *787 + '400': *790 requestBody: required: true content: @@ -112182,17 +112253,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *804 + - *805 responses: '200': description: Response content: application/scim+json: - schema: *808 + schema: *809 examples: - default: *811 - '404': *809 - '403': *810 + default: *812 + '404': *810 + '403': *811 '304': *37 x-github: githubCloudOnly: true @@ -112216,18 +112287,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *804 + - *805 responses: '200': description: Response content: application/scim+json: - schema: *808 + schema: *809 examples: - default: *811 + default: *812 '304': *37 - '404': *809 - '403': *810 + '404': *810 + '403': *811 requestBody: required: true content: @@ -112340,19 +112411,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *804 + - *805 responses: '200': description: Response content: application/scim+json: - schema: *808 + schema: *809 examples: - default: *811 + default: *812 '304': *37 - '404': *809 - '403': *810 - '400': *789 + '404': *810 + '403': *811 + '400': *790 '429': description: Response content: @@ -112443,12 +112514,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *804 + - *805 responses: '204': description: Response - '404': *809 - '403': *810 + '404': *810 + '403': *811 '304': *37 x-github: githubCloudOnly: true @@ -112584,7 +112655,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &812 + text_matches: &813 title: Search Result Text Matches type: array items: @@ -112747,7 +112818,7 @@ paths: enum: - author-date - committer-date - - &813 + - &814 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 @@ -112838,7 +112909,7 @@ paths: url: type: string format: uri - verification: *657 + verification: *658 required: - author - committer @@ -112875,7 +112946,7 @@ paths: type: number node_id: type: string - text_matches: *812 + text_matches: *813 required: - sha - node_id @@ -113068,7 +113139,7 @@ paths: - interactions - created - updated - - *813 + - *814 - *17 - *19 - name: advanced_search @@ -113182,11 +113253,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: type: string state_reason: @@ -113218,7 +113289,7 @@ paths: type: string format: date-time nullable: true - text_matches: *812 + text_matches: *813 pull_request: type: object properties: @@ -113490,7 +113561,7 @@ paths: enum: - created - updated - - *813 + - *814 - *17 - *19 responses: @@ -113534,7 +113605,7 @@ paths: nullable: true score: type: number - text_matches: *812 + text_matches: *813 required: - id - node_id @@ -113620,7 +113691,7 @@ paths: - forks - help-wanted-issues - updated - - *813 + - *814 - *17 - *19 responses: @@ -113868,7 +113939,7 @@ paths: - admin - pull - push - text_matches: *812 + text_matches: *813 temp_clone_token: type: string allow_merge_commit: @@ -114169,7 +114240,7 @@ paths: type: string format: uri nullable: true - text_matches: *812 + text_matches: *813 related: type: array nullable: true @@ -114362,7 +114433,7 @@ paths: - followers - repositories - joined - - *813 + - *814 - *17 - *19 responses: @@ -114466,7 +114537,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *812 + text_matches: *813 blog: type: string nullable: true @@ -114545,7 +114616,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &816 + - &817 name: team_id description: The unique identifier of the team. in: path @@ -114586,7 +114657,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *816 + - *817 requestBody: required: true content: @@ -114686,7 +114757,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *816 + - *817 responses: '204': description: Response @@ -114715,7 +114786,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *816 + - *817 - *17 - *19 responses: @@ -114753,7 +114824,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *816 + - *817 - name: role description: Filters members returned by their role in the team. in: query @@ -114804,7 +114875,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *816 + - *817 - *145 responses: '204': @@ -114841,7 +114912,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *816 + - *817 - *145 responses: '204': @@ -114881,7 +114952,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *816 + - *817 - *145 responses: '204': @@ -114918,7 +114989,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: - - *816 + - *817 - *145 responses: '200': @@ -114927,7 +114998,7 @@ paths: application/json: schema: *477 examples: - response-if-user-is-a-team-maintainer: *817 + response-if-user-is-a-team-maintainer: *818 '404': *6 x-github: githubCloudOnly: false @@ -114960,7 +115031,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: - - *816 + - *817 - *145 requestBody: required: false @@ -114988,7 +115059,7 @@ paths: application/json: schema: *477 examples: - response-if-users-membership-with-team-is-now-pending: *818 + response-if-users-membership-with-team-is-now-pending: *819 '403': description: Forbidden if team synchronization is set up '422': @@ -115022,7 +115093,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: - - *816 + - *817 - *145 responses: '204': @@ -115050,7 +115121,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *816 + - *817 - *17 - *19 responses: @@ -115092,7 +115163,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: - - *816 + - *817 - *478 - *479 responses: @@ -115100,7 +115171,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *819 + schema: *820 examples: alternative-response-with-extra-repository-information: value: @@ -115251,7 +115322,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: - - *816 + - *817 - *478 - *479 requestBody: @@ -115303,7 +115374,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: - - *816 + - *817 - *478 - *479 responses: @@ -115334,7 +115405,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: - - *816 + - *817 responses: '200': description: Response @@ -115369,7 +115440,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: - - *816 + - *817 requestBody: required: true content: @@ -115457,7 +115528,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *816 + - *817 - *17 - *19 responses: @@ -115469,7 +115540,7 @@ paths: type: array items: *319 examples: - response-if-child-teams-exist: *820 + response-if-child-teams-exist: *821 headers: Link: *47 '404': *6 @@ -115502,7 +115573,7 @@ paths: application/json: schema: oneOf: - - &822 + - &823 title: Private User description: Private User type: object @@ -115705,7 +115776,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *821 + - *822 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -115858,7 +115929,7 @@ paths: description: Response content: application/json: - schema: *822 + schema: *823 examples: default: value: @@ -116256,7 +116327,7 @@ paths: type: integer secrets: type: array - items: &823 + items: &824 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -116372,7 +116443,7 @@ paths: description: Response content: application/json: - schema: *823 + schema: *824 examples: default: value: @@ -116785,7 +116856,7 @@ paths: description: Response content: application/json: - schema: &824 + schema: &825 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -116826,7 +116897,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &825 + default: &826 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -116871,9 +116942,9 @@ paths: description: Response content: application/json: - schema: *824 + schema: *825 examples: - default: *825 + default: *826 '404': *6 x-github: githubCloudOnly: false @@ -116910,9 +116981,9 @@ paths: type: integer machines: type: array - items: *826 + items: *827 examples: - default: *827 + default: *828 '304': *37 '500': *40 '401': *25 @@ -117851,7 +117922,7 @@ paths: type: array items: *404 examples: - default: &838 + default: &839 value: - id: 197 name: hello_docker @@ -117952,7 +118023,7 @@ paths: application/json: schema: type: array - items: &828 + items: &829 title: Email description: Email type: object @@ -118017,9 +118088,9 @@ paths: application/json: schema: type: array - items: *828 + items: *829 examples: - default: &840 + default: &841 value: - email: octocat@github.com verified: true @@ -118094,7 +118165,7 @@ paths: application/json: schema: type: array - items: *828 + items: *829 examples: default: value: @@ -118350,7 +118421,7 @@ paths: application/json: schema: type: array - items: &829 + items: &830 title: GPG Key description: A unique encryption key type: object @@ -118481,7 +118552,7 @@ paths: - subkeys - revoked examples: - default: &856 + default: &857 value: - id: 3 name: Octocat's GPG Key @@ -118566,9 +118637,9 @@ paths: description: Response content: application/json: - schema: *829 + schema: *830 examples: - default: &830 + default: &831 value: id: 3 name: Octocat's GPG Key @@ -118625,7 +118696,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: - - &831 + - &832 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -118637,9 +118708,9 @@ paths: description: Response content: application/json: - schema: *829 + schema: *830 examples: - default: *830 + default: *831 '404': *6 '304': *37 '403': *29 @@ -118662,7 +118733,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: - - *831 + - *832 responses: '204': description: Response @@ -118970,7 +119041,7 @@ paths: required: true content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -119120,7 +119191,7 @@ paths: application/json: schema: type: array - items: &832 + items: &833 title: Key description: Key type: object @@ -119221,9 +119292,9 @@ paths: description: Response content: application/json: - schema: *832 + schema: *833 examples: - default: &833 + default: &834 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -119256,15 +119327,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: - - *701 + - *702 responses: '200': description: Response content: application/json: - schema: *832 + schema: *833 examples: - default: *833 + default: *834 '404': *6 '304': *37 '403': *29 @@ -119287,7 +119358,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: - - *701 + - *702 responses: '204': description: Response @@ -119320,7 +119391,7 @@ paths: application/json: schema: type: array - items: &834 + items: &835 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -119388,7 +119459,7 @@ paths: - account - plan examples: - default: &835 + default: &836 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -119450,9 +119521,9 @@ paths: application/json: schema: type: array - items: *834 + items: *835 examples: - default: *835 + default: *836 headers: Link: *47 '304': *37 @@ -120461,7 +120532,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *399 - - *836 + - *837 responses: '204': description: Response @@ -120576,7 +120647,7 @@ paths: - docker - nuget - container - - *837 + - *838 - *19 - *17 responses: @@ -120588,8 +120659,8 @@ paths: type: array items: *404 examples: - default: *838 - '400': *839 + default: *839 + '400': *840 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120618,7 +120689,7 @@ paths: application/json: schema: *404 examples: - default: &857 + default: &858 value: id: 40201 name: octo-name @@ -120980,9 +121051,9 @@ paths: application/json: schema: type: array - items: *828 + items: *829 examples: - default: *840 + default: *841 headers: Link: *47 '304': *37 @@ -121095,7 +121166,7 @@ paths: type: array items: *80 examples: - default: &847 + default: &848 summary: Default response value: - id: 1296269 @@ -121439,9 +121510,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *841 + default: *842 headers: Link: *47 '304': *37 @@ -121520,7 +121591,7 @@ paths: application/json: schema: type: array - items: &842 + items: &843 title: Social account description: Social media account type: object @@ -121535,7 +121606,7 @@ paths: - provider - url examples: - default: &843 + default: &844 value: - provider: twitter url: https://twitter.com/github @@ -121597,9 +121668,9 @@ paths: application/json: schema: type: array - items: *842 + items: *843 examples: - default: *843 + default: *844 '422': *15 '304': *37 '404': *6 @@ -121686,7 +121757,7 @@ paths: application/json: schema: type: array - items: &844 + items: &845 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -121706,7 +121777,7 @@ paths: - title - created_at examples: - default: &871 + default: &872 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -121770,9 +121841,9 @@ paths: description: Response content: application/json: - schema: *844 + schema: *845 examples: - default: &845 + default: &846 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -121802,7 +121873,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: - - &846 + - &847 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -121814,9 +121885,9 @@ paths: description: Response content: application/json: - schema: *844 + schema: *845 examples: - default: *845 + default: *846 '404': *6 '304': *37 '403': *29 @@ -121839,7 +121910,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: - - *846 + - *847 responses: '204': description: Response @@ -121868,7 +121939,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: - - &872 + - &873 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 @@ -121893,11 +121964,11 @@ paths: type: array items: *80 examples: - default-response: *847 + default-response: *848 application/vnd.github.v3.star+json: schema: type: array - items: &873 + items: &874 title: Starred Repository description: Starred Repository type: object @@ -122266,10 +122337,10 @@ paths: application/json: schema: oneOf: + - *823 - *822 - - *821 examples: - default-response: &851 + default-response: &852 summary: Default response value: login: octocat @@ -122304,7 +122375,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &852 + response-with-git-hub-plan-information: &853 summary: Response with GitHub plan information value: login: octocat @@ -122361,7 +122432,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: - - &849 + - &850 name: user_id description: The unique identifier of the user. in: path @@ -122427,7 +122498,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *848 + - *849 - *17 responses: '200': @@ -122462,7 +122533,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: - - *849 + - *850 - *422 requestBody: required: true @@ -122534,7 +122605,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *850 + schema: *851 examples: table_view: summary: Response for creating a table view @@ -122586,11 +122657,11 @@ paths: application/json: schema: oneOf: + - *823 - *822 - - *821 examples: - default-response: *851 - response-with-git-hub-plan-information: *852 + default-response: *852 + response-with-git-hub-plan-information: *853 '404': *6 x-github: githubCloudOnly: false @@ -122640,8 +122711,8 @@ paths: required: - subject_digests examples: - default: *853 - withPredicateType: *854 + default: *854 + withPredicateType: *855 responses: '200': description: Response @@ -122694,7 +122765,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *855 + default: *856 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -122940,7 +123011,7 @@ paths: type: array items: *404 examples: - default: *838 + default: *839 '403': *29 '401': *25 x-github: @@ -123324,9 +123395,9 @@ paths: application/json: schema: type: array - items: *829 + items: *830 examples: - default: *856 + default: *857 headers: Link: *47 x-github: @@ -123554,7 +123625,7 @@ paths: - docker - nuget - container - - *837 + - *838 - *145 - *19 - *17 @@ -123567,10 +123638,10 @@ paths: type: array items: *404 examples: - default: *838 + default: *839 '403': *29 '401': *25 - '400': *839 + '400': *840 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123600,7 +123671,7 @@ paths: application/json: schema: *404 examples: - default: *857 + default: *858 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123949,7 +124020,7 @@ paths: type: array items: *426 examples: - default: *858 + default: *859 headers: Link: *47 '304': *37 @@ -124009,7 +124080,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *859 + items: *860 required: - name - data_type @@ -124025,7 +124096,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *860 + iteration_configuration: *861 required: - name - data_type @@ -124047,8 +124118,8 @@ paths: value: name: Due date data_type: date - single_select_field: *861 - iteration_field: *862 + single_select_field: *862 + iteration_field: *863 responses: '201': description: Response @@ -124056,11 +124127,11 @@ paths: application/json: schema: *426 examples: - text_field: *863 - number_field: *864 - date_field: *865 - single_select_field: *866 - iteration_field: *867 + text_field: *864 + number_field: *865 + date_field: *866 + single_select_field: *867 + iteration_field: *868 '304': *37 '403': *29 '401': *25 @@ -124082,7 +124153,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - *422 - - *868 + - *869 - *145 responses: '200': @@ -124091,7 +124162,7 @@ paths: application/json: schema: *426 examples: - default: *869 + default: *870 headers: Link: *47 '304': *37 @@ -124445,7 +124516,7 @@ paths: parameters: - *422 - *145 - - *870 + - *871 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -124724,9 +124795,9 @@ paths: application/json: schema: type: array - items: *842 + items: *843 examples: - default: *843 + default: *844 headers: Link: *47 x-github: @@ -124756,9 +124827,9 @@ paths: application/json: schema: type: array - items: *844 + items: *845 examples: - default: *871 + default: *872 headers: Link: *47 x-github: @@ -124783,7 +124854,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *145 - - *872 + - *873 - *112 - *17 - *19 @@ -124795,11 +124866,11 @@ paths: schema: anyOf: - type: array - items: *873 + items: *874 - type: array items: *80 examples: - default-response: *847 + default-response: *848 headers: Link: *47 x-github: @@ -124958,7 +125029,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &874 + enterprise: &875 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -125016,7 +125087,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &875 + installation: &876 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -125035,7 +125106,7 @@ x-webhooks: required: - id - node_id - organization: &876 + organization: &877 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -125095,13 +125166,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &877 + repository: &878 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &916 + properties: &917 id: description: Unique identifier of the repository example: 42 @@ -125796,7 +125867,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &917 + required: &918 - archive_url - assignees_url - blobs_url @@ -125947,10 +126018,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -126026,11 +126097,11 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - rule: &878 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + rule: &879 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) @@ -126253,11 +126324,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - rule: *878 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + rule: *879 sender: *4 required: - action @@ -126440,11 +126511,11 @@ x-webhooks: - everyone required: - from - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - rule: *878 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + rule: *879 sender: *4 required: - action @@ -126517,7 +126588,7 @@ x-webhooks: required: true content: application/json: - schema: &900 + schema: &901 title: Exemption request cancellation event type: object properties: @@ -126525,11 +126596,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - exemption_request: &879 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + exemption_request: &880 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -126833,7 +126904,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &880 + items: &881 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -126943,7 +127014,7 @@ x-webhooks: required: true content: application/json: - schema: &901 + schema: &902 title: Exemption request completed event type: object properties: @@ -126951,11 +127022,11 @@ x-webhooks: type: string enum: - completed - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - exemption_request: *879 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + exemption_request: *880 sender: *4 required: - action @@ -127027,7 +127098,7 @@ x-webhooks: required: true content: application/json: - schema: &898 + schema: &899 title: Exemption request created event type: object properties: @@ -127035,11 +127106,11 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - exemption_request: *879 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + exemption_request: *880 sender: *4 required: - action @@ -127111,7 +127182,7 @@ x-webhooks: required: true content: application/json: - schema: &902 + schema: &903 title: Exemption response dismissed event type: object properties: @@ -127119,12 +127190,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - exemption_request: *879 - exemption_response: *880 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + exemption_request: *880 + exemption_response: *881 sender: *4 required: - action @@ -127198,7 +127269,7 @@ x-webhooks: required: true content: application/json: - schema: &899 + schema: &900 title: Exemption response submitted event type: object properties: @@ -127206,12 +127277,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - exemption_request: *879 - exemption_response: *880 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + exemption_request: *880 + exemption_response: *881 sender: *4 required: - action @@ -127295,7 +127366,7 @@ x-webhooks: type: string enum: - completed - check_run: &882 + check_run: &883 title: CheckRun description: A check performed on the code of a given code change type: object @@ -127386,7 +127457,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *881 + deployment: *882 details_url: example: https://example.com type: string @@ -127471,10 +127542,10 @@ x-webhooks: - output - app - pull_requests - installation: *875 - enterprise: *874 - organization: *876 - repository: *877 + installation: *876 + enterprise: *875 + organization: *877 + repository: *878 sender: *4 required: - check_run @@ -127865,11 +127936,11 @@ x-webhooks: type: string enum: - created - check_run: *882 - installation: *875 - enterprise: *874 - organization: *876 - repository: *877 + check_run: *883 + installation: *876 + enterprise: *875 + organization: *877 + repository: *878 sender: *4 required: - check_run @@ -128263,11 +128334,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *882 - installation: *875 - enterprise: *874 - organization: *876 - repository: *877 + check_run: *883 + installation: *876 + enterprise: *875 + organization: *877 + repository: *878 requested_action: description: The action requested by the user. type: object @@ -128670,11 +128741,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *882 - installation: *875 - enterprise: *874 - organization: *876 - repository: *877 + check_run: *883 + installation: *876 + enterprise: *875 + organization: *877 + repository: *878 sender: *4 required: - check_run @@ -129644,10 +129715,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -130336,10 +130407,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -131022,10 +131093,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -131336,20 +131407,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &883 + commit_oid: &884 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: *874 - installation: *875 - organization: *876 - ref: &884 + enterprise: *875 + installation: *876 + organization: *877 + ref: &885 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: *877 + repository: *878 sender: *4 required: - action @@ -131744,12 +131815,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *883 - enterprise: *874 - installation: *875 - organization: *876 - ref: *884 - repository: *877 + commit_oid: *884 + enterprise: *875 + installation: *876 + organization: *877 + ref: *885 + repository: *878 sender: *4 required: - action @@ -132015,12 +132086,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *883 - enterprise: *874 - installation: *875 - organization: *876 - ref: *884 - repository: *877 + commit_oid: *884 + enterprise: *875 + installation: *876 + organization: *877 + ref: *885 + repository: *878 sender: *4 required: - action @@ -132352,12 +132423,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *883 - enterprise: *874 - installation: *875 - organization: *876 - ref: *884 - repository: *877 + commit_oid: *884 + enterprise: *875 + installation: *876 + organization: *877 + ref: *885 + repository: *878 sender: *4 required: - action @@ -132631,16 +132702,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *877 + repository: *878 sender: *4 required: - action @@ -132877,12 +132948,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *883 - enterprise: *874 - installation: *875 - organization: *876 - ref: *884 - repository: *877 + commit_oid: *884 + enterprise: *875 + installation: *876 + organization: *877 + ref: *885 + repository: *878 sender: *4 required: - action @@ -133193,10 +133264,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -133451,10 +133522,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -133534,18 +133605,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *876 - pusher_type: &885 + organization: *877 + pusher_type: &886 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &886 + ref: &887 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -133555,7 +133626,7 @@ x-webhooks: enum: - tag - branch - repository: *877 + repository: *878 sender: *4 required: - ref @@ -133638,9 +133709,9 @@ x-webhooks: enum: - created definition: *159 - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 required: - action @@ -133725,9 +133796,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 required: - action @@ -133805,9 +133876,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *159 - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 required: - action @@ -133885,9 +133956,9 @@ x-webhooks: enum: - updated definition: *159 - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 required: - action @@ -133964,10 +134035,10 @@ x-webhooks: type: string enum: - updated - enterprise: *874 - installation: *875 - repository: *877 - organization: *876 + enterprise: *875 + installation: *876 + repository: *878 + organization: *877 sender: *4 new_property_values: type: array @@ -134052,18 +134123,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *874 - installation: *875 - organization: *876 - pusher_type: *885 - ref: *886 + enterprise: *875 + installation: *876 + organization: *877 + pusher_type: *886 + ref: *887 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *877 + repository: *878 sender: *4 required: - ref @@ -134144,10 +134215,10 @@ x-webhooks: enum: - assignees_changed alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134228,10 +134299,10 @@ x-webhooks: enum: - auto_dismissed alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134313,10 +134384,10 @@ x-webhooks: enum: - auto_reopened alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134398,10 +134469,10 @@ x-webhooks: enum: - created alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134481,10 +134552,10 @@ x-webhooks: enum: - dismissed alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134564,10 +134635,10 @@ x-webhooks: enum: - fixed alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134648,10 +134719,10 @@ x-webhooks: enum: - reintroduced alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134731,10 +134802,10 @@ x-webhooks: enum: - reopened alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134811,9 +134882,9 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - key: &887 + enterprise: *875 + installation: *876 + key: &888 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -134849,8 +134920,8 @@ x-webhooks: - verified - created_at - read_only - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -134927,11 +134998,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - key: *887 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + key: *888 + organization: *877 + repository: *878 sender: *4 required: - action @@ -135487,12 +135558,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - workflow: &893 + workflow: &894 title: Workflow type: object nullable: true @@ -136233,15 +136304,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *888 - required: *889 + properties: *889 + required: *890 nullable: true pull_requests: type: array - items: *722 - repository: *877 - organization: *876 - installation: *875 + items: *723 + repository: *878 + organization: *877 + installation: *876 sender: *4 responses: '200': @@ -136312,7 +136383,7 @@ x-webhooks: type: string enum: - approved - approver: &890 + approver: &891 type: object properties: avatar_url: @@ -136355,11 +136426,11 @@ x-webhooks: type: string comment: type: string - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - reviewers: &891 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + reviewers: &892 type: array items: type: object @@ -136438,7 +136509,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &892 + workflow_job_run: &893 type: object properties: conclusion: @@ -137169,18 +137240,18 @@ x-webhooks: type: string enum: - rejected - approver: *890 + approver: *891 comment: type: string - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - reviewers: *891 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + reviewers: *892 sender: *4 since: type: string - workflow_job_run: *892 + workflow_job_run: *893 workflow_job_runs: type: array items: @@ -137884,13 +137955,13 @@ x-webhooks: type: string enum: - requested - enterprise: *874 + enterprise: *875 environment: type: string - installation: *875 - organization: *876 - repository: *877 - requestor: &903 + installation: *876 + organization: *877 + repository: *878 + requestor: &904 title: User type: object nullable: true @@ -139779,12 +139850,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - workflow: *893 + workflow: *894 workflow_run: title: Deployment Workflow Run type: object @@ -140464,7 +140535,7 @@ x-webhooks: type: string enum: - answered - answer: &896 + answer: &897 type: object properties: author_association: @@ -140621,11 +140692,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -140752,11 +140823,11 @@ x-webhooks: - from required: - category - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -140839,11 +140910,11 @@ x-webhooks: type: string enum: - closed - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -140925,7 +140996,7 @@ x-webhooks: type: string enum: - created - comment: &895 + comment: &896 type: object properties: author_association: @@ -141082,11 +141153,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141169,12 +141240,12 @@ x-webhooks: type: string enum: - deleted - comment: *895 - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + comment: *896 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141269,12 +141340,12 @@ x-webhooks: - from required: - body - comment: *895 - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + comment: *896 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141358,11 +141429,11 @@ x-webhooks: type: string enum: - created - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141444,11 +141515,11 @@ x-webhooks: type: string enum: - deleted - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141548,11 +141619,11 @@ x-webhooks: type: string required: - from - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141634,10 +141705,10 @@ x-webhooks: type: string enum: - labeled - discussion: *894 - enterprise: *874 - installation: *875 - label: &897 + discussion: *895 + enterprise: *875 + installation: *876 + label: &898 title: Label type: object properties: @@ -141669,8 +141740,8 @@ x-webhooks: - color - default - description - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141753,11 +141824,11 @@ x-webhooks: type: string enum: - locked - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141839,11 +141910,11 @@ x-webhooks: type: string enum: - pinned - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141925,11 +141996,11 @@ x-webhooks: type: string enum: - reopened - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -142014,16 +142085,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *894 - new_repository: *877 + new_discussion: *895 + new_repository: *878 required: - new_discussion - new_repository - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -142106,10 +142177,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *894 - old_answer: *896 - organization: *876 - repository: *877 + discussion: *895 + old_answer: *897 + organization: *877 + repository: *878 sender: *4 required: - action @@ -142191,12 +142262,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *894 - enterprise: *874 - installation: *875 - label: *897 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -142279,11 +142350,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -142365,11 +142436,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -142438,7 +142509,7 @@ x-webhooks: required: true content: application/json: - schema: *898 + schema: *899 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142501,7 +142572,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *900 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142564,7 +142635,7 @@ x-webhooks: required: true content: application/json: - schema: *900 + schema: *901 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142627,7 +142698,7 @@ x-webhooks: required: true content: application/json: - schema: *898 + schema: *899 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142690,7 +142761,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *900 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142756,7 +142827,7 @@ x-webhooks: required: true content: application/json: - schema: *900 + schema: *901 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142822,7 +142893,7 @@ x-webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142888,7 +142959,7 @@ x-webhooks: required: true content: application/json: - schema: *898 + schema: *899 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142954,7 +143025,7 @@ x-webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143020,7 +143091,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *900 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143085,7 +143156,7 @@ x-webhooks: required: true content: application/json: - schema: *900 + schema: *901 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143150,7 +143221,7 @@ x-webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143215,7 +143286,7 @@ x-webhooks: required: true content: application/json: - schema: *898 + schema: *899 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143280,7 +143351,7 @@ x-webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143346,7 +143417,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *900 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143413,7 +143484,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *874 + enterprise: *875 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -144073,9 +144144,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - forkee @@ -144221,9 +144292,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pages: description: The pages that were updated. type: array @@ -144260,7 +144331,7 @@ x-webhooks: - action - sha - html_url - repository: *877 + repository: *878 sender: *4 required: - pages @@ -144336,10 +144407,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories: &904 + organization: *877 + repositories: &905 description: An array of repository objects that the installation can access. type: array @@ -144365,8 +144436,8 @@ x-webhooks: - name - full_name - private - repository: *877 - requester: *903 + repository: *878 + requester: *904 sender: *4 required: - action @@ -144441,11 +144512,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories: *904 - repository: *877 + organization: *877 + repositories: *905 + repository: *878 requester: nullable: true sender: *4 @@ -144521,11 +144592,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories: *904 - repository: *877 + organization: *877 + repositories: *905 + repository: *878 requester: nullable: true sender: *4 @@ -144601,10 +144672,10 @@ x-webhooks: type: string enum: - added - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories_added: &905 + organization: *877 + repositories_added: &906 description: An array of repository objects, which were added to the installation. type: array @@ -144650,15 +144721,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *877 - repository_selection: &906 + repository: *878 + repository_selection: &907 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *903 + requester: *904 sender: *4 required: - action @@ -144737,10 +144808,10 @@ x-webhooks: type: string enum: - removed - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories_added: *905 + organization: *877 + repositories_added: *906 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -144767,9 +144838,9 @@ x-webhooks: - name - full_name - private - repository: *877 - repository_selection: *906 - requester: *903 + repository: *878 + repository_selection: *907 + requester: *904 sender: *4 required: - action @@ -144848,11 +144919,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories: *904 - repository: *877 + organization: *877 + repositories: *905 + repository: *878 requester: nullable: true sender: *4 @@ -145031,10 +145102,10 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 target_type: type: string @@ -145113,11 +145184,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories: *904 - repository: *877 + organization: *877 + repositories: *905 + repository: *878 requester: nullable: true sender: *4 @@ -145291,8 +145362,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *697 - required: *698 + properties: *698 + required: *699 nullable: true user: title: User @@ -145377,8 +145448,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -146167,8 +146238,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146517,8 +146588,8 @@ x-webhooks: - state - locked - assignee - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -146598,7 +146669,7 @@ x-webhooks: type: string enum: - deleted - comment: &907 + comment: &908 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -146755,8 +146826,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *697 - required: *698 + properties: *698 + required: *699 nullable: true required: - url @@ -146771,8 +146842,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147557,8 +147628,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147909,8 +147980,8 @@ x-webhooks: - state - locked - assignee - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -147990,7 +148061,7 @@ x-webhooks: type: string enum: - edited - changes: &936 + changes: &937 description: The changes to the comment. type: object properties: @@ -148002,9 +148073,9 @@ x-webhooks: type: string required: - from - comment: *907 - enterprise: *874 - installation: *875 + comment: *908 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148792,8 +148863,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149142,8 +149213,8 @@ x-webhooks: - state - locked - assignee - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -149224,9 +149295,9 @@ x-webhooks: type: string enum: - pinned - comment: *907 - enterprise: *874 - installation: *875 + comment: *908 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -150016,8 +150087,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150368,8 +150439,8 @@ x-webhooks: - state - locked - assignee - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -150449,9 +150520,9 @@ x-webhooks: type: string enum: - unpinned - comment: *907 - enterprise: *874 - installation: *875 + comment: *908 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -151241,8 +151312,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151593,8 +151664,8 @@ x-webhooks: - state - locked - assignee - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -151683,9 +151754,9 @@ x-webhooks: type: number blocking_issue: *227 blocking_issue_repo: *80 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -151774,9 +151845,9 @@ x-webhooks: type: number blocking_issue: *227 blocking_issue_repo: *80 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -151864,9 +151935,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -151955,9 +152026,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -152037,10 +152108,10 @@ x-webhooks: type: string enum: - assigned - assignee: *903 - enterprise: *874 - installation: *875 - issue: &910 + assignee: *904 + enterprise: *875 + installation: *876 + issue: &911 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -152832,11 +152903,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152953,8 +153024,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -153034,8 +153105,8 @@ x-webhooks: type: string enum: - closed - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -153832,11 +153903,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154088,8 +154159,8 @@ x-webhooks: required: - state - closed_at - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -154168,8 +154239,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154957,11 +155028,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155077,8 +155148,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -155157,8 +155228,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155968,11 +156039,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156067,7 +156138,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &908 + milestone: &909 title: Milestone description: A collection of related issues and pull requests. type: object @@ -156205,8 +156276,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -156305,8 +156376,8 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157098,11 +157169,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157219,9 +157290,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *897 - organization: *876 - repository: *877 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -157301,8 +157372,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -158093,11 +158164,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158214,9 +158285,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *897 - organization: *876 - repository: *877 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -158296,8 +158367,8 @@ x-webhooks: type: string enum: - locked - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159112,11 +159183,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159210,8 +159281,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -159290,8 +159361,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160100,11 +160171,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160198,9 +160269,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *908 - organization: *876 - repository: *877 + milestone: *909 + organization: *877 + repository: *878 sender: *4 required: - action @@ -161063,11 +161134,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161648,8 +161719,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162433,11 +162504,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162561,8 +162632,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -162642,9 +162713,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *874 - installation: *875 - issue: &909 + enterprise: *875 + installation: *876 + issue: &910 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -163430,11 +163501,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163550,8 +163621,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -163630,8 +163701,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -164444,11 +164515,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164543,8 +164614,8 @@ x-webhooks: user_view_type: type: string type: *388 - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -165413,11 +165484,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166012,11 +166083,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *874 - installation: *875 - issue: *909 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + issue: *910 + organization: *877 + repository: *878 sender: *4 required: - action @@ -166096,12 +166167,12 @@ x-webhooks: type: string enum: - typed - enterprise: *874 - installation: *875 - issue: *910 + enterprise: *875 + installation: *876 + issue: *911 type: *388 - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -166182,7 +166253,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &939 + assignee: &940 title: User type: object nullable: true @@ -166252,11 +166323,11 @@ x-webhooks: required: - login - id - enterprise: *874 - installation: *875 - issue: *910 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + issue: *911 + organization: *877 + repository: *878 sender: *4 required: - action @@ -166335,12 +166406,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *874 - installation: *875 - issue: *910 - label: *897 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + issue: *911 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -166420,8 +166491,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -167234,11 +167305,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167332,8 +167403,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167413,11 +167484,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *874 - installation: *875 - issue: *909 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + issue: *910 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167496,12 +167567,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *874 - installation: *875 - issue: *910 + enterprise: *875 + installation: *876 + issue: *911 type: *388 - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167581,11 +167652,11 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - label: *897 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167663,11 +167734,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - label: *897 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167777,11 +167848,11 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - label: *897 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167863,9 +167934,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *874 - installation: *875 - marketplace_purchase: &911 + enterprise: *875 + installation: *876 + marketplace_purchase: &912 title: Marketplace Purchase type: object required: @@ -167948,8 +168019,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *876 - previous_marketplace_purchase: &912 + organization: *877 + previous_marketplace_purchase: &913 title: Marketplace Purchase type: object properties: @@ -168029,7 +168100,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *877 + repository: *878 sender: *4 required: - action @@ -168109,10 +168180,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *874 - installation: *875 - marketplace_purchase: *911 - organization: *876 + enterprise: *875 + installation: *876 + marketplace_purchase: *912 + organization: *877 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -168195,7 +168266,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *877 + repository: *878 sender: *4 required: - action @@ -168277,10 +168348,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *874 - installation: *875 - marketplace_purchase: *911 - organization: *876 + enterprise: *875 + installation: *876 + marketplace_purchase: *912 + organization: *877 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -168362,7 +168433,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *877 + repository: *878 sender: *4 required: - action @@ -168443,8 +168514,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 marketplace_purchase: title: Marketplace Purchase type: object @@ -168526,9 +168597,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *876 - previous_marketplace_purchase: *912 - repository: *877 + organization: *877 + previous_marketplace_purchase: *913 + repository: *878 sender: *4 required: - action @@ -168608,12 +168679,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *874 - installation: *875 - marketplace_purchase: *911 - organization: *876 - previous_marketplace_purchase: *912 - repository: *877 + enterprise: *875 + installation: *876 + marketplace_purchase: *912 + organization: *877 + previous_marketplace_purchase: *913 + repository: *878 sender: *4 required: - action @@ -168715,11 +168786,11 @@ x-webhooks: type: string required: - to - enterprise: *874 - installation: *875 - member: *903 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + member: *904 + organization: *877 + repository: *878 sender: *4 required: - action @@ -168819,11 +168890,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *874 - installation: *875 - member: *903 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + member: *904 + organization: *877 + repository: *878 sender: *4 required: - action @@ -168902,11 +168973,11 @@ x-webhooks: type: string enum: - removed - enterprise: *874 - installation: *875 - member: *903 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + member: *904 + organization: *877 + repository: *878 sender: *4 required: - action @@ -168984,11 +169055,11 @@ x-webhooks: type: string enum: - added - enterprise: *874 - installation: *875 - member: *903 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + member: *904 + organization: *877 + repository: *878 scope: description: The scope of the membership. Currently, can only be `team`. @@ -169064,7 +169135,7 @@ x-webhooks: required: - login - id - team: &913 + team: &914 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -169287,11 +169358,11 @@ x-webhooks: type: string enum: - removed - enterprise: *874 - installation: *875 - member: *903 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + member: *904 + organization: *877 + repository: *878 scope: description: The scope of the membership. Currently, can only be `team`. @@ -169368,7 +169439,7 @@ x-webhooks: required: - login - id - team: *913 + team: *914 required: - action - scope @@ -169450,8 +169521,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *875 - merge_group: &915 + installation: *876 + merge_group: &916 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -169470,15 +169541,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *914 + head_commit: *915 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -169564,10 +169635,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *875 - merge_group: *915 - organization: *876 - repository: *877 + installation: *876 + merge_group: *916 + organization: *877 + repository: *878 sender: *4 required: - action @@ -169640,7 +169711,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 + enterprise: *875 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -169749,16 +169820,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *875 - organization: *876 + installation: *876 + organization: *877 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *916 - required: *917 + properties: *917 + required: *918 nullable: true sender: *4 required: @@ -169839,11 +169910,11 @@ x-webhooks: type: string enum: - closed - enterprise: *874 - installation: *875 - milestone: *908 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + milestone: *909 + organization: *877 + repository: *878 sender: *4 required: - action @@ -169922,9 +169993,9 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - milestone: &918 + enterprise: *875 + installation: *876 + milestone: &919 title: Milestone description: A collection of related issues and pull requests. type: object @@ -170061,8 +170132,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -170141,11 +170212,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - milestone: *908 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + milestone: *909 + organization: *877 + repository: *878 sender: *4 required: - action @@ -170255,11 +170326,11 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - milestone: *908 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + milestone: *909 + organization: *877 + repository: *878 sender: *4 required: - action @@ -170339,11 +170410,11 @@ x-webhooks: type: string enum: - opened - enterprise: *874 - installation: *875 - milestone: *918 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + milestone: *919 + organization: *877 + repository: *878 sender: *4 required: - action @@ -170422,11 +170493,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *903 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + blocked_user: *904 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -170505,11 +170576,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *903 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + blocked_user: *904 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -170585,7 +170656,7 @@ x-webhooks: enum: - created definition: *153 - enterprise: *874 + enterprise: *875 sender: *4 required: - action @@ -170665,8 +170736,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 sender: *4 required: - action @@ -170739,8 +170810,8 @@ x-webhooks: enum: - updated definition: *153 - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 sender: *4 required: - action @@ -170812,9 +170883,9 @@ x-webhooks: type: string enum: - updated - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 new_property_values: type: array @@ -170902,9 +170973,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - membership: &919 + enterprise: *875 + installation: *876 + membership: &920 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -171011,8 +171082,8 @@ x-webhooks: - role - organization_url - user - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -171090,11 +171161,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *874 - installation: *875 - membership: *919 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + membership: *920 + organization: *877 + repository: *878 sender: *4 required: - action @@ -171173,8 +171244,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -171290,10 +171361,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 - user: *903 + user: *904 required: - action - invitation @@ -171371,11 +171442,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *874 - installation: *875 - membership: *919 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + membership: *920 + organization: *877 + repository: *878 sender: *4 required: - action @@ -171462,11 +171533,11 @@ x-webhooks: properties: from: type: string - enterprise: *874 - installation: *875 - membership: *919 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + membership: *920 + organization: *877 + repository: *878 sender: *4 required: - action @@ -171544,9 +171615,9 @@ x-webhooks: type: string enum: - published - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 package: description: Information about the package. type: object @@ -172045,7 +172116,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &920 + items: &921 title: Ruby Gems metadata type: object properties: @@ -172140,7 +172211,7 @@ x-webhooks: - owner - package_version - registry - repository: *877 + repository: *878 sender: *4 required: - action @@ -172217,9 +172288,9 @@ x-webhooks: type: string enum: - updated - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 package: description: Information about the package. type: object @@ -172572,7 +172643,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *920 + items: *921 source_url: type: string format: uri @@ -172642,7 +172713,7 @@ x-webhooks: - owner - package_version - registry - repository: *877 + repository: *878 sender: *4 required: - action @@ -172818,12 +172889,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *874 + enterprise: *875 id: type: integer - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - id @@ -172900,7 +172971,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &921 + personal_access_token_request: &922 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -173046,10 +173117,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *874 - organization: *876 + enterprise: *875 + organization: *877 sender: *4 - installation: *875 + installation: *876 required: - action - personal_access_token_request @@ -173126,11 +173197,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *921 - enterprise: *874 - organization: *876 + personal_access_token_request: *922 + enterprise: *875 + organization: *877 sender: *4 - installation: *875 + installation: *876 required: - action - personal_access_token_request @@ -173206,11 +173277,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *921 - enterprise: *874 - organization: *876 + personal_access_token_request: *922 + enterprise: *875 + organization: *877 sender: *4 - installation: *875 + installation: *876 required: - action - personal_access_token_request @@ -173285,11 +173356,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *921 - organization: *876 - enterprise: *874 + personal_access_token_request: *922 + organization: *877 + enterprise: *875 sender: *4 - installation: *875 + installation: *876 required: - action - personal_access_token_request @@ -173394,7 +173465,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *922 + last_response: *923 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -173426,8 +173497,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 zen: description: Random string of GitHub zen. @@ -173672,10 +173743,10 @@ x-webhooks: - from required: - note - enterprise: *874 - installation: *875 - organization: *876 - project_card: &923 + enterprise: *875 + installation: *876 + organization: *877 + project_card: &924 title: Project Card type: object properties: @@ -173794,7 +173865,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *877 + repository: *878 sender: *4 required: - action @@ -173875,11 +173946,11 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - project_card: *923 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project_card: *924 + repository: *878 sender: *4 required: - action @@ -173959,9 +174030,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 project_card: title: Project Card type: object @@ -174089,8 +174160,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *916 - required: *917 + properties: *917 + required: *918 nullable: true sender: *4 required: @@ -174184,11 +174255,11 @@ x-webhooks: - from required: - note - enterprise: *874 - installation: *875 - organization: *876 - project_card: *923 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project_card: *924 + repository: *878 sender: *4 required: - action @@ -174282,9 +174353,9 @@ x-webhooks: - from required: - column_id - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 project_card: allOf: - title: Project Card @@ -174474,7 +174545,7 @@ x-webhooks: type: string required: - after_id - repository: *877 + repository: *878 sender: *4 required: - action @@ -174554,10 +174625,10 @@ x-webhooks: type: string enum: - closed - enterprise: *874 - installation: *875 - organization: *876 - project: &925 + enterprise: *875 + installation: *876 + organization: *877 + project: &926 title: Project type: object properties: @@ -174681,7 +174752,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *877 + repository: *878 sender: *4 required: - action @@ -174761,10 +174832,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - project_column: &924 + enterprise: *875 + installation: *876 + organization: *877 + project_column: &925 title: Project Column type: object properties: @@ -174803,7 +174874,7 @@ x-webhooks: - name - created_at - updated_at - repository: *877 + repository: *878 sender: *4 required: - action @@ -174882,18 +174953,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - project_column: *924 + enterprise: *875 + installation: *876 + organization: *877 + project_column: *925 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *916 - required: *917 + properties: *917 + required: *918 nullable: true sender: *4 required: @@ -174983,11 +175054,11 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - organization: *876 - project_column: *924 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project_column: *925 + repository: *878 sender: *4 required: - action @@ -175067,11 +175138,11 @@ x-webhooks: type: string enum: - moved - enterprise: *874 - installation: *875 - organization: *876 - project_column: *924 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project_column: *925 + repository: *878 sender: *4 required: - action @@ -175151,11 +175222,11 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - project: *925 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project: *926 + repository: *878 sender: *4 required: - action @@ -175235,18 +175306,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - project: *925 + enterprise: *875 + installation: *876 + organization: *877 + project: *926 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *916 - required: *917 + properties: *917 + required: *918 nullable: true sender: *4 required: @@ -175348,11 +175419,11 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - organization: *876 - project: *925 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project: *926 + repository: *878 sender: *4 required: - action @@ -175431,11 +175502,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *874 - installation: *875 - organization: *876 - project: *925 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project: *926 + repository: *878 sender: *4 required: - action @@ -175516,8 +175587,8 @@ x-webhooks: type: string enum: - closed - installation: *875 - organization: *876 + installation: *876 + organization: *877 projects_v2: *420 sender: *4 required: @@ -175599,8 +175670,8 @@ x-webhooks: type: string enum: - created - installation: *875 - organization: *876 + installation: *876 + organization: *877 projects_v2: *420 sender: *4 required: @@ -175682,8 +175753,8 @@ x-webhooks: type: string enum: - deleted - installation: *875 - organization: *876 + installation: *876 + organization: *877 projects_v2: *420 sender: *4 required: @@ -175801,8 +175872,8 @@ x-webhooks: type: string to: type: string - installation: *875 - organization: *876 + installation: *876 + organization: *877 projects_v2: *420 sender: *4 required: @@ -175886,7 +175957,7 @@ x-webhooks: type: string enum: - archived - changes: &929 + changes: &930 type: object properties: archived_at: @@ -175900,9 +175971,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *875 - organization: *876 - projects_v2_item: &926 + installation: *876 + organization: *877 + projects_v2_item: &927 title: Projects v2 Item description: An item belonging to a project type: object @@ -176037,9 +176108,9 @@ x-webhooks: nullable: true to: type: string - installation: *875 - organization: *876 - projects_v2_item: *926 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -176121,9 +176192,9 @@ x-webhooks: type: string enum: - created - installation: *875 - organization: *876 - projects_v2_item: *926 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -176204,9 +176275,9 @@ x-webhooks: type: string enum: - deleted - installation: *875 - organization: *876 - projects_v2_item: *926 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -176312,7 +176383,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &927 + - &928 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -176334,7 +176405,7 @@ x-webhooks: required: - id - name - - &928 + - &929 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -176368,8 +176439,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *927 - *928 + - *929 required: - field_value - type: object @@ -176385,9 +176456,9 @@ x-webhooks: nullable: true required: - body - installation: *875 - organization: *876 - projects_v2_item: *926 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -176482,9 +176553,9 @@ x-webhooks: to: type: string nullable: true - installation: *875 - organization: *876 - projects_v2_item: *926 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -176567,10 +176638,10 @@ x-webhooks: type: string enum: - restored - changes: *929 - installation: *875 - organization: *876 - projects_v2_item: *926 + changes: *930 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -176652,8 +176723,8 @@ x-webhooks: type: string enum: - reopened - installation: *875 - organization: *876 + installation: *876 + organization: *877 projects_v2: *420 sender: *4 required: @@ -176735,14 +176806,14 @@ x-webhooks: type: string enum: - created - installation: *875 - organization: *876 - projects_v2_status_update: &932 + installation: *876 + organization: *877 + projects_v2_status_update: &933 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *930 - required: *931 + properties: *931 + required: *932 sender: *4 required: - action @@ -176823,9 +176894,9 @@ x-webhooks: type: string enum: - deleted - installation: *875 - organization: *876 - projects_v2_status_update: *932 + installation: *876 + organization: *877 + projects_v2_status_update: *933 sender: *4 required: - action @@ -176961,9 +177032,9 @@ x-webhooks: type: string format: date nullable: true - installation: *875 - organization: *876 - projects_v2_status_update: *932 + installation: *876 + organization: *877 + projects_v2_status_update: *933 sender: *4 required: - action @@ -177034,10 +177105,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - repository @@ -177114,13 +177185,13 @@ x-webhooks: type: string enum: - assigned - assignee: *903 - enterprise: *874 - installation: *875 - number: &933 + assignee: *904 + enterprise: *875 + installation: *876 + number: &934 description: The pull request number. type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -179425,7 +179496,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -179507,11 +179578,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -181811,7 +181882,7 @@ x-webhooks: - draft reason: type: string - repository: *877 + repository: *878 sender: *4 required: - action @@ -181893,11 +181964,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -184197,7 +184268,7 @@ x-webhooks: - draft reason: type: string - repository: *877 + repository: *878 sender: *4 required: - action @@ -184279,13 +184350,13 @@ x-webhooks: type: string enum: - closed - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: &934 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: &935 allOf: - - *722 + - *723 - type: object properties: allow_auto_merge: @@ -184347,7 +184418,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *877 + repository: *878 sender: *4 required: - action @@ -184428,12 +184499,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: *934 - repository: *877 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: *935 + repository: *878 sender: *4 required: - action @@ -184513,11 +184584,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *874 - milestone: *704 - number: *933 - organization: *876 - pull_request: &935 + enterprise: *875 + milestone: *705 + number: *934 + organization: *877 + pull_request: &936 title: Pull Request type: object properties: @@ -186802,7 +186873,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -186881,11 +186952,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -189189,7 +189260,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *877 + repository: *878 sender: *4 required: - action @@ -189313,12 +189384,12 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: *934 - repository: *877 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: *935 + repository: *878 sender: *4 required: - action @@ -189398,11 +189469,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -191691,7 +191762,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -191771,11 +191842,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *874 - installation: *875 - label: *897 - number: *933 - organization: *876 + enterprise: *875 + installation: *876 + label: *898 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -194079,7 +194150,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -194160,10 +194231,10 @@ x-webhooks: type: string enum: - locked - enterprise: *874 - installation: *875 - number: *933 - organization: *876 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -196465,7 +196536,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -196545,12 +196616,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *874 - milestone: *704 - number: *933 - organization: *876 - pull_request: *935 - repository: *877 + enterprise: *875 + milestone: *705 + number: *934 + organization: *877 + pull_request: *936 + repository: *878 sender: *4 required: - action @@ -196629,12 +196700,12 @@ x-webhooks: type: string enum: - opened - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: *934 - repository: *877 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: *935 + repository: *878 sender: *4 required: - action @@ -196715,12 +196786,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: *934 - repository: *877 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: *935 + repository: *878 sender: *4 required: - action @@ -196800,12 +196871,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: *934 - repository: *877 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: *935 + repository: *878 sender: *4 required: - action @@ -197171,9 +197242,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: type: object properties: @@ -199365,7 +199436,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *877 + repository: *878 sender: *4 required: - action @@ -199445,7 +199516,7 @@ x-webhooks: type: string enum: - deleted - comment: &937 + comment: &938 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. @@ -199730,9 +199801,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: type: object properties: @@ -201912,7 +201983,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *877 + repository: *878 sender: *4 required: - action @@ -201992,11 +202063,11 @@ x-webhooks: type: string enum: - edited - changes: *936 - comment: *937 - enterprise: *874 - installation: *875 - organization: *876 + changes: *937 + comment: *938 + enterprise: *875 + installation: *876 + organization: *877 pull_request: type: object properties: @@ -204179,7 +204250,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *877 + repository: *878 sender: *4 required: - action @@ -204260,9 +204331,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: title: Simple Pull Request type: object @@ -206457,7 +206528,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *877 + repository: *878 review: description: The review that was affected. type: object @@ -206704,9 +206775,9 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: title: Simple Pull Request type: object @@ -208760,8 +208831,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *877 - review: &938 + repository: *878 + review: &939 description: The review that was affected. type: object properties: @@ -208994,12 +209065,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: description: The pull request number. type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -211304,7 +211375,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 requested_reviewer: title: User type: object @@ -211388,12 +211459,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: description: The pull request number. type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -213705,7 +213776,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 requested_team: title: Team description: Groups of organization members that gives permissions @@ -213897,12 +213968,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: description: The pull request number. type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -216209,7 +216280,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 requested_reviewer: title: User type: object @@ -216294,12 +216365,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: description: The pull request number. type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -218597,7 +218668,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 requested_team: title: Team description: Groups of organization members that gives permissions @@ -218778,9 +218849,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: title: Simple Pull Request type: object @@ -220977,8 +221048,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *877 - review: *938 + repository: *878 + review: *939 sender: *4 required: - action @@ -221058,9 +221129,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: title: Simple Pull Request type: object @@ -223152,7 +223223,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *877 + repository: *878 sender: *4 thread: type: object @@ -223539,9 +223610,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: title: Simple Pull Request type: object @@ -225619,7 +225690,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *877 + repository: *878 sender: *4 thread: type: object @@ -226009,10 +226080,10 @@ x-webhooks: type: string before: type: string - enterprise: *874 - installation: *875 - number: *933 - organization: *876 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -228305,7 +228376,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -228387,11 +228458,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *939 - enterprise: *874 - installation: *875 - number: *933 - organization: *876 + assignee: *940 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -230696,7 +230767,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -230775,11 +230846,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *874 - installation: *875 - label: *897 - number: *933 - organization: *876 + enterprise: *875 + installation: *876 + label: *898 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -233074,7 +233145,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -233155,10 +233226,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *874 - installation: *875 - number: *933 - organization: *876 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -235445,7 +235516,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -235645,7 +235716,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *874 + enterprise: *875 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -235737,8 +235808,8 @@ x-webhooks: - url - author - committer - installation: *875 - organization: *876 + installation: *876 + organization: *877 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -236324,9 +236395,9 @@ x-webhooks: type: string enum: - published - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 registry_package: type: object properties: @@ -236772,7 +236843,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *920 + items: *921 summary: type: string tag_name: @@ -236826,7 +236897,7 @@ x-webhooks: - owner - package_version - registry - repository: *877 + repository: *878 sender: *4 required: - action @@ -236904,9 +236975,9 @@ x-webhooks: type: string enum: - updated - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 registry_package: type: object properties: @@ -237214,7 +237285,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *920 + items: *921 summary: type: string tag_name: @@ -237263,7 +237334,7 @@ x-webhooks: - owner - package_version - registry - repository: *877 + repository: *878 sender: *4 required: - action @@ -237340,10 +237411,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - release: &940 + enterprise: *875 + installation: *876 + organization: *877 + release: &941 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -237661,7 +237732,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *877 + repository: *878 sender: *4 required: - action @@ -237738,11 +237809,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - release: *940 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + release: *941 + repository: *878 sender: *4 required: - action @@ -237859,11 +237930,11 @@ x-webhooks: type: boolean required: - to - enterprise: *874 - installation: *875 - organization: *876 - release: *940 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + release: *941 + repository: *878 sender: *4 required: - action @@ -237941,9 +238012,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -238265,7 +238336,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *877 + repository: *878 sender: *4 required: - action @@ -238341,10 +238412,10 @@ x-webhooks: type: string enum: - published - enterprise: *874 - installation: *875 - organization: *876 - release: &941 + enterprise: *875 + installation: *876 + organization: *877 + release: &942 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -238663,7 +238734,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *877 + repository: *878 sender: *4 required: - action @@ -238739,11 +238810,11 @@ x-webhooks: type: string enum: - released - enterprise: *874 - installation: *875 - organization: *876 - release: *940 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + release: *941 + repository: *878 sender: *4 required: - action @@ -238819,11 +238890,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *874 - installation: *875 - organization: *876 - release: *941 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + release: *942 + repository: *878 sender: *4 required: - action @@ -238899,11 +238970,11 @@ x-webhooks: type: string enum: - published - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - repository_advisory: *774 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + repository_advisory: *775 sender: *4 required: - action @@ -238979,11 +239050,11 @@ x-webhooks: type: string enum: - reported - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - repository_advisory: *774 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + repository_advisory: *775 sender: *4 required: - action @@ -239059,10 +239130,10 @@ x-webhooks: type: string enum: - archived - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239139,10 +239210,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239220,10 +239291,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239307,10 +239378,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239422,10 +239493,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239497,10 +239568,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 status: type: string @@ -239581,10 +239652,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239661,10 +239732,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239758,10 +239829,10 @@ x-webhooks: - name required: - repository - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239841,10 +239912,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 repository_ruleset: *193 sender: *4 required: @@ -239923,10 +239994,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 repository_ruleset: *193 sender: *4 required: @@ -240005,10 +240076,10 @@ x-webhooks: type: string enum: - edited - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 repository_ruleset: *193 changes: type: object @@ -240070,16 +240141,16 @@ x-webhooks: properties: added: type: array - items: *742 + items: *743 deleted: type: array - items: *742 + items: *743 updated: type: array items: type: object properties: - rule: *742 + rule: *743 changes: type: object properties: @@ -240313,10 +240384,10 @@ x-webhooks: - from required: - owner - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -240394,10 +240465,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -240475,7 +240546,7 @@ x-webhooks: type: string enum: - create - alert: &942 + alert: &943 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -240597,10 +240668,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -240806,10 +240877,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -240887,11 +240958,11 @@ x-webhooks: type: string enum: - reopen - alert: *942 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *943 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241090,10 +241161,10 @@ x-webhooks: enum: - fixed - open - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241171,7 +241242,7 @@ x-webhooks: type: string enum: - assigned - alert: &943 + alert: &944 type: object properties: number: *130 @@ -241314,10 +241385,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241395,11 +241466,11 @@ x-webhooks: type: string enum: - created - alert: *943 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *944 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241480,11 +241551,11 @@ x-webhooks: type: string enum: - created - alert: *943 - installation: *875 - location: *944 - organization: *876 - repository: *877 + alert: *944 + installation: *876 + location: *945 + organization: *877 + repository: *878 sender: *4 required: - location @@ -241722,11 +241793,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *943 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *944 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241804,11 +241875,11 @@ x-webhooks: type: string enum: - reopened - alert: *943 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *944 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241886,11 +241957,11 @@ x-webhooks: type: string enum: - resolved - alert: *943 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *944 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241968,12 +242039,12 @@ x-webhooks: type: string enum: - unassigned - alert: *943 + alert: *944 assignee: *4 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -242051,11 +242122,11 @@ x-webhooks: type: string enum: - validated - alert: *943 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *944 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -242181,10 +242252,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *877 - enterprise: *874 - installation: *875 - organization: *876 + repository: *878 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 required: - action @@ -242262,11 +242333,11 @@ x-webhooks: type: string enum: - published - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - security_advisory: &945 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + security_advisory: &946 description: The details of the security advisory, including summary, description, and severity. type: object @@ -242449,11 +242520,11 @@ x-webhooks: type: string enum: - updated - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - security_advisory: *945 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + security_advisory: *946 sender: *4 required: - action @@ -242526,10 +242597,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -242714,9 +242785,9 @@ x-webhooks: type: object properties: security_and_analysis: *437 - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: *483 sender: *4 required: @@ -242795,12 +242866,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: &946 + sponsorship: &947 type: object properties: created_at: @@ -243101,12 +243172,12 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: *946 + sponsorship: *947 required: - action - sponsorship @@ -243194,12 +243265,12 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: *946 + sponsorship: *947 required: - action - changes @@ -243276,17 +243347,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &947 + effective_date: &948 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: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: *946 + sponsorship: *947 required: - action - sponsorship @@ -243360,7 +243431,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &948 + changes: &949 type: object properties: tier: @@ -243404,13 +243475,13 @@ x-webhooks: - from required: - tier - effective_date: *947 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + effective_date: *948 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: *946 + sponsorship: *947 required: - action - changes @@ -243487,13 +243558,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *948 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + changes: *949 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: *946 + sponsorship: *947 required: - action - changes @@ -243567,10 +243638,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -243653,10 +243724,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -244076,15 +244147,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *874 + enterprise: *875 id: description: The unique identifier of the status. type: integer - installation: *875 + installation: *876 name: type: string - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 sha: description: The Commit SHA. @@ -244199,9 +244270,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -244291,9 +244362,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -244383,9 +244454,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -244475,9 +244546,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -244554,12 +244625,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - team: &949 + team: &950 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -244782,9 +244853,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: title: Repository description: A git repository @@ -245242,7 +245313,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *949 + team: *950 required: - action - team @@ -245318,9 +245389,9 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: title: Repository description: A git repository @@ -245778,7 +245849,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *949 + team: *950 required: - action - team @@ -245855,9 +245926,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: title: Repository description: A git repository @@ -246315,7 +246386,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *949 + team: *950 required: - action - team @@ -246459,9 +246530,9 @@ x-webhooks: - from required: - permissions - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: title: Repository description: A git repository @@ -246919,7 +246990,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *949 + team: *950 required: - action - changes @@ -246997,9 +247068,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: title: Repository description: A git repository @@ -247457,7 +247528,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *949 + team: *950 required: - action - team @@ -247533,10 +247604,10 @@ x-webhooks: type: string enum: - started - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -247609,16 +247680,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *874 + enterprise: *875 inputs: type: object nullable: true additionalProperties: true - installation: *875 - organization: *876 + installation: *876 + organization: *877 ref: type: string - repository: *877 + repository: *878 sender: *4 workflow: type: string @@ -247700,10 +247771,10 @@ x-webhooks: type: string enum: - completed - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 workflow_job: allOf: @@ -247940,7 +248011,7 @@ x-webhooks: type: string required: - conclusion - deployment: *624 + deployment: *625 required: - action - repository @@ -248019,10 +248090,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 workflow_job: allOf: @@ -248282,7 +248353,7 @@ x-webhooks: required: - status - steps - deployment: *624 + deployment: *625 required: - action - repository @@ -248361,10 +248432,10 @@ x-webhooks: type: string enum: - queued - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 workflow_job: type: object @@ -248499,7 +248570,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *624 + deployment: *625 required: - action - repository @@ -248578,10 +248649,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 workflow_job: type: object @@ -248717,7 +248788,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *624 + deployment: *625 required: - action - repository @@ -248797,12 +248868,12 @@ x-webhooks: type: string enum: - completed - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - workflow: *893 + workflow: *894 workflow_run: title: Workflow Run type: object @@ -249801,12 +249872,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - workflow: *893 + workflow: *894 workflow_run: title: Workflow Run type: object @@ -250790,12 +250861,12 @@ x-webhooks: type: string enum: - requested - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - workflow: *893 + workflow: *894 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json index 23c32dae5f..3deba26b37 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -382565,6 +382565,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/ghec/dereferenced/ghec.2026-03-10.deref.yaml b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml index d00e58db58..361e0e3296 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml @@ -1002,7 +1002,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: - - &776 + - &777 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1696,7 +1696,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &786 + schema: &787 title: Scim Error description: Scim Error type: object @@ -9035,7 +9035,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &787 + '401': &788 description: Authorization failure '404': *6 x-github: @@ -21866,7 +21866,7 @@ paths: - *167 rules: type: array - items: &742 + items: &743 title: Repository Rule type: object description: A repository rule. @@ -21875,7 +21875,7 @@ paths: - *173 - *174 - *175 - - &740 + - &741 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -22471,14 +22471,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &754 + state: &755 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: &755 + resolution: &756 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -22595,8 +22595,8 @@ paths: pull request. ' - oneOf: &756 - - &758 + oneOf: &757 + - &759 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -22654,7 +22654,7 @@ paths: - blob_url - commit_sha - commit_url - - &759 + - &760 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. @@ -22709,7 +22709,7 @@ paths: - page_url - commit_sha - commit_url - - &760 + - &761 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -22729,7 +22729,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &761 + - &762 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -22749,7 +22749,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &762 + - &763 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -22769,7 +22769,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &763 + - &764 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22783,7 +22783,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &764 + - &765 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22797,7 +22797,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &765 + - &766 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22811,7 +22811,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &766 + - &767 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. @@ -22831,7 +22831,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &767 + - &768 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. @@ -22851,7 +22851,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &768 + - &769 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. @@ -22871,7 +22871,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &769 + - &770 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. @@ -22891,7 +22891,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &770 + - &771 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 request. @@ -26554,7 +26554,7 @@ paths: properties: action: type: string - discussion: &894 + discussion: &895 title: Discussion description: A Discussion in a repository. type: object @@ -26921,7 +26921,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &675 + properties: &676 id: type: integer format: int64 @@ -27290,7 +27290,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &814 + sub_issues_summary: &815 title: Sub-issues Summary type: object properties: @@ -27377,7 +27377,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &697 + properties: &698 pinned_at: type: string format: date-time @@ -27389,7 +27389,7 @@ paths: properties: *20 required: *21 nullable: true - required: &698 + required: &699 - pinned_at - pinned_by nullable: true @@ -27403,7 +27403,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &815 + issue_dependencies_summary: &816 title: Issue Dependencies Summary type: object properties: @@ -27422,7 +27422,7 @@ paths: - total_blocking issue_field_values: type: array - items: &682 + items: &683 title: Issue Field Value description: A value assigned to an issue field type: object @@ -27483,7 +27483,7 @@ paths: - node_id - data_type - value - required: &676 + required: &677 - closed_at - comments - comments_url @@ -27520,7 +27520,7 @@ paths: action: type: string issue: *227 - comment: &671 + comment: &672 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -28184,7 +28184,7 @@ paths: type: string release: allOf: - - &733 + - &734 title: Release description: A release. type: object @@ -28255,7 +28255,7 @@ paths: author: *4 assets: type: array - items: &734 + items: &735 title: Release Asset description: Data related to a release. type: object @@ -32000,7 +32000,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &707 + - &708 name: all description: If `true`, show notifications marked as read. in: query @@ -32008,7 +32008,7 @@ paths: schema: type: boolean default: false - - &708 + - &709 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -32018,7 +32018,7 @@ paths: type: boolean default: false - *234 - - &709 + - &710 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: @@ -32554,7 +32554,7 @@ paths: - url - subscription_url examples: - default: &710 + default: &711 value: - id: '1' repository: @@ -33591,7 +33591,7 @@ paths: type: array items: *158 examples: - default: &716 + default: &717 value: - property_name: environment value: production @@ -33641,7 +33641,7 @@ paths: required: - properties examples: - default: &717 + default: &718 value: properties: - property_name: environment @@ -39453,12 +39453,12 @@ paths: required: - subject_digests examples: - default: &853 + default: &854 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &854 + withPredicateType: &855 value: subject_digests: - sha256:abc123 @@ -39502,7 +39502,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &855 + default: &856 value: attestations_subject_digests: - sha256:abc: @@ -45567,7 +45567,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *89 - - &629 + - &630 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -45575,7 +45575,7 @@ paths: required: false schema: type: string - - &630 + - &631 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -45583,7 +45583,7 @@ paths: required: false schema: type: string - - &631 + - &632 name: time_period description: |- The time period to filter by. @@ -45599,7 +45599,7 @@ paths: - week - month default: month - - &632 + - &633 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -45624,7 +45624,7 @@ paths: application/json: schema: type: array - items: &633 + items: &634 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -45780,7 +45780,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &634 + default: &635 value: - id: 21 number: 42 @@ -45882,7 +45882,7 @@ paths: application/json: schema: type: array - items: &635 + items: &636 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -45999,7 +45999,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &636 + default: &637 value: - id: 21 number: 42 @@ -48041,7 +48041,7 @@ paths: required: true content: application/json: - schema: &667 + schema: &668 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -50609,7 +50609,7 @@ paths: parameters: - *89 - *399 - - &835 + - &836 name: repo_name description: repo_name parameter in: path @@ -51824,7 +51824,7 @@ paths: - nuget - container - *89 - - &836 + - &837 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -51865,7 +51865,7 @@ paths: default: *405 '403': *29 '401': *25 - '400': &838 + '400': &839 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -53966,7 +53966,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &930 + properties: &931 id: type: number description: The unique identifier of the status update. @@ -54014,7 +54014,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &931 + required: &932 - id - node_id - created_at @@ -54443,7 +54443,7 @@ paths: - review_comment - self author_association: *224 - auto_merge: &719 + auto_merge: &720 title: Auto merge description: The status of auto merging a pull request. type: object @@ -54819,7 +54819,7 @@ paths: - updated_at - project_url examples: - default: &858 + default: &859 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -54996,7 +54996,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &859 + items: &860 type: object properties: name: @@ -55033,7 +55033,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &860 + iteration_configuration: &861 type: object description: The configuration for iteration fields. properties: @@ -55083,7 +55083,7 @@ paths: value: name: Due date data_type: date - single_select_field: &861 + single_select_field: &862 summary: Create a single select field value: name: Priority @@ -55110,7 +55110,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &862 + iteration_field: &863 summary: Create an iteration field value: name: Sprint @@ -55136,7 +55136,7 @@ paths: application/json: schema: *426 examples: - text_field: &863 + text_field: &864 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -55145,7 +55145,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: &864 + number_field: &865 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -55154,7 +55154,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: &865 + date_field: &866 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -55163,7 +55163,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: &866 + single_select_field: &867 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55197,7 +55197,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &867 + iteration_field: &868 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -55243,7 +55243,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - *422 - - &868 + - &869 name: field_id description: The unique identifier of the field. in: path @@ -55258,7 +55258,7 @@ paths: application/json: schema: *426 examples: - default: &869 + default: &870 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -56455,7 +56455,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &850 + schema: &851 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -56632,7 +56632,7 @@ paths: parameters: - *422 - *89 - - &870 + - &871 name: view_number description: The number that identifies the project view. in: path @@ -58454,7 +58454,7 @@ paths: - *89 - *17 - *19 - - &741 + - &742 name: targets description: | A comma-separated list of rule targets to filter by. @@ -58670,7 +58670,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *89 - - &743 + - &744 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 @@ -58682,14 +58682,14 @@ paths: x-multi-segment: true - *316 - *107 - - &744 + - &745 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 - - &745 + - &746 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -58709,7 +58709,7 @@ paths: description: Response content: application/json: - schema: &746 + schema: &747 title: Rule Suites description: Response type: array @@ -58764,7 +58764,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &747 + default: &748 value: - id: 21 actor_id: 12 @@ -58808,7 +58808,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &748 + - &749 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -58824,7 +58824,7 @@ paths: description: Response content: application/json: - schema: &749 + schema: &750 title: Rule Suite description: Response type: object @@ -58923,7 +58923,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &750 + default: &751 value: id: 21 actor_id: 12 @@ -59259,7 +59259,7 @@ paths: - *112 - *19 - *17 - - &752 + - &753 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 @@ -59269,7 +59269,7 @@ paths: required: false schema: type: string - - &753 + - &754 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 @@ -59482,7 +59482,7 @@ paths: application/json: schema: type: array - items: &774 + items: &775 description: A repository security advisory. type: object properties: @@ -59754,7 +59754,7 @@ paths: - private_fork additionalProperties: false examples: - default: &775 + default: &776 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -61841,7 +61841,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &817 + response-if-user-is-a-team-maintainer: &818 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -61906,7 +61906,7 @@ paths: application/json: schema: *477 examples: - response-if-users-membership-with-team-is-now-pending: &818 + response-if-users-membership-with-team-is-now-pending: &819 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -62020,7 +62020,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &819 + schema: &820 title: Team Repository description: A team's access to a repository. type: object @@ -62781,7 +62781,7 @@ paths: type: array items: *319 examples: - response-if-child-teams-exist: &820 + response-if-child-teams-exist: &821 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -64241,11 +64241,11 @@ paths: '302': description: Response headers: - Location: + Location: &623 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': &670 + '410': &671 description: Gone content: application/json: @@ -67865,7 +67865,7 @@ paths: items: type: object properties: - type: &637 + type: &638 type: string description: The type of reviewer. enum: @@ -67999,12 +67999,12 @@ paths: application/json: schema: type: array - items: &624 + items: &625 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &888 + properties: &889 url: type: string format: uri @@ -68089,7 +68089,7 @@ paths: nullable: true properties: *222 required: *223 - required: &889 + required: &890 - id - node_id - sha @@ -68105,7 +68105,7 @@ paths: - created_at - updated_at examples: - default: &625 + default: &626 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -68489,7 +68489,7 @@ paths: application/json: schema: *509 examples: - default: &650 + default: &651 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -68708,7 +68708,7 @@ paths: application/json: schema: *513 examples: - default: &651 + default: &652 value: name: USERNAME value: octocat @@ -70492,7 +70492,7 @@ paths: required: - sha - url - verification: &657 + verification: &658 title: Verification type: object properties: @@ -74005,7 +74005,7 @@ paths: check. type: array items: *232 - deployment: &881 + deployment: &882 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -74917,7 +74917,7 @@ paths: type: string format: date-time nullable: true - head_commit: &914 + head_commit: &915 title: Simple Commit description: A commit. type: object @@ -79186,14 +79186,14 @@ paths: type: integer machines: type: array - items: &825 + items: &826 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *583 required: *584 examples: - default: &826 + default: &827 value: total_count: 2 machines: @@ -79876,7 +79876,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &669 + schema: &670 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -80580,7 +80580,7 @@ paths: - content - created_at examples: - default: &673 + default: &674 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -80717,7 +80717,7 @@ paths: - *478 - *479 - *243 - - &674 + - &675 name: reaction_id description: The unique identifier of the reaction. in: path @@ -80831,7 +80831,7 @@ paths: type: array items: *595 examples: - default: &726 + default: &727 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -81122,7 +81122,7 @@ paths: type: array items: *599 examples: - default: &718 + default: &719 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -81680,7 +81680,7 @@ paths: application/json: schema: *595 examples: - default: &703 + default: &704 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -82339,7 +82339,7 @@ paths: application/json: schema: type: array - items: &779 + items: &780 title: Status description: The status of a commit. type: object @@ -83308,7 +83308,7 @@ paths: - size - type - url - - &731 + - &732 title: Content File description: Content File type: object @@ -83901,7 +83901,7 @@ paths: schema: oneOf: - *3 - - &652 + - &653 description: Repository rule violation was detected type: object properties: @@ -83922,7 +83922,7 @@ paths: items: type: object properties: - placeholder_id: &771 + placeholder_id: &772 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -85493,6 +85493,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: + - *478 + - *479 + - 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: *623 + '202': + description: SBOM is still being processed, no content is returned. + '404': *6 + '403': *29 + 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: + - *478 + - *479 + 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': *29 + 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 @@ -85585,7 +85656,7 @@ paths: - version - url additionalProperties: false - metadata: &623 + metadata: &624 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -85618,7 +85689,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *623 + metadata: *624 resolved: type: object description: A collection of resolved package dependencies. @@ -85631,7 +85702,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *623 + metadata: *624 relationship: type: string description: A notation of whether a dependency is requested @@ -85801,9 +85872,9 @@ paths: application/json: schema: type: array - items: *624 + items: *625 examples: - default: *625 + default: *626 headers: Link: *47 x-github: @@ -85951,7 +86022,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *625 examples: simple-example: summary: Simple example @@ -86026,7 +86097,7 @@ paths: parameters: - *478 - *479 - - &626 + - &627 name: deployment_id description: deployment_id parameter in: path @@ -86038,7 +86109,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *625 examples: default: value: @@ -86105,7 +86176,7 @@ paths: parameters: - *478 - *479 - - *626 + - *627 responses: '204': description: Response @@ -86129,7 +86200,7 @@ paths: parameters: - *478 - *479 - - *626 + - *627 - *17 - *19 responses: @@ -86139,7 +86210,7 @@ paths: application/json: schema: type: array - items: &627 + items: &628 title: Deployment Status description: The status of a deployment. type: object @@ -86302,7 +86373,7 @@ paths: parameters: - *478 - *479 - - *626 + - *627 requestBody: required: true content: @@ -86377,9 +86448,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: &628 + default: &629 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -86437,7 +86508,7 @@ paths: parameters: - *478 - *479 - - *626 + - *627 - name: status_id in: path required: true @@ -86448,9 +86519,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '404': *6 x-github: githubCloudOnly: false @@ -86479,10 +86550,10 @@ paths: parameters: - *478 - *479 - - *629 - *630 - *631 - *632 + - *633 - *17 - *19 responses: @@ -86492,9 +86563,9 @@ paths: application/json: schema: type: array - items: *633 + items: *634 examples: - default: *634 + default: *635 '404': *6 '403': *29 '500': *40 @@ -86531,7 +86602,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *633 + schema: *634 examples: default: value: @@ -86649,10 +86720,10 @@ paths: parameters: - *478 - *479 - - *629 - *630 - *631 - *632 + - *633 - *17 - *19 responses: @@ -86662,9 +86733,9 @@ paths: application/json: schema: type: array - items: *635 + items: *636 examples: - default: *636 + default: *637 '404': *6 '403': *29 '500': *40 @@ -86701,7 +86772,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -86791,7 +86862,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -87207,7 +87278,7 @@ paths: type: integer environments: type: array - items: &638 + items: &639 title: Environment description: Details of a deployment environment type: object @@ -87259,7 +87330,7 @@ paths: type: type: string example: wait_timer - wait_timer: &640 + wait_timer: &641 type: integer example: 30 description: The amount of time to delay a job after @@ -87296,7 +87367,7 @@ paths: items: type: object properties: - type: *637 + type: *638 reviewer: anyOf: - *4 @@ -87320,7 +87391,7 @@ paths: - id - node_id - type - deployment_branch_policy: &641 + deployment_branch_policy: &642 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -87438,7 +87509,7 @@ paths: parameters: - *478 - *479 - - &639 + - &640 name: environment_name in: path required: true @@ -87451,9 +87522,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: - default: &642 + default: &643 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -87539,7 +87610,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 requestBody: required: false content: @@ -87548,7 +87619,7 @@ paths: type: object nullable: true properties: - wait_timer: *640 + wait_timer: *641 prevent_self_review: type: boolean example: false @@ -87565,13 +87636,13 @@ paths: items: type: object properties: - type: *637 + type: *638 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *641 + deployment_branch_policy: *642 additionalProperties: false examples: default: @@ -87591,9 +87662,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: - default: *642 + default: *643 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -87619,7 +87690,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 responses: '204': description: Default response @@ -87646,7 +87717,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *17 - *19 responses: @@ -87664,7 +87735,7 @@ paths: example: 2 branch_policies: type: array - items: &643 + items: &644 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -87723,7 +87794,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 requestBody: required: true content: @@ -87769,9 +87840,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - example-wildcard: &644 + example-wildcard: &645 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -87815,8 +87886,8 @@ paths: parameters: - *478 - *479 - - *639 - - &645 + - *640 + - &646 name: branch_policy_id in: path required: true @@ -87828,9 +87899,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *644 + default: *645 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87851,8 +87922,8 @@ paths: parameters: - *478 - *479 - - *639 - - *645 + - *640 + - *646 requestBody: required: true content: @@ -87880,9 +87951,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *644 + default: *645 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87903,8 +87974,8 @@ paths: parameters: - *478 - *479 - - *639 - - *645 + - *640 + - *646 responses: '204': description: Response @@ -87929,7 +88000,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: - - *639 + - *640 - *479 - *478 responses: @@ -87947,7 +88018,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &646 + items: &647 title: Deployment protection rule description: Deployment protection rule type: object @@ -87966,7 +88037,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &647 + app: &648 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -88065,7 +88136,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: - - *639 + - *640 - *479 - *478 requestBody: @@ -88088,9 +88159,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *646 + schema: *647 examples: - default: &648 + default: &649 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -88125,7 +88196,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: - - *639 + - *640 - *479 - *478 - *19 @@ -88146,7 +88217,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *647 + items: *648 examples: default: value: @@ -88183,8 +88254,8 @@ paths: parameters: - *478 - *479 - - *639 - - &649 + - *640 + - &650 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -88196,9 +88267,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *647 examples: - default: *648 + default: *649 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88219,10 +88290,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: - - *639 + - *640 - *479 - *478 - - *649 + - *650 responses: '204': description: Response @@ -88250,7 +88321,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *17 - *19 responses: @@ -88297,7 +88368,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 responses: '200': description: Response @@ -88329,7 +88400,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *300 responses: '200': @@ -88338,7 +88409,7 @@ paths: application/json: schema: *509 examples: - default: *650 + default: *651 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88362,7 +88433,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *300 requestBody: required: true @@ -88422,7 +88493,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *300 responses: '204': @@ -88450,7 +88521,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *496 - *19 responses: @@ -88495,7 +88566,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 requestBody: required: true content: @@ -88549,7 +88620,7 @@ paths: parameters: - *478 - *479 - - *639 + - *640 - *303 responses: '200': @@ -88558,7 +88629,7 @@ paths: application/json: schema: *513 examples: - default: *651 + default: *652 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88582,7 +88653,7 @@ paths: - *478 - *479 - *303 - - *639 + - *640 requestBody: required: true content: @@ -88627,7 +88698,7 @@ paths: - *478 - *479 - *303 - - *639 + - *640 responses: '204': description: Response @@ -88995,7 +89066,7 @@ paths: schema: oneOf: - *265 - - *652 + - *653 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89230,7 +89301,7 @@ paths: description: Response content: application/json: - schema: &653 + schema: &654 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -89452,7 +89523,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: default: value: @@ -89510,7 +89581,7 @@ paths: parameters: - *478 - *479 - - &654 + - &655 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. @@ -89527,7 +89598,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 title: Git Reference description: Git references within a repository type: object @@ -89604,15 +89675,15 @@ paths: parameters: - *478 - *479 - - *654 + - *655 responses: '200': description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: &656 + default: &657 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -89671,9 +89742,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *656 + default: *657 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -89701,7 +89772,7 @@ paths: parameters: - *478 - *479 - - *654 + - *655 requestBody: required: true content: @@ -89730,9 +89801,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *656 + default: *657 '422': *15 '409': *121 x-github: @@ -89752,7 +89823,7 @@ paths: parameters: - *478 - *479 - - *654 + - *655 responses: '204': description: Response @@ -89875,7 +89946,7 @@ paths: description: Response content: application/json: - schema: &658 + schema: &659 title: Git Tag description: Metadata for a Git tag type: object @@ -89926,7 +89997,7 @@ paths: - sha - type - url - verification: *657 + verification: *658 required: - sha - url @@ -89936,7 +90007,7 @@ paths: - tag - message examples: - default: &659 + default: &660 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -90021,9 +90092,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 '404': *6 '409': *121 x-github: @@ -90121,7 +90192,7 @@ paths: description: Response content: application/json: - schema: &660 + schema: &661 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -90241,7 +90312,7 @@ paths: description: Response content: application/json: - schema: *660 + schema: *661 examples: default-response: summary: Default response @@ -90311,7 +90382,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 title: Webhook description: Webhooks for repositories. type: object @@ -90365,7 +90436,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &922 + last_response: &923 title: Hook Response type: object properties: @@ -90492,9 +90563,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: &662 + default: &663 value: type: Repository id: 12345678 @@ -90550,9 +90621,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *662 + default: *663 '404': *6 x-github: githubCloudOnly: false @@ -90619,9 +90690,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *662 + default: *663 '422': *15 '404': *6 x-github: @@ -91017,7 +91088,7 @@ paths: description: Response content: application/json: - schema: &663 + schema: &664 title: Import description: A repository import from an external source. type: object @@ -91116,7 +91187,7 @@ paths: - html_url - authors_url examples: - default: &666 + default: &667 value: vcs: subversion use_lfs: true @@ -91132,7 +91203,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': &664 + '503': &665 description: Unavailable due to service under maintenance. content: application/json: @@ -91210,7 +91281,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: default: value: @@ -91235,7 +91306,7 @@ paths: type: string '422': *15 '404': *6 - '503': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91313,7 +91384,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: example-1: summary: Example 1 @@ -91361,7 +91432,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': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91389,7 +91460,7 @@ paths: responses: '204': description: Response - '503': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91417,7 +91488,7 @@ paths: parameters: - *478 - *479 - - &848 + - &849 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -91431,7 +91502,7 @@ paths: application/json: schema: type: array - items: &665 + items: &666 title: Porter Author description: Porter Author type: object @@ -91485,7 +91556,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': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91541,7 +91612,7 @@ paths: description: Response content: application/json: - schema: *665 + schema: *666 examples: default: value: @@ -91554,7 +91625,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91620,7 +91691,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91676,11 +91747,11 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: - default: *666 + default: *667 '422': *15 - '503': *664 + '503': *665 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91747,7 +91818,7 @@ paths: properties: {} additionalProperties: false examples: - default: &668 + default: &669 value: limit: collaborators_only origin: repository @@ -91778,7 +91849,7 @@ paths: required: true content: application/json: - schema: *667 + schema: *668 examples: default: summary: Example request body @@ -91792,7 +91863,7 @@ paths: application/json: schema: *380 examples: - default: *668 + default: *669 '409': description: Response x-github: @@ -91849,9 +91920,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: &840 + default: &841 value: - id: 1 repository: @@ -92013,7 +92084,7 @@ paths: description: Response content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -92251,7 +92322,7 @@ paths: type: array items: *227 examples: - default: &681 + default: &682 value: - id: 1 node_id: MDU6SXNzdWUx @@ -92507,7 +92578,7 @@ paths: application/json: schema: *227 examples: - default: &678 + default: &679 value: id: 1 node_id: MDU6SXNzdWUx @@ -92645,7 +92716,7 @@ paths: '422': *15 '503': *198 '404': *6 - '410': *670 + '410': *671 x-github: triggersNotification: true githubCloudOnly: false @@ -92695,9 +92766,9 @@ paths: application/json: schema: type: array - items: *671 + items: *672 examples: - default: &680 + default: &681 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92763,9 +92834,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: &672 + default: &673 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92844,9 +92915,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '422': *15 x-github: githubCloudOnly: false @@ -92902,7 +92973,7 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: default: value: @@ -92958,7 +93029,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *670 + '410': *671 '422': *15 x-github: githubCloudOnly: false @@ -92984,7 +93055,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *670 + '410': *671 '503': *198 x-github: githubCloudOnly: false @@ -93032,7 +93103,7 @@ paths: type: array items: *593 examples: - default: *673 + default: *674 headers: Link: *47 '404': *6 @@ -93121,7 +93192,7 @@ paths: - *478 - *479 - *243 - - *674 + - *675 responses: '204': description: Response @@ -93152,7 +93223,7 @@ paths: application/json: schema: type: array - items: &677 + items: &678 title: Issue Event description: Issue Event type: object @@ -93195,8 +93266,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *675 - required: *676 + properties: *676 + required: *677 nullable: true label: title: Issue Event Label @@ -93516,7 +93587,7 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: default: value: @@ -93709,7 +93780,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *670 + '410': *671 '403': *29 x-github: githubCloudOnly: false @@ -93745,7 +93816,7 @@ paths: parameters: - *478 - *479 - - &679 + - &680 name: issue_number description: The number that identifies the issue. in: path @@ -93761,7 +93832,7 @@ paths: examples: default: summary: Issue - value: *678 + value: *679 pinned_comment: summary: Issue with pinned comment value: @@ -93943,7 +94014,7 @@ paths: state_reason: completed '301': *484 '404': *6 - '410': *670 + '410': *671 '304': *37 x-github: githubCloudOnly: false @@ -93970,7 +94041,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: false content: @@ -94091,13 +94162,13 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 '422': *15 '503': *198 '403': *29 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94117,7 +94188,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: false content: @@ -94145,7 +94216,7 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94163,7 +94234,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: content: application/json: @@ -94190,7 +94261,7 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94214,7 +94285,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - name: assignee in: path required: true @@ -94256,7 +94327,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *234 - *17 - *19 @@ -94267,13 +94338,13 @@ paths: application/json: schema: type: array - items: *671 + items: *672 examples: - default: *680 + default: *681 headers: Link: *47 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94304,7 +94375,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -94326,16 +94397,16 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *670 + '410': *671 '422': *15 '404': *6 x-github: @@ -94365,7 +94436,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -94377,12 +94448,12 @@ paths: type: array items: *227 examples: - default: *681 + default: *682 headers: Link: *47 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94412,7 +94483,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -94436,7 +94507,7 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by @@ -94444,7 +94515,7 @@ paths: type: string '301': *484 '403': *29 - '410': *670 + '410': *671 '422': *15 '404': *6 x-github: @@ -94477,7 +94548,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -94491,13 +94562,13 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 '301': *484 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *670 + '410': *671 x-github: triggersNotification: true githubCloudOnly: false @@ -94525,7 +94596,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -94537,12 +94608,12 @@ paths: type: array items: *227 examples: - default: *681 + default: *682 headers: Link: *47 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94561,7 +94632,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -94575,7 +94646,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &684 + - &685 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -94629,7 +94700,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &685 + - &686 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -94765,7 +94836,7 @@ paths: - performed_via_github_app - assignee - assigner - - &686 + - &687 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -94816,7 +94887,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &687 + - &688 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -94867,7 +94938,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &688 + - &689 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -94921,7 +94992,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &689 + - &690 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -94968,7 +95039,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &690 + - &691 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -95015,7 +95086,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &691 + - &692 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -95075,7 +95146,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &692 + - &693 title: Locked Issue Event description: Locked Issue Event type: object @@ -95123,7 +95194,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &693 + - &694 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -95189,7 +95260,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &694 + - &695 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -95255,7 +95326,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &695 + - &696 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -95321,7 +95392,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &696 + - &697 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -95412,7 +95483,7 @@ paths: color: red headers: Link: *47 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95431,7 +95502,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -95441,9 +95512,9 @@ paths: application/json: schema: type: array - items: *682 + items: *683 examples: - default: &785 + default: &786 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -95469,7 +95540,7 @@ paths: Link: *47 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95488,7 +95559,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -95500,7 +95571,7 @@ paths: type: array items: *226 examples: - default: &683 + default: &684 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -95520,7 +95591,7 @@ paths: Link: *47 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95538,7 +95609,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: false content: @@ -95583,10 +95654,10 @@ paths: type: array items: *226 examples: - default: *683 + default: *684 '301': *484 '404': *6 - '410': *670 + '410': *671 '422': *15 x-github: githubCloudOnly: false @@ -95605,7 +95676,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: false content: @@ -95667,10 +95738,10 @@ paths: type: array items: *226 examples: - default: *683 + default: *684 '301': *484 '404': *6 - '410': *670 + '410': *671 '422': *15 x-github: githubCloudOnly: false @@ -95689,13 +95760,13 @@ paths: parameters: - *478 - *479 - - *679 + - *680 responses: '204': description: Response '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95716,7 +95787,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - name: name in: path required: true @@ -95742,7 +95813,7 @@ paths: default: true '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95764,7 +95835,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: false content: @@ -95792,7 +95863,7 @@ paths: '204': description: Response '403': *29 - '410': *670 + '410': *671 '404': *6 '422': *15 x-github: @@ -95812,7 +95883,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 responses: '204': description: Response @@ -95844,7 +95915,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 responses: '200': description: Response @@ -95852,10 +95923,10 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 '301': *484 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95874,7 +95945,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - 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. @@ -95902,11 +95973,11 @@ paths: type: array items: *593 examples: - default: *673 + default: *674 headers: Link: *47 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95926,7 +95997,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -95991,8 +96062,8 @@ paths: parameters: - *478 - *479 - - *679 - - *674 + - *680 + - *675 responses: '204': description: Response @@ -96023,7 +96094,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -96047,7 +96118,7 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -96082,7 +96153,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -96094,11 +96165,11 @@ paths: type: array items: *227 examples: - default: *681 + default: *682 headers: Link: *47 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96128,7 +96199,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -96157,14 +96228,14 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *670 + '410': *671 '422': *15 '404': *6 x-github: @@ -96186,7 +96257,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 requestBody: required: true content: @@ -96219,7 +96290,7 @@ paths: application/json: schema: *227 examples: - default: *678 + default: *679 '403': *29 '404': *6 '422': *7 @@ -96243,7 +96314,7 @@ paths: parameters: - *478 - *479 - - *679 + - *680 - *17 - *19 responses: @@ -96258,7 +96329,6 @@ paths: description: Timeline Event type: object anyOf: - - *684 - *685 - *686 - *687 @@ -96271,6 +96341,7 @@ paths: - *694 - *695 - *696 + - *697 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -96331,8 +96402,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *697 - required: *698 + properties: *698 + required: *699 nullable: true required: - event @@ -96587,7 +96658,7 @@ paths: type: string comments: type: array - items: &720 + items: &721 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -97091,7 +97162,7 @@ paths: headers: Link: *47 '404': *6 - '410': *670 + '410': *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97119,7 +97190,7 @@ paths: application/json: schema: type: array - items: &699 + items: &700 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -97222,9 +97293,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: &700 + default: &701 value: id: 1 key: ssh-rsa AAA... @@ -97260,7 +97331,7 @@ paths: parameters: - *478 - *479 - - &701 + - &702 name: key_id description: The unique identifier of the key. in: path @@ -97272,9 +97343,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: *700 + default: *701 '404': *6 x-github: githubCloudOnly: false @@ -97294,7 +97365,7 @@ paths: parameters: - *478 - *479 - - *701 + - *702 responses: '204': description: Response @@ -97327,7 +97398,7 @@ paths: type: array items: *226 examples: - default: *683 + default: *684 headers: Link: *47 '404': *6 @@ -97387,7 +97458,7 @@ paths: application/json: schema: *226 examples: - default: &702 + default: &703 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -97433,7 +97504,7 @@ paths: application/json: schema: *226 examples: - default: *702 + default: *703 '404': *6 x-github: githubCloudOnly: false @@ -97886,7 +97957,7 @@ paths: application/json: schema: *595 examples: - default: *703 + default: *704 '204': description: Response when already merged '404': @@ -97953,7 +98024,7 @@ paths: application/json: schema: type: array - items: &704 + items: &705 title: Milestone description: A collection of related issues and pull requests. type: object @@ -98055,9 +98126,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: &705 + default: &706 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -98118,7 +98189,7 @@ paths: parameters: - *478 - *479 - - &706 + - &707 name: milestone_number description: The number that identifies the milestone. in: path @@ -98130,9 +98201,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *705 + default: *706 '404': *6 x-github: githubCloudOnly: false @@ -98151,7 +98222,7 @@ paths: parameters: - *478 - *479 - - *706 + - *707 requestBody: required: false content: @@ -98189,9 +98260,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *705 + default: *706 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98209,7 +98280,7 @@ paths: parameters: - *478 - *479 - - *706 + - *707 responses: '204': description: Response @@ -98232,7 +98303,7 @@ paths: parameters: - *478 - *479 - - *706 + - *707 - *17 - *19 responses: @@ -98244,7 +98315,7 @@ paths: type: array items: *226 examples: - default: *683 + default: *684 headers: Link: *47 x-github: @@ -98265,10 +98336,10 @@ paths: parameters: - *478 - *479 - - *707 - *708 - - *234 - *709 + - *234 + - *710 - *17 - *19 responses: @@ -98280,7 +98351,7 @@ paths: type: array items: *254 examples: - default: *710 + default: *711 headers: Link: *47 x-github: @@ -98370,7 +98441,7 @@ paths: description: Response content: application/json: - schema: &711 + schema: &712 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -98495,7 +98566,7 @@ paths: - custom_404 - public examples: - default: &712 + default: &713 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -98591,9 +98662,9 @@ paths: description: Response content: application/json: - schema: *711 + schema: *712 examples: - default: *712 + default: *713 '422': *15 '409': *121 x-github: @@ -98762,7 +98833,7 @@ paths: application/json: schema: type: array - items: &713 + items: &714 title: Page Build description: Page Build type: object @@ -98909,9 +98980,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *714 examples: - default: &714 + default: &715 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -98971,9 +99042,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *714 examples: - default: *714 + default: *715 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99101,7 +99172,7 @@ paths: parameters: - *478 - *479 - - &715 + - &716 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -99161,7 +99232,7 @@ paths: parameters: - *478 - *479 - - *715 + - *716 responses: '204': *157 '404': *6 @@ -99541,7 +99612,7 @@ paths: type: array items: *158 examples: - default: *716 + default: *717 '403': *29 '404': *6 x-github: @@ -99580,7 +99651,7 @@ paths: required: - properties examples: - default: *717 + default: *718 responses: '204': description: No Content when custom property values are successfully created @@ -99681,7 +99752,7 @@ paths: type: array items: *599 examples: - default: *718 + default: *719 headers: Link: *47 '304': *37 @@ -99779,7 +99850,7 @@ paths: description: Response content: application/json: - schema: &722 + schema: &723 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -99979,7 +100050,7 @@ paths: - review_comment - self author_association: *224 - auto_merge: *719 + auto_merge: *720 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -100069,7 +100140,7 @@ paths: - merged_by - review_comments examples: - default: &723 + default: &724 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -100606,9 +100677,9 @@ paths: application/json: schema: type: array - items: *720 + items: *721 examples: - default: &725 + default: &726 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100693,9 +100764,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: &721 + default: &722 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100794,9 +100865,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: *721 + default: *722 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100865,7 +100936,7 @@ paths: type: array items: *593 examples: - default: *673 + default: *674 headers: Link: *47 '404': *6 @@ -100954,7 +101025,7 @@ paths: - *478 - *479 - *243 - - *674 + - *675 responses: '204': description: Response @@ -100999,7 +101070,7 @@ paths: parameters: - *478 - *479 - - &724 + - &725 name: pull_number description: The number that identifies the pull request. in: path @@ -101012,9 +101083,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *722 + schema: *723 examples: - default: *723 + default: *724 '304': *37 '404': *6 '406': @@ -101051,7 +101122,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: false content: @@ -101093,9 +101164,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *723 examples: - default: *723 + default: *724 '422': *15 '403': *29 x-github: @@ -101119,7 +101190,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: true content: @@ -101221,7 +101292,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 - *251 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -101242,9 +101313,9 @@ paths: application/json: schema: type: array - items: *720 + items: *721 examples: - default: *725 + default: *726 headers: Link: *47 x-github: @@ -101279,7 +101350,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: true content: @@ -101384,7 +101455,7 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: example-for-a-multi-line-comment: value: @@ -101474,7 +101545,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 - *243 requestBody: required: true @@ -101497,7 +101568,7 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: default: value: @@ -101585,7 +101656,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 - *17 - *19 responses: @@ -101597,7 +101668,7 @@ paths: type: array items: *595 examples: - default: *726 + default: *727 headers: Link: *47 x-github: @@ -101629,7 +101700,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 - *17 - *19 responses: @@ -101679,7 +101750,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 responses: '204': description: Response if pull request has been merged @@ -101704,7 +101775,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: false content: @@ -101817,7 +101888,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 responses: '200': description: Response @@ -101894,7 +101965,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: false content: @@ -102469,7 +102540,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: true content: @@ -102990,7 +103061,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 - *17 - *19 responses: @@ -103000,7 +103071,7 @@ paths: application/json: schema: type: array - items: &727 + items: &728 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -103153,7 +103224,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: false content: @@ -103239,9 +103310,9 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: - default: &729 + default: &730 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103306,8 +103377,8 @@ paths: parameters: - *478 - *479 - - *724 - - &728 + - *725 + - &729 name: review_id description: The unique identifier of the review. in: path @@ -103319,9 +103390,9 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: - default: &730 + default: &731 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103382,8 +103453,8 @@ paths: parameters: - *478 - *479 - - *724 - - *728 + - *725 + - *729 requestBody: required: true content: @@ -103406,7 +103477,7 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: default: value: @@ -103470,16 +103541,16 @@ paths: parameters: - *478 - *479 - - *724 - - *728 + - *725 + - *729 responses: '200': description: Response content: application/json: - schema: *727 + schema: *728 examples: - default: *729 + default: *730 '422': *7 '404': *6 x-github: @@ -103508,8 +103579,8 @@ paths: parameters: - *478 - *479 - - *724 - - *728 + - *725 + - *729 - *17 - *19 responses: @@ -103746,8 +103817,8 @@ paths: parameters: - *478 - *479 - - *724 - - *728 + - *725 + - *729 requestBody: required: true content: @@ -103775,7 +103846,7 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: default: value: @@ -103840,8 +103911,8 @@ paths: parameters: - *478 - *479 - - *724 - - *728 + - *725 + - *729 requestBody: required: true content: @@ -103876,9 +103947,9 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: - default: *730 + default: *731 '404': *6 '422': *7 '403': *29 @@ -103902,7 +103973,7 @@ paths: parameters: - *478 - *479 - - *724 + - *725 requestBody: required: false content: @@ -103979,9 +104050,9 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: - default: &732 + default: &733 value: type: file encoding: base64 @@ -104044,9 +104115,9 @@ paths: description: Response content: application/json: - schema: *731 + schema: *732 examples: - default: *732 + default: *733 '404': *6 '422': *15 x-github: @@ -104079,7 +104150,7 @@ paths: application/json: schema: type: array - items: *733 + items: *734 examples: default: value: @@ -104250,9 +104321,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: &737 + default: &738 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -104359,7 +104430,7 @@ paths: parameters: - *478 - *479 - - &735 + - &736 name: asset_id description: The unique identifier of the asset. in: path @@ -104371,9 +104442,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: &736 + default: &737 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 @@ -104426,7 +104497,7 @@ paths: parameters: - *478 - *479 - - *735 + - *736 requestBody: required: false content: @@ -104454,9 +104525,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *736 + default: *737 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104474,7 +104545,7 @@ paths: parameters: - *478 - *479 - - *735 + - *736 responses: '204': description: Response @@ -104592,9 +104663,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: *737 + default: *738 '404': *6 x-github: githubCloudOnly: false @@ -104626,9 +104697,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: *737 + default: *738 '404': *6 x-github: githubCloudOnly: false @@ -104652,7 +104723,7 @@ paths: parameters: - *478 - *479 - - &738 + - &739 name: release_id description: The unique identifier of the release. in: path @@ -104666,9 +104737,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: *733 + schema: *734 examples: - default: *737 + default: *738 '401': description: Unauthorized x-github: @@ -104688,7 +104759,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 requestBody: required: false content: @@ -104752,9 +104823,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: *737 + default: *738 '404': description: Not Found if the discussion category name is invalid content: @@ -104777,7 +104848,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 responses: '204': description: Response @@ -104800,7 +104871,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 - *17 - *19 responses: @@ -104810,7 +104881,7 @@ paths: application/json: schema: type: array - items: *734 + items: *735 examples: default: value: @@ -104894,7 +104965,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 - name: name in: query required: true @@ -104920,7 +104991,7 @@ paths: description: Response for successful upload content: application/json: - schema: *734 + schema: *735 examples: response-for-successful-upload: value: @@ -104977,7 +105048,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 - 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. @@ -105003,7 +105074,7 @@ paths: type: array items: *593 examples: - default: *673 + default: *674 headers: Link: *47 '404': *6 @@ -105026,7 +105097,7 @@ paths: parameters: - *478 - *479 - - *738 + - *739 requestBody: required: true content: @@ -105089,8 +105160,8 @@ paths: parameters: - *478 - *479 - - *738 - - *674 + - *739 + - *675 responses: '204': description: Response @@ -105133,7 +105204,7 @@ paths: oneOf: - allOf: - *172 - - &739 + - &740 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -105154,67 +105225,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *173 - - *739 + - *740 - allOf: - *174 - - *739 + - *740 - allOf: - *175 - - *739 + - *740 - allOf: + - *741 - *740 - - *739 - allOf: - *176 - - *739 + - *740 - allOf: - *177 - - *739 + - *740 - allOf: - *178 - - *739 + - *740 - allOf: - *179 - - *739 + - *740 - allOf: - *180 - - *739 + - *740 - allOf: - *181 - - *739 + - *740 - allOf: - *182 - - *739 + - *740 - allOf: - *183 - - *739 + - *740 - allOf: - *184 - - *739 + - *740 - allOf: - *185 - - *739 + - *740 - allOf: - *186 - - *739 + - *740 - allOf: - *187 - - *739 + - *740 - allOf: - *188 - - *739 + - *740 - allOf: - *189 - - *739 + - *740 - allOf: - *190 - - *739 + - *740 - allOf: - *191 - - *739 + - *740 - allOf: - *192 - - *739 + - *740 examples: default: value: @@ -105265,7 +105336,7 @@ paths: schema: type: boolean default: true - - *741 + - *742 responses: '200': description: Response @@ -105350,7 +105421,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *742 + items: *743 required: - name - enforcement @@ -105383,7 +105454,7 @@ paths: application/json: schema: *193 examples: - default: &751 + default: &752 value: id: 42 name: super cool ruleset @@ -105433,10 +105504,10 @@ paths: parameters: - *478 - *479 - - *743 - - *107 - *744 + - *107 - *745 + - *746 - *17 - *19 responses: @@ -105444,9 +105515,9 @@ paths: description: Response content: application/json: - schema: *746 + schema: *747 examples: - default: *747 + default: *748 '404': *6 '500': *40 x-github: @@ -105469,15 +105540,15 @@ paths: parameters: - *478 - *479 - - *748 + - *749 responses: '200': description: Response content: application/json: - schema: *749 + schema: *750 examples: - default: *750 + default: *751 '404': *6 '500': *40 x-github: @@ -105528,7 +105599,7 @@ paths: application/json: schema: *193 examples: - default: *751 + default: *752 '404': *6 '500': *40 put: @@ -105581,7 +105652,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *742 + items: *743 examples: default: value: @@ -105611,7 +105682,7 @@ paths: application/json: schema: *193 examples: - default: *751 + default: *752 '404': *6 '422': *15 '500': *40 @@ -105779,8 +105850,8 @@ paths: - *112 - *19 - *17 - - *752 - *753 + - *754 - *453 - *454 - *455 @@ -105792,7 +105863,7 @@ paths: application/json: schema: type: array - items: &757 + items: &758 type: object properties: number: *130 @@ -105811,8 +105882,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *754 - resolution: *755 + state: *755 + resolution: *756 resolved_at: type: string format: date-time @@ -105918,7 +105989,7 @@ paths: pull request. ' - oneOf: *756 + oneOf: *757 nullable: true has_more_locations: type: boolean @@ -106091,7 +106162,7 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: default: value: @@ -106155,8 +106226,8 @@ paths: schema: type: object properties: - state: *754 - resolution: *755 + state: *755 + resolution: *756 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -106192,7 +106263,7 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: default: value: @@ -106300,7 +106371,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &944 + items: &945 type: object properties: type: @@ -106326,7 +106397,6 @@ paths: example: commit details: oneOf: - - *758 - *759 - *760 - *761 @@ -106339,6 +106409,7 @@ paths: - *768 - *769 - *770 + - *771 examples: default: value: @@ -106433,14 +106504,14 @@ paths: schema: type: object properties: - reason: &772 + reason: &773 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *771 + placeholder_id: *772 required: - reason - placeholder_id @@ -106457,7 +106528,7 @@ paths: schema: type: object properties: - reason: *772 + reason: *773 expire_at: type: string format: date-time @@ -106519,7 +106590,7 @@ paths: properties: incremental_scans: type: array - items: &773 + items: &774 description: Information on a single scan performed by secret scanning on the repository type: object @@ -106545,15 +106616,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *773 + items: *774 backfill_scans: type: array - items: *773 + items: *774 custom_pattern_backfill_scans: type: array items: allOf: - - *773 + - *774 - type: object properties: pattern_name: @@ -106566,7 +106637,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *773 + items: *774 examples: default: value: @@ -106676,9 +106747,9 @@ paths: application/json: schema: type: array - items: *774 + items: *775 examples: - default: *775 + default: *776 '400': *14 '404': *6 x-github: @@ -106862,9 +106933,9 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: - default: &777 + default: &778 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -107199,7 +107270,7 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: default: value: @@ -107347,15 +107418,15 @@ paths: parameters: - *478 - *479 - - *776 + - *777 responses: '200': description: Response content: application/json: - schema: *774 + schema: *775 examples: - default: *777 + default: *778 '403': *29 '404': *6 x-github: @@ -107381,7 +107452,7 @@ paths: parameters: - *478 - *479 - - *776 + - *777 requestBody: required: true content: @@ -107540,10 +107611,10 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: - default: *777 - add_credit: *777 + default: *778 + add_credit: *778 '403': *29 '404': *6 '422': @@ -107583,7 +107654,7 @@ paths: parameters: - *478 - *479 - - *776 + - *777 responses: '202': *39 '400': *14 @@ -107612,7 +107683,7 @@ paths: parameters: - *478 - *479 - - *776 + - *777 responses: '202': description: Response @@ -107756,7 +107827,7 @@ paths: application/json: schema: type: array - items: &778 + items: &779 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -108129,7 +108200,7 @@ paths: application/json: schema: type: array - items: *778 + items: *779 examples: default: value: @@ -108217,7 +108288,7 @@ paths: description: Response content: application/json: - schema: *779 + schema: *780 examples: default: value: @@ -108311,7 +108382,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &780 + schema: &781 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -108406,7 +108477,7 @@ paths: description: Response content: application/json: - schema: *780 + schema: *781 examples: default: value: @@ -108613,7 +108684,7 @@ paths: description: Response content: application/json: - schema: &781 + schema: &782 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -108625,7 +108696,7 @@ paths: required: - names examples: - default: &782 + default: &783 value: names: - octocat @@ -108680,9 +108751,9 @@ paths: description: Response content: application/json: - schema: *781 + schema: *782 examples: - default: *782 + default: *783 '404': *6 '422': *7 x-github: @@ -108705,7 +108776,7 @@ paths: parameters: - *478 - *479 - - &783 + - &784 name: per description: The time frame to display results for. in: query @@ -108734,7 +108805,7 @@ paths: example: 128 clones: type: array - items: &784 + items: &785 title: Traffic type: object properties: @@ -108975,7 +109046,7 @@ paths: parameters: - *478 - *479 - - *783 + - *784 responses: '200': description: Response @@ -108994,7 +109065,7 @@ paths: example: 3782 views: type: array - items: *784 + items: *785 required: - uniques - count @@ -109662,7 +109733,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *284 - - *679 + - *680 requestBody: required: true content: @@ -109726,9 +109797,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *682 + items: *683 examples: - default: *785 + default: *786 '400': *14 '403': *29 '404': *6 @@ -109765,7 +109836,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *284 - - *679 + - *680 requestBody: required: true content: @@ -109830,9 +109901,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *682 + items: *683 examples: - default: *785 + default: *786 '400': *14 '403': *29 '404': *6 @@ -109864,7 +109935,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *284 - - *679 + - *680 - *387 responses: '204': @@ -109907,7 +109978,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &793 + - &794 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -109916,7 +109987,7 @@ paths: schema: type: string example: members - - &798 + - &799 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -109927,7 +109998,7 @@ paths: default: 1 format: int32 example: 1 - - &799 + - &800 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -109969,7 +110040,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &788 + items: &789 allOf: - type: object required: @@ -110044,7 +110115,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: &800 + meta: &801 type: object description: The metadata associated with the creation/updates to the user. @@ -110104,30 +110175,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &789 + '400': &790 description: Bad request content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 - '401': *787 - '403': &790 + schema: *787 + '401': *788 + '403': &791 description: Permission denied - '429': &791 + '429': &792 description: Too many requests content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 - '500': &792 + schema: *787 + '500': &793 description: Internal server error content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 + schema: *787 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110151,7 +110222,7 @@ paths: required: true content: application/json: - schema: &796 + schema: &797 type: object required: - schemas @@ -110211,9 +110282,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *788 + schema: *789 examples: - group: &794 + group: &795 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -110232,13 +110303,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': *789 - '401': *787 - '403': *790 - '409': &797 + '400': *790 + '401': *788 + '403': *791 + '409': &798 description: Duplicate record detected - '429': *791 - '500': *792 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110255,7 +110326,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: - - &795 + - &796 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -110263,22 +110334,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *793 + - *794 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *788 + schema: *789 examples: - default: *794 - '400': *789 - '401': *787 - '403': *790 + default: *795 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '429': *791 - '500': *792 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110297,13 +110368,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: - - *795 + - *796 - *41 requestBody: required: true content: application/json: - schema: *796 + schema: *797 examples: group: summary: Group @@ -110329,17 +110400,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *788 + schema: *789 examples: - group: *794 - groupWithMembers: *794 - '400': *789 - '401': *787 - '403': *790 + group: *795 + groupWithMembers: *795 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '409': *797 - '429': *791 - '500': *792 + '409': *798 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110363,13 +110434,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: - - *795 + - *796 - *41 requestBody: required: true content: application/json: - schema: &807 + schema: &808 type: object required: - Operations @@ -110429,17 +110500,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *788 + schema: *789 examples: - updateGroup: *794 - addMembers: *794 - '400': *789 - '401': *787 - '403': *790 + updateGroup: *795 + addMembers: *795 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '409': *797 - '429': *791 - '500': *792 + '409': *798 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110455,17 +110526,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: - - *795 + - *796 - *41 responses: '204': description: Group was deleted, no content - '400': *789 - '401': *787 - '403': *790 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '429': *791 - '500': *792 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110499,8 +110570,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *798 - *799 + - *800 - *41 responses: '200': @@ -110533,7 +110604,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &802 + items: &803 allOf: - type: object required: @@ -110612,7 +110683,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &801 + roles: &802 type: array description: The roles assigned to the user. items: @@ -110668,7 +110739,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *800 + meta: *801 startIndex: type: integer description: A starting index for the returned page @@ -110705,11 +110776,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *789 - '401': *787 - '403': *790 - '429': *791 - '500': *792 + '400': *790 + '401': *788 + '403': *791 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110733,7 +110804,7 @@ paths: required: true content: application/json: - schema: &805 + schema: &806 type: object required: - schemas @@ -110815,9 +110886,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *801 + roles: *802 examples: - user: &806 + user: &807 summary: User value: schemas: @@ -110864,9 +110935,9 @@ paths: description: User has been created content: application/scim+json: - schema: *802 + schema: *803 examples: - user: &803 + user: &804 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110892,13 +110963,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: *803 - '400': *789 - '401': *787 - '403': *790 - '409': *797 - '429': *791 - '500': *792 + enterpriseOwner: *804 + '400': *790 + '401': *788 + '403': *791 + '409': *798 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110915,7 +110986,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: - - &804 + - &805 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -110928,15 +110999,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *802 + schema: *803 examples: - default: *803 - '400': *789 - '401': *787 - '403': *790 + default: *804 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '429': *791 - '500': *792 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110987,30 +111058,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: - - *804 + - *805 - *41 requestBody: required: true content: application/json: - schema: *805 + schema: *806 examples: - user: *806 + user: *807 responses: '200': description: User was updated content: application/scim+json: - schema: *802 + schema: *803 examples: - user: *803 - '400': *789 - '401': *787 - '403': *790 + user: *804 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '409': *797 - '429': *791 - '500': *792 + '409': *798 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111051,13 +111122,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: - - *804 + - *805 - *41 requestBody: required: true content: application/json: - schema: *807 + schema: *808 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -111097,18 +111168,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *802 + schema: *803 examples: - userMultiValuedProperties: *803 - userSingleValuedProperties: *803 - disableUser: *803 - '400': *789 - '401': *787 - '403': *790 + userMultiValuedProperties: *804 + userSingleValuedProperties: *804 + disableUser: *804 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '409': *797 - '429': *791 - '500': *792 + '409': *798 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111128,17 +111199,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: - - *804 + - *805 - *41 responses: '204': description: User was deleted, no content - '400': *789 - '401': *787 - '403': *790 + '400': *790 + '401': *788 + '403': *791 '404': *6 - '429': *791 - '500': *792 + '429': *792 + '500': *793 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111225,7 +111296,7 @@ paths: example: 1 Resources: type: array - items: &808 + items: &809 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -111456,22 +111527,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &809 + '404': &810 description: Resource not found content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 - '403': &810 + schema: *787 + '403': &811 description: Forbidden content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 - '400': *789 - '429': *791 + schema: *787 + '400': *790 + '429': *792 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -111497,9 +111568,9 @@ paths: description: Response content: application/scim+json: - schema: *808 + schema: *809 examples: - default: &811 + default: &812 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -111522,17 +111593,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *809 - '403': *810 - '500': *792 + '404': *810 + '403': *811 + '500': *793 '409': description: Conflict content: application/json: - schema: *786 + schema: *787 application/scim+json: - schema: *786 - '400': *789 + schema: *787 + '400': *790 requestBody: required: true content: @@ -111630,17 +111701,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *804 + - *805 responses: '200': description: Response content: application/scim+json: - schema: *808 + schema: *809 examples: - default: *811 - '404': *809 - '403': *810 + default: *812 + '404': *810 + '403': *811 '304': *37 x-github: githubCloudOnly: true @@ -111664,18 +111735,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *804 + - *805 responses: '200': description: Response content: application/scim+json: - schema: *808 + schema: *809 examples: - default: *811 + default: *812 '304': *37 - '404': *809 - '403': *810 + '404': *810 + '403': *811 requestBody: required: true content: @@ -111788,19 +111859,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *804 + - *805 responses: '200': description: Response content: application/scim+json: - schema: *808 + schema: *809 examples: - default: *811 + default: *812 '304': *37 - '404': *809 - '403': *810 - '400': *789 + '404': *810 + '403': *811 + '400': *790 '429': description: Response content: @@ -111891,12 +111962,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *804 + - *805 responses: '204': description: Response - '404': *809 - '403': *810 + '404': *810 + '403': *811 '304': *37 x-github: githubCloudOnly: true @@ -112032,7 +112103,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &812 + text_matches: &813 title: Search Result Text Matches type: array items: @@ -112195,7 +112266,7 @@ paths: enum: - author-date - committer-date - - &813 + - &814 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 @@ -112286,7 +112357,7 @@ paths: url: type: string format: uri - verification: *657 + verification: *658 required: - author - committer @@ -112323,7 +112394,7 @@ paths: type: number node_id: type: string - text_matches: *812 + text_matches: *813 required: - sha - node_id @@ -112516,7 +112587,7 @@ paths: - interactions - created - updated - - *813 + - *814 - *17 - *19 - name: advanced_search @@ -112630,11 +112701,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: type: string state_reason: @@ -112659,7 +112730,7 @@ paths: type: string format: date-time nullable: true - text_matches: *812 + text_matches: *813 pull_request: type: object properties: @@ -112929,7 +113000,7 @@ paths: enum: - created - updated - - *813 + - *814 - *17 - *19 responses: @@ -112973,7 +113044,7 @@ paths: nullable: true score: type: number - text_matches: *812 + text_matches: *813 required: - id - node_id @@ -113059,7 +113130,7 @@ paths: - forks - help-wanted-issues - updated - - *813 + - *814 - *17 - *19 responses: @@ -113307,7 +113378,7 @@ paths: - admin - pull - push - text_matches: *812 + text_matches: *813 temp_clone_token: type: string allow_merge_commit: @@ -113608,7 +113679,7 @@ paths: type: string format: uri nullable: true - text_matches: *812 + text_matches: *813 related: type: array nullable: true @@ -113801,7 +113872,7 @@ paths: - followers - repositories - joined - - *813 + - *814 - *17 - *19 responses: @@ -113905,7 +113976,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *812 + text_matches: *813 blog: type: string nullable: true @@ -113984,7 +114055,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &816 + - &817 name: team_id description: The unique identifier of the team. in: path @@ -114025,7 +114096,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *816 + - *817 requestBody: required: true content: @@ -114125,7 +114196,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *816 + - *817 responses: '204': description: Response @@ -114154,7 +114225,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *816 + - *817 - *17 - *19 responses: @@ -114192,7 +114263,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *816 + - *817 - name: role description: Filters members returned by their role in the team. in: query @@ -114243,7 +114314,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *816 + - *817 - *145 responses: '204': @@ -114280,7 +114351,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *816 + - *817 - *145 responses: '204': @@ -114320,7 +114391,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *816 + - *817 - *145 responses: '204': @@ -114357,7 +114428,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: - - *816 + - *817 - *145 responses: '200': @@ -114366,7 +114437,7 @@ paths: application/json: schema: *477 examples: - response-if-user-is-a-team-maintainer: *817 + response-if-user-is-a-team-maintainer: *818 '404': *6 x-github: githubCloudOnly: false @@ -114399,7 +114470,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: - - *816 + - *817 - *145 requestBody: required: false @@ -114427,7 +114498,7 @@ paths: application/json: schema: *477 examples: - response-if-users-membership-with-team-is-now-pending: *818 + response-if-users-membership-with-team-is-now-pending: *819 '403': description: Forbidden if team synchronization is set up '422': @@ -114461,7 +114532,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: - - *816 + - *817 - *145 responses: '204': @@ -114489,7 +114560,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *816 + - *817 - *17 - *19 responses: @@ -114531,7 +114602,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: - - *816 + - *817 - *478 - *479 responses: @@ -114539,7 +114610,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *819 + schema: *820 examples: alternative-response-with-extra-repository-information: value: @@ -114689,7 +114760,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: - - *816 + - *817 - *478 - *479 requestBody: @@ -114741,7 +114812,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: - - *816 + - *817 - *478 - *479 responses: @@ -114772,7 +114843,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: - - *816 + - *817 responses: '200': description: Response @@ -114807,7 +114878,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: - - *816 + - *817 requestBody: required: true content: @@ -114895,7 +114966,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *816 + - *817 - *17 - *19 responses: @@ -114907,7 +114978,7 @@ paths: type: array items: *319 examples: - response-if-child-teams-exist: *820 + response-if-child-teams-exist: *821 headers: Link: *47 '404': *6 @@ -114940,7 +115011,7 @@ paths: application/json: schema: oneOf: - - &821 + - &822 title: Private User description: Private User type: object @@ -115143,7 +115214,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &847 + - &848 title: Public User description: Public User type: object @@ -115455,7 +115526,7 @@ paths: description: Response content: application/json: - schema: *821 + schema: *822 examples: default: value: @@ -115853,7 +115924,7 @@ paths: type: integer secrets: type: array - items: &822 + items: &823 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -115969,7 +116040,7 @@ paths: description: Response content: application/json: - schema: *822 + schema: *823 examples: default: value: @@ -116382,7 +116453,7 @@ paths: description: Response content: application/json: - schema: &823 + schema: &824 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -116423,7 +116494,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &824 + default: &825 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -116468,9 +116539,9 @@ paths: description: Response content: application/json: - schema: *823 + schema: *824 examples: - default: *824 + default: *825 '404': *6 x-github: githubCloudOnly: false @@ -116507,9 +116578,9 @@ paths: type: integer machines: type: array - items: *825 + items: *826 examples: - default: *826 + default: *827 '304': *37 '500': *40 '401': *25 @@ -117448,7 +117519,7 @@ paths: type: array items: *404 examples: - default: &837 + default: &838 value: - id: 197 name: hello_docker @@ -117549,7 +117620,7 @@ paths: application/json: schema: type: array - items: &827 + items: &828 title: Email description: Email type: object @@ -117614,9 +117685,9 @@ paths: application/json: schema: type: array - items: *827 + items: *828 examples: - default: &839 + default: &840 value: - email: octocat@github.com verified: true @@ -117691,7 +117762,7 @@ paths: application/json: schema: type: array - items: *827 + items: *828 examples: default: value: @@ -117947,7 +118018,7 @@ paths: application/json: schema: type: array - items: &828 + items: &829 title: GPG Key description: A unique encryption key type: object @@ -118078,7 +118149,7 @@ paths: - subkeys - revoked examples: - default: &856 + default: &857 value: - id: 3 name: Octocat's GPG Key @@ -118163,9 +118234,9 @@ paths: description: Response content: application/json: - schema: *828 + schema: *829 examples: - default: &829 + default: &830 value: id: 3 name: Octocat's GPG Key @@ -118222,7 +118293,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: - - &830 + - &831 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -118234,9 +118305,9 @@ paths: description: Response content: application/json: - schema: *828 + schema: *829 examples: - default: *829 + default: *830 '404': *6 '304': *37 '403': *29 @@ -118259,7 +118330,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: - - *830 + - *831 responses: '204': description: Response @@ -118567,7 +118638,7 @@ paths: required: true content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -118717,7 +118788,7 @@ paths: application/json: schema: type: array - items: &831 + items: &832 title: Key description: Key type: object @@ -118818,9 +118889,9 @@ paths: description: Response content: application/json: - schema: *831 + schema: *832 examples: - default: &832 + default: &833 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -118853,15 +118924,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: - - *701 + - *702 responses: '200': description: Response content: application/json: - schema: *831 + schema: *832 examples: - default: *832 + default: *833 '404': *6 '304': *37 '403': *29 @@ -118884,7 +118955,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: - - *701 + - *702 responses: '204': description: Response @@ -118917,7 +118988,7 @@ paths: application/json: schema: type: array - items: &833 + items: &834 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -118985,7 +119056,7 @@ paths: - account - plan examples: - default: &834 + default: &835 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -119047,9 +119118,9 @@ paths: application/json: schema: type: array - items: *833 + items: *834 examples: - default: *834 + default: *835 headers: Link: *47 '304': *37 @@ -120058,7 +120129,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *399 - - *835 + - *836 responses: '204': description: Response @@ -120171,7 +120242,7 @@ paths: - docker - nuget - container - - *836 + - *837 - *19 - *17 responses: @@ -120183,8 +120254,8 @@ paths: type: array items: *404 examples: - default: *837 - '400': *838 + default: *838 + '400': *839 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120213,7 +120284,7 @@ paths: application/json: schema: *404 examples: - default: &857 + default: &858 value: id: 40201 name: octo-name @@ -120575,9 +120646,9 @@ paths: application/json: schema: type: array - items: *827 + items: *828 examples: - default: *839 + default: *840 headers: Link: *47 '304': *37 @@ -120690,7 +120761,7 @@ paths: type: array items: *80 examples: - default: &846 + default: &847 summary: Default response value: - id: 1296269 @@ -121035,9 +121106,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *840 + default: *841 headers: Link: *47 '304': *37 @@ -121117,7 +121188,7 @@ paths: application/json: schema: type: array - items: &841 + items: &842 title: Social account description: Social media account type: object @@ -121132,7 +121203,7 @@ paths: - provider - url examples: - default: &842 + default: &843 value: - provider: twitter url: https://twitter.com/github @@ -121194,9 +121265,9 @@ paths: application/json: schema: type: array - items: *841 + items: *842 examples: - default: *842 + default: *843 '422': *15 '304': *37 '404': *6 @@ -121283,7 +121354,7 @@ paths: application/json: schema: type: array - items: &843 + items: &844 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -121303,7 +121374,7 @@ paths: - title - created_at examples: - default: &871 + default: &872 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -121367,9 +121438,9 @@ paths: description: Response content: application/json: - schema: *843 + schema: *844 examples: - default: &844 + default: &845 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -121399,7 +121470,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: - - &845 + - &846 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -121411,9 +121482,9 @@ paths: description: Response content: application/json: - schema: *843 + schema: *844 examples: - default: *844 + default: *845 '404': *6 '304': *37 '403': *29 @@ -121436,7 +121507,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: - - *845 + - *846 responses: '204': description: Response @@ -121465,7 +121536,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: - - &872 + - &873 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 @@ -121490,11 +121561,11 @@ paths: type: array items: *80 examples: - default-response: *846 + default-response: *847 application/vnd.github.v3.star+json: schema: type: array - items: &873 + items: &874 title: Starred Repository description: Starred Repository type: object @@ -121863,10 +121934,10 @@ paths: application/json: schema: oneOf: - - *821 - - *847 + - *822 + - *848 examples: - default-response: &851 + default-response: &852 summary: Default response value: login: octocat @@ -121901,7 +121972,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &852 + response-with-git-hub-plan-information: &853 summary: Response with GitHub plan information value: login: octocat @@ -121958,7 +122029,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: - - &849 + - &850 name: user_id description: The unique identifier of the user. in: path @@ -122024,7 +122095,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *848 + - *849 - *17 responses: '200': @@ -122059,7 +122130,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: - - *849 + - *850 - *422 requestBody: required: true @@ -122131,7 +122202,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *850 + schema: *851 examples: table_view: summary: Response for creating a table view @@ -122183,11 +122254,11 @@ paths: application/json: schema: oneOf: - - *821 - - *847 + - *822 + - *848 examples: - default-response: *851 - response-with-git-hub-plan-information: *852 + default-response: *852 + response-with-git-hub-plan-information: *853 '404': *6 x-github: githubCloudOnly: false @@ -122237,8 +122308,8 @@ paths: required: - subject_digests examples: - default: *853 - withPredicateType: *854 + default: *854 + withPredicateType: *855 responses: '200': description: Response @@ -122277,7 +122348,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *855 + default: *856 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -122507,7 +122578,7 @@ paths: type: array items: *404 examples: - default: *837 + default: *838 '403': *29 '401': *25 x-github: @@ -122891,9 +122962,9 @@ paths: application/json: schema: type: array - items: *828 + items: *829 examples: - default: *856 + default: *857 headers: Link: *47 x-github: @@ -123121,7 +123192,7 @@ paths: - docker - nuget - container - - *836 + - *837 - *145 - *19 - *17 @@ -123134,10 +123205,10 @@ paths: type: array items: *404 examples: - default: *837 + default: *838 '403': *29 '401': *25 - '400': *838 + '400': *839 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123167,7 +123238,7 @@ paths: application/json: schema: *404 examples: - default: *857 + default: *858 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123516,7 +123587,7 @@ paths: type: array items: *426 examples: - default: *858 + default: *859 headers: Link: *47 '304': *37 @@ -123576,7 +123647,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *859 + items: *860 required: - name - data_type @@ -123592,7 +123663,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *860 + iteration_configuration: *861 required: - name - data_type @@ -123614,8 +123685,8 @@ paths: value: name: Due date data_type: date - single_select_field: *861 - iteration_field: *862 + single_select_field: *862 + iteration_field: *863 responses: '201': description: Response @@ -123623,11 +123694,11 @@ paths: application/json: schema: *426 examples: - text_field: *863 - number_field: *864 - date_field: *865 - single_select_field: *866 - iteration_field: *867 + text_field: *864 + number_field: *865 + date_field: *866 + single_select_field: *867 + iteration_field: *868 '304': *37 '403': *29 '401': *25 @@ -123649,7 +123720,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - *422 - - *868 + - *869 - *145 responses: '200': @@ -123658,7 +123729,7 @@ paths: application/json: schema: *426 examples: - default: *869 + default: *870 headers: Link: *47 '304': *37 @@ -124012,7 +124083,7 @@ paths: parameters: - *422 - *145 - - *870 + - *871 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -124291,9 +124362,9 @@ paths: application/json: schema: type: array - items: *841 + items: *842 examples: - default: *842 + default: *843 headers: Link: *47 x-github: @@ -124323,9 +124394,9 @@ paths: application/json: schema: type: array - items: *843 + items: *844 examples: - default: *871 + default: *872 headers: Link: *47 x-github: @@ -124350,7 +124421,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *145 - - *872 + - *873 - *112 - *17 - *19 @@ -124362,11 +124433,11 @@ paths: schema: anyOf: - type: array - items: *873 + items: *874 - type: array items: *80 examples: - default-response: *846 + default-response: *847 headers: Link: *47 x-github: @@ -124525,7 +124596,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &874 + enterprise: &875 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -124583,7 +124654,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &875 + installation: &876 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -124602,7 +124673,7 @@ x-webhooks: required: - id - node_id - organization: &876 + organization: &877 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -124662,13 +124733,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &877 + repository: &878 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &916 + properties: &917 id: description: Unique identifier of the repository example: 42 @@ -125352,7 +125423,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &917 + required: &918 - archive_url - assignees_url - blobs_url @@ -125503,10 +125574,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -125582,11 +125653,11 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - rule: &878 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + rule: &879 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) @@ -125809,11 +125880,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - rule: *878 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + rule: *879 sender: *4 required: - action @@ -125996,11 +126067,11 @@ x-webhooks: - everyone required: - from - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - rule: *878 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + rule: *879 sender: *4 required: - action @@ -126073,7 +126144,7 @@ x-webhooks: required: true content: application/json: - schema: &900 + schema: &901 title: Exemption request cancellation event type: object properties: @@ -126081,11 +126152,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - exemption_request: &879 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + exemption_request: &880 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -126389,7 +126460,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &880 + items: &881 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -126499,7 +126570,7 @@ x-webhooks: required: true content: application/json: - schema: &901 + schema: &902 title: Exemption request completed event type: object properties: @@ -126507,11 +126578,11 @@ x-webhooks: type: string enum: - completed - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - exemption_request: *879 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + exemption_request: *880 sender: *4 required: - action @@ -126583,7 +126654,7 @@ x-webhooks: required: true content: application/json: - schema: &898 + schema: &899 title: Exemption request created event type: object properties: @@ -126591,11 +126662,11 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - exemption_request: *879 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + exemption_request: *880 sender: *4 required: - action @@ -126667,7 +126738,7 @@ x-webhooks: required: true content: application/json: - schema: &902 + schema: &903 title: Exemption response dismissed event type: object properties: @@ -126675,12 +126746,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - exemption_request: *879 - exemption_response: *880 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + exemption_request: *880 + exemption_response: *881 sender: *4 required: - action @@ -126754,7 +126825,7 @@ x-webhooks: required: true content: application/json: - schema: &899 + schema: &900 title: Exemption response submitted event type: object properties: @@ -126762,12 +126833,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - exemption_request: *879 - exemption_response: *880 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + exemption_request: *880 + exemption_response: *881 sender: *4 required: - action @@ -126851,7 +126922,7 @@ x-webhooks: type: string enum: - completed - check_run: &882 + check_run: &883 title: CheckRun description: A check performed on the code of a given code change type: object @@ -126942,7 +127013,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *881 + deployment: *882 details_url: example: https://example.com type: string @@ -127027,10 +127098,10 @@ x-webhooks: - output - app - pull_requests - installation: *875 - enterprise: *874 - organization: *876 - repository: *877 + installation: *876 + enterprise: *875 + organization: *877 + repository: *878 sender: *4 required: - check_run @@ -127421,11 +127492,11 @@ x-webhooks: type: string enum: - created - check_run: *882 - installation: *875 - enterprise: *874 - organization: *876 - repository: *877 + check_run: *883 + installation: *876 + enterprise: *875 + organization: *877 + repository: *878 sender: *4 required: - check_run @@ -127819,11 +127890,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *882 - installation: *875 - enterprise: *874 - organization: *876 - repository: *877 + check_run: *883 + installation: *876 + enterprise: *875 + organization: *877 + repository: *878 requested_action: description: The action requested by the user. type: object @@ -128226,11 +128297,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *882 - installation: *875 - enterprise: *874 - organization: *876 - repository: *877 + check_run: *883 + installation: *876 + enterprise: *875 + organization: *877 + repository: *878 sender: *4 required: - check_run @@ -129200,10 +129271,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -129892,10 +129963,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -130578,10 +130649,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -130892,20 +130963,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &883 + commit_oid: &884 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: *874 - installation: *875 - organization: *876 - ref: &884 + enterprise: *875 + installation: *876 + organization: *877 + ref: &885 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: *877 + repository: *878 sender: *4 required: - action @@ -131300,12 +131371,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *883 - enterprise: *874 - installation: *875 - organization: *876 - ref: *884 - repository: *877 + commit_oid: *884 + enterprise: *875 + installation: *876 + organization: *877 + ref: *885 + repository: *878 sender: *4 required: - action @@ -131571,12 +131642,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *883 - enterprise: *874 - installation: *875 - organization: *876 - ref: *884 - repository: *877 + commit_oid: *884 + enterprise: *875 + installation: *876 + organization: *877 + ref: *885 + repository: *878 sender: *4 required: - action @@ -131908,12 +131979,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *883 - enterprise: *874 - installation: *875 - organization: *876 - ref: *884 - repository: *877 + commit_oid: *884 + enterprise: *875 + installation: *876 + organization: *877 + ref: *885 + repository: *878 sender: *4 required: - action @@ -132187,16 +132258,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *877 + repository: *878 sender: *4 required: - action @@ -132433,12 +132504,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *883 - enterprise: *874 - installation: *875 - organization: *876 - ref: *884 - repository: *877 + commit_oid: *884 + enterprise: *875 + installation: *876 + organization: *877 + ref: *885 + repository: *878 sender: *4 required: - action @@ -132749,10 +132820,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -133007,10 +133078,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -133090,18 +133161,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *876 - pusher_type: &885 + organization: *877 + pusher_type: &886 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &886 + ref: &887 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -133111,7 +133182,7 @@ x-webhooks: enum: - tag - branch - repository: *877 + repository: *878 sender: *4 required: - ref @@ -133194,9 +133265,9 @@ x-webhooks: enum: - created definition: *159 - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 required: - action @@ -133281,9 +133352,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 required: - action @@ -133361,9 +133432,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *159 - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 required: - action @@ -133441,9 +133512,9 @@ x-webhooks: enum: - updated definition: *159 - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 required: - action @@ -133520,10 +133591,10 @@ x-webhooks: type: string enum: - updated - enterprise: *874 - installation: *875 - repository: *877 - organization: *876 + enterprise: *875 + installation: *876 + repository: *878 + organization: *877 sender: *4 new_property_values: type: array @@ -133608,18 +133679,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *874 - installation: *875 - organization: *876 - pusher_type: *885 - ref: *886 + enterprise: *875 + installation: *876 + organization: *877 + pusher_type: *886 + ref: *887 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *877 + repository: *878 sender: *4 required: - ref @@ -133700,10 +133771,10 @@ x-webhooks: enum: - assignees_changed alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -133784,10 +133855,10 @@ x-webhooks: enum: - auto_dismissed alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -133869,10 +133940,10 @@ x-webhooks: enum: - auto_reopened alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -133954,10 +134025,10 @@ x-webhooks: enum: - created alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134037,10 +134108,10 @@ x-webhooks: enum: - dismissed alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134120,10 +134191,10 @@ x-webhooks: enum: - fixed alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134204,10 +134275,10 @@ x-webhooks: enum: - reintroduced alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134287,10 +134358,10 @@ x-webhooks: enum: - reopened alert: *618 - installation: *875 - organization: *876 - enterprise: *874 - repository: *877 + installation: *876 + organization: *877 + enterprise: *875 + repository: *878 sender: *4 required: - action @@ -134367,9 +134438,9 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - key: &887 + enterprise: *875 + installation: *876 + key: &888 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -134405,8 +134476,8 @@ x-webhooks: - verified - created_at - read_only - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -134483,11 +134554,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - key: *887 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + key: *888 + organization: *877 + repository: *878 sender: *4 required: - action @@ -135043,12 +135114,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - workflow: &893 + workflow: &894 title: Workflow type: object nullable: true @@ -135789,15 +135860,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *888 - required: *889 + properties: *889 + required: *890 nullable: true pull_requests: type: array - items: *722 - repository: *877 - organization: *876 - installation: *875 + items: *723 + repository: *878 + organization: *877 + installation: *876 sender: *4 responses: '200': @@ -135868,7 +135939,7 @@ x-webhooks: type: string enum: - approved - approver: &890 + approver: &891 type: object properties: avatar_url: @@ -135911,11 +135982,11 @@ x-webhooks: type: string comment: type: string - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - reviewers: &891 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + reviewers: &892 type: array items: type: object @@ -135994,7 +136065,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &892 + workflow_job_run: &893 type: object properties: conclusion: @@ -136725,18 +136796,18 @@ x-webhooks: type: string enum: - rejected - approver: *890 + approver: *891 comment: type: string - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - reviewers: *891 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + reviewers: *892 sender: *4 since: type: string - workflow_job_run: *892 + workflow_job_run: *893 workflow_job_runs: type: array items: @@ -137440,13 +137511,13 @@ x-webhooks: type: string enum: - requested - enterprise: *874 + enterprise: *875 environment: type: string - installation: *875 - organization: *876 - repository: *877 - requestor: &903 + installation: *876 + organization: *877 + repository: *878 + requestor: &904 title: User type: object nullable: true @@ -139335,12 +139406,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - workflow: *893 + workflow: *894 workflow_run: title: Deployment Workflow Run type: object @@ -140020,7 +140091,7 @@ x-webhooks: type: string enum: - answered - answer: &896 + answer: &897 type: object properties: author_association: @@ -140177,11 +140248,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -140308,11 +140379,11 @@ x-webhooks: - from required: - category - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -140395,11 +140466,11 @@ x-webhooks: type: string enum: - closed - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -140481,7 +140552,7 @@ x-webhooks: type: string enum: - created - comment: &895 + comment: &896 type: object properties: author_association: @@ -140638,11 +140709,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -140725,12 +140796,12 @@ x-webhooks: type: string enum: - deleted - comment: *895 - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + comment: *896 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -140825,12 +140896,12 @@ x-webhooks: - from required: - body - comment: *895 - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + comment: *896 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -140914,11 +140985,11 @@ x-webhooks: type: string enum: - created - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141000,11 +141071,11 @@ x-webhooks: type: string enum: - deleted - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141104,11 +141175,11 @@ x-webhooks: type: string required: - from - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141190,10 +141261,10 @@ x-webhooks: type: string enum: - labeled - discussion: *894 - enterprise: *874 - installation: *875 - label: &897 + discussion: *895 + enterprise: *875 + installation: *876 + label: &898 title: Label type: object properties: @@ -141225,8 +141296,8 @@ x-webhooks: - color - default - description - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141309,11 +141380,11 @@ x-webhooks: type: string enum: - locked - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141395,11 +141466,11 @@ x-webhooks: type: string enum: - pinned - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141481,11 +141552,11 @@ x-webhooks: type: string enum: - reopened - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141570,16 +141641,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *894 - new_repository: *877 + new_discussion: *895 + new_repository: *878 required: - new_discussion - new_repository - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141662,10 +141733,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *894 - old_answer: *896 - organization: *876 - repository: *877 + discussion: *895 + old_answer: *897 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141747,12 +141818,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *894 - enterprise: *874 - installation: *875 - label: *897 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141835,11 +141906,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141921,11 +141992,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *894 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + discussion: *895 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -141994,7 +142065,7 @@ x-webhooks: required: true content: application/json: - schema: *898 + schema: *899 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142057,7 +142128,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *900 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142120,7 +142191,7 @@ x-webhooks: required: true content: application/json: - schema: *900 + schema: *901 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142183,7 +142254,7 @@ x-webhooks: required: true content: application/json: - schema: *898 + schema: *899 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142246,7 +142317,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *900 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142312,7 +142383,7 @@ x-webhooks: required: true content: application/json: - schema: *900 + schema: *901 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142378,7 +142449,7 @@ x-webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142444,7 +142515,7 @@ x-webhooks: required: true content: application/json: - schema: *898 + schema: *899 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142510,7 +142581,7 @@ x-webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142576,7 +142647,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *900 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142641,7 +142712,7 @@ x-webhooks: required: true content: application/json: - schema: *900 + schema: *901 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142706,7 +142777,7 @@ x-webhooks: required: true content: application/json: - schema: *901 + schema: *902 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142771,7 +142842,7 @@ x-webhooks: required: true content: application/json: - schema: *898 + schema: *899 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142836,7 +142907,7 @@ x-webhooks: required: true content: application/json: - schema: *902 + schema: *903 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142902,7 +142973,7 @@ x-webhooks: required: true content: application/json: - schema: *899 + schema: *900 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142969,7 +143040,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *874 + enterprise: *875 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -143629,9 +143700,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - forkee @@ -143777,9 +143848,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pages: description: The pages that were updated. type: array @@ -143816,7 +143887,7 @@ x-webhooks: - action - sha - html_url - repository: *877 + repository: *878 sender: *4 required: - pages @@ -143892,10 +143963,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories: &904 + organization: *877 + repositories: &905 description: An array of repository objects that the installation can access. type: array @@ -143921,8 +143992,8 @@ x-webhooks: - name - full_name - private - repository: *877 - requester: *903 + repository: *878 + requester: *904 sender: *4 required: - action @@ -143997,11 +144068,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories: *904 - repository: *877 + organization: *877 + repositories: *905 + repository: *878 requester: nullable: true sender: *4 @@ -144077,11 +144148,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories: *904 - repository: *877 + organization: *877 + repositories: *905 + repository: *878 requester: nullable: true sender: *4 @@ -144157,10 +144228,10 @@ x-webhooks: type: string enum: - added - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories_added: &905 + organization: *877 + repositories_added: &906 description: An array of repository objects, which were added to the installation. type: array @@ -144206,15 +144277,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *877 - repository_selection: &906 + repository: *878 + repository_selection: &907 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *903 + requester: *904 sender: *4 required: - action @@ -144293,10 +144364,10 @@ x-webhooks: type: string enum: - removed - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories_added: *905 + organization: *877 + repositories_added: *906 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -144323,9 +144394,9 @@ x-webhooks: - name - full_name - private - repository: *877 - repository_selection: *906 - requester: *903 + repository: *878 + repository_selection: *907 + requester: *904 sender: *4 required: - action @@ -144404,11 +144475,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories: *904 - repository: *877 + organization: *877 + repositories: *905 + repository: *878 requester: nullable: true sender: *4 @@ -144587,10 +144658,10 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 target_type: type: string @@ -144669,11 +144740,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *874 + enterprise: *875 installation: *22 - organization: *876 - repositories: *904 - repository: *877 + organization: *877 + repositories: *905 + repository: *878 requester: nullable: true sender: *4 @@ -144847,8 +144918,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *697 - required: *698 + properties: *698 + required: *699 nullable: true user: title: User @@ -144933,8 +145004,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -145723,8 +145794,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146073,8 +146144,8 @@ x-webhooks: - state - locked - assignee - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -146154,7 +146225,7 @@ x-webhooks: type: string enum: - deleted - comment: &907 + comment: &908 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -146311,8 +146382,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *697 - required: *698 + properties: *698 + required: *699 nullable: true required: - url @@ -146327,8 +146398,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147113,8 +147184,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147465,8 +147536,8 @@ x-webhooks: - state - locked - assignee - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -147546,7 +147617,7 @@ x-webhooks: type: string enum: - edited - changes: &936 + changes: &937 description: The changes to the comment. type: object properties: @@ -147558,9 +147629,9 @@ x-webhooks: type: string required: - from - comment: *907 - enterprise: *874 - installation: *875 + comment: *908 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148348,8 +148419,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148698,8 +148769,8 @@ x-webhooks: - state - locked - assignee - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -148780,9 +148851,9 @@ x-webhooks: type: string enum: - pinned - comment: *907 - enterprise: *874 - installation: *875 + comment: *908 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -149572,8 +149643,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149924,8 +149995,8 @@ x-webhooks: - state - locked - assignee - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -150005,9 +150076,9 @@ x-webhooks: type: string enum: - unpinned - comment: *907 - enterprise: *874 - installation: *875 + comment: *908 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -150797,8 +150868,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151149,8 +151220,8 @@ x-webhooks: - state - locked - assignee - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -151239,9 +151310,9 @@ x-webhooks: type: number blocking_issue: *227 blocking_issue_repo: *80 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -151330,9 +151401,9 @@ x-webhooks: type: number blocking_issue: *227 blocking_issue_repo: *80 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -151420,9 +151491,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -151511,9 +151582,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -151593,10 +151664,10 @@ x-webhooks: type: string enum: - assigned - assignee: *903 - enterprise: *874 - installation: *875 - issue: &910 + assignee: *904 + enterprise: *875 + installation: *876 + issue: &911 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -152388,11 +152459,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152509,8 +152580,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -152590,8 +152661,8 @@ x-webhooks: type: string enum: - closed - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -153388,11 +153459,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153644,8 +153715,8 @@ x-webhooks: required: - state - closed_at - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -153724,8 +153795,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154513,11 +154584,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154633,8 +154704,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -154713,8 +154784,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155524,11 +155595,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155623,7 +155694,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &908 + milestone: &909 title: Milestone description: A collection of related issues and pull requests. type: object @@ -155761,8 +155832,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -155861,8 +155932,8 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156654,11 +156725,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156775,9 +156846,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *897 - organization: *876 - repository: *877 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -156857,8 +156928,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157649,11 +157720,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157770,9 +157841,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *897 - organization: *876 - repository: *877 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -157852,8 +157923,8 @@ x-webhooks: type: string enum: - locked - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -158668,11 +158739,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158766,8 +158837,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -158846,8 +158917,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159656,11 +159727,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159754,9 +159825,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *908 - organization: *876 - repository: *877 + milestone: *909 + organization: *877 + repository: *878 sender: *4 required: - action @@ -160619,11 +160690,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161204,8 +161275,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -161989,11 +162060,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162117,8 +162188,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -162198,9 +162269,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *874 - installation: *875 - issue: &909 + enterprise: *875 + installation: *876 + issue: &910 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -162986,11 +163057,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163106,8 +163177,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -163186,8 +163257,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -164000,11 +164071,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164099,8 +164170,8 @@ x-webhooks: user_view_type: type: string type: *388 - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -164969,11 +165040,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165568,11 +165639,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *874 - installation: *875 - issue: *909 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + issue: *910 + organization: *877 + repository: *878 sender: *4 required: - action @@ -165652,12 +165723,12 @@ x-webhooks: type: string enum: - typed - enterprise: *874 - installation: *875 - issue: *910 + enterprise: *875 + installation: *876 + issue: *911 type: *388 - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -165738,7 +165809,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &939 + assignee: &940 title: User type: object nullable: true @@ -165808,11 +165879,11 @@ x-webhooks: required: - login - id - enterprise: *874 - installation: *875 - issue: *910 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + issue: *911 + organization: *877 + repository: *878 sender: *4 required: - action @@ -165891,12 +165962,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *874 - installation: *875 - issue: *910 - label: *897 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + issue: *911 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -165976,8 +166047,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -166790,11 +166861,11 @@ x-webhooks: properties: *228 required: *229 nullable: true - sub_issues_summary: *814 - issue_dependencies_summary: *815 + sub_issues_summary: *815 + issue_dependencies_summary: *816 issue_field_values: type: array - items: *682 + items: *683 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166888,8 +166959,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -166969,11 +167040,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *874 - installation: *875 - issue: *909 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + issue: *910 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167052,12 +167123,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *874 - installation: *875 - issue: *910 + enterprise: *875 + installation: *876 + issue: *911 type: *388 - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167137,11 +167208,11 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - label: *897 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167219,11 +167290,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - label: *897 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167333,11 +167404,11 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - label: *897 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + label: *898 + organization: *877 + repository: *878 sender: *4 required: - action @@ -167419,9 +167490,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *874 - installation: *875 - marketplace_purchase: &911 + enterprise: *875 + installation: *876 + marketplace_purchase: &912 title: Marketplace Purchase type: object required: @@ -167504,8 +167575,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *876 - previous_marketplace_purchase: &912 + organization: *877 + previous_marketplace_purchase: &913 title: Marketplace Purchase type: object properties: @@ -167585,7 +167656,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *877 + repository: *878 sender: *4 required: - action @@ -167665,10 +167736,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *874 - installation: *875 - marketplace_purchase: *911 - organization: *876 + enterprise: *875 + installation: *876 + marketplace_purchase: *912 + organization: *877 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -167751,7 +167822,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *877 + repository: *878 sender: *4 required: - action @@ -167833,10 +167904,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *874 - installation: *875 - marketplace_purchase: *911 - organization: *876 + enterprise: *875 + installation: *876 + marketplace_purchase: *912 + organization: *877 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -167918,7 +167989,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *877 + repository: *878 sender: *4 required: - action @@ -167999,8 +168070,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 marketplace_purchase: title: Marketplace Purchase type: object @@ -168082,9 +168153,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *876 - previous_marketplace_purchase: *912 - repository: *877 + organization: *877 + previous_marketplace_purchase: *913 + repository: *878 sender: *4 required: - action @@ -168164,12 +168235,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *874 - installation: *875 - marketplace_purchase: *911 - organization: *876 - previous_marketplace_purchase: *912 - repository: *877 + enterprise: *875 + installation: *876 + marketplace_purchase: *912 + organization: *877 + previous_marketplace_purchase: *913 + repository: *878 sender: *4 required: - action @@ -168271,11 +168342,11 @@ x-webhooks: type: string required: - to - enterprise: *874 - installation: *875 - member: *903 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + member: *904 + organization: *877 + repository: *878 sender: *4 required: - action @@ -168375,11 +168446,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *874 - installation: *875 - member: *903 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + member: *904 + organization: *877 + repository: *878 sender: *4 required: - action @@ -168458,11 +168529,11 @@ x-webhooks: type: string enum: - removed - enterprise: *874 - installation: *875 - member: *903 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + member: *904 + organization: *877 + repository: *878 sender: *4 required: - action @@ -168540,11 +168611,11 @@ x-webhooks: type: string enum: - added - enterprise: *874 - installation: *875 - member: *903 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + member: *904 + organization: *877 + repository: *878 scope: description: The scope of the membership. Currently, can only be `team`. @@ -168620,7 +168691,7 @@ x-webhooks: required: - login - id - team: &913 + team: &914 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -168843,11 +168914,11 @@ x-webhooks: type: string enum: - removed - enterprise: *874 - installation: *875 - member: *903 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + member: *904 + organization: *877 + repository: *878 scope: description: The scope of the membership. Currently, can only be `team`. @@ -168924,7 +168995,7 @@ x-webhooks: required: - login - id - team: *913 + team: *914 required: - action - scope @@ -169006,8 +169077,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *875 - merge_group: &915 + installation: *876 + merge_group: &916 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -169026,15 +169097,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *914 + head_commit: *915 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -169120,10 +169191,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *875 - merge_group: *915 - organization: *876 - repository: *877 + installation: *876 + merge_group: *916 + organization: *877 + repository: *878 sender: *4 required: - action @@ -169196,7 +169267,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 + enterprise: *875 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -169305,16 +169376,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *875 - organization: *876 + installation: *876 + organization: *877 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *916 - required: *917 + properties: *917 + required: *918 nullable: true sender: *4 required: @@ -169395,11 +169466,11 @@ x-webhooks: type: string enum: - closed - enterprise: *874 - installation: *875 - milestone: *908 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + milestone: *909 + organization: *877 + repository: *878 sender: *4 required: - action @@ -169478,9 +169549,9 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - milestone: &918 + enterprise: *875 + installation: *876 + milestone: &919 title: Milestone description: A collection of related issues and pull requests. type: object @@ -169617,8 +169688,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -169697,11 +169768,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - milestone: *908 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + milestone: *909 + organization: *877 + repository: *878 sender: *4 required: - action @@ -169811,11 +169882,11 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - milestone: *908 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + milestone: *909 + organization: *877 + repository: *878 sender: *4 required: - action @@ -169895,11 +169966,11 @@ x-webhooks: type: string enum: - opened - enterprise: *874 - installation: *875 - milestone: *918 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + milestone: *919 + organization: *877 + repository: *878 sender: *4 required: - action @@ -169978,11 +170049,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *903 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + blocked_user: *904 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -170061,11 +170132,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *903 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + blocked_user: *904 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -170141,7 +170212,7 @@ x-webhooks: enum: - created definition: *153 - enterprise: *874 + enterprise: *875 sender: *4 required: - action @@ -170221,8 +170292,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 sender: *4 required: - action @@ -170295,8 +170366,8 @@ x-webhooks: enum: - updated definition: *153 - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 sender: *4 required: - action @@ -170368,9 +170439,9 @@ x-webhooks: type: string enum: - updated - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 new_property_values: type: array @@ -170458,9 +170529,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - membership: &919 + enterprise: *875 + installation: *876 + membership: &920 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -170567,8 +170638,8 @@ x-webhooks: - role - organization_url - user - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 required: - action @@ -170646,11 +170717,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *874 - installation: *875 - membership: *919 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + membership: *920 + organization: *877 + repository: *878 sender: *4 required: - action @@ -170729,8 +170800,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -170846,10 +170917,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 - user: *903 + user: *904 required: - action - invitation @@ -170927,11 +170998,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *874 - installation: *875 - membership: *919 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + membership: *920 + organization: *877 + repository: *878 sender: *4 required: - action @@ -171018,11 +171089,11 @@ x-webhooks: properties: from: type: string - enterprise: *874 - installation: *875 - membership: *919 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + membership: *920 + organization: *877 + repository: *878 sender: *4 required: - action @@ -171100,9 +171171,9 @@ x-webhooks: type: string enum: - published - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 package: description: Information about the package. type: object @@ -171601,7 +171672,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &920 + items: &921 title: Ruby Gems metadata type: object properties: @@ -171696,7 +171767,7 @@ x-webhooks: - owner - package_version - registry - repository: *877 + repository: *878 sender: *4 required: - action @@ -171773,9 +171844,9 @@ x-webhooks: type: string enum: - updated - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 package: description: Information about the package. type: object @@ -172128,7 +172199,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *920 + items: *921 source_url: type: string format: uri @@ -172198,7 +172269,7 @@ x-webhooks: - owner - package_version - registry - repository: *877 + repository: *878 sender: *4 required: - action @@ -172374,12 +172445,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *874 + enterprise: *875 id: type: integer - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - id @@ -172456,7 +172527,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &921 + personal_access_token_request: &922 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -172602,10 +172673,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *874 - organization: *876 + enterprise: *875 + organization: *877 sender: *4 - installation: *875 + installation: *876 required: - action - personal_access_token_request @@ -172682,11 +172753,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *921 - enterprise: *874 - organization: *876 + personal_access_token_request: *922 + enterprise: *875 + organization: *877 sender: *4 - installation: *875 + installation: *876 required: - action - personal_access_token_request @@ -172762,11 +172833,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *921 - enterprise: *874 - organization: *876 + personal_access_token_request: *922 + enterprise: *875 + organization: *877 sender: *4 - installation: *875 + installation: *876 required: - action - personal_access_token_request @@ -172841,11 +172912,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *921 - organization: *876 - enterprise: *874 + personal_access_token_request: *922 + organization: *877 + enterprise: *875 sender: *4 - installation: *875 + installation: *876 required: - action - personal_access_token_request @@ -172950,7 +173021,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *922 + last_response: *923 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -172982,8 +173053,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 zen: description: Random string of GitHub zen. @@ -173228,10 +173299,10 @@ x-webhooks: - from required: - note - enterprise: *874 - installation: *875 - organization: *876 - project_card: &923 + enterprise: *875 + installation: *876 + organization: *877 + project_card: &924 title: Project Card type: object properties: @@ -173350,7 +173421,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *877 + repository: *878 sender: *4 required: - action @@ -173431,11 +173502,11 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - project_card: *923 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project_card: *924 + repository: *878 sender: *4 required: - action @@ -173515,9 +173586,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 project_card: title: Project Card type: object @@ -173645,8 +173716,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *916 - required: *917 + properties: *917 + required: *918 nullable: true sender: *4 required: @@ -173740,11 +173811,11 @@ x-webhooks: - from required: - note - enterprise: *874 - installation: *875 - organization: *876 - project_card: *923 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project_card: *924 + repository: *878 sender: *4 required: - action @@ -173838,9 +173909,9 @@ x-webhooks: - from required: - column_id - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 project_card: allOf: - title: Project Card @@ -174030,7 +174101,7 @@ x-webhooks: type: string required: - after_id - repository: *877 + repository: *878 sender: *4 required: - action @@ -174110,10 +174181,10 @@ x-webhooks: type: string enum: - closed - enterprise: *874 - installation: *875 - organization: *876 - project: &925 + enterprise: *875 + installation: *876 + organization: *877 + project: &926 title: Project type: object properties: @@ -174237,7 +174308,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *877 + repository: *878 sender: *4 required: - action @@ -174317,10 +174388,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - project_column: &924 + enterprise: *875 + installation: *876 + organization: *877 + project_column: &925 title: Project Column type: object properties: @@ -174359,7 +174430,7 @@ x-webhooks: - name - created_at - updated_at - repository: *877 + repository: *878 sender: *4 required: - action @@ -174438,18 +174509,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - project_column: *924 + enterprise: *875 + installation: *876 + organization: *877 + project_column: *925 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *916 - required: *917 + properties: *917 + required: *918 nullable: true sender: *4 required: @@ -174539,11 +174610,11 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - organization: *876 - project_column: *924 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project_column: *925 + repository: *878 sender: *4 required: - action @@ -174623,11 +174694,11 @@ x-webhooks: type: string enum: - moved - enterprise: *874 - installation: *875 - organization: *876 - project_column: *924 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project_column: *925 + repository: *878 sender: *4 required: - action @@ -174707,11 +174778,11 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - project: *925 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project: *926 + repository: *878 sender: *4 required: - action @@ -174791,18 +174862,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - project: *925 + enterprise: *875 + installation: *876 + organization: *877 + project: *926 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *916 - required: *917 + properties: *917 + required: *918 nullable: true sender: *4 required: @@ -174904,11 +174975,11 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - organization: *876 - project: *925 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project: *926 + repository: *878 sender: *4 required: - action @@ -174987,11 +175058,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *874 - installation: *875 - organization: *876 - project: *925 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + project: *926 + repository: *878 sender: *4 required: - action @@ -175072,8 +175143,8 @@ x-webhooks: type: string enum: - closed - installation: *875 - organization: *876 + installation: *876 + organization: *877 projects_v2: *420 sender: *4 required: @@ -175155,8 +175226,8 @@ x-webhooks: type: string enum: - created - installation: *875 - organization: *876 + installation: *876 + organization: *877 projects_v2: *420 sender: *4 required: @@ -175238,8 +175309,8 @@ x-webhooks: type: string enum: - deleted - installation: *875 - organization: *876 + installation: *876 + organization: *877 projects_v2: *420 sender: *4 required: @@ -175357,8 +175428,8 @@ x-webhooks: type: string to: type: string - installation: *875 - organization: *876 + installation: *876 + organization: *877 projects_v2: *420 sender: *4 required: @@ -175442,7 +175513,7 @@ x-webhooks: type: string enum: - archived - changes: &929 + changes: &930 type: object properties: archived_at: @@ -175456,9 +175527,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *875 - organization: *876 - projects_v2_item: &926 + installation: *876 + organization: *877 + projects_v2_item: &927 title: Projects v2 Item description: An item belonging to a project type: object @@ -175593,9 +175664,9 @@ x-webhooks: nullable: true to: type: string - installation: *875 - organization: *876 - projects_v2_item: *926 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -175677,9 +175748,9 @@ x-webhooks: type: string enum: - created - installation: *875 - organization: *876 - projects_v2_item: *926 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -175760,9 +175831,9 @@ x-webhooks: type: string enum: - deleted - installation: *875 - organization: *876 - projects_v2_item: *926 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -175868,7 +175939,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &927 + - &928 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -175890,7 +175961,7 @@ x-webhooks: required: - id - name - - &928 + - &929 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -175924,8 +175995,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *927 - *928 + - *929 required: - field_value - type: object @@ -175941,9 +176012,9 @@ x-webhooks: nullable: true required: - body - installation: *875 - organization: *876 - projects_v2_item: *926 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -176038,9 +176109,9 @@ x-webhooks: to: type: string nullable: true - installation: *875 - organization: *876 - projects_v2_item: *926 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -176123,10 +176194,10 @@ x-webhooks: type: string enum: - restored - changes: *929 - installation: *875 - organization: *876 - projects_v2_item: *926 + changes: *930 + installation: *876 + organization: *877 + projects_v2_item: *927 sender: *4 required: - action @@ -176208,8 +176279,8 @@ x-webhooks: type: string enum: - reopened - installation: *875 - organization: *876 + installation: *876 + organization: *877 projects_v2: *420 sender: *4 required: @@ -176291,14 +176362,14 @@ x-webhooks: type: string enum: - created - installation: *875 - organization: *876 - projects_v2_status_update: &932 + installation: *876 + organization: *877 + projects_v2_status_update: &933 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *930 - required: *931 + properties: *931 + required: *932 sender: *4 required: - action @@ -176379,9 +176450,9 @@ x-webhooks: type: string enum: - deleted - installation: *875 - organization: *876 - projects_v2_status_update: *932 + installation: *876 + organization: *877 + projects_v2_status_update: *933 sender: *4 required: - action @@ -176517,9 +176588,9 @@ x-webhooks: type: string format: date nullable: true - installation: *875 - organization: *876 - projects_v2_status_update: *932 + installation: *876 + organization: *877 + projects_v2_status_update: *933 sender: *4 required: - action @@ -176590,10 +176661,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - repository @@ -176670,13 +176741,13 @@ x-webhooks: type: string enum: - assigned - assignee: *903 - enterprise: *874 - installation: *875 - number: &933 + assignee: *904 + enterprise: *875 + installation: *876 + number: &934 description: The pull request number. type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -178963,7 +179034,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -179045,11 +179116,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -181331,7 +181402,7 @@ x-webhooks: - draft reason: type: string - repository: *877 + repository: *878 sender: *4 required: - action @@ -181413,11 +181484,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -183699,7 +183770,7 @@ x-webhooks: - draft reason: type: string - repository: *877 + repository: *878 sender: *4 required: - action @@ -183781,13 +183852,13 @@ x-webhooks: type: string enum: - closed - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: &934 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: &935 allOf: - - *722 + - *723 - type: object properties: allow_auto_merge: @@ -183849,7 +183920,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *877 + repository: *878 sender: *4 required: - action @@ -183930,12 +184001,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: *934 - repository: *877 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: *935 + repository: *878 sender: *4 required: - action @@ -184015,11 +184086,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *874 - milestone: *704 - number: *933 - organization: *876 - pull_request: &935 + enterprise: *875 + milestone: *705 + number: *934 + organization: *877 + pull_request: &936 title: Pull Request type: object properties: @@ -186300,7 +186371,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -186379,11 +186450,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -188683,7 +188754,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *877 + repository: *878 sender: *4 required: - action @@ -188807,12 +188878,12 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: *934 - repository: *877 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: *935 + repository: *878 sender: *4 required: - action @@ -188892,11 +188963,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -191181,7 +191252,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -191261,11 +191332,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *874 - installation: *875 - label: *897 - number: *933 - organization: *876 + enterprise: *875 + installation: *876 + label: *898 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -193551,7 +193622,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -193632,10 +193703,10 @@ x-webhooks: type: string enum: - locked - enterprise: *874 - installation: *875 - number: *933 - organization: *876 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -195919,7 +195990,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -195999,12 +196070,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *874 - milestone: *704 - number: *933 - organization: *876 - pull_request: *935 - repository: *877 + enterprise: *875 + milestone: *705 + number: *934 + organization: *877 + pull_request: *936 + repository: *878 sender: *4 required: - action @@ -196083,12 +196154,12 @@ x-webhooks: type: string enum: - opened - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: *934 - repository: *877 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: *935 + repository: *878 sender: *4 required: - action @@ -196169,12 +196240,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: *934 - repository: *877 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: *935 + repository: *878 sender: *4 required: - action @@ -196254,12 +196325,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *874 - installation: *875 - number: *933 - organization: *876 - pull_request: *934 - repository: *877 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 + pull_request: *935 + repository: *878 sender: *4 required: - action @@ -196625,9 +196696,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: type: object properties: @@ -198801,7 +198872,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *877 + repository: *878 sender: *4 required: - action @@ -198881,7 +198952,7 @@ x-webhooks: type: string enum: - deleted - comment: &937 + comment: &938 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. @@ -199166,9 +199237,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: type: object properties: @@ -201330,7 +201401,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *877 + repository: *878 sender: *4 required: - action @@ -201410,11 +201481,11 @@ x-webhooks: type: string enum: - edited - changes: *936 - comment: *937 - enterprise: *874 - installation: *875 - organization: *876 + changes: *937 + comment: *938 + enterprise: *875 + installation: *876 + organization: *877 pull_request: type: object properties: @@ -203579,7 +203650,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *877 + repository: *878 sender: *4 required: - action @@ -203660,9 +203731,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: title: Simple Pull Request type: object @@ -205839,7 +205910,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *877 + repository: *878 review: description: The review that was affected. type: object @@ -206086,9 +206157,9 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: title: Simple Pull Request type: object @@ -208138,8 +208209,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *877 - review: &938 + repository: *878 + review: &939 description: The review that was affected. type: object properties: @@ -208372,12 +208443,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: description: The pull request number. type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -210664,7 +210735,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 requested_reviewer: title: User type: object @@ -210748,12 +210819,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: description: The pull request number. type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -213047,7 +213118,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 requested_team: title: Team description: Groups of organization members that gives permissions @@ -213239,12 +213310,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: description: The pull request number. type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -215533,7 +215604,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 requested_reviewer: title: User type: object @@ -215618,12 +215689,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *874 - installation: *875 + enterprise: *875 + installation: *876 number: description: The pull request number. type: integer - organization: *876 + organization: *877 pull_request: title: Pull Request type: object @@ -217903,7 +217974,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 requested_team: title: Team description: Groups of organization members that gives permissions @@ -218084,9 +218155,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: title: Simple Pull Request type: object @@ -220265,8 +220336,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *877 - review: *938 + repository: *878 + review: *939 sender: *4 required: - action @@ -220346,9 +220417,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: title: Simple Pull Request type: object @@ -222436,7 +222507,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *877 + repository: *878 sender: *4 thread: type: object @@ -222823,9 +222894,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 pull_request: title: Simple Pull Request type: object @@ -224899,7 +224970,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *877 + repository: *878 sender: *4 thread: type: object @@ -225289,10 +225360,10 @@ x-webhooks: type: string before: type: string - enterprise: *874 - installation: *875 - number: *933 - organization: *876 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -227567,7 +227638,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -227649,11 +227720,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *939 - enterprise: *874 - installation: *875 - number: *933 - organization: *876 + assignee: *940 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -229940,7 +230011,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -230019,11 +230090,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *874 - installation: *875 - label: *897 - number: *933 - organization: *876 + enterprise: *875 + installation: *876 + label: *898 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -232300,7 +232371,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -232381,10 +232452,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *874 - installation: *875 - number: *933 - organization: *876 + enterprise: *875 + installation: *876 + number: *934 + organization: *877 pull_request: title: Pull Request type: object @@ -234653,7 +234724,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *877 + repository: *878 sender: *4 required: - action @@ -234853,7 +234924,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *874 + enterprise: *875 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -234945,8 +235016,8 @@ x-webhooks: - url - author - committer - installation: *875 - organization: *876 + installation: *876 + organization: *877 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -235532,9 +235603,9 @@ x-webhooks: type: string enum: - published - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 registry_package: type: object properties: @@ -235980,7 +236051,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *920 + items: *921 summary: type: string tag_name: @@ -236034,7 +236105,7 @@ x-webhooks: - owner - package_version - registry - repository: *877 + repository: *878 sender: *4 required: - action @@ -236112,9 +236183,9 @@ x-webhooks: type: string enum: - updated - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 registry_package: type: object properties: @@ -236422,7 +236493,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *920 + items: *921 summary: type: string tag_name: @@ -236471,7 +236542,7 @@ x-webhooks: - owner - package_version - registry - repository: *877 + repository: *878 sender: *4 required: - action @@ -236548,10 +236619,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - release: &940 + enterprise: *875 + installation: *876 + organization: *877 + release: &941 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -236869,7 +236940,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *877 + repository: *878 sender: *4 required: - action @@ -236946,11 +237017,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - release: *940 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + release: *941 + repository: *878 sender: *4 required: - action @@ -237067,11 +237138,11 @@ x-webhooks: type: boolean required: - to - enterprise: *874 - installation: *875 - organization: *876 - release: *940 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + release: *941 + repository: *878 sender: *4 required: - action @@ -237149,9 +237220,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -237473,7 +237544,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *877 + repository: *878 sender: *4 required: - action @@ -237549,10 +237620,10 @@ x-webhooks: type: string enum: - published - enterprise: *874 - installation: *875 - organization: *876 - release: &941 + enterprise: *875 + installation: *876 + organization: *877 + release: &942 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -237871,7 +237942,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *877 + repository: *878 sender: *4 required: - action @@ -237947,11 +238018,11 @@ x-webhooks: type: string enum: - released - enterprise: *874 - installation: *875 - organization: *876 - release: *940 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + release: *941 + repository: *878 sender: *4 required: - action @@ -238027,11 +238098,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *874 - installation: *875 - organization: *876 - release: *941 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + release: *942 + repository: *878 sender: *4 required: - action @@ -238107,11 +238178,11 @@ x-webhooks: type: string enum: - published - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - repository_advisory: *774 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + repository_advisory: *775 sender: *4 required: - action @@ -238187,11 +238258,11 @@ x-webhooks: type: string enum: - reported - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - repository_advisory: *774 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + repository_advisory: *775 sender: *4 required: - action @@ -238267,10 +238338,10 @@ x-webhooks: type: string enum: - archived - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -238347,10 +238418,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -238428,10 +238499,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -238515,10 +238586,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -238630,10 +238701,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -238705,10 +238776,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 status: type: string @@ -238789,10 +238860,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -238869,10 +238940,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -238966,10 +239037,10 @@ x-webhooks: - name required: - repository - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239049,10 +239120,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 repository_ruleset: *193 sender: *4 required: @@ -239131,10 +239202,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 repository_ruleset: *193 sender: *4 required: @@ -239213,10 +239284,10 @@ x-webhooks: type: string enum: - edited - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 repository_ruleset: *193 changes: type: object @@ -239278,16 +239349,16 @@ x-webhooks: properties: added: type: array - items: *742 + items: *743 deleted: type: array - items: *742 + items: *743 updated: type: array items: type: object properties: - rule: *742 + rule: *743 changes: type: object properties: @@ -239521,10 +239592,10 @@ x-webhooks: - from required: - owner - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239602,10 +239673,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -239683,7 +239754,7 @@ x-webhooks: type: string enum: - create - alert: &942 + alert: &943 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -239805,10 +239876,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -240014,10 +240085,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -240095,11 +240166,11 @@ x-webhooks: type: string enum: - reopen - alert: *942 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *943 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -240298,10 +240369,10 @@ x-webhooks: enum: - fixed - open - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -240379,7 +240450,7 @@ x-webhooks: type: string enum: - assigned - alert: &943 + alert: &944 type: object properties: number: *130 @@ -240522,10 +240593,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -240603,11 +240674,11 @@ x-webhooks: type: string enum: - created - alert: *943 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *944 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -240688,11 +240759,11 @@ x-webhooks: type: string enum: - created - alert: *943 - installation: *875 - location: *944 - organization: *876 - repository: *877 + alert: *944 + installation: *876 + location: *945 + organization: *877 + repository: *878 sender: *4 required: - location @@ -240930,11 +241001,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *943 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *944 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241012,11 +241083,11 @@ x-webhooks: type: string enum: - reopened - alert: *943 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *944 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241094,11 +241165,11 @@ x-webhooks: type: string enum: - resolved - alert: *943 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *944 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241176,12 +241247,12 @@ x-webhooks: type: string enum: - unassigned - alert: *943 + alert: *944 assignee: *4 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241259,11 +241330,11 @@ x-webhooks: type: string enum: - validated - alert: *943 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + alert: *944 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -241389,10 +241460,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *877 - enterprise: *874 - installation: *875 - organization: *876 + repository: *878 + enterprise: *875 + installation: *876 + organization: *877 sender: *4 required: - action @@ -241470,11 +241541,11 @@ x-webhooks: type: string enum: - published - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - security_advisory: &945 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + security_advisory: &946 description: The details of the security advisory, including summary, description, and severity. type: object @@ -241645,11 +241716,11 @@ x-webhooks: type: string enum: - updated - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 - security_advisory: *945 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 + security_advisory: *946 sender: *4 required: - action @@ -241722,10 +241793,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -241898,9 +241969,9 @@ x-webhooks: type: object properties: security_and_analysis: *437 - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: *483 sender: *4 required: @@ -241979,12 +242050,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: &946 + sponsorship: &947 type: object properties: created_at: @@ -242285,12 +242356,12 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: *946 + sponsorship: *947 required: - action - sponsorship @@ -242378,12 +242449,12 @@ x-webhooks: type: string required: - from - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: *946 + sponsorship: *947 required: - action - changes @@ -242460,17 +242531,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &947 + effective_date: &948 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: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: *946 + sponsorship: *947 required: - action - sponsorship @@ -242544,7 +242615,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &948 + changes: &949 type: object properties: tier: @@ -242588,13 +242659,13 @@ x-webhooks: - from required: - tier - effective_date: *947 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + effective_date: *948 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: *946 + sponsorship: *947 required: - action - changes @@ -242671,13 +242742,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *948 - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + changes: *949 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - sponsorship: *946 + sponsorship: *947 required: - action - changes @@ -242751,10 +242822,10 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242837,10 +242908,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -243260,15 +243331,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *874 + enterprise: *875 id: description: The unique identifier of the status. type: integer - installation: *875 + installation: *876 name: type: string - organization: *876 - repository: *877 + organization: *877 + repository: *878 sender: *4 sha: description: The Commit SHA. @@ -243383,9 +243454,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -243475,9 +243546,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -243567,9 +243638,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -243659,9 +243730,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *227 - installation: *875 - organization: *876 - repository: *877 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -243738,12 +243809,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - team: &949 + team: &950 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -243966,9 +244037,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: title: Repository description: A git repository @@ -244426,7 +244497,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *949 + team: *950 required: - action - team @@ -244502,9 +244573,9 @@ x-webhooks: type: string enum: - created - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: title: Repository description: A git repository @@ -244962,7 +245033,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *949 + team: *950 required: - action - team @@ -245039,9 +245110,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: title: Repository description: A git repository @@ -245499,7 +245570,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *949 + team: *950 required: - action - team @@ -245643,9 +245714,9 @@ x-webhooks: - from required: - permissions - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: title: Repository description: A git repository @@ -246103,7 +246174,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *949 + team: *950 required: - action - changes @@ -246181,9 +246252,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *874 - installation: *875 - organization: *876 + enterprise: *875 + installation: *876 + organization: *877 repository: title: Repository description: A git repository @@ -246641,7 +246712,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *949 + team: *950 required: - action - team @@ -246717,10 +246788,10 @@ x-webhooks: type: string enum: - started - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 required: - action @@ -246793,16 +246864,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *874 + enterprise: *875 inputs: type: object nullable: true additionalProperties: true - installation: *875 - organization: *876 + installation: *876 + organization: *877 ref: type: string - repository: *877 + repository: *878 sender: *4 workflow: type: string @@ -246884,10 +246955,10 @@ x-webhooks: type: string enum: - completed - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 workflow_job: allOf: @@ -247124,7 +247195,7 @@ x-webhooks: type: string required: - conclusion - deployment: *624 + deployment: *625 required: - action - repository @@ -247203,10 +247274,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 workflow_job: allOf: @@ -247466,7 +247537,7 @@ x-webhooks: required: - status - steps - deployment: *624 + deployment: *625 required: - action - repository @@ -247545,10 +247616,10 @@ x-webhooks: type: string enum: - queued - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 workflow_job: type: object @@ -247683,7 +247754,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *624 + deployment: *625 required: - action - repository @@ -247762,10 +247833,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 workflow_job: type: object @@ -247901,7 +247972,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *624 + deployment: *625 required: - action - repository @@ -247981,12 +248052,12 @@ x-webhooks: type: string enum: - completed - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - workflow: *893 + workflow: *894 workflow_run: title: Workflow Run type: object @@ -248985,12 +249056,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - workflow: *893 + workflow: *894 workflow_run: title: Workflow Run type: object @@ -249974,12 +250045,12 @@ x-webhooks: type: string enum: - requested - enterprise: *874 - installation: *875 - organization: *876 - repository: *877 + enterprise: *875 + installation: *876 + organization: *877 + repository: *878 sender: *4 - workflow: *893 + workflow: *894 workflow_{"code":"deadline_exceeded","msg":"operation timed out"}