diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 93a3798c4..c48f7c9cd 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -13312,6 +13312,359 @@ } } }, + "/orgs/{org}/artifacts/metadata/deployment-record": { + "post": { + "summary": "Create an artifact deployment record", + "description": "Create or update deployment records for an artifact associated with an organization.\nThis endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment.", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-artifact-deployment-record", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "examples": [ + "libfoo" + ] + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The status of the artifact. Can be either deployed or decommissioned.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "cluster": { + "type": "string", + "description": "The deployment cluster." + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment." + }, + "tags": { + "type": "object", + "description": "The tags associated with the deployment.", + "additionalProperties": { + "type": "string" + }, + "maxProperties": 5 + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + } + }, + "required": [ + "name", + "digest", + "status", + "logical_environment", + "deployment_name" + ] + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "data-access": "sensitive" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/artifact-deployment-record" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/artifact-deployment-record-list" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": { + "post": { + "summary": "Set cluster deployment records", + "description": "Set deployment records for a given cluster.", + "tags": [ + "orgs" + ], + "operationId": "orgs/set-cluster-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "name": "cluster", + "in": "path", + "description": "The cluster name.", + "required": true, + "schema": { + "type": "string", + "minLength": 1, + "maxLength": 64, + "pattern": "^[a-zA-Z0-9._-]+$" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "deployments": { + "type": "array", + "description": "The list of deployments to record.", + "items": { + "type": "object", + "maxLength": 100, + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "maxLength": 255 + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The deployment status of the artifact.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment.", + "minLength": 1, + "maxLength": 128 + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + }, + "tags": { + "type": "object", + "description": "Key-value pairs to tag the deployment record.", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "version": "2.1.0", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "runtime-risk": "sensitive-data" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/artifact-deployment-record" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/artifact-deployment-record-list" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/metadata/storage-record": { "post": { "summary": "Create artifact metadata storage record", @@ -13532,6 +13885,66 @@ } } }, + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": { + "get": { + "summary": "List artifact deployment records", + "description": "List deployment records for an artifact metadata associated with an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-artifact-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/subject-digest" + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records for this digest and organization", + "type": "integer", + "examples": [ + 3 + ] + }, + "deployment_records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/artifact-deployment-record" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/artifact-deployment-record-list" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": { "get": { "summary": "List artifact storage records", @@ -112069,6 +112482,65 @@ "visibility" ] }, + "artifact-deployment-record": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + }, "campaign-state": { "title": "Campaign state", "description": "Indicates whether a campaign is open or closed", @@ -116811,10 +117283,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -116892,10 +117362,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -127126,6 +127594,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -291826,6 +292295,27 @@ "selected_repositories_url": "https://api.github.com/orgs/octo-org/actions/variables/USERNAME/repositories" } }, + "artifact-deployment-record-list": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + }, "bulk-subject-digest-body": { "value": { "subject_digests": [ @@ -315557,16 +316047,14 @@ "ssh-signing-key-items": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -315574,9 +316062,8 @@ }, "ssh-signing-key": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -318494,6 +318981,18 @@ "type": "string" } }, + "subject-digest": { + "name": "subject_digest", + "description": "The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`.", + "in": "path", + "required": true, + "schema": { + "type": "string", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + } + }, "tool-name": { "name": "tool_name", "description": "The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both.", diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 7733ece28..7a4e676a0 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -9588,6 +9588,277 @@ paths: enabledForGitHubApps: true category: actions subcategory: variables + "/orgs/{org}/artifacts/metadata/deployment-record": + post: + summary: Create an artifact deployment record + description: |- + Create or update deployment records for an artifact associated with an organization. + This endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment. + tags: + - orgs + operationId: orgs/create-artifact-deployment-record + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + examples: + - libfoo + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The status of the artifact. Can be either deployed + or decommissioned. + enum: + - deployed + - decommissioned + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + cluster: + type: string + description: The deployment cluster. + deployment_name: + type: string + description: The name of the deployment. + tags: + type: object + description: The tags associated with the deployment. + additionalProperties: + type: string + maxProperties: 5 + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + required: + - name + - digest + - status + - logical_environment + - deployment_name + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + data-access: sensitive + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: + "$ref": "#/components/schemas/artifact-deployment-record" + examples: + default: + "$ref": "#/components/examples/artifact-deployment-record-list" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": + post: + summary: Set cluster deployment records + description: Set deployment records for a given cluster. + tags: + - orgs + operationId: orgs/set-cluster-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records + parameters: + - "$ref": "#/components/parameters/org" + - name: cluster + in: path + description: The cluster name. + required: true + schema: + type: string + minLength: 1 + maxLength: 64 + pattern: "^[a-zA-Z0-9._-]+$" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + deployments: + type: array + description: The list of deployments to record. + items: + type: object + maxLength: 100 + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + maxLength: 255 + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The deployment status of the artifact. + enum: + - deployed + - decommissioned + deployment_name: + type: string + description: The name of the deployment. + minLength: 1 + maxLength: 128 + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + tags: + type: object + description: Key-value pairs to tag the deployment record. + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + version: 2.1.0 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + runtime-risk: sensitive-data + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: + "$ref": "#/components/schemas/artifact-deployment-record" + examples: + default: + "$ref": "#/components/examples/artifact-deployment-record-list" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/metadata/storage-record": post: summary: Create artifact metadata storage record @@ -9753,6 +10024,46 @@ paths: enabledForGitHubApps: true category: orgs subcategory: artifact-metadata + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": + get: + summary: List artifact deployment records + description: List deployment records for an artifact metadata associated with + an organization. + tags: + - orgs + operationId: orgs/list-artifact-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/subject-digest" + responses: + '200': + description: Successful response + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records for this digest + and organization + type: integer + examples: + - 3 + deployment_records: + type: array + items: + "$ref": "#/components/schemas/artifact-deployment-record" + examples: + default: + "$ref": "#/components/examples/artifact-deployment-record-list" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": get: summary: List artifact storage records @@ -81122,6 +81433,49 @@ components: - created_at - updated_at - visibility + artifact-deployment-record: + title: Artifact Deployment Record + description: Artifact Metadata Deployment Record + type: object + properties: + id: + type: integer + digest: + type: string + logical_environment: + type: string + physical_environment: + type: string + cluster: + type: string + deployment_name: + type: string + tags: + type: object + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + created_at: + type: string + updated_at: + type: string + attestation_id: + type: + - integer + - 'null' + description: The ID of the provenance attestation associated with the deployment + record. campaign-state: title: Campaign state description: Indicates whether a campaign is open or closed @@ -84720,8 +85074,6 @@ components: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -84779,8 +85131,6 @@ components: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -92215,6 +92565,7 @@ components: type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -215271,6 +215622,21 @@ components: updated_at: '2020-01-10T14:59:22Z' visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/USERNAME/repositories + artifact-deployment-record-list: + value: + total_count: 1 + deployment_records: + - id: 123 + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: prod-deployment + tags: + data: sensitive + created: '2011-01-26T19:14:43Z' + updated_at: '2011-01-26T19:14:43Z' + attestation_id: 456 bulk-subject-digest-body: value: subject_digests: @@ -235686,21 +236052,18 @@ components: url: https://twitter.com/github ssh-signing-key-items: value: - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 - id: 2 - url: https://api.github.com/user/keys/2 + - id: 2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 - id: 3 - url: https://api.github.com/user/keys/3 + - id: 3 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' ssh-signing-key: value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 - url: https://api.github.com/user/keys/2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' starred-repository-items-alternative-response-with-star-creation-timestamps: @@ -238258,6 +238621,16 @@ components: required: true schema: type: string + subject-digest: + name: subject_digest + description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. + in: path + required: true + schema: + type: string + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" tool-name: name: tool_name description: The name of a code scanning tool. Only results by this tool will diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index 93a3798c4..c48f7c9cd 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -13312,6 +13312,359 @@ } } }, + "/orgs/{org}/artifacts/metadata/deployment-record": { + "post": { + "summary": "Create an artifact deployment record", + "description": "Create or update deployment records for an artifact associated with an organization.\nThis endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment.", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-artifact-deployment-record", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "examples": [ + "libfoo" + ] + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The status of the artifact. Can be either deployed or decommissioned.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "cluster": { + "type": "string", + "description": "The deployment cluster." + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment." + }, + "tags": { + "type": "object", + "description": "The tags associated with the deployment.", + "additionalProperties": { + "type": "string" + }, + "maxProperties": 5 + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + } + }, + "required": [ + "name", + "digest", + "status", + "logical_environment", + "deployment_name" + ] + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "data-access": "sensitive" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/artifact-deployment-record" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/artifact-deployment-record-list" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": { + "post": { + "summary": "Set cluster deployment records", + "description": "Set deployment records for a given cluster.", + "tags": [ + "orgs" + ], + "operationId": "orgs/set-cluster-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "name": "cluster", + "in": "path", + "description": "The cluster name.", + "required": true, + "schema": { + "type": "string", + "minLength": 1, + "maxLength": 64, + "pattern": "^[a-zA-Z0-9._-]+$" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "deployments": { + "type": "array", + "description": "The list of deployments to record.", + "items": { + "type": "object", + "maxLength": 100, + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "maxLength": 255 + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The deployment status of the artifact.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment.", + "minLength": 1, + "maxLength": 128 + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + }, + "tags": { + "type": "object", + "description": "Key-value pairs to tag the deployment record.", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "version": "2.1.0", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "runtime-risk": "sensitive-data" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/artifact-deployment-record" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/artifact-deployment-record-list" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/metadata/storage-record": { "post": { "summary": "Create artifact metadata storage record", @@ -13532,6 +13885,66 @@ } } }, + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": { + "get": { + "summary": "List artifact deployment records", + "description": "List deployment records for an artifact metadata associated with an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-artifact-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/subject-digest" + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records for this digest and organization", + "type": "integer", + "examples": [ + 3 + ] + }, + "deployment_records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/artifact-deployment-record" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/artifact-deployment-record-list" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": { "get": { "summary": "List artifact storage records", @@ -112069,6 +112482,65 @@ "visibility" ] }, + "artifact-deployment-record": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + }, "campaign-state": { "title": "Campaign state", "description": "Indicates whether a campaign is open or closed", @@ -116811,10 +117283,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -116892,10 +117362,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -127126,6 +127594,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -291826,6 +292295,27 @@ "selected_repositories_url": "https://api.github.com/orgs/octo-org/actions/variables/USERNAME/repositories" } }, + "artifact-deployment-record-list": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + }, "bulk-subject-digest-body": { "value": { "subject_digests": [ @@ -315557,16 +316047,14 @@ "ssh-signing-key-items": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -315574,9 +316062,8 @@ }, "ssh-signing-key": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -318494,6 +318981,18 @@ "type": "string" } }, + "subject-digest": { + "name": "subject_digest", + "description": "The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`.", + "in": "path", + "required": true, + "schema": { + "type": "string", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + } + }, "tool-name": { "name": "tool_name", "description": "The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both.", diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 7733ece28..7a4e676a0 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -9588,6 +9588,277 @@ paths: enabledForGitHubApps: true category: actions subcategory: variables + "/orgs/{org}/artifacts/metadata/deployment-record": + post: + summary: Create an artifact deployment record + description: |- + Create or update deployment records for an artifact associated with an organization. + This endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment. + tags: + - orgs + operationId: orgs/create-artifact-deployment-record + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + examples: + - libfoo + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The status of the artifact. Can be either deployed + or decommissioned. + enum: + - deployed + - decommissioned + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + cluster: + type: string + description: The deployment cluster. + deployment_name: + type: string + description: The name of the deployment. + tags: + type: object + description: The tags associated with the deployment. + additionalProperties: + type: string + maxProperties: 5 + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + required: + - name + - digest + - status + - logical_environment + - deployment_name + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + data-access: sensitive + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: + "$ref": "#/components/schemas/artifact-deployment-record" + examples: + default: + "$ref": "#/components/examples/artifact-deployment-record-list" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": + post: + summary: Set cluster deployment records + description: Set deployment records for a given cluster. + tags: + - orgs + operationId: orgs/set-cluster-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records + parameters: + - "$ref": "#/components/parameters/org" + - name: cluster + in: path + description: The cluster name. + required: true + schema: + type: string + minLength: 1 + maxLength: 64 + pattern: "^[a-zA-Z0-9._-]+$" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + deployments: + type: array + description: The list of deployments to record. + items: + type: object + maxLength: 100 + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + maxLength: 255 + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The deployment status of the artifact. + enum: + - deployed + - decommissioned + deployment_name: + type: string + description: The name of the deployment. + minLength: 1 + maxLength: 128 + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + tags: + type: object + description: Key-value pairs to tag the deployment record. + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + version: 2.1.0 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + runtime-risk: sensitive-data + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: + "$ref": "#/components/schemas/artifact-deployment-record" + examples: + default: + "$ref": "#/components/examples/artifact-deployment-record-list" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/metadata/storage-record": post: summary: Create artifact metadata storage record @@ -9753,6 +10024,46 @@ paths: enabledForGitHubApps: true category: orgs subcategory: artifact-metadata + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": + get: + summary: List artifact deployment records + description: List deployment records for an artifact metadata associated with + an organization. + tags: + - orgs + operationId: orgs/list-artifact-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/subject-digest" + responses: + '200': + description: Successful response + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records for this digest + and organization + type: integer + examples: + - 3 + deployment_records: + type: array + items: + "$ref": "#/components/schemas/artifact-deployment-record" + examples: + default: + "$ref": "#/components/examples/artifact-deployment-record-list" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": get: summary: List artifact storage records @@ -81122,6 +81433,49 @@ components: - created_at - updated_at - visibility + artifact-deployment-record: + title: Artifact Deployment Record + description: Artifact Metadata Deployment Record + type: object + properties: + id: + type: integer + digest: + type: string + logical_environment: + type: string + physical_environment: + type: string + cluster: + type: string + deployment_name: + type: string + tags: + type: object + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + created_at: + type: string + updated_at: + type: string + attestation_id: + type: + - integer + - 'null' + description: The ID of the provenance attestation associated with the deployment + record. campaign-state: title: Campaign state description: Indicates whether a campaign is open or closed @@ -84720,8 +85074,6 @@ components: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -84779,8 +85131,6 @@ components: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -92215,6 +92565,7 @@ components: type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -215271,6 +215622,21 @@ components: updated_at: '2020-01-10T14:59:22Z' visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/USERNAME/repositories + artifact-deployment-record-list: + value: + total_count: 1 + deployment_records: + - id: 123 + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: prod-deployment + tags: + data: sensitive + created: '2011-01-26T19:14:43Z' + updated_at: '2011-01-26T19:14:43Z' + attestation_id: 456 bulk-subject-digest-body: value: subject_digests: @@ -235686,21 +236052,18 @@ components: url: https://twitter.com/github ssh-signing-key-items: value: - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 - id: 2 - url: https://api.github.com/user/keys/2 + - id: 2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 - id: 3 - url: https://api.github.com/user/keys/3 + - id: 3 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' ssh-signing-key: value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 - url: https://api.github.com/user/keys/2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' starred-repository-items-alternative-response-with-star-creation-timestamps: @@ -238258,6 +238621,16 @@ components: required: true schema: type: string + subject-digest: + name: subject_digest + description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. + in: path + required: true + schema: + type: string + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" tool-name: name: tool_name description: The name of a code scanning tool. Only results by this tool will diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 421cf1b7a..6a9d52649 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -84147,6 +84147,519 @@ } } }, + "/orgs/{org}/artifacts/metadata/deployment-record": { + "post": { + "summary": "Create an artifact deployment record", + "description": "Create or update deployment records for an artifact associated with an organization.\nThis endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment.", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-artifact-deployment-record", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "examples": [ + "libfoo" + ] + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The status of the artifact. Can be either deployed or decommissioned.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "cluster": { + "type": "string", + "description": "The deployment cluster." + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment." + }, + "tags": { + "type": "object", + "description": "The tags associated with the deployment.", + "additionalProperties": { + "type": "string" + }, + "maxProperties": 5 + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + } + }, + "required": [ + "name", + "digest", + "status", + "logical_environment", + "deployment_name" + ] + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "data-access": "sensitive" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": { + "post": { + "summary": "Set cluster deployment records", + "description": "Set deployment records for a given cluster.", + "tags": [ + "orgs" + ], + "operationId": "orgs/set-cluster-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "cluster", + "in": "path", + "description": "The cluster name.", + "required": true, + "schema": { + "type": "string", + "minLength": 1, + "maxLength": 64, + "pattern": "^[a-zA-Z0-9._-]+$" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "deployments": { + "type": "array", + "description": "The list of deployments to record.", + "items": { + "type": "object", + "maxLength": 100, + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "maxLength": 255 + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The deployment status of the artifact.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment.", + "minLength": 1, + "maxLength": 128 + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + }, + "tags": { + "type": "object", + "description": "Key-value pairs to tag the deployment record.", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "version": "2.1.0", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "runtime-risk": "sensitive-data" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/metadata/storage-record": { "post": { "summary": "Create artifact metadata storage record", @@ -84373,6 +84886,155 @@ } } }, + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": { + "get": { + "summary": "List artifact deployment records", + "description": "List deployment records for an artifact metadata associated with an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-artifact-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "subject_digest", + "description": "The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`.", + "in": "path", + "required": true, + "schema": { + "type": "string", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + } + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records for this digest and organization", + "type": "integer", + "examples": [ + 3 + ] + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": { "get": { "summary": "List artifact storage records", @@ -174449,10 +175111,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -174679,10 +175339,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -174827,10 +175485,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -175063,10 +175719,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -175259,10 +175913,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -175381,10 +176033,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -303049,6 +303699,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -303883,6 +304534,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -305718,6 +306370,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -665206,16 +665859,14 @@ "default": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -665404,9 +666055,8 @@ "examples": { "default": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -665637,9 +666287,8 @@ "examples": { "default": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -729001,16 +729650,14 @@ "default": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -790280,10 +790927,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -791369,10 +792014,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -791958,10 +792601,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 423c1f8ef..d2a50e96d 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -907,7 +907,7 @@ paths: - subscriptions_url - type - url - type: &287 + type: &289 type: string description: The type of credit the user is receiving. enum: @@ -1073,7 +1073,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &611 + - &613 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1658,7 +1658,7 @@ paths: schema: type: integer default: 30 - - &184 + - &186 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1674,7 +1674,7 @@ paths: application/json: schema: type: array - items: &185 + items: &187 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1770,7 +1770,7 @@ paths: - installation_id - repository_id examples: - default: &186 + default: &188 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1905,7 +1905,7 @@ paths: description: Response content: application/json: - schema: &187 + schema: &189 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2040,7 +2040,7 @@ paths: - request - response examples: - default: &188 + default: &190 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -7757,7 +7757,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &162 + code_scanning_options: &164 type: - object - 'null' @@ -7955,7 +7955,7 @@ paths: description: Response content: application/json: - schema: &164 + schema: &166 type: array description: A list of default code security configurations items: @@ -7971,7 +7971,7 @@ paths: default configuration: *41 examples: - default: &165 + default: &167 value: - default_for_new_repos: public configuration: @@ -8302,7 +8302,7 @@ paths: - *40 - *43 responses: - '204': &166 + '204': &168 description: A header with no content is returned. '400': *14 '403': *27 @@ -8429,7 +8429,7 @@ paths: default: value: default_for_new_repos: all - configuration: &163 + configuration: &165 value: id: 1325 target_type: organization @@ -8514,7 +8514,7 @@ paths: application/json: schema: type: array - items: &167 + items: &169 type: object description: Repositories associated with a code security configuration and attachment status @@ -8859,7 +8859,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &168 + repository: &170 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8953,7 +8953,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &171 + - &173 name: state in: query description: |- @@ -8962,7 +8962,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &172 + - &174 name: severity in: query description: |- @@ -8971,7 +8971,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &173 + - &175 name: ecosystem in: query description: |- @@ -8980,14 +8980,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &174 + - &176 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &175 + - &177 name: epss_percentage in: query description: |- @@ -8999,7 +8999,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &452 + - &454 name: has in: query description: |- @@ -9013,7 +9013,7 @@ paths: type: string enum: - patch - - &176 + - &178 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9023,7 +9023,7 @@ paths: enum: - development - runtime - - &177 + - &179 name: sort in: query description: |- @@ -9049,11 +9049,11 @@ paths: application/json: schema: type: array - items: &178 + items: &180 type: object description: A Dependabot alert. properties: - number: &152 + number: &154 type: integer description: The security alert number. readOnly: true @@ -9119,7 +9119,7 @@ paths: - direct - transitive - - security_advisory: &453 + security_advisory: &455 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9326,29 +9326,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *50 - url: &155 + url: &157 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &156 + html_url: &158 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &153 + created_at: &155 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &154 + updated_at: &156 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &158 + dismissed_at: &160 type: - string - 'null' @@ -9379,7 +9379,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: &157 + fixed_at: &159 type: - string - 'null' @@ -9387,7 +9387,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &454 + auto_dismissed_at: &456 type: - string - 'null' @@ -9414,7 +9414,7 @@ paths: - repository additionalProperties: false examples: - default: &179 + default: &181 value: - number: 2 state: dismissed @@ -10827,7 +10827,7 @@ paths: milestone: anyOf: - type: 'null' - - &242 + - &244 title: Milestone description: A collection of related issues and pull requests. @@ -10999,7 +10999,7 @@ paths: timeline_url: type: string format: uri - type: &206 + type: &208 title: Issue Type description: The type of issue. type: @@ -11108,7 +11108,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &623 + sub_issues_summary: &625 title: Sub-issues Summary type: object properties: @@ -11129,7 +11129,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &624 + issue_dependencies_summary: &626 title: Issue Dependencies Summary type: object properties: @@ -11148,7 +11148,7 @@ paths: - total_blocking issue_field_values: type: array - items: &625 + items: &627 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11243,7 +11243,7 @@ paths: - user - created_at - updated_at - comment: &501 + comment: &503 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11821,7 +11821,7 @@ paths: url: type: string format: uri - user: &637 + user: &639 title: Public User description: Public User type: object @@ -13716,7 +13716,7 @@ paths: - closed - all default: open - - &209 + - &211 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -13767,7 +13767,7 @@ paths: type: array items: *78 examples: - default: &210 + default: &212 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15178,14 +15178,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &309 + - &311 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &310 + - &312 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -15247,7 +15247,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &316 + '301': &318 description: Moved permanently content: application/json: @@ -15269,7 +15269,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &530 + - &532 name: all description: If `true`, show notifications marked as read. in: query @@ -15277,7 +15277,7 @@ paths: schema: type: boolean default: false - - &531 + - &533 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -15287,7 +15287,7 @@ paths: type: boolean default: false - *68 - - &532 + - &534 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: @@ -15658,7 +15658,7 @@ paths: type: boolean examples: - false - security_and_analysis: &255 + security_and_analysis: &257 type: - object - 'null' @@ -15823,7 +15823,7 @@ paths: - url - subscription_url examples: - default: &533 + default: &535 value: - id: '1' repository: @@ -16702,7 +16702,7 @@ paths: - property_name - value examples: - default: &539 + default: &541 value: - property_name: environment value: production @@ -16752,7 +16752,7 @@ paths: required: - properties examples: - default: &540 + default: &542 value: properties: - property_name: environment @@ -17310,7 +17310,7 @@ paths: required: false schema: type: string - - &679 + - &681 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -17456,7 +17456,7 @@ paths: parameters: - *61 - *99 - - &682 + - &684 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 @@ -17568,7 +17568,7 @@ paths: - *99 - *101 - *100 - - &683 + - &685 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -17576,7 +17576,7 @@ paths: schema: type: string - *102 - - &684 + - &686 name: sku description: The SKU to query for usage. in: query @@ -18555,7 +18555,7 @@ paths: type: integer repository_cache_usages: type: array - items: &321 + items: &323 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19793,7 +19793,7 @@ paths: - all - local_only - selected - selected_actions_url: &327 + selected_actions_url: &329 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -19876,7 +19876,7 @@ paths: description: Response content: application/json: - schema: &331 + schema: &333 type: object properties: days: @@ -19918,7 +19918,7 @@ paths: required: true content: application/json: - schema: &332 + schema: &334 type: object properties: days: @@ -19975,7 +19975,7 @@ paths: required: - approval_policy examples: - default: &333 + default: &335 value: approval_policy: first_time_contributors '404': *6 @@ -20034,7 +20034,7 @@ paths: description: Response content: application/json: - schema: &334 + schema: &336 type: object required: - run_workflows_from_fork_pull_requests @@ -20088,7 +20088,7 @@ paths: required: true content: application/json: - schema: &335 + schema: &337 type: object required: - run_workflows_from_fork_pull_requests @@ -20723,7 +20723,7 @@ paths: description: Response content: application/json: - schema: &336 + schema: &338 type: object properties: default_workflow_permissions: &129 @@ -20774,7 +20774,7 @@ paths: required: false content: application/json: - schema: &337 + schema: &339 type: object properties: default_workflow_permissions: *129 @@ -21267,7 +21267,7 @@ paths: type: array items: *136 examples: - default: &640 + default: &642 value: total_count: 1 repositories: @@ -21914,7 +21914,7 @@ paths: application/json: schema: type: array - items: &338 + items: &340 title: Runner Application description: Runner Application type: object @@ -21939,7 +21939,7 @@ paths: - download_url - filename examples: - default: &339 + default: &341 value: - os: osx architecture: x64 @@ -22025,7 +22025,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &340 + '201': &342 description: Response content: application/json: @@ -22140,7 +22140,7 @@ paths: - token - expires_at examples: - default: &341 + default: &343 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -22179,7 +22179,7 @@ paths: application/json: schema: *140 examples: - default: &342 + default: &344 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -22213,7 +22213,7 @@ paths: application/json: schema: *138 examples: - default: &343 + default: &345 value: id: 23 name: MBP @@ -22439,7 +22439,7 @@ paths: - *61 - *137 responses: - '200': &344 + '200': &346 description: Response content: application/json: @@ -22496,7 +22496,7 @@ paths: parameters: - *61 - *137 - - &345 + - &347 name: name description: The name of a self-hosted runner's custom label. in: path @@ -22628,7 +22628,7 @@ paths: description: Response content: application/json: - schema: &357 + schema: &359 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -22663,7 +22663,7 @@ paths: - key_id - key examples: - default: &358 + default: &360 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23076,7 +23076,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *61 - - &326 + - &328 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -23546,6 +23546,330 @@ paths: enabledForGitHubApps: true category: actions subcategory: variables + "/orgs/{org}/artifacts/metadata/deployment-record": + post: + summary: Create an artifact deployment record + description: |- + Create or update deployment records for an artifact associated with an organization. + This endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment. + tags: + - orgs + operationId: orgs/create-artifact-deployment-record + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record + parameters: + - *61 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + examples: + - libfoo + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The status of the artifact. Can be either deployed + or decommissioned. + enum: + - deployed + - decommissioned + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + cluster: + type: string + description: The deployment cluster. + deployment_name: + type: string + description: The name of the deployment. + tags: + type: object + description: The tags associated with the deployment. + additionalProperties: + type: string + maxProperties: 5 + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + required: + - name + - digest + - status + - logical_environment + - deployment_name + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + data-access: sensitive + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: &149 + title: Artifact Deployment Record + description: Artifact Metadata Deployment Record + type: object + properties: + id: + type: integer + digest: + type: string + logical_environment: + type: string + physical_environment: + type: string + cluster: + type: string + deployment_name: + type: string + tags: + type: object + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the + deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + created_at: + type: string + updated_at: + type: string + attestation_id: + type: + - integer + - 'null' + description: The ID of the provenance attestation associated + with the deployment record. + examples: + default: &150 + value: + total_count: 1 + deployment_records: + - id: 123 + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: prod-deployment + tags: + data: sensitive + created: '2011-01-26T19:14:43Z' + updated_at: '2011-01-26T19:14:43Z' + attestation_id: 456 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": + post: + summary: Set cluster deployment records + description: Set deployment records for a given cluster. + tags: + - orgs + operationId: orgs/set-cluster-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records + parameters: + - *61 + - name: cluster + in: path + description: The cluster name. + required: true + schema: + type: string + minLength: 1 + maxLength: 64 + pattern: "^[a-zA-Z0-9._-]+$" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + deployments: + type: array + description: The list of deployments to record. + items: + type: object + maxLength: 100 + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + maxLength: 255 + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The deployment status of the artifact. + enum: + - deployed + - decommissioned + deployment_name: + type: string + description: The name of the deployment. + minLength: 1 + maxLength: 128 + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + tags: + type: object + description: Key-value pairs to tag the deployment record. + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + version: 2.1.0 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + runtime-risk: sensitive-data + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: *149 + examples: + default: *150 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/metadata/storage-record": post: summary: Create artifact metadata storage record @@ -23711,6 +24035,52 @@ paths: enabledForGitHubApps: true category: orgs subcategory: artifact-metadata + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": + get: + summary: List artifact deployment records + description: List deployment records for an artifact metadata associated with + an organization. + tags: + - orgs + operationId: orgs/list-artifact-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records + parameters: + - *61 + - name: subject_digest + description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. + in: path + required: true + schema: + type: string + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + responses: + '200': + description: Successful response + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records for this digest + and organization + type: integer + examples: + - 3 + deployment_records: + type: array + items: *149 + examples: + default: *150 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": get: summary: List artifact storage records @@ -23835,12 +24205,12 @@ paths: required: - subject_digests examples: - default: &667 + default: &669 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &668 + withPredicateType: &670 value: subject_digests: - sha256:abc123 @@ -23899,7 +24269,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &669 + default: &671 value: attestations_subject_digests: - sha256:abc: @@ -24248,7 +24618,7 @@ paths: initiator: type: string examples: - default: &371 + default: &373 value: attestations: - bundle: @@ -24467,7 +24837,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &149 + schema: &151 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -24493,7 +24863,7 @@ paths: application/json: schema: type: array - items: &150 + items: &152 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -24524,7 +24894,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &170 + items: &172 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -24601,7 +24971,7 @@ paths: parent: anyOf: - type: 'null' - - &221 + - &223 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -24737,7 +25107,7 @@ paths: - string - 'null' format: date-time - state: *149 + state: *151 contact_link: description: The contact link of the campaign. type: @@ -24960,9 +25330,9 @@ paths: description: Response content: application/json: - schema: *150 + schema: *152 examples: - default: &151 + default: &153 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -25045,9 +25415,9 @@ paths: description: Response content: application/json: - schema: *150 + schema: *152 examples: - default: *151 + default: *153 '404': *6 '422': description: Unprocessable Entity @@ -25125,7 +25495,7 @@ paths: - string - 'null' format: uri - state: *149 + state: *151 examples: default: value: @@ -25135,9 +25505,9 @@ paths: description: Response content: application/json: - schema: *150 + schema: *152 examples: - default: *151 + default: *153 '400': description: Bad Request content: @@ -25204,17 +25574,17 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *61 - - &396 + - &398 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both. in: query required: false - schema: &159 + schema: &161 type: string description: The name of the tool used to generate the code scanning analysis. - - &397 + - &399 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -25222,7 +25592,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &160 + schema: &162 type: - string - 'null' @@ -25238,7 +25608,7 @@ paths: be returned. in: query required: false - schema: &399 + schema: &401 type: string description: State of a code scanning alert. enum: @@ -25261,7 +25631,7 @@ paths: be returned. in: query required: false - schema: &400 + schema: &402 type: string description: Severity of a code scanning alert. enum: @@ -25282,18 +25652,18 @@ paths: items: type: object properties: - number: *152 - created_at: *153 - updated_at: *154 - url: *155 - html_url: *156 - instances_url: &401 + number: *154 + created_at: *155 + updated_at: *156 + url: *157 + html_url: *158 + instances_url: &403 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &161 + state: &163 type: - string - 'null' @@ -25303,13 +25673,13 @@ paths: - dismissed - fixed - - fixed_at: *157 + fixed_at: *159 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *158 - dismissed_reason: &402 + dismissed_at: *160 + dismissed_reason: &404 type: - string - 'null' @@ -25320,14 +25690,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &403 + dismissed_comment: &405 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &404 + rule: &406 type: object properties: id: @@ -25388,26 +25758,26 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &405 + tool: &407 type: object properties: - name: *159 + name: *161 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *160 - most_recent_instance: &406 + guid: *162 + most_recent_instance: &408 type: object properties: - ref: &398 + ref: &400 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &416 + analysis_key: &418 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -25418,13 +25788,13 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &417 + category: &419 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *161 + state: *163 commit_sha: type: string message: @@ -25930,7 +26300,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *162 + code_scanning_options: *164 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -26073,7 +26443,7 @@ paths: application/json: schema: *41 examples: - default: *163 + default: *165 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26101,9 +26471,9 @@ paths: description: Response content: application/json: - schema: *164 + schema: *166 examples: - default: *165 + default: *167 '304': *35 '403': *27 '404': *6 @@ -26155,7 +26525,7 @@ paths: - 32 - 91 responses: - '204': *166 + '204': *168 '400': *14 '403': *27 '404': *6 @@ -26190,7 +26560,7 @@ paths: application/json: schema: *41 examples: - default: *163 + default: *165 '304': *35 '403': *27 '404': *6 @@ -26474,7 +26844,7 @@ paths: - *61 - *43 responses: - '204': *166 + '204': *168 '400': *14 '403': *27 '404': *6 @@ -26612,7 +26982,7 @@ paths: default: value: default_for_new_repos: all - configuration: *163 + configuration: *165 '403': *27 '404': *6 x-github: @@ -26665,13 +27035,13 @@ paths: application/json: schema: type: array - items: *167 + items: *169 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *168 + repository: *170 '403': *27 '404': *6 x-github: @@ -26711,7 +27081,7 @@ paths: type: integer codespaces: type: array - items: &211 + items: &213 type: object title: Codespace description: A codespace. @@ -26746,7 +27116,7 @@ paths: machine: anyOf: - type: 'null' - - &429 + - &431 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -27033,7 +27403,7 @@ paths: - pulls_url - recent_folders examples: - default: &212 + default: &214 value: total_count: 3 codespaces: @@ -27657,7 +28027,7 @@ paths: type: integer secrets: type: array - items: &169 + items: &171 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -27698,7 +28068,7 @@ paths: - updated_at - visibility examples: - default: &430 + default: &432 value: total_count: 2 secrets: @@ -27736,7 +28106,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &433 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -27771,7 +28141,7 @@ paths: - key_id - key examples: - default: &432 + default: &434 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27801,9 +28171,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *171 examples: - default: &434 + default: &436 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -28270,7 +28640,7 @@ paths: currently being billed. seats: type: array - items: &214 + items: &216 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -28288,7 +28658,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *170 + - *172 - *53 type: - 'null' @@ -28801,7 +29171,7 @@ paths: application/json: schema: type: array - items: &291 + items: &293 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -29116,7 +29486,7 @@ paths: - date additionalProperties: true examples: - default: &292 + default: &294 value: - date: '2024-06-24' total_active_users: 24 @@ -29218,7 +29588,7 @@ paths: '500': *96 '403': *27 '404': *6 - '422': &293 + '422': &295 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -29246,11 +29616,11 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *61 - - *171 - - *172 - *173 - *174 - *175 + - *176 + - *177 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -29288,8 +29658,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *176 - - *177 + - *178 + - *179 - *46 - *38 - *39 @@ -29301,9 +29671,9 @@ paths: application/json: schema: type: array - items: *178 + items: *180 examples: - default: *179 + default: *181 '304': *35 '400': *14 '403': *27 @@ -29347,7 +29717,7 @@ paths: type: integer secrets: type: array - items: &180 + items: &182 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -29426,7 +29796,7 @@ paths: description: Response content: application/json: - schema: &457 + schema: &459 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -29445,7 +29815,7 @@ paths: - key_id - key examples: - default: &458 + default: &460 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29475,7 +29845,7 @@ paths: description: Response content: application/json: - schema: *180 + schema: *182 examples: default: value: @@ -29776,7 +30146,7 @@ paths: application/json: schema: type: array - items: &223 + items: &225 title: Package description: A software package type: object @@ -29847,7 +30217,7 @@ paths: - created_at - updated_at examples: - default: &224 + default: &226 value: - id: 197 name: hello_docker @@ -30017,7 +30387,7 @@ paths: application/json: schema: type: array - items: &203 + items: &205 title: Organization Invitation description: Organization Invitation type: object @@ -30071,7 +30441,7 @@ paths: - invitation_teams_url - node_id examples: - default: &204 + default: &206 value: - id: 1 login: monalisa @@ -30138,7 +30508,7 @@ paths: application/json: schema: type: array - items: &181 + items: &183 title: Org Hook description: Org Hook type: object @@ -30323,9 +30693,9 @@ paths: description: Response content: application/json: - schema: *181 + schema: *183 examples: - default: &182 + default: &184 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -30373,7 +30743,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *61 - - &183 + - &185 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -30386,9 +30756,9 @@ paths: description: Response content: application/json: - schema: *181 + schema: *183 examples: - default: *182 + default: *184 '404': *6 x-github: githubCloudOnly: false @@ -30416,7 +30786,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *61 - - *183 + - *185 requestBody: required: false content: @@ -30462,7 +30832,7 @@ paths: description: Response content: application/json: - schema: *181 + schema: *183 examples: default: value: @@ -30504,7 +30874,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *61 - - *183 + - *185 responses: '204': description: Response @@ -30532,7 +30902,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *61 - - *183 + - *185 responses: '200': description: Response @@ -30563,7 +30933,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *61 - - *183 + - *185 requestBody: required: false content: @@ -30614,9 +30984,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *61 - - *183 + - *185 - *17 - - *184 + - *186 responses: '200': description: Response @@ -30624,9 +30994,9 @@ paths: application/json: schema: type: array - items: *185 + items: *187 examples: - default: *186 + default: *188 '400': *14 '422': *15 x-github: @@ -30652,16 +31022,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *61 - - *183 + - *185 - *16 responses: '200': description: Response content: application/json: - schema: *187 + schema: *189 examples: - default: *188 + default: *190 '400': *14 '422': *15 x-github: @@ -30687,7 +31057,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *61 - - *183 + - *185 - *16 responses: '202': *37 @@ -30717,7 +31087,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *61 - - *183 + - *185 responses: '204': description: Response @@ -30740,7 +31110,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *61 - - &193 + - &195 name: actor_type in: path description: The type of the actor @@ -30753,14 +31123,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &194 + - &196 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &189 + - &191 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -30768,7 +31138,7 @@ paths: required: true schema: type: string - - &190 + - &192 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -30863,12 +31233,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *61 - - *189 - - *190 + - *191 + - *192 - *19 - *17 - *46 - - &199 + - &201 name: sort description: The property to sort the results by. in: query @@ -30948,14 +31318,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *61 - - *189 - - *190 + - *191 + - *192 responses: '200': description: Response content: application/json: - schema: &191 + schema: &193 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -30971,7 +31341,7 @@ paths: type: integer format: int64 examples: - default: &192 + default: &194 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -30992,23 +31362,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *61 - - &195 + - &197 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *189 - - *190 + - *191 + - *192 responses: '200': description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *192 + default: *194 x-github: enabledForGitHubApps: true category: orgs @@ -31027,18 +31397,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *61 - - *189 - - *190 - - *193 - - *194 + - *191 + - *192 + - *195 + - *196 responses: '200': description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *192 + default: *194 x-github: enabledForGitHubApps: true category: orgs @@ -31056,9 +31426,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *61 - - *189 - - *190 - - &196 + - *191 + - *192 + - &198 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -31071,7 +31441,7 @@ paths: description: Response content: application/json: - schema: &197 + schema: &199 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -31087,7 +31457,7 @@ paths: type: integer format: int64 examples: - default: &198 + default: &200 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -31124,18 +31494,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *61 - - *195 - - *189 - - *190 - - *196 + - *197 + - *191 + - *192 + - *198 responses: '200': description: Response content: application/json: - schema: *197 + schema: *199 examples: - default: *198 + default: *200 x-github: enabledForGitHubApps: true category: orgs @@ -31153,19 +31523,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *61 - - *193 - - *194 - - *189 - - *190 + - *195 - *196 + - *191 + - *192 + - *198 responses: '200': description: Response content: application/json: - schema: *197 + schema: *199 examples: - default: *198 + default: *200 x-github: enabledForGitHubApps: true category: orgs @@ -31183,13 +31553,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *61 - - *195 - - *189 - - *190 + - *197 + - *191 + - *192 - *19 - *17 - *46 - - *199 + - *201 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -31273,7 +31643,7 @@ paths: application/json: schema: *20 examples: - default: &496 + default: &498 value: id: 1 account: @@ -31439,12 +31809,12 @@ paths: application/json: schema: anyOf: - - &201 + - &203 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &200 + limit: &202 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -31472,7 +31842,7 @@ paths: properties: {} additionalProperties: false examples: - default: &202 + default: &204 value: limit: collaborators_only origin: organization @@ -31501,13 +31871,13 @@ paths: required: true content: application/json: - schema: &497 + schema: &499 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *200 + limit: *202 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -31532,9 +31902,9 @@ paths: description: Response content: application/json: - schema: *201 + schema: *203 examples: - default: *202 + default: *204 '422': *15 x-github: githubCloudOnly: false @@ -31610,9 +31980,9 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 headers: Link: *52 '404': *6 @@ -31689,7 +32059,7 @@ paths: description: Response content: application/json: - schema: *203 + schema: *205 examples: default: value: @@ -31744,7 +32114,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *61 - - &205 + - &207 name: invitation_id description: The unique identifier of the invitation. in: path @@ -31775,7 +32145,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *61 - - *205 + - *207 - *17 - *19 responses: @@ -31785,9 +32155,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: &222 + default: &224 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -31830,7 +32200,7 @@ paths: application/json: schema: type: array - items: *206 + items: *208 examples: default: value: @@ -31918,9 +32288,9 @@ paths: description: Response content: application/json: - schema: *206 + schema: *208 examples: - default: &207 + default: &209 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -31953,7 +32323,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *61 - - &208 + - &210 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -32009,9 +32379,9 @@ paths: description: Response content: application/json: - schema: *206 + schema: *208 examples: - default: *207 + default: *209 '404': *6 '422': *7 x-github: @@ -32036,7 +32406,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *61 - - *208 + - *210 responses: '204': description: Response @@ -32099,7 +32469,7 @@ paths: - closed - all default: open - - *209 + - *211 - name: type description: Can be the name of an issue type. in: query @@ -32130,7 +32500,7 @@ paths: type: array items: *78 examples: - default: *210 + default: *212 headers: Link: *52 '404': *6 @@ -32289,9 +32659,9 @@ paths: type: integer codespaces: type: array - items: *211 + items: *213 examples: - default: *212 + default: *214 '304': *35 '500': *96 '401': *23 @@ -32318,7 +32688,7 @@ paths: parameters: - *61 - *57 - - &213 + - &215 name: codespace_name in: path required: true @@ -32353,15 +32723,15 @@ paths: parameters: - *61 - *57 - - *213 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *213 examples: - default: &428 + default: &430 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -32541,7 +32911,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *214 + schema: *216 examples: default: value: @@ -32617,7 +32987,7 @@ paths: description: Response content: application/json: - schema: &215 + schema: &217 title: Org Membership description: Org Membership type: object @@ -32686,7 +33056,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &216 + response-if-user-has-an-active-admin-membership-with-organization: &218 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -32783,9 +33153,9 @@ paths: description: Response content: application/json: - schema: *215 + schema: *217 examples: - response-if-user-already-had-membership-with-organization: *216 + response-if-user-already-had-membership-with-organization: *218 '422': *15 '403': *27 x-github: @@ -32857,7 +33227,7 @@ paths: application/json: schema: type: array - items: &217 + items: &219 title: Migration description: A migration. type: object @@ -33195,7 +33565,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: default: value: @@ -33374,7 +33744,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *61 - - &218 + - &220 name: migration_id description: The unique identifier of the migration. in: path @@ -33402,7 +33772,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *217 + schema: *219 examples: default: value: @@ -33572,7 +33942,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *61 - - *218 + - *220 responses: '302': description: Response @@ -33594,7 +33964,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *61 - - *218 + - *220 responses: '204': description: Response @@ -33618,8 +33988,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *61 - - *218 - - &652 + - *220 + - &654 name: repo_name description: repo_name parameter in: path @@ -33647,7 +34017,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *61 - - *218 + - *220 - *17 - *19 responses: @@ -33659,7 +34029,7 @@ paths: type: array items: *136 examples: - default: &229 + default: &231 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -33812,7 +34182,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &220 + items: &222 title: Organization Role description: Organization roles type: object @@ -33989,7 +34359,7 @@ paths: parameters: - *61 - *62 - - &219 + - &221 name: role_id description: The unique identifier of the role. in: path @@ -34026,7 +34396,7 @@ paths: parameters: - *61 - *62 - - *219 + - *221 responses: '204': description: Response @@ -34079,7 +34449,7 @@ paths: parameters: - *61 - *57 - - *219 + - *221 responses: '204': description: Response @@ -34111,7 +34481,7 @@ paths: parameters: - *61 - *57 - - *219 + - *221 responses: '204': description: Response @@ -34140,13 +34510,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *61 - - *219 + - *221 responses: '200': description: Response content: application/json: - schema: *220 + schema: *222 examples: default: value: @@ -34197,7 +34567,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *61 - - *219 + - *221 - *17 - *19 responses: @@ -34276,7 +34646,7 @@ paths: parent: anyOf: - type: 'null' - - *221 + - *223 type: description: The ownership type of the team type: string @@ -34309,7 +34679,7 @@ paths: - type - parent examples: - default: *222 + default: *224 headers: Link: *52 '404': @@ -34339,7 +34709,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *61 - - *219 + - *221 - *17 - *19 responses: @@ -34368,7 +34738,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *221 + items: *223 name: type: - string @@ -34678,7 +35048,7 @@ paths: - nuget - container - *61 - - &653 + - &655 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -34714,12 +35084,12 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *224 + default: *226 '403': *27 '401': *23 - '400': &655 + '400': &657 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -34741,7 +35111,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &225 + - &227 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -34759,7 +35129,7 @@ paths: - docker - nuget - container - - &226 + - &228 name: package_name description: The name of the package. in: path @@ -34772,7 +35142,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *225 examples: default: value: @@ -34824,8 +35194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *225 - - *226 + - *227 + - *228 - *61 responses: '204': @@ -34858,8 +35228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *225 - - *226 + - *227 + - *228 - *61 - name: token description: package token @@ -34892,8 +35262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *225 - - *226 + - *227 + - *228 - *61 - *19 - *17 @@ -34914,7 +35284,7 @@ paths: application/json: schema: type: array - items: &227 + items: &229 title: Package Version description: A version of a software package type: object @@ -35049,10 +35419,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *225 - - *226 + - *227 + - *228 - *61 - - &228 + - &230 name: package_version_id description: Unique identifier of the package version. in: path @@ -35064,7 +35434,7 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: default: value: @@ -35100,10 +35470,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *225 - - *226 - - *61 + - *227 - *228 + - *61 + - *230 responses: '204': description: Response @@ -35135,10 +35505,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *225 - - *226 - - *61 + - *227 - *228 + - *61 + - *230 responses: '204': description: Response @@ -35168,7 +35538,7 @@ paths: - *61 - *17 - *19 - - &230 + - &232 name: sort description: The property by which to sort the results. in: query @@ -35179,7 +35549,7 @@ paths: - created_at default: created_at - *46 - - &231 + - &233 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -35191,7 +35561,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &232 + - &234 name: repository description: The name of the repository to use to filter the results. in: query @@ -35200,7 +35570,7 @@ paths: type: string examples: - Hello-World - - &233 + - &235 name: permission description: The permission to use to filter the results. in: query @@ -35209,7 +35579,7 @@ paths: type: string examples: - issues_read - - &234 + - &236 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -35219,7 +35589,7 @@ paths: schema: type: string format: date-time - - &235 + - &237 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -35229,7 +35599,7 @@ paths: schema: type: string format: date-time - - &236 + - &238 name: token_id description: The ID of the token in: query @@ -35505,7 +35875,7 @@ paths: '422': *15 '404': *6 '403': *27 - '204': *166 + '204': *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35548,7 +35918,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -35574,14 +35944,14 @@ paths: - *61 - *17 - *19 - - *230 - - *46 - - *231 - *232 + - *46 - *233 - *234 - *235 - *236 + - *237 + - *238 responses: '500': *96 '422': *15 @@ -35822,7 +36192,7 @@ paths: responses: '500': *96 '404': *6 - '204': *166 + '204': *168 '403': *27 '422': *15 x-github: @@ -35865,7 +36235,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -35907,7 +36277,7 @@ paths: type: integer configurations: type: array - items: &237 + items: &239 title: Organization private registry description: Private registry configuration for an organization type: object @@ -36203,7 +36573,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &238 + org-private-registry-with-selected-visibility: &240 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -36301,9 +36671,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *237 + schema: *239 examples: - default: *238 + default: *240 '404': *6 x-github: githubCloudOnly: false @@ -36471,7 +36841,7 @@ paths: application/json: schema: type: array - items: &239 + items: &241 title: Projects v2 Project description: A projects v2 project type: object @@ -36545,7 +36915,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &732 + - &734 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -36630,7 +37000,7 @@ paths: - deleted_at - deleted_by examples: - default: &240 + default: &242 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -36733,7 +37103,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &241 + - &243 name: project_number description: The project's number. in: path @@ -36746,9 +37116,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: - default: *240 + default: *242 headers: Link: *52 '304': *35 @@ -36771,7 +37141,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *61 - - *241 + - *243 requestBody: required: true description: Details of the draft item to create in the project. @@ -36805,7 +37175,7 @@ paths: description: Response content: application/json: - schema: &246 + schema: &248 title: Projects v2 Item description: An item belonging to a project type: object @@ -36819,7 +37189,7 @@ paths: content: oneOf: - *78 - - &441 + - &443 title: Pull Request Simple description: Pull Request Simple type: object @@ -36939,7 +37309,7 @@ paths: milestone: anyOf: - type: 'null' - - *242 + - *244 active_lock_reason: type: - string @@ -36994,7 +37364,7 @@ paths: type: - array - 'null' - items: *170 + items: *172 head: type: object properties: @@ -37038,7 +37408,7 @@ paths: _links: type: object properties: - comments: &243 + comments: &245 title: Link description: Hypermedia Link type: object @@ -37047,13 +37417,13 @@ paths: type: string required: - href - commits: *243 - statuses: *243 - html: *243 - issue: *243 - review_comments: *243 - review_comment: *243 - self: *243 + commits: *245 + statuses: *245 + html: *245 + issue: *245 + review_comments: *245 + review_comment: *245 + self: *245 required: - comments - commits @@ -37064,7 +37434,7 @@ paths: - review_comment - self author_association: *65 - auto_merge: &542 + auto_merge: &544 title: Auto merge description: The status of auto merging a pull request. type: @@ -37166,7 +37536,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &245 + content_type: &247 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -37210,7 +37580,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &247 + draft_issue: &249 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -37284,7 +37654,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *241 + - *243 - *61 - *17 - *38 @@ -37296,7 +37666,7 @@ paths: application/json: schema: type: array - items: &244 + items: &246 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -37446,7 +37816,7 @@ paths: - updated_at - project_url examples: - default: &672 + default: &674 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -37577,8 +37947,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *241 - - &673 + - *243 + - &675 name: field_id description: The unique identifier of the field. in: path @@ -37591,9 +37961,9 @@ paths: description: Response content: application/json: - schema: *244 + schema: *246 examples: - default: &674 + default: &676 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -37637,7 +38007,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *241 + - *243 - *61 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -37670,7 +38040,7 @@ paths: application/json: schema: type: array - items: &248 + items: &250 title: Projects v2 Item description: An item belonging to a project type: object @@ -37687,7 +38057,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *245 + content_type: *247 content: type: - object @@ -37737,7 +38107,7 @@ paths: - updated_at - archived_at examples: - default: &249 + default: &251 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -38434,7 +38804,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *61 - - *241 + - *243 requestBody: required: true description: Details of the item to add to the project. @@ -38471,10 +38841,10 @@ paths: description: Response content: application/json: - schema: *246 + schema: *248 examples: - issue: *247 - pull_request: *247 + issue: *249 + pull_request: *249 '304': *35 '403': *27 '401': *23 @@ -38494,9 +38864,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *241 + - *243 - *61 - - &250 + - &252 name: item_id description: The unique identifier of the project item. in: path @@ -38522,9 +38892,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *249 + default: *251 headers: Link: *52 '304': *35 @@ -38545,9 +38915,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *241 + - *243 - *61 - - *250 + - *252 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -38620,13 +38990,13 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - text_field: *249 - number_field: *249 - date_field: *249 - single_select_field: *249 - iteration_field: *249 + text_field: *251 + number_field: *251 + date_field: *251 + single_select_field: *251 + iteration_field: *251 '401': *23 '403': *27 '404': *6 @@ -38646,9 +39016,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *241 + - *243 - *61 - - *250 + - *252 responses: '204': description: Response @@ -38680,7 +39050,7 @@ paths: application/json: schema: type: array - items: &251 + items: &253 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -38736,8 +39106,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -38756,7 +39124,7 @@ paths: - property_name - value_type examples: - default: &252 + default: &254 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -38815,7 +39183,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *251 + items: *253 minItems: 1 maxItems: 100 required: @@ -38845,9 +39213,9 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: - default: *252 + default: *254 '403': *27 '404': *6 x-github: @@ -38869,7 +39237,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *61 - - &253 + - &255 name: custom_property_name description: The custom property name in: path @@ -38881,9 +39249,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: &254 + default: &256 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -38918,7 +39286,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *61 - - *253 + - *255 requestBody: required: true content: @@ -38963,8 +39331,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -38996,9 +39362,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: *254 + default: *256 '403': *27 '404': *6 x-github: @@ -39022,9 +39388,9 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *61 - - *253 + - *255 responses: - '204': *166 + '204': *168 '403': *27 '404': *6 x-github: @@ -39347,7 +39713,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -39550,7 +39916,7 @@ paths: description: Response content: application/json: - schema: &315 + schema: &317 title: Full Repository description: Full Repository type: object @@ -40015,7 +40381,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &446 + code_of_conduct: &448 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -40045,7 +40411,7 @@ paths: - key - name - html_url - security_and_analysis: *255 + security_and_analysis: *257 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -40129,7 +40495,7 @@ paths: - network_count - subscribers_count examples: - default: &317 + default: &319 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -40650,7 +41016,7 @@ paths: - *61 - *17 - *19 - - &565 + - &567 name: targets description: | A comma-separated list of rule targets to filter by. @@ -40669,7 +41035,7 @@ paths: application/json: schema: type: array - items: &281 + items: &283 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -40704,7 +41070,7 @@ paths: source: type: string description: The name of the source - enforcement: &258 + enforcement: &260 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -40717,7 +41083,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &259 + items: &261 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -40788,7 +41154,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &256 + - &258 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -40812,7 +41178,7 @@ paths: match. items: type: string - - &260 + - &262 title: Organization ruleset conditions type: object description: |- @@ -40826,7 +41192,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *256 + - *258 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -40860,7 +41226,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *256 + - *258 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -40882,7 +41248,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *256 + - *258 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -40895,7 +41261,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &257 + items: &259 title: Repository ruleset property targeting definition type: object @@ -40928,7 +41294,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *257 + items: *259 required: - repository_property type: @@ -40936,12 +41302,12 @@ paths: - object rules: type: array - items: &566 + items: &568 title: Repository Rule type: object description: A repository rule. oneOf: - - &261 + - &263 title: creation description: Only allow users with bypass permission to create matching refs. @@ -40953,7 +41319,7 @@ paths: type: string enum: - creation - - &262 + - &264 title: update description: Only allow users with bypass permission to update matching refs. @@ -40974,7 +41340,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &263 + - &265 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -40986,7 +41352,7 @@ paths: type: string enum: - deletion - - &264 + - &266 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -40998,7 +41364,7 @@ paths: type: string enum: - required_linear_history - - &563 + - &565 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -41076,7 +41442,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &265 + - &267 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -41100,7 +41466,7 @@ paths: type: string required: - required_deployment_environments - - &266 + - &268 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -41112,7 +41478,7 @@ paths: type: string enum: - required_signatures - - &267 + - &269 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -41223,7 +41589,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &268 + - &270 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -41271,7 +41637,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &269 + - &271 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -41283,7 +41649,7 @@ paths: type: string enum: - non_fast_forward - - &270 + - &272 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -41319,7 +41685,7 @@ paths: required: - operator - pattern - - &271 + - &273 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -41355,7 +41721,7 @@ paths: required: - operator - pattern - - &272 + - &274 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -41391,7 +41757,7 @@ paths: required: - operator - pattern - - &273 + - &275 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -41427,7 +41793,7 @@ paths: required: - operator - pattern - - &274 + - &276 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -41463,7 +41829,7 @@ paths: required: - operator - pattern - - &275 + - &277 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -41488,7 +41854,7 @@ paths: type: string required: - restricted_file_paths - - &276 + - &278 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -41512,7 +41878,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &277 + - &279 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -41535,7 +41901,7 @@ paths: type: string required: - restricted_file_extensions - - &278 + - &280 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -41560,7 +41926,7 @@ paths: maximum: 100 required: - max_file_size - - &279 + - &281 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -41610,7 +41976,7 @@ paths: - repository_id required: - workflows - - &280 + - &282 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -41671,7 +42037,7 @@ paths: - tool required: - code_scanning_tools - - &564 + - &566 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -41769,22 +42135,20 @@ paths: - push - repository default: branch - enforcement: *258 + enforcement: *260 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *259 - conditions: *260 + items: *261 + conditions: *262 rules: type: array description: An array of rules within the ruleset. - items: &283 + items: &285 title: Repository Rule type: object description: A repository rule. oneOf: - - *261 - - *262 - *263 - *264 - *265 @@ -41803,6 +42167,8 @@ paths: - *278 - *279 - *280 + - *281 + - *282 required: - name - enforcement @@ -41840,9 +42206,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: &282 + default: &284 value: id: 21 name: super cool ruleset @@ -41897,7 +42263,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *61 - - &567 + - &569 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 @@ -41912,7 +42278,7 @@ paths: in: query schema: type: string - - &568 + - &570 name: time_period description: |- The time period to filter by. @@ -41928,14 +42294,14 @@ paths: - week - month default: day - - &569 + - &571 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 - - &570 + - &572 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -41955,7 +42321,7 @@ paths: description: Response content: application/json: - schema: &571 + schema: &573 title: Rule Suites description: Response type: array @@ -42011,7 +42377,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &572 + default: &574 value: - id: 21 actor_id: 12 @@ -42055,7 +42421,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *61 - - &573 + - &575 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -42071,7 +42437,7 @@ paths: description: Response content: application/json: - schema: &574 + schema: &576 title: Rule Suite description: Response type: object @@ -42178,7 +42544,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &575 + default: &577 value: id: 21 actor_id: 12 @@ -42251,9 +42617,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: *282 + default: *284 '404': *6 '500': *96 put: @@ -42297,16 +42663,16 @@ paths: - tag - push - repository - enforcement: *258 + enforcement: *260 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *259 - conditions: *260 + items: *261 + conditions: *262 rules: description: An array of rules within the ruleset. type: array - items: *283 + items: *285 examples: default: value: @@ -42341,9 +42707,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: *282 + default: *284 '404': *6 '500': *96 delete: @@ -42400,7 +42766,7 @@ paths: application/json: schema: type: array - items: &284 + items: &286 title: Ruleset version type: object description: The historical version of a ruleset @@ -42424,7 +42790,7 @@ paths: type: string format: date-time examples: - default: &577 + default: &579 value: - version_id: 3 actor: @@ -42477,9 +42843,9 @@ paths: description: Response content: application/json: - schema: &578 + schema: &580 allOf: - - *284 + - *286 - type: object required: - state @@ -42549,7 +42915,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *61 - - &579 + - &581 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -42560,7 +42926,7 @@ paths: enum: - open - resolved - - &580 + - &582 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -42570,7 +42936,7 @@ paths: required: false schema: type: string - - &581 + - &583 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -42579,7 +42945,7 @@ paths: required: false schema: type: string - - &582 + - &584 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. @@ -42594,7 +42960,7 @@ paths: - *46 - *19 - *17 - - &583 + - &585 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 @@ -42604,7 +42970,7 @@ paths: required: false schema: type: string - - &584 + - &586 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 @@ -42614,7 +42980,7 @@ paths: required: false schema: type: string - - &585 + - &587 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -42623,7 +42989,7 @@ paths: required: false schema: type: string - - &586 + - &588 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -42632,7 +42998,7 @@ paths: schema: type: boolean default: false - - &587 + - &589 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -42641,7 +43007,7 @@ paths: schema: type: boolean default: false - - &588 + - &590 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -42660,27 +43026,27 @@ paths: items: type: object properties: - number: *152 - created_at: *153 + number: *154 + created_at: *155 updated_at: anyOf: - type: 'null' - - *154 - url: *155 - html_url: *156 + - *156 + url: *157 + html_url: *158 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &589 + state: &591 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: &590 + resolution: &592 type: - string - 'null' @@ -42787,14 +43153,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &591 + - &593 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &593 + - &595 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -42851,7 +43217,7 @@ paths: - blob_url - commit_sha - commit_url - - &594 + - &596 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. @@ -42912,7 +43278,7 @@ paths: - page_url - commit_sha - commit_url - - &595 + - &597 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -42927,7 +43293,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &596 + - &598 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -42942,7 +43308,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &597 + - &599 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -42957,7 +43323,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &598 + - &600 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -42972,7 +43338,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &599 + - &601 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -42987,7 +43353,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &600 + - &602 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -43002,7 +43368,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &601 + - &603 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. @@ -43017,7 +43383,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &602 + - &604 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. @@ -43032,7 +43398,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &603 + - &605 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. @@ -43047,7 +43413,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &604 + - &606 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. @@ -43062,7 +43428,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &605 + - &607 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 @@ -43302,7 +43668,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &286 + pattern_config_version: &288 type: - string - 'null' @@ -43312,7 +43678,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &285 + items: &287 type: object properties: token_type: @@ -43381,7 +43747,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *285 + items: *287 examples: default: value: @@ -43438,7 +43804,7 @@ paths: schema: type: object properties: - pattern_config_version: *286 + pattern_config_version: *288 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -43464,7 +43830,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *286 + custom_pattern_version: *288 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -43562,7 +43928,7 @@ paths: application/json: schema: type: array - items: &609 + items: &611 description: A repository security advisory. type: object properties: @@ -43806,7 +44172,7 @@ paths: login: type: string description: The username of the user credited. - type: *287 + type: *289 credits_detailed: type: - array @@ -43817,7 +44183,7 @@ paths: type: object properties: user: *4 - type: *287 + type: *289 state: type: string description: The state of the user's acceptance of the @@ -43843,7 +44209,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *170 + items: *172 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -43881,7 +44247,7 @@ paths: - private_fork additionalProperties: false examples: - default: &610 + default: &612 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -44268,9 +44634,9 @@ paths: application/json: schema: type: array - items: *221 + items: *223 examples: - default: *222 + default: *224 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44355,7 +44721,7 @@ paths: description: Response content: application/json: - schema: &675 + schema: &677 type: object properties: total_minutes_used: @@ -44425,7 +44791,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &676 + default: &678 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -44461,7 +44827,7 @@ paths: description: Response content: application/json: - schema: &677 + schema: &679 type: object properties: total_gigabytes_bandwidth_used: @@ -44479,7 +44845,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &678 + default: &680 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -44511,7 +44877,7 @@ paths: description: Response content: application/json: - schema: &680 + schema: &682 type: object properties: days_left_in_billing_cycle: @@ -44529,7 +44895,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &681 + default: &683 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -44814,7 +45180,7 @@ paths: type: integer network_configurations: type: array - items: &288 + items: &290 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -44939,9 +45305,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *290 examples: - default: &289 + default: &291 value: id: 123456789ABCDEF name: My network configuration @@ -44970,7 +45336,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *61 - - &290 + - &292 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -44982,9 +45348,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *290 examples: - default: *289 + default: *291 headers: Link: *52 x-github: @@ -45006,7 +45372,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *61 - - *290 + - *292 requestBody: required: true content: @@ -45045,9 +45411,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *290 examples: - default: *289 + default: *291 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45067,7 +45433,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *61 - - *290 + - *292 responses: '204': description: Response @@ -45212,13 +45578,13 @@ paths: application/json: schema: type: array - items: *291 + items: *293 examples: - default: *292 + default: *294 '500': *96 '403': *27 '404': *6 - '422': *293 + '422': *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45246,9 +45612,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 headers: Link: *52 '403': *27 @@ -45342,7 +45708,7 @@ paths: description: Response content: application/json: - schema: &294 + schema: &296 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -45416,7 +45782,7 @@ paths: parent: anyOf: - type: 'null' - - *221 + - *223 members_count: type: integer examples: @@ -45741,7 +46107,7 @@ paths: - repos_count - organization examples: - default: &295 + default: &297 value: id: 1 node_id: MDQ6VGVhbTE= @@ -45818,9 +46184,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '404': *6 x-github: githubCloudOnly: false @@ -45905,16 +46271,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '201': description: Response content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '404': *6 '422': *15 '403': *27 @@ -45984,7 +46350,7 @@ paths: application/json: schema: type: array - items: &296 + items: &298 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -46095,7 +46461,7 @@ paths: - updated_at - url examples: - default: &627 + default: &629 value: - author: login: octocat @@ -46204,9 +46570,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: &297 + default: &299 value: author: login: octocat @@ -46280,7 +46646,7 @@ paths: parameters: - *61 - *62 - - &298 + - &300 name: discussion_number description: The number that identifies the discussion. in: path @@ -46292,9 +46658,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *297 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46318,7 +46684,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 requestBody: required: false content: @@ -46341,9 +46707,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: &628 + default: &630 value: author: login: octocat @@ -46415,7 +46781,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 responses: '204': description: Response @@ -46443,7 +46809,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 - *46 - *17 - *19 @@ -46454,7 +46820,7 @@ paths: application/json: schema: type: array - items: &299 + items: &301 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -46534,7 +46900,7 @@ paths: - updated_at - url examples: - default: &629 + default: &631 value: - author: login: octocat @@ -46604,7 +46970,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 requestBody: required: true content: @@ -46626,9 +46992,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: &300 + default: &302 value: author: login: octocat @@ -46696,8 +47062,8 @@ paths: parameters: - *61 - *62 - - *298 - - &301 + - *300 + - &303 name: comment_number description: The number that identifies the comment. in: path @@ -46709,9 +47075,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *300 + default: *302 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46735,8 +47101,8 @@ paths: parameters: - *61 - *62 - - *298 - - *301 + - *300 + - *303 requestBody: required: true content: @@ -46758,9 +47124,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: &630 + default: &632 value: author: login: octocat @@ -46826,8 +47192,8 @@ paths: parameters: - *61 - *62 - - *298 - - *301 + - *300 + - *303 responses: '204': description: Response @@ -46855,8 +47221,8 @@ paths: parameters: - *61 - *62 - - *298 - - *301 + - *300 + - *303 - 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 team discussion comment. @@ -46882,7 +47248,7 @@ paths: application/json: schema: type: array - items: &302 + items: &304 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -46926,7 +47292,7 @@ paths: - content - created_at examples: - default: &304 + default: &306 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46978,8 +47344,8 @@ paths: parameters: - *61 - *62 - - *298 - - *301 + - *300 + - *303 requestBody: required: true content: @@ -47012,9 +47378,9 @@ paths: team discussion comment content: application/json: - schema: *302 + schema: *304 examples: - default: &303 + default: &305 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -47043,9 +47409,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47070,9 +47436,9 @@ paths: parameters: - *61 - *62 - - *298 - - *301 - - &305 + - *300 + - *303 + - &307 name: reaction_id description: The unique identifier of the reaction. in: path @@ -47106,7 +47472,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 - 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 team discussion. @@ -47132,9 +47498,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 x-github: @@ -47162,7 +47528,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 requestBody: required: true content: @@ -47194,16 +47560,16 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47228,8 +47594,8 @@ paths: parameters: - *61 - *62 - - *298 - - *305 + - *300 + - *307 responses: '204': description: Response @@ -47264,9 +47630,9 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 headers: Link: *52 x-github: @@ -47350,7 +47716,7 @@ paths: description: Response content: application/json: - schema: &306 + schema: &308 title: Team Membership description: Team Membership type: object @@ -47378,7 +47744,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &631 + response-if-user-is-a-team-maintainer: &633 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47441,9 +47807,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: &632 + response-if-users-membership-with-team-is-now-pending: &634 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47516,7 +47882,7 @@ paths: application/json: schema: type: array - items: &307 + items: &309 title: Team Project description: A team's access to a project. type: object @@ -47585,7 +47951,7 @@ paths: - updated_at - permissions examples: - default: &633 + default: &635 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47650,7 +48016,7 @@ paths: parameters: - *61 - *62 - - &308 + - &310 name: project_id description: The unique identifier of the project. in: path @@ -47662,9 +48028,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *309 examples: - default: &634 + default: &636 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47728,7 +48094,7 @@ paths: parameters: - *61 - *62 - - *308 + - *310 requestBody: required: false content: @@ -47797,7 +48163,7 @@ paths: parameters: - *61 - *62 - - *308 + - *310 responses: '204': description: Response @@ -47837,7 +48203,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -47868,14 +48234,14 @@ paths: parameters: - *61 - *62 - - *309 - - *310 + - *311 + - *312 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &635 + schema: &637 title: Team Repository description: A team's access to a repository. type: object @@ -48518,8 +48884,8 @@ paths: parameters: - *61 - *62 - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -48566,8 +48932,8 @@ paths: parameters: - *61 - *62 - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -48602,9 +48968,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - response-if-child-teams-exist: &636 + response-if-child-teams-exist: &638 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48731,7 +49097,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#get-a-project-column parameters: - - &311 + - &313 name: column_id description: The unique identifier of the column. in: path @@ -48743,7 +49109,7 @@ paths: description: Response content: application/json: - schema: &312 + schema: &314 title: Project Column description: Project columns contain cards of work. type: object @@ -48797,7 +49163,7 @@ paths: - created_at - updated_at examples: - default: &313 + default: &315 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -48832,7 +49198,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#update-an-existing-project-column parameters: - - *311 + - *313 requestBody: required: true content: @@ -48857,9 +49223,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: *313 + default: *315 '304': *35 '403': *27 '401': *23 @@ -48884,7 +49250,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#delete-a-project-column parameters: - - *311 + - *313 responses: '204': description: Response @@ -48913,7 +49279,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#move-a-project-column parameters: - - *311 + - *313 requestBody: required: true content: @@ -48974,7 +49340,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#list-project-collaborators parameters: - - *308 + - *310 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -49031,7 +49397,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#add-project-collaborator parameters: - - *308 + - *310 - *57 requestBody: required: false @@ -49086,7 +49452,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *308 + - *310 - *57 responses: '204': @@ -49118,7 +49484,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *308 + - *310 - *57 responses: '200': @@ -49216,7 +49582,7 @@ paths: resources: type: object properties: - core: &314 + core: &316 title: Rate Limit type: object properties: @@ -49233,21 +49599,21 @@ paths: - remaining - reset - used - graphql: *314 - search: *314 - code_search: *314 - source_import: *314 - integration_manifest: *314 - code_scanning_upload: *314 - actions_runner_registration: *314 - scim: *314 - dependency_snapshots: *314 - dependency_sbom: *314 - code_scanning_autofix: *314 + graphql: *316 + search: *316 + code_search: *316 + source_import: *316 + integration_manifest: *316 + code_scanning_upload: *316 + actions_runner_registration: *316 + scim: *316 + dependency_snapshots: *316 + dependency_sbom: *316 + code_scanning_autofix: *316 required: - core - search - rate: *314 + rate: *316 required: - rate - resources @@ -49352,14 +49718,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *315 + schema: *317 examples: default-response: summary: Default response @@ -49860,7 +50226,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *316 + '301': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49878,8 +50244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -50127,10 +50493,10 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *317 - '307': &318 + default: *319 + '307': &320 description: Temporary Redirect content: application/json: @@ -50159,8 +50525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -50182,7 +50548,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *318 + '307': *320 '404': *6 '409': *45 x-github: @@ -50206,11 +50572,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 - - &349 + - &351 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50233,7 +50599,7 @@ paths: type: integer artifacts: type: array - items: &319 + items: &321 title: Artifact description: An artifact type: object @@ -50328,7 +50694,7 @@ paths: - expires_at - updated_at examples: - default: &350 + default: &352 value: total_count: 2 artifacts: @@ -50389,9 +50755,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *309 - - *310 - - &320 + - *311 + - *312 + - &322 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50403,7 +50769,7 @@ paths: description: Response content: application/json: - schema: *319 + schema: *321 examples: default: value: @@ -50441,9 +50807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *309 - - *310 - - *320 + - *311 + - *312 + - *322 responses: '204': description: Response @@ -50467,9 +50833,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *309 - - *310 - - *320 + - *311 + - *312 + - *322 - name: archive_format in: path required: true @@ -50483,7 +50849,7 @@ paths: 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': &500 + '410': &502 description: Gone content: application/json: @@ -50510,14 +50876,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *321 + schema: *323 examples: default: value: @@ -50543,11 +50909,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 - - &322 + - &324 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -50581,7 +50947,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &325 title: Repository actions caches description: Repository actions caches type: object @@ -50631,7 +50997,7 @@ paths: - total_count - actions_caches examples: - default: &324 + default: &326 value: total_count: 1 actions_caches: @@ -50663,23 +51029,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *309 - - *310 + - *311 + - *312 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *322 + - *324 responses: '200': description: Response content: application/json: - schema: *323 + schema: *325 examples: - default: *324 + default: *326 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50699,8 +51065,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *309 - - *310 + - *311 + - *312 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50731,9 +51097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *309 - - *310 - - &325 + - *311 + - *312 + - &327 name: job_id description: The unique identifier of the job. in: path @@ -50745,7 +51111,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &355 title: Job description: Information of a job execution in a workflow run type: object @@ -51092,9 +51458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *309 - - *310 - - *325 + - *311 + - *312 + - *327 responses: '302': description: Response @@ -51122,9 +51488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *309 - - *310 - - *325 + - *311 + - *312 + - *327 requestBody: required: false content: @@ -51170,8 +51536,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Status response @@ -51221,8 +51587,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -51285,8 +51651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -51304,7 +51670,7 @@ paths: type: integer secrets: type: array - items: &355 + items: &357 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51325,7 +51691,7 @@ paths: - created_at - updated_at examples: - default: &356 + default: &358 value: total_count: 2 secrets: @@ -51358,9 +51724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *309 - - *310 - - *326 + - *311 + - *312 + - *328 - *19 responses: '200': @@ -51377,7 +51743,7 @@ paths: type: integer variables: type: array - items: &359 + items: &361 title: Actions Variable type: object properties: @@ -51411,7 +51777,7 @@ paths: - created_at - updated_at examples: - default: &360 + default: &362 value: total_count: 2 variables: @@ -51444,8 +51810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -51454,11 +51820,11 @@ paths: schema: type: object properties: - enabled: &328 + enabled: &330 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *121 - selected_actions_url: *327 + selected_actions_url: *329 sha_pinning_required: *122 required: - enabled @@ -51487,8 +51853,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -51499,7 +51865,7 @@ paths: schema: type: object properties: - enabled: *328 + enabled: *330 allowed_actions: *121 sha_pinning_required: *122 required: @@ -51531,14 +51897,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: &329 + schema: &331 type: object properties: access_level: @@ -51555,7 +51921,7 @@ paths: required: - access_level examples: - default: &330 + default: &332 value: access_level: organization x-github: @@ -51579,15 +51945,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: application/json: - schema: *329 + schema: *331 examples: - default: *330 + default: *332 responses: '204': description: Response @@ -51611,14 +51977,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *331 + schema: *333 examples: default: value: @@ -51642,8 +52008,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Empty response for successful settings update @@ -51653,7 +52019,7 @@ paths: required: true content: application/json: - schema: *332 + schema: *334 examples: default: summary: Set retention days @@ -51677,8 +52043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -51686,7 +52052,7 @@ paths: application/json: schema: *123 examples: - default: *333 + default: *335 '404': *6 x-github: enabledForGitHubApps: true @@ -51705,8 +52071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -51740,14 +52106,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *334 + schema: *336 examples: default: *124 '403': *27 @@ -51769,13 +52135,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: application/json: - schema: *335 + schema: *337 examples: default: *124 responses: @@ -51801,8 +52167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -51829,8 +52195,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -51862,14 +52228,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *336 + schema: *338 examples: default: *131 x-github: @@ -51892,8 +52258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Success response @@ -51904,7 +52270,7 @@ paths: required: true content: application/json: - schema: *337 + schema: *339 examples: default: *131 x-github: @@ -51933,8 +52299,8 @@ paths: in: query schema: type: string - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -51978,8 +52344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -51987,9 +52353,9 @@ paths: application/json: schema: type: array - items: *338 + items: *340 examples: - default: *339 + default: *341 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52011,8 +52377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -52055,7 +52421,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *340 + '201': *342 '404': *6 '422': *7 '409': *45 @@ -52086,8 +52452,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '201': description: Response @@ -52095,7 +52461,7 @@ paths: application/json: schema: *140 examples: - default: *341 + default: *343 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52123,8 +52489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '201': description: Response @@ -52132,7 +52498,7 @@ paths: application/json: schema: *140 examples: - default: *342 + default: *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52154,8 +52520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 responses: '200': @@ -52164,7 +52530,7 @@ paths: application/json: schema: *138 examples: - default: *343 + default: *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52185,8 +52551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 responses: '204': @@ -52213,8 +52579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 responses: '200': *142 @@ -52239,8 +52605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 requestBody: required: true @@ -52289,8 +52655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 requestBody: required: true @@ -52340,11 +52706,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 responses: - '200': *344 + '200': *346 '404': *6 x-github: githubCloudOnly: false @@ -52371,10 +52737,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 - - *345 + - *347 responses: '200': *142 '404': *6 @@ -52402,9 +52768,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *309 - - *310 - - &363 + - *311 + - *312 + - &365 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -52412,7 +52778,7 @@ paths: required: false schema: type: string - - &364 + - &366 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52420,7 +52786,7 @@ paths: required: false schema: type: string - - &365 + - &367 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52429,7 +52795,7 @@ paths: required: false schema: type: string - - &366 + - &368 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -52456,7 +52822,7 @@ paths: - pending - *17 - *19 - - &367 + - &369 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -52465,7 +52831,7 @@ paths: schema: type: string format: date-time - - &346 + - &348 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52474,13 +52840,13 @@ paths: schema: type: boolean default: false - - &368 + - &370 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &369 + - &371 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52503,7 +52869,7 @@ paths: type: integer workflow_runs: type: array - items: &347 + items: &349 title: Workflow Run description: An invocation of a workflow type: object @@ -52620,7 +52986,7 @@ paths: type: - array - 'null' - items: &388 + items: &390 title: Pull Request Minimal type: object properties: @@ -52747,7 +53113,7 @@ paths: head_commit: anyOf: - type: 'null' - - &392 + - &394 title: Simple Commit description: A commit. type: object @@ -52862,7 +53228,7 @@ paths: - workflow_url - pull_requests examples: - default: &370 + default: &372 value: total_count: 1 workflow_runs: @@ -53098,24 +53464,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *309 - - *310 - - &348 + - *311 + - *312 + - &350 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *346 + - *348 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: &351 + default: &353 value: id: 30433642 name: Build @@ -53356,9 +53722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '204': description: Response @@ -53381,9 +53747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '200': description: Response @@ -53511,9 +53877,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '201': description: Response @@ -53546,12 +53912,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 - *17 - *19 - - *349 + - *351 responses: '200': description: Response @@ -53567,9 +53933,9 @@ paths: type: integer artifacts: type: array - items: *319 + items: *321 examples: - default: *350 + default: *352 headers: Link: *52 x-github: @@ -53593,25 +53959,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *309 - - *310 - - *348 - - &352 + - *311 + - *312 + - *350 + - &354 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *346 + - *348 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *351 + default: *353 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53634,10 +54000,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *309 - - *310 - - *348 - - *352 + - *311 + - *312 + - *350 + - *354 - *17 - *19 responses: @@ -53655,9 +54021,9 @@ paths: type: integer jobs: type: array - items: *353 + items: *355 examples: - default: &354 + default: &356 value: total_count: 1 jobs: @@ -53770,10 +54136,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *309 - - *310 - - *348 - - *352 + - *311 + - *312 + - *350 + - *354 responses: '302': description: Response @@ -53801,9 +54167,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '202': description: Response @@ -53836,9 +54202,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 requestBody: required: true content: @@ -53905,9 +54271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '202': description: Response @@ -53940,9 +54306,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -53972,9 +54338,9 @@ paths: type: integer jobs: type: array - items: *353 + items: *355 examples: - default: *354 + default: *356 headers: Link: *52 x-github: @@ -53999,9 +54365,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '302': description: Response @@ -54028,9 +54394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '204': description: Response @@ -54057,9 +54423,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '200': description: Response @@ -54128,7 +54494,7 @@ paths: items: type: object properties: - type: &466 + type: &468 type: string description: The type of reviewer. enum: @@ -54139,7 +54505,7 @@ paths: reviewer: anyOf: - *4 - - *170 + - *172 required: - environment - wait_timer @@ -54214,9 +54580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 requestBody: required: true content: @@ -54266,7 +54632,7 @@ paths: application/json: schema: type: array - items: &461 + items: &463 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -54378,7 +54744,7 @@ paths: - created_at - updated_at examples: - default: &462 + default: &464 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54434,9 +54800,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 requestBody: required: false content: @@ -54481,9 +54847,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 requestBody: required: false content: @@ -54537,9 +54903,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '200': description: Response @@ -54676,8 +55042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -54695,9 +55061,9 @@ paths: type: integer secrets: type: array - items: *355 + items: *357 examples: - default: *356 + default: *358 headers: Link: *52 x-github: @@ -54722,16 +55088,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *357 + schema: *359 examples: - default: *358 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54753,17 +55119,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '200': description: Response content: application/json: - schema: *355 + schema: *357 examples: - default: &479 + default: &481 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54789,8 +55155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 requestBody: required: true @@ -54848,8 +55214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '204': @@ -54875,9 +55241,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *309 - - *310 - - *326 + - *311 + - *312 + - *328 - *19 responses: '200': @@ -54894,9 +55260,9 @@ paths: type: integer variables: type: array - items: *359 + items: *361 examples: - default: *360 + default: *362 headers: Link: *52 x-github: @@ -54919,8 +55285,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -54972,17 +55338,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *309 - - *310 + - *311 + - *312 - *147 responses: '200': description: Response content: application/json: - schema: *359 + schema: *361 examples: - default: &480 + default: &482 value: name: USERNAME value: octocat @@ -55008,8 +55374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *309 - - *310 + - *311 + - *312 - *147 requestBody: required: true @@ -55052,8 +55418,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *309 - - *310 + - *311 + - *312 - *147 responses: '204': @@ -55079,8 +55445,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -55098,7 +55464,7 @@ paths: type: integer workflows: type: array - items: &361 + items: &363 title: Workflow description: A GitHub Actions workflow type: object @@ -55216,9 +55582,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *309 - - *310 - - &362 + - *311 + - *312 + - &364 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55233,7 +55599,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *363 examples: default: value: @@ -55266,9 +55632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *309 - - *310 - - *362 + - *311 + - *312 + - *364 responses: '204': description: Response @@ -55293,9 +55659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *309 - - *310 - - *362 + - *311 + - *312 + - *364 responses: '204': description: Response @@ -55346,9 +55712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *309 - - *310 - - *362 + - *311 + - *312 + - *364 responses: '204': description: Response @@ -55375,19 +55741,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *309 - - *310 - - *362 - - *363 + - *311 + - *312 - *364 - *365 - *366 - - *17 - - *19 - *367 - - *346 - *368 + - *17 + - *19 - *369 + - *348 + - *370 + - *371 responses: '200': description: Response @@ -55403,9 +55769,9 @@ paths: type: integer workflow_runs: type: array - items: *347 + items: *349 examples: - default: *370 + default: *372 headers: Link: *52 x-github: @@ -55437,9 +55803,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *309 - - *310 - - *362 + - *311 + - *312 + - *364 responses: '200': description: Response @@ -55500,8 +55866,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *309 - - *310 + - *311 + - *312 - *46 - *17 - *38 @@ -55669,8 +56035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -55707,8 +56073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *309 - - *310 + - *311 + - *312 - name: assignee in: path required: true @@ -55744,8 +56110,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -55857,8 +56223,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *38 - *39 @@ -55915,7 +56281,7 @@ paths: initiator: type: string examples: - default: *371 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55935,8 +56301,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -55944,7 +56310,7 @@ paths: application/json: schema: type: array - items: &372 + items: &374 title: Autolink reference description: An autolink reference. type: object @@ -56003,8 +56369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -56043,9 +56409,9 @@ paths: description: response content: application/json: - schema: *372 + schema: *374 examples: - default: &373 + default: &375 value: id: 1 key_prefix: TICKET- @@ -56076,9 +56442,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *309 - - *310 - - &374 + - *311 + - *312 + - &376 name: autolink_id description: The unique identifier of the autolink. in: path @@ -56090,9 +56456,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *374 examples: - default: *373 + default: *375 '404': *6 x-github: githubCloudOnly: false @@ -56112,9 +56478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *309 - - *310 - - *374 + - *311 + - *312 + - *376 responses: '204': description: Response @@ -56138,8 +56504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response if Dependabot is enabled @@ -56189,8 +56555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -56211,8 +56577,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -56232,8 +56598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *309 - - *310 + - *311 + - *312 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56271,7 +56637,7 @@ paths: - url protected: type: boolean - protection: &376 + protection: &378 title: Branch Protection description: Branch Protection type: object @@ -56314,7 +56680,7 @@ paths: required: - contexts - checks - enforce_admins: &379 + enforce_admins: &381 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56331,7 +56697,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &381 + required_pull_request_reviews: &383 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56353,7 +56719,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *170 + items: *172 apps: description: The list of apps with review dismissal access. @@ -56385,7 +56751,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *170 + items: *172 apps: description: The list of apps allowed to bypass pull request requirements. @@ -56415,7 +56781,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &378 + restrictions: &380 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56478,7 +56844,7 @@ paths: type: string teams: type: array - items: *170 + items: *172 apps: type: array items: @@ -56708,9 +57074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *309 - - *310 - - &377 + - *311 + - *312 + - &379 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -56724,14 +57090,14 @@ paths: description: Response content: application/json: - schema: &387 + schema: &389 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &437 + commit: &439 title: Commit description: Commit type: object @@ -56770,7 +57136,7 @@ paths: author: anyOf: - type: 'null' - - &375 + - &377 title: Git User description: Metaproperties for Git author/committer information. @@ -56791,7 +57157,7 @@ paths: committer: anyOf: - type: 'null' - - *375 + - *377 message: type: string examples: @@ -56815,7 +57181,7 @@ paths: required: - sha - url - verification: &486 + verification: &488 title: Verification type: object properties: @@ -56895,7 +57261,7 @@ paths: type: integer files: type: array - items: &448 + items: &450 title: Diff Entry description: Diff Entry type: object @@ -56991,7 +57357,7 @@ paths: - self protected: type: boolean - protection: *376 + protection: *378 protection_url: type: string format: uri @@ -57100,7 +57466,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *316 + '301': *318 '404': *6 x-github: githubCloudOnly: false @@ -57122,15 +57488,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *376 + schema: *378 examples: default: value: @@ -57324,9 +57690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -57586,7 +57952,7 @@ paths: url: type: string format: uri - required_status_checks: &384 + required_status_checks: &386 title: Status Check Policy description: Status Check Policy type: object @@ -57667,7 +58033,7 @@ paths: items: *4 teams: type: array - items: *170 + items: *172 apps: type: array items: *5 @@ -57685,7 +58051,7 @@ paths: items: *4 teams: type: array - items: *170 + items: *172 apps: type: array items: *5 @@ -57745,7 +58111,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *378 + restrictions: *380 required_conversation_resolution: type: object properties: @@ -57857,9 +58223,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -57884,17 +58250,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: &380 + default: &382 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -57916,17 +58282,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: *380 + default: *382 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57945,9 +58311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -57972,17 +58338,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *381 + schema: *383 examples: - default: &382 + default: &384 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -58078,9 +58444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -58178,9 +58544,9 @@ paths: description: Response content: application/json: - schema: *381 + schema: *383 examples: - default: *382 + default: *384 '422': *15 x-github: githubCloudOnly: false @@ -58201,9 +58567,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -58230,17 +58596,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: &383 + default: &385 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58263,17 +58629,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: *383 + default: *385 '404': *6 x-github: githubCloudOnly: false @@ -58293,9 +58659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -58320,17 +58686,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *384 + schema: *386 examples: - default: &385 + default: &387 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58356,9 +58722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -58410,9 +58776,9 @@ paths: description: Response content: application/json: - schema: *384 + schema: *386 examples: - default: *385 + default: *387 '404': *6 '422': *15 x-github: @@ -58434,9 +58800,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -58460,9 +58826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response @@ -58496,9 +58862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -58565,9 +58931,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -58631,9 +58997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: content: application/json: @@ -58699,15 +59065,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *378 + schema: *380 examples: default: value: @@ -58798,9 +59164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -58823,9 +59189,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response @@ -58835,7 +59201,7 @@ paths: type: array items: *5 examples: - default: &386 + default: &388 value: - id: 1 slug: octoapp @@ -58892,9 +59258,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -58928,7 +59294,7 @@ paths: type: array items: *5 examples: - default: *386 + default: *388 '422': *15 x-github: githubCloudOnly: false @@ -58949,9 +59315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -58985,7 +59351,7 @@ paths: type: array items: *5 examples: - default: *386 + default: *388 '422': *15 x-github: githubCloudOnly: false @@ -59006,9 +59372,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -59042,7 +59408,7 @@ paths: type: array items: *5 examples: - default: *386 + default: *388 '422': *15 x-github: githubCloudOnly: false @@ -59064,9 +59430,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response @@ -59074,9 +59440,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 '404': *6 x-github: githubCloudOnly: false @@ -59096,9 +59462,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -59134,9 +59500,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 '422': *15 x-github: githubCloudOnly: false @@ -59157,9 +59523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -59195,9 +59561,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 '422': *15 x-github: githubCloudOnly: false @@ -59218,9 +59584,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: content: application/json: @@ -59255,9 +59621,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 '422': *15 x-github: githubCloudOnly: false @@ -59279,9 +59645,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response @@ -59315,9 +59681,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -59375,9 +59741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -59435,9 +59801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -59497,9 +59863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -59521,7 +59887,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *389 examples: default: value: @@ -59637,8 +60003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -59917,7 +60283,7 @@ paths: description: Response content: application/json: - schema: &389 + schema: &391 title: CheckRun description: A check performed on the code of a given code change type: object @@ -60052,8 +60418,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *388 - deployment: &693 + items: *390 + deployment: &695 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60340,9 +60706,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *309 - - *310 - - &390 + - *311 + - *312 + - &392 name: check_run_id description: The unique identifier of the check run. in: path @@ -60354,9 +60720,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: &391 + default: &393 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60456,9 +60822,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *309 - - *310 - - *390 + - *311 + - *312 + - *392 requestBody: required: true content: @@ -60698,9 +61064,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *391 + default: *393 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60720,9 +61086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *309 - - *310 - - *390 + - *311 + - *312 + - *392 - *17 - *19 responses: @@ -60832,9 +61198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *309 - - *310 - - *390 + - *311 + - *312 + - *392 responses: '201': description: Response @@ -60878,8 +61244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -60901,7 +61267,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &393 + schema: &395 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -60983,7 +61349,7 @@ paths: type: - array - 'null' - items: *388 + items: *390 app: anyOf: - type: 'null' @@ -60999,7 +61365,7 @@ paths: - string - 'null' format: date-time - head_commit: *392 + head_commit: *394 latest_check_runs_count: type: integer check_runs_url: @@ -61027,7 +61393,7 @@ paths: - check_runs_url - pull_requests examples: - default: &394 + default: &396 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61318,9 +61684,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *393 + schema: *395 examples: - default: *394 + default: *396 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61339,8 +61705,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -61649,9 +62015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *309 - - *310 - - &395 + - *311 + - *312 + - &397 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61663,9 +62029,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: *394 + default: *396 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61688,17 +62054,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *309 - - *310 - - *395 - - &443 + - *311 + - *312 + - *397 + - &445 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &444 + - &446 name: status description: Returns check runs with the specified `status`. in: query @@ -61737,9 +62103,9 @@ paths: type: integer check_runs: type: array - items: *389 + items: *391 examples: - default: &445 + default: &447 value: total_count: 1 check_runs: @@ -61841,9 +62207,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *309 - - *310 - - *395 + - *311 + - *312 + - *397 responses: '201': description: Response @@ -61876,21 +62242,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *309 - - *310 - - *396 - - *397 + - *311 + - *312 + - *398 + - *399 - *19 - *17 - - &414 + - &416 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *398 - - &415 + schema: *400 + - &417 name: pr description: The number of the pull request for the results you want to list. in: query @@ -61915,13 +62281,13 @@ paths: be returned. in: query required: false - schema: *399 + schema: *401 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *400 + schema: *402 responses: '200': description: Response @@ -61932,24 +62298,24 @@ paths: items: type: object properties: - number: *152 - created_at: *153 - updated_at: *154 - url: *155 - html_url: *156 - instances_url: *401 - state: *161 - fixed_at: *157 + number: *154 + created_at: *155 + updated_at: *156 + url: *157 + html_url: *158 + instances_url: *403 + state: *163 + fixed_at: *159 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *158 - dismissed_reason: *402 - dismissed_comment: *403 - rule: *404 - tool: *405 - most_recent_instance: *406 + dismissed_at: *160 + dismissed_reason: *404 + dismissed_comment: *405 + rule: *406 + tool: *407 + most_recent_instance: *408 dismissal_approved_by: anyOf: - type: 'null' @@ -62072,7 +62438,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &407 + '403': &409 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -62099,9 +62465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *309 - - *310 - - &408 + - *311 + - *312 + - &410 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -62109,30 +62475,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *152 + schema: *154 responses: '200': description: Response content: application/json: - schema: &409 + schema: &411 type: object properties: - number: *152 - created_at: *153 - updated_at: *154 - url: *155 - html_url: *156 - instances_url: *401 - state: *161 - fixed_at: *157 + number: *154 + created_at: *155 + updated_at: *156 + url: *157 + html_url: *158 + instances_url: *403 + state: *163 + fixed_at: *159 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *158 - dismissed_reason: *402 - dismissed_comment: *403 + dismissed_at: *160 + dismissed_reason: *404 + dismissed_comment: *405 rule: type: object properties: @@ -62194,8 +62560,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *405 - most_recent_instance: *406 + tool: *407 + most_recent_instance: *408 dismissal_approved_by: anyOf: - type: 'null' @@ -62291,7 +62657,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -62311,9 +62677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 requestBody: required: true content: @@ -62328,8 +62694,8 @@ paths: enum: - open - dismissed - dismissed_reason: *402 - dismissed_comment: *403 + dismissed_reason: *404 + dismissed_comment: *405 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -62348,7 +62714,7 @@ paths: description: Response content: application/json: - schema: *409 + schema: *411 examples: default: value: @@ -62424,7 +62790,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &413 + '403': &415 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -62451,15 +62817,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 responses: '200': description: Response content: application/json: - schema: &410 + schema: &412 type: object properties: status: @@ -62486,13 +62852,13 @@ paths: - description - started_at examples: - default: &411 + default: &413 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &412 + '400': &414 description: Bad Request content: application/json: @@ -62503,7 +62869,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -62528,29 +62894,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 responses: '200': description: OK content: application/json: - schema: *410 + schema: *412 examples: - default: *411 + default: *413 '202': description: Accepted content: application/json: - schema: *410 + schema: *412 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *412 + '400': *414 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62582,9 +62948,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 requestBody: required: false content: @@ -62630,8 +62996,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *412 - '403': *413 + '400': *414 + '403': *415 '404': *6 '422': description: Unprocessable Entity @@ -62655,13 +63021,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 - *19 - *17 - - *414 - - *415 + - *416 + - *417 responses: '200': description: Response @@ -62669,7 +63035,7 @@ paths: application/json: schema: type: array - items: *406 + items: *408 examples: default: value: @@ -62708,7 +63074,7 @@ paths: end_column: 50 classifications: - source - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -62742,25 +63108,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *309 - - *310 - - *396 - - *397 + - *311 + - *312 + - *398 + - *399 - *19 - *17 - - *415 + - *417 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *398 + schema: *400 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &418 + schema: &420 type: string description: An identifier for the upload. examples: @@ -62782,23 +63148,23 @@ paths: application/json: schema: type: array - items: &419 + items: &421 type: object properties: - ref: *398 - commit_sha: &427 + ref: *400 + commit_sha: &429 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *416 + analysis_key: *418 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *417 + category: *419 error: type: string examples: @@ -62823,8 +63189,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *418 - tool: *405 + sarif_id: *420 + tool: *407 deletable: type: boolean warning: @@ -62886,7 +63252,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -62922,8 +63288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62936,7 +63302,7 @@ paths: description: Response content: application/json: - schema: *419 + schema: *421 examples: response: summary: application/json response @@ -62990,7 +63356,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *407 + '403': *409 '404': *6 '422': description: Response if analysis could not be processed @@ -63077,8 +63443,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63134,7 +63500,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *413 + '403': *415 '404': *6 '503': *97 x-github: @@ -63156,8 +63522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -63165,7 +63531,7 @@ paths: application/json: schema: type: array - items: &420 + items: &422 title: CodeQL Database description: A CodeQL database. type: object @@ -63277,7 +63643,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -63306,8 +63672,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: language in: path description: The language of the CodeQL database. @@ -63319,7 +63685,7 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: default: value: @@ -63351,9 +63717,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &450 + '302': &452 description: Found - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -63375,8 +63741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *309 - - *310 + - *311 + - *312 - name: language in: path description: The language of the CodeQL database. @@ -63386,7 +63752,7 @@ paths: responses: '204': description: Response - '403': *413 + '403': *415 '404': *6 '503': *97 x-github: @@ -63414,8 +63780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -63424,10 +63790,11 @@ paths: type: object additionalProperties: false properties: - language: &421 + language: &423 type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -63503,7 +63870,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &425 + schema: &427 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63513,7 +63880,7 @@ paths: description: The ID of the variant analysis. controller_repo: *51 actor: *4 - query_language: *421 + query_language: *423 query_pack_url: type: string description: The download url for the query pack. @@ -63561,7 +63928,7 @@ paths: items: type: object properties: - repository: &422 + repository: &424 title: Repository Identifier description: Repository Identifier type: object @@ -63603,7 +63970,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &426 + analysis_status: &428 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63635,7 +64002,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &423 + access_mismatch_repos: &425 type: object properties: repository_count: @@ -63650,7 +64017,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *422 + items: *424 required: - repository_count - repositories @@ -63673,8 +64040,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *423 - over_limit_repos: *423 + no_codeql_db_repos: *425 + over_limit_repos: *425 required: - access_mismatch_repos - not_found_repos @@ -63690,7 +64057,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &424 + value: &426 summary: Default response value: id: 1 @@ -63842,10 +64209,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *424 + value: *426 repository_lists: summary: Response for a successful variant analysis submission - value: *424 + value: *426 '404': *6 '422': description: Unable to process variant analysis submission @@ -63873,8 +64240,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *309 - - *310 + - *311 + - *312 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -63886,9 +64253,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *424 + default: *426 '404': *6 '503': *97 x-github: @@ -63911,7 +64278,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *309 + - *311 - name: repo in: path description: The name of the controller repository. @@ -63946,7 +64313,7 @@ paths: type: object properties: repository: *51 - analysis_status: *426 + analysis_status: *428 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -64071,8 +64438,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -64165,7 +64532,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -64186,8 +64553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -64281,7 +64648,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *413 + '403': *415 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64352,8 +64719,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -64361,7 +64728,7 @@ paths: schema: type: object properties: - commit_sha: *427 + commit_sha: *429 ref: type: string description: |- @@ -64421,7 +64788,7 @@ paths: schema: type: object properties: - id: *418 + id: *420 url: type: string description: The REST API URL for checking the status of the upload. @@ -64435,7 +64802,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *413 + '403': *415 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -64458,8 +64825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *309 - - *310 + - *311 + - *312 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64507,7 +64874,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *407 + '403': *409 '404': description: Not Found if the sarif id does not match any upload '503': *97 @@ -64532,8 +64899,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -64589,7 +64956,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *166 + '204': *168 '304': *35 '403': *27 '404': *6 @@ -64614,8 +64981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *309 - - *310 + - *311 + - *312 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -64743,8 +65110,8 @@ paths: parameters: - *17 - *19 - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -64760,7 +65127,7 @@ paths: type: integer codespaces: type: array - items: *211 + items: *213 examples: default: value: @@ -65058,8 +65425,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -65123,17 +65490,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '400': *14 '401': *23 '403': *27 @@ -65162,8 +65529,8 @@ paths: parameters: - *17 - *19 - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -65227,8 +65594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65265,9 +65632,9 @@ paths: type: integer machines: type: array - items: *429 + items: *431 examples: - default: &643 + default: &645 value: total_count: 2 machines: @@ -65307,8 +65674,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *309 - - *310 + - *311 + - *312 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65395,8 +65762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *309 - - *310 + - *311 + - *312 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -65465,8 +65832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -65484,7 +65851,7 @@ paths: type: integer secrets: type: array - items: &433 + items: &435 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65505,7 +65872,7 @@ paths: - created_at - updated_at examples: - default: *430 + default: *432 headers: Link: *52 x-github: @@ -65528,16 +65895,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65557,17 +65924,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '200': description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65587,8 +65954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 requestBody: required: true @@ -65641,8 +66008,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '204': @@ -65671,8 +66038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *309 - - *310 + - *311 + - *312 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65710,7 +66077,7 @@ paths: application/json: schema: type: array - items: &435 + items: &437 title: Collaborator description: Collaborator type: object @@ -65903,8 +66270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *309 - - *310 + - *311 + - *312 - *57 responses: '204': @@ -65951,8 +66318,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *309 - - *310 + - *311 + - *312 - *57 requestBody: required: false @@ -65979,7 +66346,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &499 + schema: &501 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -66207,8 +66574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *309 - - *310 + - *311 + - *312 - *57 responses: '204': @@ -66240,8 +66607,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *309 - - *310 + - *311 + - *312 - *57 responses: '200': @@ -66262,7 +66629,7 @@ paths: user: anyOf: - type: 'null' - - *435 + - *437 required: - permission - role_name @@ -66316,8 +66683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -66327,7 +66694,7 @@ paths: application/json: schema: type: array - items: &436 + items: &438 title: Commit Comment description: Commit Comment type: object @@ -66385,7 +66752,7 @@ paths: - created_at - updated_at examples: - default: &439 + default: &441 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66444,17 +66811,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '200': description: Response content: application/json: - schema: *436 + schema: *438 examples: - default: &440 + default: &442 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66511,8 +66878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -66535,7 +66902,7 @@ paths: description: Response content: application/json: - schema: *436 + schema: *438 examples: default: value: @@ -66586,8 +66953,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '204': @@ -66609,8 +66976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -66637,9 +67004,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 '404': *6 @@ -66660,8 +67027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -66694,16 +67061,16 @@ paths: description: Reaction exists content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Reaction created content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '422': *15 x-github: githubCloudOnly: false @@ -66725,10 +67092,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *309 - - *310 + - *311 + - *312 - *77 - - *305 + - *307 responses: '204': description: Response @@ -66777,8 +67144,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *309 - - *310 + - *311 + - *312 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -66834,9 +67201,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: &549 + default: &551 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66930,9 +67297,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *309 - - *310 - - &438 + - *311 + - *312 + - &440 name: commit_sha description: The SHA of the commit. in: path @@ -67004,9 +67371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *309 - - *310 - - *438 + - *311 + - *312 + - *440 - *17 - *19 responses: @@ -67016,9 +67383,9 @@ paths: application/json: schema: type: array - items: *436 + items: *438 examples: - default: *439 + default: *441 headers: Link: *52 x-github: @@ -67046,9 +67413,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *309 - - *310 - - *438 + - *311 + - *312 + - *440 requestBody: required: true content: @@ -67083,9 +67450,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *438 examples: - default: *440 + default: *442 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67113,9 +67480,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *309 - - *310 - - *438 + - *311 + - *312 + - *440 - *17 - *19 responses: @@ -67125,9 +67492,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: &541 + default: &543 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67664,11 +68031,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *309 - - *310 + - *311 + - *312 - *19 - *17 - - &442 + - &444 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -67683,9 +68050,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: &527 + default: &529 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67798,11 +68165,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *309 - - *310 - - *442 - - *443 + - *311 + - *312 - *444 + - *445 + - *446 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -67836,9 +68203,9 @@ paths: type: integer check_runs: type: array - items: *389 + items: *391 examples: - default: *445 + default: *447 headers: Link: *52 x-github: @@ -67863,9 +68230,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *309 - - *310 - - *442 + - *311 + - *312 + - *444 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -67873,7 +68240,7 @@ paths: schema: type: integer example: 1 - - *443 + - *445 - *17 - *19 responses: @@ -67891,7 +68258,7 @@ paths: type: integer check_suites: type: array - items: *393 + items: *395 examples: default: value: @@ -68091,9 +68458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *309 - - *310 - - *442 + - *311 + - *312 + - *444 - *17 - *19 responses: @@ -68295,9 +68662,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *309 - - *310 - - *442 + - *311 + - *312 + - *444 - *17 - *19 responses: @@ -68307,7 +68674,7 @@ paths: application/json: schema: type: array - items: &614 + items: &616 title: Status description: The status of a commit. type: object @@ -68388,7 +68755,7 @@ paths: site_admin: false headers: Link: *52 - '301': *316 + '301': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68416,8 +68783,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -68450,11 +68817,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *446 + - *448 code_of_conduct_file: anyOf: - type: 'null' - - &447 + - &449 title: Community Health File type: object properties: @@ -68474,19 +68841,19 @@ paths: contributing: anyOf: - type: 'null' - - *447 + - *449 readme: anyOf: - type: 'null' - - *447 + - *449 issue_template: anyOf: - type: 'null' - - *447 + - *449 pull_request_template: anyOf: - type: 'null' - - *447 + - *449 required: - code_of_conduct - code_of_conduct_file @@ -68615,8 +68982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *309 - - *310 + - *311 + - *312 - *19 - *17 - name: basehead @@ -68664,8 +69031,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *437 - merge_base_commit: *437 + base_commit: *439 + merge_base_commit: *439 status: type: string enum: @@ -68689,10 +69056,10 @@ paths: - 6 commits: type: array - items: *437 + items: *439 files: type: array - items: *448 + items: *450 required: - url - html_url @@ -68978,8 +69345,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *309 - - *310 + - *311 + - *312 - name: path description: path parameter in: path @@ -69132,7 +69499,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &449 + response-if-content-is-a-file: &451 summary: Response if content is a file value: type: file @@ -69269,7 +69636,7 @@ paths: - size - type - url - - &554 + - &556 title: Content File description: Content File type: object @@ -69487,7 +69854,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *449 + response-if-content-is-a-file: *451 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -69556,7 +69923,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *450 + '302': *452 '304': *35 x-github: githubCloudOnly: false @@ -69579,8 +69946,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *309 - - *310 + - *311 + - *312 - name: path description: path parameter in: path @@ -69675,7 +70042,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &453 title: File Commit description: File Commit type: object @@ -69831,7 +70198,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: example-for-creating-a-file: value: @@ -69885,7 +70252,7 @@ paths: schema: oneOf: - *3 - - &481 + - &483 description: Repository rule violation was detected type: object properties: @@ -69906,7 +70273,7 @@ paths: items: type: object properties: - placeholder_id: &606 + placeholder_id: &608 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -69938,8 +70305,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *309 - - *310 + - *311 + - *312 - name: path description: path parameter in: path @@ -70000,7 +70367,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: default: value: @@ -70055,8 +70422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *309 - - *310 + - *311 + - *312 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -70180,22 +70547,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *309 - - *310 - - *171 - - *172 + - *311 + - *312 - *173 - *174 + - *175 + - *176 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *175 - - *452 - - *176 - *177 + - *454 + - *178 + - *179 - *46 - name: per_page description: The number of results per page (max 100). For more information, @@ -70214,11 +70581,11 @@ paths: application/json: schema: type: array - items: &455 + items: &457 type: object description: A Dependabot alert. properties: - number: *152 + number: *154 state: type: string description: The state of the Dependabot alert. @@ -70264,13 +70631,13 @@ paths: - direct - transitive - - security_advisory: *453 + security_advisory: *455 security_vulnerability: *50 - url: *155 - html_url: *156 - created_at: *153 - updated_at: *154 - dismissed_at: *158 + url: *157 + html_url: *158 + created_at: *155 + updated_at: *156 + dismissed_at: *160 dismissed_by: anyOf: - type: 'null' @@ -70294,8 +70661,8 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *157 - auto_dismissed_at: *454 + fixed_at: *159 + auto_dismissed_at: *456 required: - number - state @@ -70525,9 +70892,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *309 - - *310 - - &456 + - *311 + - *312 + - &458 name: alert_number in: path description: |- @@ -70536,13 +70903,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *152 + schema: *154 responses: '200': description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -70655,9 +71022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *309 - - *310 - - *456 + - *311 + - *312 + - *458 requestBody: required: true content: @@ -70702,7 +71069,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -70831,8 +71198,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -70850,7 +71217,7 @@ paths: type: integer secrets: type: array - items: &459 + items: &461 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -70904,16 +71271,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *457 + schema: *459 examples: - default: *458 + default: *460 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70933,15 +71300,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '200': description: Response content: application/json: - schema: *459 + schema: *461 examples: default: value: @@ -70967,8 +71334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 requestBody: required: true @@ -71021,8 +71388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '204': @@ -71045,8 +71412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *309 - - *310 + - *311 + - *312 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -71220,8 +71587,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -71481,8 +71848,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -71565,7 +71932,7 @@ paths: - version - url additionalProperties: false - metadata: &460 + metadata: &462 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71604,7 +71971,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *460 + metadata: *462 resolved: type: object description: A collection of resolved package dependencies. @@ -71618,7 +71985,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *460 + metadata: *462 relationship: type: string description: A notation of whether a dependency is requested @@ -71751,8 +72118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *309 - - *310 + - *311 + - *312 - name: sha description: The SHA recorded at creation time. in: query @@ -71793,9 +72160,9 @@ paths: application/json: schema: type: array - items: *461 + items: *463 examples: - default: *462 + default: *464 headers: Link: *52 x-github: @@ -71861,8 +72228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -71944,7 +72311,7 @@ paths: description: Response content: application/json: - schema: *461 + schema: *463 examples: simple-example: summary: Simple example @@ -72017,9 +72384,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *309 - - *310 - - &463 + - *311 + - *312 + - &465 name: deployment_id description: deployment_id parameter in: path @@ -72031,7 +72398,7 @@ paths: description: Response content: application/json: - schema: *461 + schema: *463 examples: default: value: @@ -72096,9 +72463,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *309 - - *310 - - *463 + - *311 + - *312 + - *465 responses: '204': description: Response @@ -72120,9 +72487,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *309 - - *310 - - *463 + - *311 + - *312 + - *465 - *17 - *19 responses: @@ -72132,7 +72499,7 @@ paths: application/json: schema: type: array - items: &464 + items: &466 title: Deployment Status description: The status of a deployment. type: object @@ -72296,9 +72663,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *309 - - *310 - - *463 + - *311 + - *312 + - *465 requestBody: required: true content: @@ -72373,9 +72740,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *466 examples: - default: &465 + default: &467 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72431,9 +72798,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *309 - - *310 - - *463 + - *311 + - *312 + - *465 - name: status_id in: path required: true @@ -72444,9 +72811,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *466 examples: - default: *465 + default: *467 '404': *6 x-github: githubCloudOnly: false @@ -72471,8 +72838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -72529,8 +72896,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -72548,7 +72915,7 @@ paths: - 5 environments: type: array - items: &467 + items: &469 title: Environment description: Details of a deployment environment type: object @@ -72610,7 +72977,7 @@ paths: type: string examples: - wait_timer - wait_timer: &469 + wait_timer: &471 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -72652,11 +73019,11 @@ paths: items: type: object properties: - type: *466 + type: *468 reviewer: anyOf: - *4 - - *170 + - *172 required: - id - node_id @@ -72679,7 +73046,7 @@ paths: - id - node_id - type - deployment_branch_policy: &470 + deployment_branch_policy: &472 type: - object - 'null' @@ -72796,9 +73163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *309 - - *310 - - &468 + - *311 + - *312 + - &470 name: environment_name in: path required: true @@ -72811,9 +73178,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *469 examples: - default: &471 + default: &473 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -72897,9 +73264,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 requestBody: required: false content: @@ -72909,7 +73276,7 @@ paths: - object - 'null' properties: - wait_timer: *469 + wait_timer: *471 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -72928,14 +73295,14 @@ paths: items: type: object properties: - type: *466 + type: *468 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *470 + deployment_branch_policy: *472 additionalProperties: false examples: default: @@ -72955,9 +73322,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *469 examples: - default: *471 + default: *473 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -72981,9 +73348,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 responses: '204': description: Default response @@ -73008,9 +73375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *17 - *19 responses: @@ -73029,7 +73396,7 @@ paths: - 2 branch_policies: type: array - items: &472 + items: &474 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -73090,9 +73457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 requestBody: required: true content: @@ -73140,9 +73507,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: - example-wildcard: &473 + example-wildcard: &475 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -73184,10 +73551,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *309 - - *310 - - *468 - - &474 + - *311 + - *312 + - *470 + - &476 name: branch_policy_id in: path required: true @@ -73199,9 +73566,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: - default: *473 + default: *475 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73220,10 +73587,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *309 - - *310 - - *468 - - *474 + - *311 + - *312 + - *470 + - *476 requestBody: required: true content: @@ -73252,9 +73619,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: - default: *473 + default: *475 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73273,10 +73640,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *309 - - *310 - - *468 - - *474 + - *311 + - *312 + - *470 + - *476 responses: '204': description: Response @@ -73301,9 +73668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *468 - - *310 - - *309 + - *470 + - *312 + - *311 responses: '200': description: List of deployment protection rules @@ -73320,7 +73687,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &475 + items: &477 title: Deployment protection rule description: Deployment protection rule type: object @@ -73342,7 +73709,7 @@ paths: for the environment. examples: - true - app: &476 + app: &478 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73445,9 +73812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *468 - - *310 - - *309 + - *470 + - *312 + - *311 requestBody: content: application/json: @@ -73468,9 +73835,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *475 + schema: *477 examples: - default: &477 + default: &479 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73505,9 +73872,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *468 - - *310 - - *309 + - *470 + - *312 + - *311 - *19 - *17 responses: @@ -73527,7 +73894,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *476 + items: *478 examples: default: value: @@ -73562,10 +73929,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *309 - - *310 - - *468 - - &478 + - *311 + - *312 + - *470 + - &480 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73577,9 +73944,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *477 examples: - default: *477 + default: *479 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73600,10 +73967,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *468 - - *310 - - *309 - - *478 + - *470 + - *312 + - *311 + - *480 responses: '204': description: Response @@ -73629,9 +73996,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *17 - *19 responses: @@ -73649,9 +74016,9 @@ paths: type: integer secrets: type: array - items: *355 + items: *357 examples: - default: *356 + default: *358 headers: Link: *52 x-github: @@ -73676,17 +74043,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 responses: '200': description: Response content: application/json: - schema: *357 + schema: *359 examples: - default: *358 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73708,18 +74075,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *144 responses: '200': description: Response content: application/json: - schema: *355 + schema: *357 examples: - default: *479 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73741,9 +74108,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *144 requestBody: required: true @@ -73801,9 +74168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *144 responses: '204': @@ -73829,10 +74196,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *309 - - *310 - - *468 - - *326 + - *311 + - *312 + - *470 + - *328 - *19 responses: '200': @@ -73849,9 +74216,9 @@ paths: type: integer variables: type: array - items: *359 + items: *361 examples: - default: *360 + default: *362 headers: Link: *52 x-github: @@ -73874,9 +74241,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 requestBody: required: true content: @@ -73928,18 +74295,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *147 responses: '200': description: Response content: application/json: - schema: *359 + schema: *361 examples: - default: *480 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73960,10 +74327,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *309 - - *310 + - *311 + - *312 - *147 - - *468 + - *470 requestBody: required: true content: @@ -74005,10 +74372,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *309 - - *310 + - *311 + - *312 - *147 - - *468 + - *470 responses: '204': description: Response @@ -74030,8 +74397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -74099,8 +74466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *309 - - *310 + - *311 + - *312 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -74259,8 +74626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -74293,9 +74660,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *317 + default: *319 '400': *14 '422': *15 '403': *27 @@ -74316,8 +74683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -74377,7 +74744,7 @@ paths: schema: oneOf: - *105 - - *481 + - *483 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74402,8 +74769,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *309 - - *310 + - *311 + - *312 - name: file_sha in: path required: true @@ -74503,8 +74870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -74613,7 +74980,7 @@ paths: description: Response content: application/json: - schema: &482 + schema: &484 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -74840,15 +75207,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *309 - - *310 - - *438 + - *311 + - *312 + - *440 responses: '200': description: Response content: application/json: - schema: *482 + schema: *484 examples: default: value: @@ -74904,9 +75271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *309 - - *310 - - &483 + - *311 + - *312 + - &485 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. @@ -74923,7 +75290,7 @@ paths: application/json: schema: type: array - items: &484 + items: &486 title: Git Reference description: Git references within a repository type: object @@ -74999,17 +75366,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *309 - - *310 - - *483 + - *311 + - *312 + - *485 responses: '200': description: Response content: application/json: - schema: *484 + schema: *486 examples: - default: &485 + default: &487 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -75038,8 +75405,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -75068,9 +75435,9 @@ paths: description: Response content: application/json: - schema: *484 + schema: *486 examples: - default: *485 + default: *487 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -75096,9 +75463,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *309 - - *310 - - *483 + - *311 + - *312 + - *485 requestBody: required: true content: @@ -75127,9 +75494,9 @@ paths: description: Response content: application/json: - schema: *484 + schema: *486 examples: - default: *485 + default: *487 '422': *15 '409': *45 x-github: @@ -75147,9 +75514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *309 - - *310 - - *483 + - *311 + - *312 + - *485 responses: '204': description: Response @@ -75204,8 +75571,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -75272,7 +75639,7 @@ paths: description: Response content: application/json: - schema: &487 + schema: &489 title: Git Tag description: Metadata for a Git tag type: object @@ -75328,7 +75695,7 @@ paths: - sha - type - url - verification: *486 + verification: *488 required: - sha - url @@ -75338,7 +75705,7 @@ paths: - tag - message examples: - default: &488 + default: &490 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75411,8 +75778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *309 - - *310 + - *311 + - *312 - name: tag_sha in: path required: true @@ -75423,9 +75790,9 @@ paths: description: Response content: application/json: - schema: *487 + schema: *489 examples: - default: *488 + default: *490 '404': *6 '409': *45 x-github: @@ -75449,8 +75816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -75524,7 +75891,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &491 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75626,8 +75993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *309 - - *310 + - *311 + - *312 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -75650,7 +76017,7 @@ paths: description: Response content: application/json: - schema: *489 + schema: *491 examples: default-response: summary: Default response @@ -75709,8 +76076,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -75720,7 +76087,7 @@ paths: application/json: schema: type: array - items: &490 + items: &492 title: Webhook description: Webhooks for repositories. type: object @@ -75783,7 +76150,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &724 + last_response: &726 title: Hook Response type: object properties: @@ -75860,8 +76227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -75914,9 +76281,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *492 examples: - default: &491 + default: &493 value: type: Repository id: 12345678 @@ -75964,17 +76331,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 responses: '200': description: Response content: application/json: - schema: *490 + schema: *492 examples: - default: *491 + default: *493 '404': *6 x-github: githubCloudOnly: false @@ -75994,9 +76361,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 requestBody: required: true content: @@ -76041,9 +76408,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *492 examples: - default: *491 + default: *493 '422': *15 '404': *6 x-github: @@ -76064,9 +76431,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 responses: '204': description: Response @@ -76090,9 +76457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 responses: '200': description: Response @@ -76119,9 +76486,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 requestBody: required: false content: @@ -76165,11 +76532,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 - *17 - - *184 + - *186 responses: '200': description: Response @@ -76177,9 +76544,9 @@ paths: application/json: schema: type: array - items: *185 + items: *187 examples: - default: *186 + default: *188 '400': *14 '422': *15 x-github: @@ -76198,18 +76565,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 - *16 responses: '200': description: Response content: application/json: - schema: *187 + schema: *189 examples: - default: *188 + default: *190 '400': *14 '422': *15 x-github: @@ -76228,9 +76595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 - *16 responses: '202': *37 @@ -76253,9 +76620,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 responses: '204': description: Response @@ -76280,9 +76647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 responses: '204': description: Response @@ -76305,8 +76672,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response if immutable releases are enabled @@ -76354,10 +76721,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *309 - - *310 + - *311 + - *312 responses: - '204': *166 + '204': *168 '409': *45 x-github: githubCloudOnly: false @@ -76375,10 +76742,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *309 - - *310 + - *311 + - *312 responses: - '204': *166 + '204': *168 '409': *45 x-github: githubCloudOnly: false @@ -76433,14 +76800,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: &492 + schema: &494 title: Import description: A repository import from an external source. type: object @@ -76547,7 +76914,7 @@ paths: - html_url - authors_url examples: - default: &495 + default: &497 value: vcs: subversion use_lfs: true @@ -76563,7 +76930,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': &493 + '503': &495 description: Unavailable due to service under maintenance. content: application/json: @@ -76592,8 +76959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -76641,7 +77008,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *494 examples: default: value: @@ -76666,7 +77033,7 @@ paths: type: string '422': *15 '404': *6 - '503': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76694,8 +77061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -76747,7 +77114,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *494 examples: example-1: summary: Example 1 @@ -76795,7 +77162,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': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76818,12 +77185,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response - '503': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76849,9 +77216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *309 - - *310 - - &664 + - *311 + - *312 + - &666 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76865,7 +77232,7 @@ paths: application/json: schema: type: array - items: &494 + items: &496 title: Porter Author description: Porter Author type: object @@ -76919,7 +77286,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': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76944,8 +77311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *309 - - *310 + - *311 + - *312 - name: author_id in: path required: true @@ -76975,7 +77342,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: default: value: @@ -76988,7 +77355,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77012,8 +77379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -77054,7 +77421,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77082,8 +77449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -77110,11 +77477,11 @@ paths: description: Response content: application/json: - schema: *492 + schema: *494 examples: - default: *495 + default: *497 '422': *15 - '503': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77137,8 +77504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -77146,8 +77513,8 @@ paths: application/json: schema: *20 examples: - default: *496 - '301': *316 + default: *498 + '301': *318 '404': *6 x-github: githubCloudOnly: false @@ -77167,8 +77534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -77176,12 +77543,12 @@ paths: application/json: schema: anyOf: - - *201 + - *203 - type: object properties: {} additionalProperties: false examples: - default: &498 + default: &500 value: limit: collaborators_only origin: repository @@ -77206,13 +77573,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: application/json: - schema: *497 + schema: *499 examples: default: summary: Example request body @@ -77224,9 +77591,9 @@ paths: description: Response content: application/json: - schema: *201 + schema: *203 examples: - default: *498 + default: *500 '409': description: Response x-github: @@ -77248,8 +77615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -77272,8 +77639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -77283,9 +77650,9 @@ paths: application/json: schema: type: array - items: *499 + items: *501 examples: - default: &657 + default: &659 value: - id: 1 repository: @@ -77416,9 +77783,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *309 - - *310 - - *205 + - *311 + - *312 + - *207 requestBody: required: false content: @@ -77447,7 +77814,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *501 examples: default: value: @@ -77578,9 +77945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *309 - - *310 - - *205 + - *311 + - *312 + - *207 responses: '204': description: Response @@ -77611,8 +77978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *309 - - *310 + - *311 + - *312 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -77660,7 +78027,7 @@ paths: required: false schema: type: string - - *209 + - *211 - name: sort description: What to sort results by. in: query @@ -77685,7 +78052,7 @@ paths: type: array items: *78 examples: - default: &507 + default: &509 value: - id: 1 node_id: MDU6SXNzdWUx @@ -77833,7 +78200,7 @@ paths: state_reason: completed headers: Link: *52 - '301': *316 + '301': *318 '422': *15 '404': *6 x-github: @@ -77862,8 +78229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -77955,7 +78322,7 @@ paths: application/json: schema: *78 examples: - default: &504 + default: &506 value: id: 1 node_id: MDU6SXNzdWUx @@ -78111,7 +78478,7 @@ paths: '422': *15 '503': *97 '404': *6 - '410': *500 + '410': *502 x-github: triggersNotification: true githubCloudOnly: false @@ -78139,8 +78506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *87 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -78161,9 +78528,9 @@ paths: application/json: schema: type: array - items: *501 + items: *503 examples: - default: &506 + default: &508 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78221,17 +78588,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: &502 + default: &504 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78285,8 +78652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -78309,9 +78676,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *502 + default: *504 '422': *15 x-github: githubCloudOnly: false @@ -78329,8 +78696,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '204': @@ -78351,8 +78718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -78379,9 +78746,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 '404': *6 @@ -78402,8 +78769,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -78436,16 +78803,16 @@ paths: description: Reaction exists content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Reaction created content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '422': *15 x-github: githubCloudOnly: false @@ -78467,10 +78834,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *309 - - *310 + - *311 + - *312 - *77 - - *305 + - *307 responses: '204': description: Response @@ -78490,8 +78857,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -78501,7 +78868,7 @@ paths: application/json: schema: type: array - items: &503 + items: &505 title: Issue Event description: Issue Event type: object @@ -78581,7 +78948,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *170 + requested_team: *172 dismissed_review: title: Issue Event Dismissed Review type: object @@ -78840,8 +79207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *309 - - *310 + - *311 + - *312 - name: event_id in: path required: true @@ -78852,7 +79219,7 @@ paths: description: Response content: application/json: - schema: *503 + schema: *505 examples: default: value: @@ -79045,7 +79412,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *500 + '410': *502 '403': *27 x-github: githubCloudOnly: false @@ -79079,9 +79446,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *309 - - *310 - - &505 + - *311 + - *312 + - &507 name: issue_number description: The number that identifies the issue. in: path @@ -79095,10 +79462,10 @@ paths: application/json: schema: *78 examples: - default: *504 - '301': *316 + default: *506 + '301': *318 '404': *6 - '410': *500 + '410': *502 '304': *35 x-github: githubCloudOnly: false @@ -79123,9 +79490,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: false content: @@ -79246,13 +79613,13 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 '422': *15 '503': *97 '403': *27 - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79270,9 +79637,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: false content: @@ -79300,7 +79667,7 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79316,9 +79683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: content: application/json: @@ -79345,7 +79712,7 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79367,9 +79734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - name: assignee in: path required: true @@ -79409,9 +79776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *68 - *17 - *19 @@ -79422,13 +79789,13 @@ paths: application/json: schema: type: array - items: *501 + items: *503 examples: - default: *506 + default: *508 headers: Link: *52 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79457,9 +79824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -79481,16 +79848,16 @@ paths: description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *502 + default: *504 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *500 + '410': *502 '422': *15 '404': *6 x-github: @@ -79518,9 +79885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -79532,12 +79899,12 @@ paths: type: array items: *78 examples: - default: *507 + default: *509 headers: Link: *52 - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79565,9 +79932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -79591,15 +79958,15 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *316 + '301': *318 '403': *27 - '410': *500 + '410': *502 '422': *15 '404': *6 x-github: @@ -79630,9 +79997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -79646,13 +80013,13 @@ paths: application/json: schema: *78 examples: - default: *504 - '301': *316 + default: *506 + '301': *318 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *500 + '410': *502 x-github: triggersNotification: true githubCloudOnly: false @@ -79678,9 +80045,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -79692,12 +80059,12 @@ paths: type: array items: *78 examples: - default: *507 + default: *509 headers: Link: *52 - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79714,9 +80081,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -79730,7 +80097,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &510 + - &512 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79779,7 +80146,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &511 + - &513 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -79907,7 +80274,7 @@ paths: - performed_via_github_app - assignee - assigner - - &512 + - &514 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -79953,7 +80320,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &513 + - &515 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -79999,7 +80366,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &514 + - &516 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -80048,7 +80415,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &515 + - &517 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -80077,7 +80444,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *170 + requested_team: *172 requested_reviewer: *4 required: - review_requester @@ -80090,7 +80457,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &516 + - &518 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -80119,7 +80486,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *170 + requested_team: *172 requested_reviewer: *4 required: - review_requester @@ -80132,7 +80499,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &517 + - &519 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80188,7 +80555,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &518 + - &520 title: Locked Issue Event description: Locked Issue Event type: object @@ -80233,7 +80600,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &519 + - &521 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -80294,7 +80661,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &520 + - &522 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -80355,7 +80722,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &521 + - &523 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80416,7 +80783,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &522 + - &524 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80509,7 +80876,7 @@ paths: color: red headers: Link: *52 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80526,9 +80893,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -80538,7 +80905,7 @@ paths: application/json: schema: type: array - items: &508 + items: &510 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -80593,7 +80960,7 @@ paths: - color - default examples: - default: &509 + default: &511 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80611,9 +80978,9 @@ paths: default: false headers: Link: *52 - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80630,9 +80997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: false content: @@ -80691,12 +81058,12 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: - default: *509 - '301': *316 + default: *511 + '301': *318 '404': *6 - '410': *500 + '410': *502 '422': *15 x-github: githubCloudOnly: false @@ -80713,9 +81080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: false content: @@ -80775,12 +81142,12 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: - default: *509 - '301': *316 + default: *511 + '301': *318 '404': *6 - '410': *500 + '410': *502 '422': *15 x-github: githubCloudOnly: false @@ -80797,15 +81164,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 responses: '204': description: Response - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80824,9 +81191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - name: name in: path required: true @@ -80839,7 +81206,7 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: default: value: @@ -80850,9 +81217,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80872,9 +81239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: false content: @@ -80903,7 +81270,7 @@ paths: '204': description: Response '403': *27 - '410': *500 + '410': *502 '404': *6 '422': *15 x-github: @@ -80921,9 +81288,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 responses: '204': description: Response @@ -80953,9 +81320,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 responses: '200': description: Response @@ -80963,10 +81330,10 @@ paths: application/json: schema: *78 examples: - default: *504 - '301': *316 + default: *506 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80983,9 +81350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - 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. @@ -81011,13 +81378,13 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81035,9 +81402,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -81069,16 +81436,16 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '422': *15 x-github: githubCloudOnly: false @@ -81100,10 +81467,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *309 - - *310 - - *505 - - *305 + - *311 + - *312 + - *507 + - *307 responses: '204': description: Response @@ -81132,9 +81499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -81158,7 +81525,7 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -81191,9 +81558,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -81205,11 +81572,11 @@ paths: type: array items: *78 examples: - default: *507 + default: *509 headers: Link: *52 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81237,9 +81604,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -81268,14 +81635,14 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *500 + '410': *502 '422': *15 '404': *6 x-github: @@ -81295,9 +81662,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -81330,7 +81697,7 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 '403': *27 '404': *6 '422': *7 @@ -81352,9 +81719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -81369,8 +81736,6 @@ paths: description: Timeline Event type: object anyOf: - - *510 - - *511 - *512 - *513 - *514 @@ -81382,6 +81747,8 @@ paths: - *520 - *521 - *522 + - *523 + - *524 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81710,7 +82077,7 @@ paths: type: string comments: type: array - items: &543 + items: &545 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81948,7 +82315,7 @@ paths: type: string comments: type: array - items: *436 + items: *438 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -82223,7 +82590,7 @@ paths: headers: Link: *52 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82240,8 +82607,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -82251,7 +82618,7 @@ paths: application/json: schema: type: array - items: &523 + items: &525 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82319,8 +82686,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -82356,9 +82723,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *525 examples: - default: &524 + default: &526 value: id: 1 key: ssh-rsa AAA... @@ -82392,9 +82759,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *309 - - *310 - - &525 + - *311 + - *312 + - &527 name: key_id description: The unique identifier of the key. in: path @@ -82406,9 +82773,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *525 examples: - default: *524 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -82426,9 +82793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *309 - - *310 - - *525 + - *311 + - *312 + - *527 responses: '204': description: Response @@ -82448,8 +82815,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -82459,9 +82826,9 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: - default: *509 + default: *511 headers: Link: *52 '404': *6 @@ -82482,8 +82849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -82519,9 +82886,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: - default: &526 + default: &528 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82553,8 +82920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *309 - - *310 + - *311 + - *312 - name: name in: path required: true @@ -82565,9 +82932,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: - default: *526 + default: *528 '404': *6 x-github: githubCloudOnly: false @@ -82584,8 +82951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *309 - - *310 + - *311 + - *312 - name: name in: path required: true @@ -82624,7 +82991,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: default: value: @@ -82650,8 +83017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *309 - - *310 + - *311 + - *312 - name: name in: path required: true @@ -82677,8 +83044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -82717,9 +83084,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *309 - - *310 - - *414 + - *311 + - *312 + - *416 responses: '200': description: Response @@ -82866,8 +83233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -82932,8 +83299,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -82967,9 +83334,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *437 + schema: *439 examples: - default: *527 + default: *529 '204': description: Response when already merged '404': @@ -82994,8 +83361,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *309 - - *310 + - *311 + - *312 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -83036,7 +83403,7 @@ paths: application/json: schema: type: array - items: *242 + items: *244 examples: default: value: @@ -83092,8 +83459,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -83133,9 +83500,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: &528 + default: &530 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83194,9 +83561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *309 - - *310 - - &529 + - *311 + - *312 + - &531 name: milestone_number description: The number that identifies the milestone. in: path @@ -83208,9 +83575,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: *528 + default: *530 '404': *6 x-github: githubCloudOnly: false @@ -83227,9 +83594,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *309 - - *310 - - *529 + - *311 + - *312 + - *531 requestBody: required: false content: @@ -83267,9 +83634,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: *528 + default: *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83285,9 +83652,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *309 - - *310 - - *529 + - *311 + - *312 + - *531 responses: '204': description: Response @@ -83308,9 +83675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *309 - - *310 - - *529 + - *311 + - *312 + - *531 - *17 - *19 responses: @@ -83320,9 +83687,9 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: - default: *509 + default: *511 headers: Link: *52 x-github: @@ -83341,12 +83708,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *309 - - *310 - - *530 - - *531 - - *68 + - *311 + - *312 - *532 + - *533 + - *68 + - *534 - *17 - *19 responses: @@ -83358,7 +83725,7 @@ paths: type: array items: *90 examples: - default: *533 + default: *535 headers: Link: *52 x-github: @@ -83382,8 +83749,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -83441,14 +83808,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: &534 + schema: &536 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83592,7 +83959,7 @@ paths: - custom_404 - public examples: - default: &535 + default: &537 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83633,8 +84000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -83689,9 +84056,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *536 examples: - default: *535 + default: *537 '422': *15 '409': *45 x-github: @@ -83714,8 +84081,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -83815,8 +84182,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -83842,8 +84209,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -83853,7 +84220,7 @@ paths: application/json: schema: type: array - items: &536 + items: &538 title: Page Build description: Page Build type: object @@ -83945,8 +84312,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *309 - - *310 + - *311 + - *312 responses: '201': description: Response @@ -83993,16 +84360,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *536 + schema: *538 examples: - default: &537 + default: &539 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -84050,8 +84417,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *309 - - *310 + - *311 + - *312 - name: build_id in: path required: true @@ -84062,9 +84429,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *538 examples: - default: *537 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84084,8 +84451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -84193,9 +84560,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *309 - - *310 - - &538 + - *311 + - *312 + - &540 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84253,11 +84620,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *309 - - *310 - - *538 + - *311 + - *312 + - *540 responses: - '204': *166 + '204': *168 '404': *6 x-github: githubCloudOnly: false @@ -84282,8 +84649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -84578,8 +84945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Private vulnerability reporting status @@ -84616,10 +84983,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: - '204': *166 + '204': *168 '422': *14 x-github: githubCloudOnly: false @@ -84638,10 +85005,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: - '204': *166 + '204': *168 '422': *14 x-github: githubCloudOnly: false @@ -84661,8 +85028,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -84672,7 +85039,7 @@ paths: type: array items: *95 examples: - default: *539 + default: *541 '403': *27 '404': *6 x-github: @@ -84694,8 +85061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -84711,7 +85078,7 @@ paths: required: - properties examples: - default: *540 + default: *542 responses: '204': description: No Content when custom property values are successfully created @@ -84749,8 +85116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *309 - - *310 + - *311 + - *312 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -84810,9 +85177,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *541 + default: *543 headers: Link: *52 '304': *35 @@ -84844,8 +85211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -84912,7 +85279,7 @@ paths: description: Response content: application/json: - schema: &545 + schema: &547 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85041,7 +85408,7 @@ paths: milestone: anyOf: - type: 'null' - - *242 + - *244 active_lock_reason: type: - string @@ -85096,7 +85463,7 @@ paths: type: - array - 'null' - items: *221 + items: *223 head: type: object properties: @@ -85134,14 +85501,14 @@ paths: _links: type: object properties: - comments: *243 - commits: *243 - statuses: *243 - html: *243 - issue: *243 - review_comments: *243 - review_comment: *243 - self: *243 + comments: *245 + commits: *245 + statuses: *245 + html: *245 + issue: *245 + review_comments: *245 + review_comment: *245 + self: *245 required: - comments - commits @@ -85152,7 +85519,7 @@ paths: - review_comment - self author_association: *65 - auto_merge: *542 + auto_merge: *544 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -85254,7 +85621,7 @@ paths: - merged_by - review_comments examples: - default: &546 + default: &548 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -85781,8 +86148,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: sort in: query required: false @@ -85811,9 +86178,9 @@ paths: application/json: schema: type: array - items: *543 + items: *545 examples: - default: &548 + default: &550 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85890,17 +86257,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '200': description: Response content: application/json: - schema: *543 + schema: *545 examples: - default: &544 + default: &546 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85975,8 +86342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -85999,9 +86366,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *545 examples: - default: *544 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86017,8 +86384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '204': @@ -86040,8 +86407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -86068,9 +86435,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 '404': *6 @@ -86091,8 +86458,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -86125,16 +86492,16 @@ paths: description: Reaction exists content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Reaction created content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '422': *15 x-github: githubCloudOnly: false @@ -86156,10 +86523,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *309 - - *310 + - *311 + - *312 - *77 - - *305 + - *307 responses: '204': description: Response @@ -86202,9 +86569,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *309 - - *310 - - &547 + - *311 + - *312 + - &549 name: pull_number description: The number that identifies the pull request. in: path @@ -86217,9 +86584,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *545 + schema: *547 examples: - default: *546 + default: *548 '304': *35 '404': *6 '406': @@ -86254,9 +86621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: false content: @@ -86298,9 +86665,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *547 examples: - default: *546 + default: *548 '422': *15 '403': *27 x-github: @@ -86322,9 +86689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: true content: @@ -86385,17 +86752,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '401': *23 '403': *27 '404': *6 @@ -86425,9 +86792,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 - *87 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -86448,9 +86815,9 @@ paths: application/json: schema: type: array - items: *543 + items: *545 examples: - default: *548 + default: *550 headers: Link: *52 x-github: @@ -86483,9 +86850,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: true content: @@ -86591,7 +86958,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *545 examples: example-for-a-multi-line-comment: value: @@ -86679,9 +87046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 - *77 requestBody: required: true @@ -86704,7 +87071,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *545 examples: default: value: @@ -86790,9 +87157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 - *17 - *19 responses: @@ -86802,9 +87169,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *549 + default: *551 headers: Link: *52 x-github: @@ -86834,9 +87201,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 - *17 - *19 responses: @@ -86846,7 +87213,7 @@ paths: application/json: schema: type: array - items: *448 + items: *450 examples: default: value: @@ -86884,9 +87251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 responses: '204': description: Response if pull request has been merged @@ -86909,9 +87276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: false content: @@ -87023,9 +87390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 responses: '200': description: Response @@ -87041,7 +87408,7 @@ paths: items: *4 teams: type: array - items: *170 + items: *172 required: - users - teams @@ -87100,9 +87467,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: false content: @@ -87139,7 +87506,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: default: value: @@ -87675,9 +88042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: true content: @@ -87711,7 +88078,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: default: value: @@ -88216,9 +88583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 - *17 - *19 responses: @@ -88228,7 +88595,7 @@ paths: application/json: schema: type: array - items: &550 + items: &552 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88384,9 +88751,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: false content: @@ -88476,9 +88843,9 @@ paths: description: Response content: application/json: - schema: *550 + schema: *552 examples: - default: &552 + default: &554 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88541,10 +88908,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 - - &551 + - *311 + - *312 + - *549 + - &553 name: review_id description: The unique identifier of the review. in: path @@ -88556,9 +88923,9 @@ paths: description: Response content: application/json: - schema: *550 + schema: *552 examples: - default: &553 + default: &555 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88617,10 +88984,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 - - *551 + - *311 + - *312 + - *549 + - *553 requestBody: required: true content: @@ -88643,7 +89010,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *552 examples: default: value: @@ -88705,18 +89072,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 - - *551 + - *311 + - *312 + - *549 + - *553 responses: '200': description: Response content: application/json: - schema: *550 + schema: *552 examples: - default: *552 + default: *554 '422': *7 '404': *6 x-github: @@ -88743,10 +89110,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *309 - - *310 - - *547 - - *551 + - *311 + - *312 + - *549 + - *553 - *17 - *19 responses: @@ -88844,9 +89211,9 @@ paths: _links: type: object properties: - self: *243 - html: *243 - pull_request: *243 + self: *245 + html: *245 + pull_request: *245 required: - self - html @@ -89004,10 +89371,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 - - *551 + - *311 + - *312 + - *549 + - *553 requestBody: required: true content: @@ -89036,7 +89403,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *552 examples: default: value: @@ -89099,10 +89466,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 - - *551 + - *311 + - *312 + - *549 + - *553 requestBody: required: true content: @@ -89137,9 +89504,9 @@ paths: description: Response content: application/json: - schema: *550 + schema: *552 examples: - default: *553 + default: *555 '404': *6 '422': *7 '403': *27 @@ -89161,9 +89528,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: false content: @@ -89227,8 +89594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *309 - - *310 + - *311 + - *312 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89241,9 +89608,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: - default: &555 + default: &557 value: type: file encoding: base64 @@ -89285,8 +89652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *309 - - *310 + - *311 + - *312 - name: dir description: The alternate path to look for a README file in: path @@ -89306,9 +89673,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: - default: *555 + default: *557 '404': *6 '422': *15 x-github: @@ -89330,8 +89697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -89341,7 +89708,7 @@ paths: application/json: schema: type: array - items: &556 + items: &558 title: Release description: A release. type: object @@ -89423,7 +89790,7 @@ paths: author: *4 assets: type: array - items: &557 + items: &559 title: Release Asset description: Data related to a release. type: object @@ -89610,8 +89977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -89687,9 +90054,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: &560 + default: &562 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89794,9 +90161,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *309 - - *310 - - &558 + - *311 + - *312 + - &560 name: asset_id description: The unique identifier of the asset. in: path @@ -89808,9 +90175,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *559 examples: - default: &559 + default: &561 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 @@ -89845,7 +90212,7 @@ paths: type: User site_admin: false '404': *6 - '302': *450 + '302': *452 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89861,9 +90228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *309 - - *310 - - *558 + - *311 + - *312 + - *560 requestBody: required: false content: @@ -89892,9 +90259,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *559 examples: - default: *559 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89910,9 +90277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *309 - - *310 - - *558 + - *311 + - *312 + - *560 responses: '204': description: Response @@ -89936,8 +90303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -90023,16 +90390,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: *560 + default: *562 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90049,8 +90416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *309 - - *310 + - *311 + - *312 - name: tag description: tag parameter in: path @@ -90063,9 +90430,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: *560 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -90087,9 +90454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *309 - - *310 - - &561 + - *311 + - *312 + - &563 name: release_id description: The unique identifier of the release. in: path @@ -90103,9 +90470,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: *556 + schema: *558 examples: - default: *560 + default: *562 '401': description: Unauthorized x-github: @@ -90123,9 +90490,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 requestBody: required: false content: @@ -90189,9 +90556,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: *560 + default: *562 '404': description: Not Found if the discussion category name is invalid content: @@ -90212,9 +90579,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 responses: '204': description: Response @@ -90234,9 +90601,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 - *17 - *19 responses: @@ -90246,7 +90613,7 @@ paths: application/json: schema: type: array - items: *557 + items: *559 examples: default: value: @@ -90327,9 +90694,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 - name: name in: query required: true @@ -90355,7 +90722,7 @@ paths: description: Response for successful upload content: application/json: - schema: *557 + schema: *559 examples: response-for-successful-upload: value: @@ -90410,9 +90777,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 - 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. @@ -90436,9 +90803,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 '404': *6 @@ -90459,9 +90826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 requestBody: required: true content: @@ -90491,16 +90858,16 @@ paths: description: Reaction exists content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Reaction created content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '422': *15 x-github: githubCloudOnly: false @@ -90522,10 +90889,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *309 - - *310 - - *561 - - *305 + - *311 + - *312 + - *563 + - *307 responses: '204': description: Response @@ -90549,9 +90916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 - *17 - *19 responses: @@ -90567,8 +90934,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *261 - - &562 + - *263 + - &564 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90587,69 +90954,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *262 - - *562 - - allOf: - - *263 - - *562 - allOf: - *264 - - *562 - - allOf: - - *563 - - *562 + - *564 - allOf: - *265 - - *562 + - *564 - allOf: - *266 - - *562 + - *564 + - allOf: + - *565 + - *564 - allOf: - *267 - - *562 + - *564 - allOf: - *268 - - *562 + - *564 - allOf: - *269 - - *562 + - *564 - allOf: - *270 - - *562 + - *564 - allOf: - *271 - - *562 + - *564 - allOf: - *272 - - *562 + - *564 - allOf: - *273 - - *562 + - *564 - allOf: - *274 - - *562 + - *564 - allOf: - *275 - - *562 + - *564 - allOf: - *276 - - *562 + - *564 - allOf: - *277 - - *562 + - *564 - allOf: - *278 - - *562 + - *564 - allOf: - *279 - - *562 + - *564 - allOf: - *280 - - *562 + - *564 + - allOf: + - *281 + - *564 - allOf: + - *282 + - *564 + - allOf: + - *566 - *564 - - *562 examples: default: value: @@ -90688,8 +91055,8 @@ paths: category: repos subcategory: rules parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 - name: includes_parents @@ -90700,7 +91067,7 @@ paths: schema: type: boolean default: true - - *565 + - *567 responses: '200': description: Response @@ -90708,7 +91075,7 @@ paths: application/json: schema: type: array - items: *281 + items: *283 examples: default: value: @@ -90755,8 +91122,8 @@ paths: category: repos subcategory: rules parameters: - - *309 - - *310 + - *311 + - *312 requestBody: description: Request body required: true @@ -90776,16 +91143,16 @@ paths: - tag - push default: branch - enforcement: *258 + enforcement: *260 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *259 - conditions: *256 + items: *261 + conditions: *258 rules: type: array description: An array of rules within the ruleset. - items: *566 + items: *568 required: - name - enforcement @@ -90816,9 +91183,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: &576 + default: &578 value: id: 42 name: super cool ruleset @@ -90865,12 +91232,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *309 - - *310 - - *567 - - *568 + - *311 + - *312 - *569 - *570 + - *571 + - *572 - *17 - *19 responses: @@ -90878,9 +91245,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *573 examples: - default: *572 + default: *574 '404': *6 '500': *96 x-github: @@ -90901,17 +91268,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *309 - - *310 - - *573 + - *311 + - *312 + - *575 responses: '200': description: Response content: application/json: - schema: *574 + schema: *576 examples: - default: *575 + default: *577 '404': *6 '500': *96 x-github: @@ -90939,8 +91306,8 @@ paths: category: repos subcategory: rules parameters: - - *309 - - *310 + - *311 + - *312 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90960,9 +91327,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: *576 + default: *578 '404': *6 '500': *96 put: @@ -90980,8 +91347,8 @@ paths: category: repos subcategory: rules parameters: - - *309 - - *310 + - *311 + - *312 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91006,16 +91373,16 @@ paths: - branch - tag - push - enforcement: *258 + enforcement: *260 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *259 - conditions: *256 + items: *261 + conditions: *258 rules: description: An array of rules within the ruleset. type: array - items: *566 + items: *568 examples: default: value: @@ -91043,9 +91410,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: *576 + default: *578 '404': *6 '500': *96 delete: @@ -91063,8 +91430,8 @@ paths: category: repos subcategory: rules parameters: - - *309 - - *310 + - *311 + - *312 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91087,8 +91454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 - name: ruleset_id @@ -91104,9 +91471,9 @@ paths: application/json: schema: type: array - items: *284 + items: *286 examples: - default: *577 + default: *579 '404': *6 '500': *96 x-github: @@ -91125,8 +91492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *309 - - *310 + - *311 + - *312 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91144,7 +91511,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *580 examples: default: value: @@ -91199,21 +91566,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *309 - - *310 - - *579 - - *580 + - *311 + - *312 - *581 - *582 + - *583 + - *584 - *46 - *19 - *17 - - *583 - - *584 - *585 - *586 - *587 - *588 + - *589 + - *590 responses: '200': description: Response @@ -91221,24 +91588,24 @@ paths: application/json: schema: type: array - items: &592 + items: &594 type: object properties: - number: *152 - created_at: *153 + number: *154 + created_at: *155 updated_at: anyOf: - type: 'null' - - *154 - url: *155 - html_url: *156 + - *156 + url: *157 + html_url: *158 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *589 - resolution: *590 + state: *591 + resolution: *592 resolved_at: type: - string @@ -91332,7 +91699,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *591 + - *593 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -91477,16 +91844,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *309 - - *310 - - *408 - - *588 + - *311 + - *312 + - *410 + - *590 responses: '200': description: Response content: application/json: - schema: *592 + schema: *594 examples: default: value: @@ -91538,9 +91905,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 requestBody: required: true content: @@ -91548,8 +91915,8 @@ paths: schema: type: object properties: - state: *589 - resolution: *590 + state: *591 + resolution: *592 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -91569,7 +91936,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *594 examples: default: value: @@ -91644,9 +92011,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 - *19 - *17 responses: @@ -91657,7 +92024,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &744 + items: &746 type: object properties: type: @@ -91684,8 +92051,6 @@ paths: - commit details: oneOf: - - *593 - - *594 - *595 - *596 - *597 @@ -91697,6 +92062,8 @@ paths: - *603 - *604 - *605 + - *606 + - *607 examples: default: value: @@ -91782,8 +92149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -91791,14 +92158,14 @@ paths: schema: type: object properties: - reason: &607 + reason: &609 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *606 + placeholder_id: *608 required: - reason - placeholder_id @@ -91815,7 +92182,7 @@ paths: schema: type: object properties: - reason: *607 + reason: *609 expire_at: type: - string @@ -91862,8 +92229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -91878,7 +92245,7 @@ paths: properties: incremental_scans: type: array - items: &608 + items: &610 description: Information on a single scan performed by secret scanning on the repository type: object @@ -91906,15 +92273,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *608 + items: *610 backfill_scans: type: array - items: *608 + items: *610 custom_pattern_backfill_scans: type: array items: allOf: - - *608 + - *610 - type: object properties: pattern_name: @@ -91984,8 +92351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *309 - - *310 + - *311 + - *312 - *46 - name: sort description: The property to sort the results by. @@ -92029,9 +92396,9 @@ paths: application/json: schema: type: array - items: *609 + items: *611 examples: - default: *610 + default: *612 '400': *14 '404': *6 x-github: @@ -92054,8 +92421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -92135,7 +92502,7 @@ paths: login: type: string description: The username of the user credited. - type: *287 + type: *289 required: - login - type @@ -92225,9 +92592,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *611 examples: - default: &612 + default: &614 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92460,8 +92827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -92574,7 +92941,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *611 examples: default: value: @@ -92721,17 +93088,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *309 - - *310 - - *611 + - *311 + - *312 + - *613 responses: '200': description: Response content: application/json: - schema: *609 + schema: *611 examples: - default: *612 + default: *614 '403': *27 '404': *6 x-github: @@ -92755,9 +93122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *309 - - *310 - - *611 + - *311 + - *312 + - *613 requestBody: required: true content: @@ -92837,7 +93204,7 @@ paths: login: type: string description: The username of the user credited. - type: *287 + type: *289 required: - login - type @@ -92928,10 +93295,10 @@ paths: description: Response content: application/json: - schema: *609 + schema: *611 examples: - default: *612 - add_credit: *612 + default: *614 + add_credit: *614 '403': *27 '404': *6 '422': @@ -92969,9 +93336,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *309 - - *310 - - *611 + - *311 + - *312 + - *613 responses: '202': *37 '400': *14 @@ -92998,17 +93365,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *309 - - *310 - - *611 + - *311 + - *312 + - *613 responses: '202': description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *317 + default: *319 '400': *14 '422': *15 '403': *27 @@ -93034,8 +93401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -93131,8 +93498,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -93141,7 +93508,7 @@ paths: application/json: schema: type: array - items: &613 + items: &615 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93154,7 +93521,7 @@ paths: - 1124 - -435 '202': *37 - '204': *166 + '204': *168 '422': description: Repository contains more than 10,000 commits x-github: @@ -93174,8 +93541,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -93226,7 +93593,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *166 + '204': *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93253,8 +93620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -93326,7 +93693,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *166 + '204': *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93348,8 +93715,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -93503,8 +93870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -93514,7 +93881,7 @@ paths: application/json: schema: type: array - items: *613 + items: *615 examples: default: value: @@ -93527,7 +93894,7 @@ paths: - - 0 - 2 - 21 - '204': *166 + '204': *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93547,8 +93914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *309 - - *310 + - *311 + - *312 - name: sha in: path required: true @@ -93604,7 +93971,7 @@ paths: description: Response content: application/json: - schema: *614 + schema: *616 examples: default: value: @@ -93658,8 +94025,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -93691,14 +94058,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &615 + schema: &617 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93771,8 +94138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -93798,7 +94165,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *617 examples: default: value: @@ -93825,8 +94192,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -93846,8 +94213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -93929,8 +94296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -93938,7 +94305,7 @@ paths: application/json: schema: type: array - items: &616 + items: &618 title: Tag protection description: Tag protection type: object @@ -93995,8 +94362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -94019,7 +94386,7 @@ paths: description: Response content: application/json: - schema: *616 + schema: *618 examples: default: value: @@ -94050,8 +94417,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -94088,8 +94455,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *309 - - *310 + - *311 + - *312 - name: ref in: path required: true @@ -94125,8 +94492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -94136,9 +94503,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 headers: Link: *52 '404': *6 @@ -94158,8 +94525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *309 - - *310 + - *311 + - *312 - *19 - *17 responses: @@ -94167,7 +94534,7 @@ paths: description: Response content: application/json: - schema: &617 + schema: &619 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94179,7 +94546,7 @@ paths: required: - names examples: - default: &618 + default: &620 value: names: - octocat @@ -94202,8 +94569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -94234,9 +94601,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *619 examples: - default: *618 + default: *620 '404': *6 '422': *7 x-github: @@ -94257,9 +94624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *309 - - *310 - - &619 + - *311 + - *312 + - &621 name: per description: The time frame to display results for. in: query @@ -94290,7 +94657,7 @@ paths: - 128 clones: type: array - items: &620 + items: &622 title: Traffic type: object properties: @@ -94377,8 +94744,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -94472,8 +94839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -94536,9 +94903,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *309 - - *310 - - *619 + - *311 + - *312 + - *621 responses: '200': description: Response @@ -94559,7 +94926,7 @@ paths: - 3782 views: type: array - items: *620 + items: *622 required: - uniques - count @@ -94636,8 +95003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -94911,8 +95278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -94935,8 +95302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -94958,8 +95325,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -94985,8 +95352,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *309 - - *310 + - *311 + - *312 - name: ref in: path required: true @@ -95078,9 +95445,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *317 + default: *319 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -95329,7 +95696,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &621 + text_matches: &623 title: Search Result Text Matches type: array items: @@ -95492,7 +95859,7 @@ paths: enum: - author-date - committer-date - - &622 + - &624 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 @@ -95561,7 +95928,7 @@ paths: committer: anyOf: - type: 'null' - - *375 + - *377 comment_count: type: integer message: @@ -95580,7 +95947,7 @@ paths: url: type: string format: uri - verification: *486 + verification: *488 required: - author - committer @@ -95595,7 +95962,7 @@ paths: committer: anyOf: - type: 'null' - - *375 + - *377 parents: type: array items: @@ -95612,7 +95979,7 @@ paths: type: number node_id: type: string - text_matches: *621 + text_matches: *623 required: - sha - node_id @@ -95804,7 +96171,7 @@ paths: - interactions - created - updated - - *622 + - *624 - *17 - *19 - name: advanced_search @@ -95901,11 +96268,11 @@ paths: type: - string - 'null' - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: type: string state_reason: @@ -95919,7 +96286,7 @@ paths: milestone: anyOf: - type: 'null' - - *242 + - *244 comments: type: integer created_at: @@ -95933,7 +96300,7 @@ paths: - string - 'null' format: date-time - text_matches: *621 + text_matches: *623 pull_request: type: object properties: @@ -95982,7 +96349,7 @@ paths: timeline_url: type: string format: uri - type: *206 + type: *208 performed_via_github_app: anyOf: - type: 'null' @@ -96156,7 +96523,7 @@ paths: enum: - created - updated - - *622 + - *624 - *17 - *19 responses: @@ -96201,7 +96568,7 @@ paths: - 'null' score: type: number - text_matches: *621 + text_matches: *623 required: - id - node_id @@ -96286,7 +96653,7 @@ paths: - forks - help-wanted-issues - updated - - *622 + - *624 - *17 - *19 responses: @@ -96523,7 +96890,7 @@ paths: - admin - pull - push - text_matches: *621 + text_matches: *623 temp_clone_token: type: string allow_merge_commit: @@ -96831,7 +97198,7 @@ paths: - string - 'null' format: uri - text_matches: *621 + text_matches: *623 related: type: - array @@ -97024,7 +97391,7 @@ paths: - followers - repositories - joined - - *622 + - *624 - *17 - *19 responses: @@ -97134,7 +97501,7 @@ paths: type: - boolean - 'null' - text_matches: *621 + text_matches: *623 blog: type: - string @@ -97216,7 +97583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &626 + - &628 name: team_id description: The unique identifier of the team. in: path @@ -97228,9 +97595,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '404': *6 x-github: githubCloudOnly: false @@ -97257,7 +97624,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *626 + - *628 requestBody: required: true content: @@ -97321,16 +97688,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '201': description: Response content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '404': *6 '422': *15 '403': *27 @@ -97358,7 +97725,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *626 + - *628 responses: '204': description: Response @@ -97389,7 +97756,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *626 + - *628 - *46 - *17 - *19 @@ -97400,9 +97767,9 @@ paths: application/json: schema: type: array - items: *296 + items: *298 examples: - default: *627 + default: *629 headers: Link: *52 x-github: @@ -97431,7 +97798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *626 + - *628 requestBody: required: true content: @@ -97465,9 +97832,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *297 + default: *299 x-github: triggersNotification: true githubCloudOnly: false @@ -97494,16 +97861,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *626 - - *298 + - *628 + - *300 responses: '200': description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *297 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97528,8 +97895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *626 - - *298 + - *628 + - *300 requestBody: required: false content: @@ -97552,9 +97919,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *628 + default: *630 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97579,8 +97946,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *626 - - *298 + - *628 + - *300 responses: '204': description: Response @@ -97609,8 +97976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *626 - - *298 + - *628 + - *300 - *46 - *17 - *19 @@ -97621,9 +97988,9 @@ paths: application/json: schema: type: array - items: *299 + items: *301 examples: - default: *629 + default: *631 headers: Link: *52 x-github: @@ -97652,8 +98019,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *626 - - *298 + - *628 + - *300 requestBody: required: true content: @@ -97675,9 +98042,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *300 + default: *302 x-github: triggersNotification: true githubCloudOnly: false @@ -97704,17 +98071,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *626 - - *298 - - *301 + - *628 + - *300 + - *303 responses: '200': description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *300 + default: *302 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97739,9 +98106,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *626 - - *298 - - *301 + - *628 + - *300 + - *303 requestBody: required: true content: @@ -97763,9 +98130,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *630 + default: *632 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97790,9 +98157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *626 - - *298 - - *301 + - *628 + - *300 + - *303 responses: '204': description: Response @@ -97821,9 +98188,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *626 - - *298 - - *301 + - *628 + - *300 + - *303 - 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 team discussion comment. @@ -97849,9 +98216,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 x-github: @@ -97880,9 +98247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *626 - - *298 - - *301 + - *628 + - *300 + - *303 requestBody: required: true content: @@ -97914,9 +98281,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97942,8 +98309,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *626 - - *298 + - *628 + - *300 - 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 team discussion. @@ -97969,9 +98336,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 x-github: @@ -98000,8 +98367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *626 - - *298 + - *628 + - *300 requestBody: required: true content: @@ -98033,9 +98400,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98059,7 +98426,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *626 + - *628 - *17 - *19 responses: @@ -98069,9 +98436,9 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 headers: Link: *52 x-github: @@ -98097,7 +98464,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *626 + - *628 - name: role description: Filters members returned by their role in the team. in: query @@ -98148,7 +98515,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *626 + - *628 - *57 responses: '204': @@ -98185,7 +98552,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *626 + - *628 - *57 responses: '204': @@ -98225,7 +98592,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *626 + - *628 - *57 responses: '204': @@ -98262,16 +98629,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *626 + - *628 - *57 responses: '200': description: Response content: application/json: - schema: *306 + schema: *308 examples: - response-if-user-is-a-team-maintainer: *631 + response-if-user-is-a-team-maintainer: *633 '404': *6 x-github: githubCloudOnly: false @@ -98304,7 +98671,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *626 + - *628 - *57 requestBody: required: false @@ -98330,9 +98697,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: *632 + response-if-users-membership-with-team-is-now-pending: *634 '403': description: Forbidden if team synchronization is set up '422': @@ -98366,7 +98733,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *626 + - *628 - *57 responses: '204': @@ -98395,7 +98762,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *626 + - *628 - *17 - *19 responses: @@ -98405,9 +98772,9 @@ paths: application/json: schema: type: array - items: *307 + items: *309 examples: - default: *633 + default: *635 headers: Link: *52 '404': *6 @@ -98433,16 +98800,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *626 - - *308 + - *628 + - *310 responses: '200': description: Response content: application/json: - schema: *307 + schema: *309 examples: - default: *634 + default: *636 '404': description: Not Found if project is not managed by this team x-github: @@ -98466,8 +98833,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *626 - - *308 + - *628 + - *310 requestBody: required: false content: @@ -98534,8 +98901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *626 - - *308 + - *628 + - *310 responses: '204': description: Response @@ -98562,7 +98929,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *626 + - *628 - *17 - *19 responses: @@ -98574,7 +98941,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 '404': *6 @@ -98604,15 +98971,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *626 - - *309 - - *310 + - *628 + - *311 + - *312 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *635 + schema: *637 examples: alternative-response-with-extra-repository-information: value: @@ -98763,9 +99130,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *626 - - *309 - - *310 + - *628 + - *311 + - *312 requestBody: required: false content: @@ -98815,9 +99182,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *626 - - *309 - - *310 + - *628 + - *311 + - *312 responses: '204': description: Response @@ -98842,7 +99209,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *626 + - *628 - *17 - *19 responses: @@ -98852,9 +99219,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - response-if-child-teams-exist: *636 + response-if-child-teams-exist: *638 headers: Link: *52 '404': *6 @@ -98887,7 +99254,7 @@ paths: application/json: schema: oneOf: - - &638 + - &640 title: Private User description: Private User type: object @@ -99137,7 +99504,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *637 + - *639 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -99297,7 +99664,7 @@ paths: description: Response content: application/json: - schema: *638 + schema: *640 examples: default: value: @@ -99500,9 +99867,9 @@ paths: type: integer codespaces: type: array - items: *211 + items: *213 examples: - default: *212 + default: *214 '304': *35 '500': *96 '401': *23 @@ -99641,17 +100008,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '401': *23 '403': *27 '404': *6 @@ -99695,7 +100062,7 @@ paths: type: integer secrets: type: array - items: &639 + items: &641 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -99737,7 +100104,7 @@ paths: - visibility - selected_repositories_url examples: - default: *430 + default: *432 headers: Link: *52 x-github: @@ -99815,7 +100182,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: default: value: @@ -99961,7 +100328,7 @@ paths: type: array items: *136 examples: - default: *640 + default: *642 '401': *23 '403': *27 '404': *6 @@ -100105,15 +100472,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '304': *35 '500': *96 '401': *23 @@ -100139,7 +100506,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 requestBody: required: false content: @@ -100169,9 +100536,9 @@ paths: description: Response content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '401': *23 '403': *27 '404': *6 @@ -100193,7 +100560,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 responses: '202': *37 '304': *35 @@ -100222,13 +100589,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 responses: '202': description: Response content: application/json: - schema: &641 + schema: &643 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -100281,7 +100648,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &642 + default: &644 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -100313,7 +100680,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *213 + - *215 - name: export_id in: path required: true @@ -100326,9 +100693,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *643 examples: - default: *642 + default: *644 '404': *6 x-github: githubCloudOnly: false @@ -100349,7 +100716,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *213 + - *215 responses: '200': description: Response @@ -100365,9 +100732,9 @@ paths: type: integer machines: type: array - items: *429 + items: *431 examples: - default: *643 + default: *645 '304': *35 '500': *96 '401': *23 @@ -100396,7 +100763,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *213 + - *215 requestBody: required: true content: @@ -100452,11 +100819,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *315 + repository: *317 machine: anyOf: - type: 'null' - - *429 + - *431 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -101253,15 +101620,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '304': *35 '500': *96 '400': *14 @@ -101293,15 +101660,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '500': *96 '401': *23 '403': *27 @@ -101331,9 +101698,9 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: &654 + default: &656 value: - id: 197 name: hello_docker @@ -101434,7 +101801,7 @@ paths: application/json: schema: type: array - items: &644 + items: &646 title: Email description: Email type: object @@ -101504,9 +101871,9 @@ paths: application/json: schema: type: array - items: *644 + items: *646 examples: - default: &656 + default: &658 value: - email: octocat@github.com verified: true @@ -101583,7 +101950,7 @@ paths: application/json: schema: type: array - items: *644 + items: *646 examples: default: value: @@ -101841,7 +102208,7 @@ paths: application/json: schema: type: array - items: &645 + items: &647 title: GPG Key description: A unique encryption key type: object @@ -101986,7 +102353,7 @@ paths: - subkeys - revoked examples: - default: &670 + default: &672 value: - id: 3 name: Octocat's GPG Key @@ -102071,9 +102438,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *647 examples: - default: &646 + default: &648 value: id: 3 name: Octocat's GPG Key @@ -102130,7 +102497,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &647 + - &649 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -102142,9 +102509,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *647 examples: - default: *646 + default: *648 '404': *6 '304': *35 '403': *27 @@ -102167,7 +102534,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *647 + - *649 responses: '204': description: Response @@ -102443,12 +102810,12 @@ paths: application/json: schema: anyOf: - - *201 + - *203 - type: object properties: {} additionalProperties: false examples: - default: *202 + default: *204 '204': description: Response when there are no restrictions x-github: @@ -102472,7 +102839,7 @@ paths: required: true content: application/json: - schema: *497 + schema: *499 examples: default: value: @@ -102483,7 +102850,7 @@ paths: description: Response content: application/json: - schema: *201 + schema: *203 examples: default: value: @@ -102564,7 +102931,7 @@ paths: - closed - all default: open - - *209 + - *211 - name: sort description: What to sort results by. in: query @@ -102589,7 +102956,7 @@ paths: type: array items: *78 examples: - default: *210 + default: *212 headers: Link: *52 '404': *6 @@ -102622,7 +102989,7 @@ paths: application/json: schema: type: array - items: &648 + items: &650 title: Key description: Key type: object @@ -102725,9 +103092,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *650 examples: - default: &649 + default: &651 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -102760,15 +103127,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *525 + - *527 responses: '200': description: Response content: application/json: - schema: *648 + schema: *650 examples: - default: *649 + default: *651 '404': *6 '304': *35 '403': *27 @@ -102791,7 +103158,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *525 + - *527 responses: '204': description: Response @@ -102824,7 +103191,7 @@ paths: application/json: schema: type: array - items: &650 + items: &652 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -102903,7 +103270,7 @@ paths: - account - plan examples: - default: &651 + default: &653 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -102965,9 +103332,9 @@ paths: application/json: schema: type: array - items: *650 + items: *652 examples: - default: *651 + default: *653 headers: Link: *52 '304': *35 @@ -103007,7 +103374,7 @@ paths: application/json: schema: type: array - items: *215 + items: *217 examples: default: value: @@ -103115,7 +103482,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *217 examples: default: value: @@ -103198,7 +103565,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *217 examples: default: value: @@ -103266,7 +103633,7 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: default: value: @@ -103528,7 +103895,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: default: value: @@ -103708,7 +104075,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *218 + - *220 - name: exclude in: query required: false @@ -103721,7 +104088,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: default: value: @@ -103915,7 +104282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *218 + - *220 responses: '302': description: Response @@ -103941,7 +104308,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *218 + - *220 responses: '204': description: Response @@ -103970,8 +104337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *218 - - *652 + - *220 + - *654 responses: '204': description: Response @@ -103995,7 +104362,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *218 + - *220 - *17 - *19 responses: @@ -104007,7 +104374,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 '404': *6 @@ -104086,7 +104453,7 @@ paths: - docker - nuget - container - - *653 + - *655 - *19 - *17 responses: @@ -104096,10 +104463,10 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *654 - '400': *655 + default: *656 + '400': *657 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104119,16 +104486,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 + - *228 responses: '200': description: Response content: application/json: - schema: *223 + schema: *225 examples: - default: &671 + default: &673 value: id: 40201 name: octo-name @@ -104241,8 +104608,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 + - *228 responses: '204': description: Response @@ -104272,8 +104639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 + - *228 - name: token description: package token schema: @@ -104305,8 +104672,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *225 - - *226 + - *227 + - *228 - *19 - *17 - name: state @@ -104326,7 +104693,7 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: default: value: @@ -104375,15 +104742,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 - *228 + - *230 responses: '200': description: Response content: application/json: - schema: *227 + schema: *229 examples: default: value: @@ -104419,9 +104786,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 - *228 + - *230 responses: '204': description: Response @@ -104451,9 +104818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 - *228 + - *230 responses: '204': description: Response @@ -104490,9 +104857,9 @@ paths: application/json: schema: type: array - items: *644 + items: *646 examples: - default: *656 + default: *658 headers: Link: *52 '304': *35 @@ -104605,7 +104972,7 @@ paths: type: array items: *64 examples: - default: &663 + default: &665 summary: Default response value: - id: 1296269 @@ -104923,9 +105290,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *317 + default: *319 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -104963,9 +105330,9 @@ paths: application/json: schema: type: array - items: *499 + items: *501 examples: - default: *657 + default: *659 headers: Link: *52 '304': *35 @@ -104988,7 +105355,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *205 + - *207 responses: '204': description: Response @@ -105011,7 +105378,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *205 + - *207 responses: '204': description: Response @@ -105044,7 +105411,7 @@ paths: application/json: schema: type: array - items: &658 + items: &660 title: Social account description: Social media account type: object @@ -105061,7 +105428,7 @@ paths: - provider - url examples: - default: &659 + default: &661 value: - provider: twitter url: https://twitter.com/github @@ -105124,9 +105491,9 @@ paths: application/json: schema: type: array - items: *658 + items: *660 examples: - default: *659 + default: *661 '422': *15 '304': *35 '404': *6 @@ -105214,7 +105581,7 @@ paths: application/json: schema: type: array - items: &660 + items: &662 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -105234,16 +105601,14 @@ paths: - title - created_at examples: - default: &685 + default: &687 value: - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 - id: 2 - url: https://api.github.com/user/keys/2 + - id: 2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 - id: 3 - url: https://api.github.com/user/keys/3 + - id: 3 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: @@ -105301,13 +105666,12 @@ paths: description: Response content: application/json: - schema: *660 + schema: *662 examples: - default: &661 + default: &663 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 - url: https://api.github.com/user/keys/2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' '422': *15 @@ -105334,7 +105698,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: - - &662 + - &664 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -105346,9 +105710,9 @@ paths: description: Response content: application/json: - schema: *660 + schema: *662 examples: - default: *661 + default: *663 '404': *6 '304': *35 '403': *27 @@ -105371,7 +105735,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: - - *662 + - *664 responses: '204': description: Response @@ -105400,7 +105764,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &686 + - &688 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 @@ -105425,11 +105789,11 @@ paths: type: array items: *64 examples: - default-response: *663 + default-response: *665 application/vnd.github.v3.star+json: schema: type: array - items: &687 + items: &689 title: Starred Repository description: Starred Repository type: object @@ -105585,8 +105949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response if this repository is starred by you @@ -105614,8 +105978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -105639,8 +106003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -105675,7 +106039,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 '304': *35 @@ -105712,7 +106076,7 @@ paths: application/json: schema: type: array - items: *294 + items: *296 examples: default: value: @@ -105798,10 +106162,10 @@ paths: application/json: schema: oneOf: - - *638 - - *637 + - *640 + - *639 examples: - default-response: &665 + default-response: &667 summary: Default response value: login: octocat @@ -105836,7 +106200,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &666 + response-with-git-hub-plan-information: &668 summary: Response with GitHub plan information value: login: octocat @@ -105899,7 +106263,7 @@ paths: required: true schema: type: string - - *241 + - *243 requestBody: required: true description: Details of the draft item to create in the project. @@ -105933,9 +106297,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *248 examples: - draft_issue: *247 + draft_issue: *249 '304': *35 '403': *27 '401': *23 @@ -105958,7 +106322,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *664 + - *666 - *17 responses: '200': @@ -106007,11 +106371,11 @@ paths: application/json: schema: oneOf: - - *638 - - *637 + - *640 + - *639 examples: - default-response: *665 - response-with-git-hub-plan-information: *666 + default-response: *667 + response-with-git-hub-plan-information: *668 '404': *6 x-github: githubCloudOnly: false @@ -106061,8 +106425,8 @@ paths: required: - subject_digests examples: - default: *667 - withPredicateType: *668 + default: *669 + withPredicateType: *670 responses: '200': description: Response @@ -106116,7 +106480,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *669 + default: *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106321,7 +106685,7 @@ paths: initiator: type: string examples: - default: *371 + default: *373 '201': description: Response content: @@ -106360,9 +106724,9 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *654 + default: *656 '403': *27 '401': *23 x-github: @@ -106746,9 +107110,9 @@ paths: application/json: schema: type: array - items: *645 + items: *647 examples: - default: *670 + default: *672 headers: Link: *52 x-github: @@ -106852,7 +107216,7 @@ paths: application/json: schema: *20 examples: - default: *496 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106977,7 +107341,7 @@ paths: - docker - nuget - container - - *653 + - *655 - *57 - *19 - *17 @@ -106988,12 +107352,12 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *654 + default: *656 '403': *27 '401': *23 - '400': *655 + '400': *657 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107013,17 +107377,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *225 - - *226 + - *227 + - *228 - *57 responses: '200': description: Response content: application/json: - schema: *223 + schema: *225 examples: - default: *671 + default: *673 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107044,8 +107408,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *225 - - *226 + - *227 + - *228 - *57 responses: '204': @@ -107078,8 +107442,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *225 - - *226 + - *227 + - *228 - *57 - name: token description: package token @@ -107112,8 +107476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *225 - - *226 + - *227 + - *228 - *57 responses: '200': @@ -107122,7 +107486,7 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: default: value: @@ -107180,16 +107544,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *225 - - *226 + - *227 - *228 + - *230 - *57 responses: '200': description: Response content: application/json: - schema: *227 + schema: *229 examples: default: value: @@ -107224,10 +107588,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *225 - - *226 - - *57 + - *227 - *228 + - *57 + - *230 responses: '204': description: Response @@ -107259,10 +107623,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *225 - - *226 - - *57 + - *227 - *228 + - *57 + - *230 responses: '204': description: Response @@ -107303,9 +107667,9 @@ paths: application/json: schema: type: array - items: *239 + items: *241 examples: - default: *240 + default: *242 headers: Link: *52 '304': *35 @@ -107327,16 +107691,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *241 + - *243 - *57 responses: '200': description: Response content: application/json: - schema: *239 + schema: *241 examples: - default: *240 + default: *242 headers: Link: *52 '304': *35 @@ -107358,7 +107722,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *241 + - *243 - *57 - *17 - *38 @@ -107370,9 +107734,9 @@ paths: application/json: schema: type: array - items: *244 + items: *246 examples: - default: *672 + default: *674 headers: Link: *52 '304': *35 @@ -107394,17 +107758,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *241 - - *673 + - *243 + - *675 - *57 responses: '200': description: Response content: application/json: - schema: *244 + schema: *246 examples: - default: *674 + default: *676 headers: Link: *52 '304': *35 @@ -107427,7 +107791,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *241 + - *243 - *57 - *38 - *39 @@ -107460,9 +107824,9 @@ paths: application/json: schema: type: array - items: *248 + items: *250 examples: - default: *249 + default: *251 headers: Link: *52 '304': *35 @@ -107484,7 +107848,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *57 - - *241 + - *243 requestBody: required: true description: Details of the item to add to the project. @@ -107521,10 +107885,10 @@ paths: description: Response content: application/json: - schema: *246 + schema: *248 examples: - issue: *247 - pull_request: *247 + issue: *249 + pull_request: *249 '304': *35 '403': *27 '401': *23 @@ -107544,9 +107908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *241 + - *243 - *57 - - *250 + - *252 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -107566,9 +107930,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *249 + default: *251 headers: Link: *52 '304': *35 @@ -107589,9 +107953,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *241 + - *243 - *57 - - *250 + - *252 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -107664,13 +108028,13 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - text_field: *249 - number_field: *249 - date_field: *249 - single_select_field: *249 - iteration_field: *249 + text_field: *251 + number_field: *251 + date_field: *251 + single_select_field: *251 + iteration_field: *251 '401': *23 '403': *27 '404': *6 @@ -107690,9 +108054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *241 + - *243 - *57 - - *250 + - *252 responses: '204': description: Response @@ -107912,7 +108276,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -107942,9 +108306,9 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: - default: *676 + default: *678 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107972,9 +108336,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *679 examples: - default: *678 + default: *680 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107998,7 +108362,7 @@ paths: - *99 - *101 - *100 - - *679 + - *681 - *102 responses: '200': @@ -108135,9 +108499,9 @@ paths: description: Response content: application/json: - schema: *680 + schema: *682 examples: - default: *681 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108159,7 +108523,7 @@ paths: parameters: - *57 - *99 - - *682 + - *684 - *100 responses: '200': @@ -108258,9 +108622,9 @@ paths: - *99 - *101 - *100 - - *683 + - *685 - *102 - - *684 + - *686 responses: '200': description: Response when getting a billing usage summary @@ -108394,9 +108758,9 @@ paths: application/json: schema: type: array - items: *658 + items: *660 examples: - default: *659 + default: *661 headers: Link: *52 x-github: @@ -108426,9 +108790,9 @@ paths: application/json: schema: type: array - items: *660 + items: *662 examples: - default: *685 + default: *687 headers: Link: *52 x-github: @@ -108453,7 +108817,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *57 - - *686 + - *688 - *46 - *17 - *19 @@ -108465,11 +108829,11 @@ paths: schema: anyOf: - type: array - items: *687 + items: *689 - type: array items: *64 examples: - default-response: *663 + default-response: *665 headers: Link: *52 x-github: @@ -108500,7 +108864,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -108629,7 +108993,7 @@ webhooks: type: string enum: - disabled - enterprise: &688 + enterprise: &690 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -108698,7 +109062,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &689 + installation: &691 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -108719,7 +109083,7 @@ webhooks: required: - id - node_id - organization: &690 + organization: &692 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -108792,7 +109156,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &691 + repository: &693 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -109705,10 +110069,10 @@ webhooks: type: string enum: - enabled - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -109784,11 +110148,11 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - rule: &692 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + rule: &694 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) @@ -110011,11 +110375,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - rule: *692 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + rule: *694 sender: *4 required: - action @@ -110203,11 +110567,11 @@ webhooks: - everyone required: - from - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - rule: *692 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + rule: *694 sender: *4 required: - action @@ -110291,7 +110655,7 @@ webhooks: type: string enum: - completed - check_run: &694 + check_run: &696 title: CheckRun description: A check performed on the code of a given code change type: object @@ -110356,7 +110720,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *388 + items: *390 repository: *136 status: type: string @@ -110401,7 +110765,7 @@ webhooks: - examples: - neutral - deployment: *693 + deployment: *695 details_url: type: string examples: @@ -110461,7 +110825,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *388 + items: *390 started_at: type: string format: date-time @@ -110499,10 +110863,10 @@ webhooks: - output - app - pull_requests - installation: *689 - enterprise: *688 - organization: *690 - repository: *691 + installation: *691 + enterprise: *690 + organization: *692 + repository: *693 sender: *4 required: - check_run @@ -110895,11 +111259,11 @@ webhooks: type: string enum: - created - check_run: *694 - installation: *689 - enterprise: *688 - organization: *690 - repository: *691 + check_run: *696 + installation: *691 + enterprise: *690 + organization: *692 + repository: *693 sender: *4 required: - check_run @@ -111295,11 +111659,11 @@ webhooks: type: string enum: - requested_action - check_run: *694 - installation: *689 - enterprise: *688 - organization: *690 - repository: *691 + check_run: *696 + installation: *691 + enterprise: *690 + organization: *692 + repository: *693 requested_action: description: The action requested by the user. type: object @@ -111704,11 +112068,11 @@ webhooks: type: string enum: - rerequested - check_run: *694 - installation: *689 - enterprise: *688 - organization: *690 - repository: *691 + check_run: *696 + installation: *691 + enterprise: *690 + organization: *692 + repository: *693 sender: *4 required: - check_run @@ -112700,10 +113064,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -113403,10 +113767,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -114100,10 +114464,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -114272,7 +114636,7 @@ webhooks: required: - login - id - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -114424,20 +114788,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &695 + commit_oid: &697 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: *688 - installation: *689 - organization: *690 - ref: &696 + enterprise: *690 + installation: *691 + organization: *692 + ref: &698 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: *691 + repository: *693 sender: *4 required: - action @@ -114604,7 +114968,7 @@ webhooks: required: - login - id - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -114845,12 +115209,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *695 - enterprise: *688 - installation: *689 - organization: *690 - ref: *696 - repository: *691 + commit_oid: *697 + enterprise: *690 + installation: *691 + organization: *692 + ref: *698 + repository: *693 sender: *4 required: - action @@ -114948,7 +115312,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115133,12 +115497,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *695 - enterprise: *688 - installation: *689 - organization: *690 - ref: *696 - repository: *691 + commit_oid: *697 + enterprise: *690 + installation: *691 + organization: *692 + ref: *698 + repository: *693 sender: *4 required: - action @@ -115307,7 +115671,7 @@ webhooks: required: - login - id - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -115484,12 +115848,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *695 - enterprise: *688 - installation: *689 - organization: *690 - ref: *696 - repository: *691 + commit_oid: *697 + enterprise: *690 + installation: *691 + organization: *692 + ref: *698 + repository: *693 sender: *4 required: - action @@ -115592,7 +115956,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115772,9 +116136,9 @@ webhooks: type: - string - 'null' - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -115782,7 +116146,7 @@ webhooks: type: - string - 'null' - repository: *691 + repository: *693 sender: *4 required: - action @@ -115881,7 +116245,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116028,12 +116392,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *695 - enterprise: *688 - installation: *689 - organization: *690 - ref: *696 - repository: *691 + commit_oid: *697 + enterprise: *690 + installation: *691 + organization: *692 + ref: *698 + repository: *693 sender: *4 required: - action @@ -116295,10 +116659,10 @@ webhooks: - updated_at - author_association - body - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -116379,18 +116743,18 @@ webhooks: type: - string - 'null' - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *690 - pusher_type: &697 + organization: *692 + pusher_type: &699 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &698 + ref: &700 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -116400,7 +116764,7 @@ webhooks: enum: - tag - branch - repository: *691 + repository: *693 sender: *4 required: - ref @@ -116482,10 +116846,10 @@ webhooks: type: string enum: - created - definition: *251 - enterprise: *688 - installation: *689 - organization: *690 + definition: *253 + enterprise: *690 + installation: *691 + organization: *692 sender: *4 required: - action @@ -116570,9 +116934,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 sender: *4 required: - action @@ -116649,10 +117013,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *251 - enterprise: *688 - installation: *689 - organization: *690 + definition: *253 + enterprise: *690 + installation: *691 + organization: *692 sender: *4 required: - action @@ -116729,10 +117093,10 @@ webhooks: type: string enum: - updated - definition: *251 - enterprise: *688 - installation: *689 - organization: *690 + definition: *253 + enterprise: *690 + installation: *691 + organization: *692 sender: *4 required: - action @@ -116809,10 +117173,10 @@ webhooks: type: string enum: - updated - enterprise: *688 - installation: *689 - repository: *691 - organization: *690 + enterprise: *690 + installation: *691 + repository: *693 + organization: *692 sender: *4 new_property_values: type: array @@ -116897,18 +117261,18 @@ webhooks: title: delete event type: object properties: - enterprise: *688 - installation: *689 - organization: *690 - pusher_type: *697 - ref: *698 + enterprise: *690 + installation: *691 + organization: *692 + pusher_type: *699 + ref: *700 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *691 + repository: *693 sender: *4 required: - ref @@ -116992,11 +117356,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117080,11 +117444,11 @@ webhooks: type: string enum: - auto_reopened - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117168,11 +117532,11 @@ webhooks: type: string enum: - created - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117254,11 +117618,11 @@ webhooks: type: string enum: - dismissed - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117340,11 +117704,11 @@ webhooks: type: string enum: - fixed - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117427,11 +117791,11 @@ webhooks: type: string enum: - reintroduced - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117513,11 +117877,11 @@ webhooks: type: string enum: - reopened - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117594,9 +117958,9 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - key: &699 + enterprise: *690 + installation: *691 + key: &701 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -117634,8 +117998,8 @@ webhooks: - verified - created_at - read_only - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -117712,11 +118076,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - key: *699 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + key: *701 + organization: *692 + repository: *693 sender: *4 required: - action @@ -118288,12 +118652,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - workflow: &703 + workflow: &705 title: Workflow type: - object @@ -119031,13 +119395,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *461 + deployment: *463 pull_requests: type: array - items: *545 - repository: *691 - organization: *690 - installation: *689 + items: *547 + repository: *693 + organization: *692 + installation: *691 sender: *4 responses: '200': @@ -119108,7 +119472,7 @@ webhooks: type: string enum: - approved - approver: &700 + approver: &702 type: object properties: avatar_url: @@ -119151,11 +119515,11 @@ webhooks: type: string comment: type: string - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - reviewers: &701 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + reviewers: &703 type: array items: type: object @@ -119236,7 +119600,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &702 + workflow_job_run: &704 type: object properties: conclusion: @@ -119982,18 +120346,18 @@ webhooks: type: string enum: - rejected - approver: *700 + approver: *702 comment: type: string - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - reviewers: *701 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + reviewers: *703 sender: *4 since: type: string - workflow_job_run: *702 + workflow_job_run: *704 workflow_job_runs: type: array items: @@ -120710,13 +121074,13 @@ webhooks: type: string enum: - requested - enterprise: *688 + enterprise: *690 environment: type: string - installation: *689 - organization: *690 - repository: *691 - requestor: &708 + installation: *691 + organization: *692 + repository: *693 + requestor: &710 title: User type: - object @@ -122659,12 +123023,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - workflow: *703 + workflow: *705 workflow_run: title: Deployment Workflow Run type: @@ -123355,7 +123719,7 @@ webhooks: type: string enum: - answered - answer: &706 + answer: &708 type: object properties: author_association: @@ -123515,7 +123879,7 @@ webhooks: - created_at - updated_at - body - discussion: &704 + discussion: &706 title: Discussion description: A Discussion in a repository. type: object @@ -123811,7 +124175,7 @@ webhooks: - id labels: type: array - items: *508 + items: *510 required: - repository_url - category @@ -123833,10 +124197,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -123963,11 +124327,11 @@ webhooks: - from required: - category - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124050,11 +124414,11 @@ webhooks: type: string enum: - closed - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124136,7 +124500,7 @@ webhooks: type: string enum: - created - comment: &705 + comment: &707 type: object properties: author_association: @@ -124296,11 +124660,11 @@ webhooks: - updated_at - body - reactions - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124383,12 +124747,12 @@ webhooks: type: string enum: - deleted - comment: *705 - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + comment: *707 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124483,12 +124847,12 @@ webhooks: - from required: - body - comment: *705 - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + comment: *707 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124572,11 +124936,11 @@ webhooks: type: string enum: - created - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124658,11 +125022,11 @@ webhooks: type: string enum: - deleted - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124762,11 +125126,11 @@ webhooks: type: string required: - from - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124848,10 +125212,10 @@ webhooks: type: string enum: - labeled - discussion: *704 - enterprise: *688 - installation: *689 - label: &707 + discussion: *706 + enterprise: *690 + installation: *691 + label: &709 title: Label type: object properties: @@ -124884,8 +125248,8 @@ webhooks: - color - default - description - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124968,11 +125332,11 @@ webhooks: type: string enum: - locked - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125054,11 +125418,11 @@ webhooks: type: string enum: - pinned - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125140,11 +125504,11 @@ webhooks: type: string enum: - reopened - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125229,16 +125593,16 @@ webhooks: changes: type: object properties: - new_discussion: *704 - new_repository: *691 + new_discussion: *706 + new_repository: *693 required: - new_discussion - new_repository - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125321,10 +125685,10 @@ webhooks: type: string enum: - unanswered - discussion: *704 - old_answer: *706 - organization: *690 - repository: *691 + discussion: *706 + old_answer: *708 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125406,12 +125770,12 @@ webhooks: type: string enum: - unlabeled - discussion: *704 - enterprise: *688 - installation: *689 - label: *707 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125494,11 +125858,11 @@ webhooks: type: string enum: - unlocked - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125580,11 +125944,11 @@ webhooks: type: string enum: - unpinned - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125657,7 +126021,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *688 + enterprise: *690 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -126335,9 +126699,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - forkee @@ -126483,9 +126847,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pages: description: The pages that were updated. type: array @@ -126523,7 +126887,7 @@ webhooks: - action - sha - html_url - repository: *691 + repository: *693 sender: *4 required: - pages @@ -126599,10 +126963,10 @@ webhooks: type: string enum: - created - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories: &709 + organization: *692 + repositories: &711 description: An array of repository objects that the installation can access. type: array @@ -126628,8 +126992,8 @@ webhooks: - name - full_name - private - repository: *691 - requester: *708 + repository: *693 + requester: *710 sender: *4 required: - action @@ -126704,11 +127068,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories: *709 - repository: *691 + organization: *692 + repositories: *711 + repository: *693 requester: type: - 'null' @@ -126785,11 +127149,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories: *709 - repository: *691 + organization: *692 + repositories: *711 + repository: *693 requester: type: - 'null' @@ -126866,10 +127230,10 @@ webhooks: type: string enum: - added - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories_added: &710 + organization: *692 + repositories_added: &712 description: An array of repository objects, which were added to the installation. type: array @@ -126915,15 +127279,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *691 - repository_selection: &711 + repository: *693 + repository_selection: &713 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *708 + requester: *710 sender: *4 required: - action @@ -127002,10 +127366,10 @@ webhooks: type: string enum: - removed - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories_added: *710 + organization: *692 + repositories_added: *712 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -127032,9 +127396,9 @@ webhooks: - name - full_name - private - repository: *691 - repository_selection: *711 - requester: *708 + repository: *693 + repository_selection: *713 + requester: *710 sender: *4 required: - action @@ -127113,11 +127477,11 @@ webhooks: type: string enum: - suspend - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories: *709 - repository: *691 + organization: *692 + repositories: *711 + repository: *693 requester: type: - 'null' @@ -127299,10 +127663,10 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 target_type: type: string @@ -127381,11 +127745,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories: *709 - repository: *691 + organization: *692 + repositories: *711 + repository: *693 requester: type: - 'null' @@ -127633,8 +127997,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128451,8 +128815,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128469,7 +128833,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -128813,8 +129177,8 @@ webhooks: - state - locked - assignee - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -128894,7 +129258,7 @@ webhooks: type: string enum: - deleted - comment: &712 + comment: &714 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -129061,8 +129425,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129875,8 +130239,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129893,7 +130257,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -130239,8 +130603,8 @@ webhooks: - state - locked - assignee - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -130320,7 +130684,7 @@ webhooks: type: string enum: - edited - changes: &736 + changes: &738 description: The changes to the comment. type: object properties: @@ -130332,9 +130696,9 @@ webhooks: type: string required: - from - comment: *712 - enterprise: *688 - installation: *689 + comment: *714 + enterprise: *690 + installation: *691 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131150,8 +131514,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131168,7 +131532,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -131512,8 +131876,8 @@ webhooks: - state - locked - assignee - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -131603,9 +131967,9 @@ webhooks: type: number blocking_issue: *78 blocking_issue_repo: *64 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -131699,9 +132063,9 @@ webhooks: type: number blocking_issue: *78 blocking_issue_repo: *64 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -131794,9 +132158,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -131890,9 +132254,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -131977,10 +132341,10 @@ webhooks: type: string enum: - assigned - assignee: *708 - enterprise: *688 - installation: *689 - issue: &715 + assignee: *710 + enterprise: *690 + installation: *691 + issue: &717 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -132792,11 +133156,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132813,7 +133177,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -132916,8 +133280,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -132997,8 +133361,8 @@ webhooks: type: string enum: - closed - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133815,11 +134179,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133836,7 +134200,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -134082,8 +134446,8 @@ webhooks: required: - state - closed_at - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -134162,8 +134526,8 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134971,11 +135335,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134992,7 +135356,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -135094,8 +135458,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -135174,8 +135538,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136006,11 +136370,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136027,7 +136391,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -136108,7 +136472,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &713 + milestone: &715 title: Milestone description: A collection of related issues and pull requests. type: object @@ -136251,8 +136615,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -136351,8 +136715,8 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137164,11 +137528,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137182,7 +137546,7 @@ webhooks: timeline_url: type: string format: uri - type: *206 + type: *208 title: description: Title of the issue type: string @@ -137288,9 +137652,9 @@ webhooks: - active_lock_reason - body - reactions - label: *707 - organization: *690 - repository: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -137370,8 +137734,8 @@ webhooks: type: string enum: - labeled - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138182,11 +138546,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138200,7 +138564,7 @@ webhooks: timeline_url: type: string format: uri - type: *206 + type: *208 title: description: Title of the issue type: string @@ -138306,9 +138670,9 @@ webhooks: - active_lock_reason - body - reactions - label: *707 - organization: *690 - repository: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -138388,8 +138752,8 @@ webhooks: type: string enum: - locked - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139225,11 +139589,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139243,7 +139607,7 @@ webhooks: timeline_url: type: string format: uri - type: *206 + type: *208 title: description: Title of the issue type: string @@ -139326,8 +139690,8 @@ webhooks: format: uri user_view_type: type: string - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -139406,8 +139770,8 @@ webhooks: type: string enum: - milestoned - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140237,11 +140601,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140258,7 +140622,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -140338,9 +140702,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *713 - organization: *690 - repository: *691 + milestone: *715 + organization: *692 + repository: *693 sender: *4 required: - action @@ -141232,11 +141596,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141332,7 +141696,7 @@ webhooks: required: - login - id - type: *206 + type: *208 required: - id - number @@ -141813,8 +142177,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142626,11 +142990,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142647,7 +143011,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -142749,8 +143113,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -142830,9 +143194,9 @@ webhooks: type: string enum: - pinned - enterprise: *688 - installation: *689 - issue: &714 + enterprise: *690 + installation: *691 + issue: &716 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143638,11 +144002,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143659,7 +144023,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -143761,8 +144125,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -143841,8 +144205,8 @@ webhooks: type: string enum: - reopened - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144676,11 +145040,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144777,9 +145141,9 @@ webhooks: format: uri user_view_type: type: string - type: *206 - organization: *690 - repository: *691 + type: *208 + organization: *692 + repository: *693 sender: *4 required: - action @@ -145668,11 +146032,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145689,7 +146053,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -146271,11 +146635,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *688 - installation: *689 - issue: *714 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *716 + organization: *692 + repository: *693 sender: *4 required: - action @@ -146355,12 +146719,12 @@ webhooks: type: string enum: - typed - enterprise: *688 - installation: *689 - issue: *715 - type: *206 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *717 + type: *208 + organization: *692 + repository: *693 sender: *4 required: - action @@ -146441,7 +146805,7 @@ webhooks: type: string enum: - unassigned - assignee: &739 + assignee: &741 title: User type: - object @@ -146513,11 +146877,11 @@ webhooks: required: - login - id - enterprise: *688 - installation: *689 - issue: *715 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *717 + organization: *692 + repository: *693 sender: *4 required: - action @@ -146596,12 +146960,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *688 - installation: *689 - issue: *715 - label: *707 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *717 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -146681,8 +147045,8 @@ webhooks: type: string enum: - unlocked - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147516,11 +147880,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147537,7 +147901,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -147617,8 +147981,8 @@ webhooks: format: uri user_view_type: type: string - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -147698,11 +148062,11 @@ webhooks: type: string enum: - unpinned - enterprise: *688 - installation: *689 - issue: *714 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *716 + organization: *692 + repository: *693 sender: *4 required: - action @@ -147781,12 +148145,12 @@ webhooks: type: string enum: - untyped - enterprise: *688 - installation: *689 - issue: *715 - type: *206 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *717 + type: *208 + organization: *692 + repository: *693 sender: *4 required: - action @@ -147866,11 +148230,11 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - label: *707 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -147948,11 +148312,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - label: *707 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -148062,11 +148426,11 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - label: *707 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -148148,9 +148512,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *688 - installation: *689 - marketplace_purchase: &716 + enterprise: *690 + installation: *691 + marketplace_purchase: &718 title: Marketplace Purchase type: object required: @@ -148238,8 +148602,8 @@ webhooks: type: integer unit_count: type: integer - organization: *690 - previous_marketplace_purchase: &717 + organization: *692 + previous_marketplace_purchase: &719 title: Marketplace Purchase type: object properties: @@ -148323,7 +148687,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *691 + repository: *693 sender: *4 required: - action @@ -148403,10 +148767,10 @@ webhooks: - changed effective_date: type: string - enterprise: *688 - installation: *689 - marketplace_purchase: *716 - organization: *690 + enterprise: *690 + installation: *691 + marketplace_purchase: *718 + organization: *692 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148494,7 +148858,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *691 + repository: *693 sender: *4 required: - action @@ -148576,10 +148940,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *688 - installation: *689 - marketplace_purchase: *716 - organization: *690 + enterprise: *690 + installation: *691 + marketplace_purchase: *718 + organization: *692 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148665,7 +149029,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *691 + repository: *693 sender: *4 required: - action @@ -148746,8 +149110,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 marketplace_purchase: title: Marketplace Purchase type: object @@ -148833,9 +149197,9 @@ webhooks: type: integer unit_count: type: integer - organization: *690 - previous_marketplace_purchase: *717 - repository: *691 + organization: *692 + previous_marketplace_purchase: *719 + repository: *693 sender: *4 required: - action @@ -148915,12 +149279,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *688 - installation: *689 - marketplace_purchase: *716 - organization: *690 - previous_marketplace_purchase: *717 - repository: *691 + enterprise: *690 + installation: *691 + marketplace_purchase: *718 + organization: *692 + previous_marketplace_purchase: *719 + repository: *693 sender: *4 required: - action @@ -149022,11 +149386,11 @@ webhooks: type: string required: - to - enterprise: *688 - installation: *689 - member: *708 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + member: *710 + organization: *692 + repository: *693 sender: *4 required: - action @@ -149128,11 +149492,11 @@ webhooks: type: - string - 'null' - enterprise: *688 - installation: *689 - member: *708 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + member: *710 + organization: *692 + repository: *693 sender: *4 required: - action @@ -149211,11 +149575,11 @@ webhooks: type: string enum: - removed - enterprise: *688 - installation: *689 - member: *708 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + member: *710 + organization: *692 + repository: *693 sender: *4 required: - action @@ -149293,11 +149657,11 @@ webhooks: type: string enum: - added - enterprise: *688 - installation: *689 - member: *708 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + member: *710 + organization: *692 + repository: *693 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149375,7 +149739,7 @@ webhooks: required: - login - id - team: &718 + team: &720 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -149605,11 +149969,11 @@ webhooks: type: string enum: - removed - enterprise: *688 - installation: *689 - member: *708 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + member: *710 + organization: *692 + repository: *693 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149688,7 +150052,7 @@ webhooks: required: - login - id - team: *718 + team: *720 required: - action - scope @@ -149770,8 +150134,8 @@ webhooks: type: string enum: - checks_requested - installation: *689 - merge_group: &719 + installation: *691 + merge_group: &721 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -149790,15 +150154,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *392 + head_commit: *394 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -149884,10 +150248,10 @@ webhooks: - merged - invalidated - dequeued - installation: *689 - merge_group: *719 - organization: *690 - repository: *691 + installation: *691 + merge_group: *721 + organization: *692 + repository: *693 sender: *4 required: - action @@ -149960,7 +150324,7 @@ webhooks: type: string enum: - deleted - enterprise: *688 + enterprise: *690 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -150069,12 +150433,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *689 - organization: *690 + installation: *691 + organization: *692 repository: anyOf: - type: 'null' - - *691 + - *693 sender: *4 required: - action @@ -150154,11 +150518,11 @@ webhooks: type: string enum: - closed - enterprise: *688 - installation: *689 - milestone: *713 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + milestone: *715 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150237,9 +150601,9 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - milestone: &720 + enterprise: *690 + installation: *691 + milestone: &722 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150381,8 +150745,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150461,11 +150825,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - milestone: *713 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + milestone: *715 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150575,11 +150939,11 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - milestone: *713 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + milestone: *715 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150659,11 +151023,11 @@ webhooks: type: string enum: - opened - enterprise: *688 - installation: *689 - milestone: *720 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + milestone: *722 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150742,11 +151106,11 @@ webhooks: type: string enum: - blocked - blocked_user: *708 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + blocked_user: *710 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150825,11 +151189,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *708 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + blocked_user: *710 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150908,9 +151272,9 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - membership: &721 + enterprise: *690 + installation: *691 + membership: &723 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -151020,8 +151384,8 @@ webhooks: - role - organization_url - user - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -151099,11 +151463,11 @@ webhooks: type: string enum: - member_added - enterprise: *688 - installation: *689 - membership: *721 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + membership: *723 + organization: *692 + repository: *693 sender: *4 required: - action @@ -151182,8 +151546,8 @@ webhooks: type: string enum: - member_invited - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -151305,10 +151669,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 - user: *708 + user: *710 required: - action - invitation @@ -151386,11 +151750,11 @@ webhooks: type: string enum: - member_removed - enterprise: *688 - installation: *689 - membership: *721 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + membership: *723 + organization: *692 + repository: *693 sender: *4 required: - action @@ -151477,11 +151841,11 @@ webhooks: properties: from: type: string - enterprise: *688 - installation: *689 - membership: *721 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + membership: *723 + organization: *692 + repository: *693 sender: *4 required: - action @@ -151557,9 +151921,9 @@ webhooks: type: string enum: - published - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 package: description: Information about the package. type: object @@ -152082,7 +152446,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &722 + items: &724 title: Ruby Gems metadata type: object properties: @@ -152179,7 +152543,7 @@ webhooks: - owner - package_version - registry - repository: *691 + repository: *693 sender: *4 required: - action @@ -152255,9 +152619,9 @@ webhooks: type: string enum: - updated - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 package: description: Information about the package. type: object @@ -152619,7 +152983,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *722 + items: *724 source_url: type: string format: uri @@ -152690,7 +153054,7 @@ webhooks: - owner - package_version - registry - repository: *691 + repository: *693 sender: *4 required: - action @@ -152871,12 +153235,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *688 + enterprise: *690 id: type: integer - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - id @@ -152953,7 +153317,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &723 + personal_access_token_request: &725 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -153103,10 +153467,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *688 - organization: *690 + enterprise: *690 + organization: *692 sender: *4 - installation: *689 + installation: *691 required: - action - personal_access_token_request @@ -153183,11 +153547,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *723 - enterprise: *688 - organization: *690 + personal_access_token_request: *725 + enterprise: *690 + organization: *692 sender: *4 - installation: *689 + installation: *691 required: - action - personal_access_token_request @@ -153263,11 +153627,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *723 - enterprise: *688 - organization: *690 + personal_access_token_request: *725 + enterprise: *690 + organization: *692 sender: *4 - installation: *689 + installation: *691 required: - action - personal_access_token_request @@ -153342,11 +153706,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *723 - organization: *690 - enterprise: *688 + personal_access_token_request: *725 + organization: *692 + enterprise: *690 sender: *4 - installation: *689 + installation: *691 required: - action - personal_access_token_request @@ -153451,7 +153815,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *724 + last_response: *726 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -153483,8 +153847,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 zen: description: Random string of GitHub zen. @@ -153729,10 +154093,10 @@ webhooks: - from required: - note - enterprise: *688 - installation: *689 - organization: *690 - project_card: &725 + enterprise: *690 + installation: *691 + organization: *692 + project_card: &727 title: Project Card type: object properties: @@ -153855,7 +154219,7 @@ webhooks: - creator - created_at - updated_at - repository: *691 + repository: *693 sender: *4 required: - action @@ -153936,11 +154300,11 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - project_card: *725 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project_card: *727 + repository: *693 sender: *4 required: - action @@ -154020,9 +154384,9 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 project_card: title: Project Card type: object @@ -154152,7 +154516,7 @@ webhooks: repository: anyOf: - type: 'null' - - *691 + - *693 sender: *4 required: - action @@ -154246,11 +154610,11 @@ webhooks: - from required: - note - enterprise: *688 - installation: *689 - organization: *690 - project_card: *725 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project_card: *727 + repository: *693 sender: *4 required: - action @@ -154344,9 +154708,9 @@ webhooks: - from required: - column_id - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 project_card: allOf: - title: Project Card @@ -154543,7 +154907,7 @@ webhooks: type: string required: - after_id - repository: *691 + repository: *693 sender: *4 required: - action @@ -154623,10 +154987,10 @@ webhooks: type: string enum: - closed - enterprise: *688 - installation: *689 - organization: *690 - project: &727 + enterprise: *690 + installation: *691 + organization: *692 + project: &729 title: Project type: object properties: @@ -154753,7 +155117,7 @@ webhooks: - creator - created_at - updated_at - repository: *691 + repository: *693 sender: *4 required: - action @@ -154833,10 +155197,10 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - project_column: &726 + enterprise: *690 + installation: *691 + organization: *692 + project_column: &728 title: Project Column type: object properties: @@ -154876,7 +155240,7 @@ webhooks: - name - created_at - updated_at - repository: *691 + repository: *693 sender: *4 required: - action @@ -154955,14 +155319,14 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - project_column: *726 + enterprise: *690 + installation: *691 + organization: *692 + project_column: *728 repository: anyOf: - type: 'null' - - *691 + - *693 sender: *4 required: - action @@ -155051,11 +155415,11 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - organization: *690 - project_column: *726 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project_column: *728 + repository: *693 sender: *4 required: - action @@ -155135,11 +155499,11 @@ webhooks: type: string enum: - moved - enterprise: *688 - installation: *689 - organization: *690 - project_column: *726 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project_column: *728 + repository: *693 sender: *4 required: - action @@ -155219,11 +155583,11 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - project: *727 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project: *729 + repository: *693 sender: *4 required: - action @@ -155303,14 +155667,14 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - project: *727 + enterprise: *690 + installation: *691 + organization: *692 + project: *729 repository: anyOf: - type: 'null' - - *691 + - *693 sender: *4 required: - action @@ -155411,11 +155775,11 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - organization: *690 - project: *727 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project: *729 + repository: *693 sender: *4 required: - action @@ -155494,11 +155858,11 @@ webhooks: type: string enum: - reopened - enterprise: *688 - installation: *689 - organization: *690 - project: *727 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project: *729 + repository: *693 sender: *4 required: - action @@ -155579,9 +155943,9 @@ webhooks: type: string enum: - closed - installation: *689 - organization: *690 - projects_v2: *239 + installation: *691 + organization: *692 + projects_v2: *241 sender: *4 required: - action @@ -155662,9 +156026,9 @@ webhooks: type: string enum: - created - installation: *689 - organization: *690 - projects_v2: *239 + installation: *691 + organization: *692 + projects_v2: *241 sender: *4 required: - action @@ -155745,9 +156109,9 @@ webhooks: type: string enum: - deleted - installation: *689 - organization: *690 - projects_v2: *239 + installation: *691 + organization: *692 + projects_v2: *241 sender: *4 required: - action @@ -155868,9 +156232,9 @@ webhooks: type: string to: type: string - installation: *689 - organization: *690 - projects_v2: *239 + installation: *691 + organization: *692 + projects_v2: *241 sender: *4 required: - action @@ -155953,7 +156317,7 @@ webhooks: type: string enum: - archived - changes: &731 + changes: &733 type: object properties: archived_at: @@ -155969,9 +156333,9 @@ webhooks: - string - 'null' format: date-time - installation: *689 - organization: *690 - projects_v2_item: &728 + installation: *691 + organization: *692 + projects_v2_item: &730 title: Projects v2 Item description: An item belonging to a project type: object @@ -155989,7 +156353,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *245 + content_type: *247 creator: *4 created_at: type: string @@ -156111,9 +156475,9 @@ webhooks: - 'null' to: type: string - installation: *689 - organization: *690 - projects_v2_item: *728 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156195,9 +156559,9 @@ webhooks: type: string enum: - created - installation: *689 - organization: *690 - projects_v2_item: *728 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156278,9 +156642,9 @@ webhooks: type: string enum: - deleted - installation: *689 - organization: *690 - projects_v2_item: *728 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156385,7 +156749,7 @@ webhooks: oneOf: - type: string - type: integer - - &729 + - &731 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -156409,7 +156773,7 @@ webhooks: required: - id - name - - &730 + - &732 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -156449,8 +156813,8 @@ webhooks: oneOf: - type: string - type: integer - - *729 - - *730 + - *731 + - *732 type: - 'null' - string @@ -156473,9 +156837,9 @@ webhooks: - 'null' required: - body - installation: *689 - organization: *690 - projects_v2_item: *728 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156572,9 +156936,9 @@ webhooks: type: - string - 'null' - installation: *689 - organization: *690 - projects_v2_item: *728 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156657,10 +157021,10 @@ webhooks: type: string enum: - restored - changes: *731 - installation: *689 - organization: *690 - projects_v2_item: *728 + changes: *733 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156742,9 +157106,9 @@ webhooks: type: string enum: - reopened - installation: *689 - organization: *690 - projects_v2: *239 + installation: *691 + organization: *692 + projects_v2: *241 sender: *4 required: - action @@ -156825,9 +157189,9 @@ webhooks: type: string enum: - created - installation: *689 - organization: *690 - projects_v2_status_update: *732 + installation: *691 + organization: *692 + projects_v2_status_update: *734 sender: *4 required: - action @@ -156908,9 +157272,9 @@ webhooks: type: string enum: - deleted - installation: *689 - organization: *690 - projects_v2_status_update: *732 + installation: *691 + organization: *692 + projects_v2_status_update: *734 sender: *4 required: - action @@ -157056,9 +157420,9 @@ webhooks: - string - 'null' format: date - installation: *689 - organization: *690 - projects_v2_status_update: *732 + installation: *691 + organization: *692 + projects_v2_status_update: *734 sender: *4 required: - action @@ -157129,10 +157493,10 @@ webhooks: title: public event type: object properties: - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - repository @@ -157209,13 +157573,13 @@ webhooks: type: string enum: - assigned - assignee: *708 - enterprise: *688 - installation: *689 - number: &733 + assignee: *710 + enterprise: *690 + installation: *691 + number: &735 description: The pull request number. type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -159564,7 +159928,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -159646,11 +160010,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -161992,7 +162356,7 @@ webhooks: - draft reason: type: string - repository: *691 + repository: *693 sender: *4 required: - action @@ -162074,11 +162438,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -164420,7 +164784,7 @@ webhooks: - draft reason: type: string - repository: *691 + repository: *693 sender: *4 required: - action @@ -164502,13 +164866,13 @@ webhooks: type: string enum: - closed - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: &734 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: &736 allOf: - - *545 + - *547 - type: object properties: allow_auto_merge: @@ -164570,7 +164934,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *691 + repository: *693 sender: *4 required: - action @@ -164651,12 +165015,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: *734 - repository: *691 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: *736 + repository: *693 sender: *4 required: - action @@ -164736,11 +165100,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *688 - milestone: *242 - number: *733 - organization: *690 - pull_request: &735 + enterprise: *690 + milestone: *244 + number: *735 + organization: *692 + pull_request: &737 title: Pull Request type: object properties: @@ -167067,7 +167431,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -167146,11 +167510,11 @@ webhooks: type: string enum: - dequeued - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -169496,7 +169860,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *691 + repository: *693 sender: *4 required: - action @@ -169620,12 +169984,12 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: *734 - repository: *691 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: *736 + repository: *693 sender: *4 required: - action @@ -169705,11 +170069,11 @@ webhooks: type: string enum: - enqueued - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -172040,7 +172404,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -172120,11 +172484,11 @@ webhooks: type: string enum: - labeled - enterprise: *688 - installation: *689 - label: *707 - number: *733 - organization: *690 + enterprise: *690 + installation: *691 + label: *709 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -174472,7 +174836,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -174553,10 +174917,10 @@ webhooks: type: string enum: - locked - enterprise: *688 - installation: *689 - number: *733 - organization: *690 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -176902,7 +177266,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -176982,12 +177346,12 @@ webhooks: type: string enum: - milestoned - enterprise: *688 - milestone: *242 - number: *733 - organization: *690 - pull_request: *735 - repository: *691 + enterprise: *690 + milestone: *244 + number: *735 + organization: *692 + pull_request: *737 + repository: *693 sender: *4 required: - action @@ -177066,12 +177430,12 @@ webhooks: type: string enum: - opened - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: *734 - repository: *691 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: *736 + repository: *693 sender: *4 required: - action @@ -177152,12 +177516,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: *734 - repository: *691 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: *736 + repository: *693 sender: *4 required: - action @@ -177237,12 +177601,12 @@ webhooks: type: string enum: - reopened - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: *734 - repository: *691 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: *736 + repository: *693 sender: *4 required: - action @@ -177617,9 +177981,9 @@ webhooks: - start_side - side - reactions - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: type: object properties: @@ -179849,7 +180213,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *691 + repository: *693 sender: *4 required: - action @@ -179929,7 +180293,7 @@ webhooks: type: string enum: - deleted - comment: &737 + comment: &739 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -180222,9 +180586,9 @@ webhooks: - start_side - side - reactions - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: type: object properties: @@ -182442,7 +182806,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *691 + repository: *693 sender: *4 required: - action @@ -182522,11 +182886,11 @@ webhooks: type: string enum: - edited - changes: *736 - comment: *737 - enterprise: *688 - installation: *689 - organization: *690 + changes: *738 + comment: *739 + enterprise: *690 + installation: *691 + organization: *692 pull_request: type: object properties: @@ -184747,7 +185111,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *691 + repository: *693 sender: *4 required: - action @@ -184828,9 +185192,9 @@ webhooks: type: string enum: - dismissed - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: title: Simple Pull Request type: object @@ -187063,7 +187427,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *691 + repository: *693 review: description: The review that was affected. type: object @@ -187314,9 +187678,9 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: title: Simple Pull Request type: object @@ -189430,8 +189794,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *691 - review: &738 + repository: *693 + review: &740 description: The review that was affected. type: object properties: @@ -189669,12 +190033,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: description: The pull request number. type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -192021,7 +192385,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 requested_reviewer: title: User type: @@ -192107,12 +192471,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: description: The pull request number. type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -194466,7 +194830,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194661,12 +195025,12 @@ webhooks: type: string enum: - review_requested - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: description: The pull request number. type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -197015,7 +197379,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 requested_reviewer: title: User type: @@ -197102,12 +197466,12 @@ webhooks: type: string enum: - review_requested - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: description: The pull request number. type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -199447,7 +199811,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199631,9 +199995,9 @@ webhooks: type: string enum: - submitted - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: title: Simple Pull Request type: object @@ -201869,8 +202233,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *691 - review: *738 + repository: *693 + review: *740 sender: *4 required: - action @@ -201950,9 +202314,9 @@ webhooks: type: string enum: - resolved - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: title: Simple Pull Request type: object @@ -204083,7 +204447,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *691 + repository: *693 sender: *4 thread: type: object @@ -204480,9 +204844,9 @@ webhooks: type: string enum: - unresolved - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: title: Simple Pull Request type: object @@ -206596,7 +206960,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *691 + repository: *693 sender: *4 thread: type: object @@ -206995,10 +207359,10 @@ webhooks: type: string before: type: string - enterprise: *688 - installation: *689 - number: *733 - organization: *690 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -209333,7 +209697,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -209415,11 +209779,11 @@ webhooks: type: string enum: - unassigned - assignee: *739 - enterprise: *688 - installation: *689 - number: *733 - organization: *690 + assignee: *741 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -211769,7 +212133,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -211848,11 +212212,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *688 - installation: *689 - label: *707 - number: *733 - organization: *690 + enterprise: *690 + installation: *691 + label: *709 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -214191,7 +214555,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -214272,10 +214636,10 @@ webhooks: type: string enum: - unlocked - enterprise: *688 - installation: *689 - number: *733 - organization: *690 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -216604,7 +216968,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -216807,7 +217171,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *688 + enterprise: *690 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -216902,8 +217266,8 @@ webhooks: - url - author - committer - installation: *689 - organization: *690 + installation: *691 + organization: *692 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -217491,9 +217855,9 @@ webhooks: type: string enum: - published - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 registry_package: type: object properties: @@ -217970,7 +218334,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *722 + items: *724 summary: type: string tag_name: @@ -218026,7 +218390,7 @@ webhooks: - owner - package_version - registry - repository: *691 + repository: *693 sender: *4 required: - action @@ -218104,9 +218468,9 @@ webhooks: type: string enum: - updated - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 registry_package: type: object properties: @@ -218418,7 +218782,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *722 + items: *724 summary: type: string tag_name: @@ -218468,7 +218832,7 @@ webhooks: - owner - package_version - registry - repository: *691 + repository: *693 sender: *4 required: - action @@ -218545,10 +218909,10 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - release: &740 + enterprise: *690 + installation: *691 + organization: *692 + release: &742 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218879,7 +219243,7 @@ webhooks: - updated_at - zipball_url - body - repository: *691 + repository: *693 sender: *4 required: - action @@ -218956,11 +219320,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - release: *740 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + release: *742 + repository: *693 sender: *4 required: - action @@ -219077,11 +219441,11 @@ webhooks: type: boolean required: - to - enterprise: *688 - installation: *689 - organization: *690 - release: *740 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + release: *742 + repository: *693 sender: *4 required: - action @@ -219159,9 +219523,9 @@ webhooks: type: string enum: - prereleased - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -219497,7 +219861,7 @@ webhooks: - string - 'null' format: uri - repository: *691 + repository: *693 sender: *4 required: - action @@ -219573,10 +219937,10 @@ webhooks: type: string enum: - published - enterprise: *688 - installation: *689 - organization: *690 - release: &741 + enterprise: *690 + installation: *691 + organization: *692 + release: &743 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219909,7 +220273,7 @@ webhooks: - string - 'null' format: uri - repository: *691 + repository: *693 sender: *4 required: - action @@ -219985,11 +220349,11 @@ webhooks: type: string enum: - released - enterprise: *688 - installation: *689 - organization: *690 - release: *740 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + release: *742 + repository: *693 sender: *4 required: - action @@ -220065,11 +220429,11 @@ webhooks: type: string enum: - unpublished - enterprise: *688 - installation: *689 - organization: *690 - release: *741 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + release: *743 + repository: *693 sender: *4 required: - action @@ -220145,11 +220509,11 @@ webhooks: type: string enum: - published - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - repository_advisory: *609 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + repository_advisory: *611 sender: *4 required: - action @@ -220225,11 +220589,11 @@ webhooks: type: string enum: - reported - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - repository_advisory: *609 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + repository_advisory: *611 sender: *4 required: - action @@ -220305,10 +220669,10 @@ webhooks: type: string enum: - archived - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220385,10 +220749,10 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220466,10 +220830,10 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220554,10 +220918,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220672,10 +221036,10 @@ webhooks: - 'null' items: type: string - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220747,10 +221111,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 status: type: string @@ -220831,10 +221195,10 @@ webhooks: type: string enum: - privatized - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220911,10 +221275,10 @@ webhooks: type: string enum: - publicized - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -221008,10 +221372,10 @@ webhooks: - name required: - repository - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -221091,11 +221455,11 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - repository_ruleset: *281 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + repository_ruleset: *283 sender: *4 required: - action @@ -221173,11 +221537,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - repository_ruleset: *281 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + repository_ruleset: *283 sender: *4 required: - action @@ -221255,11 +221619,11 @@ webhooks: type: string enum: - edited - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - repository_ruleset: *281 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + repository_ruleset: *283 changes: type: object properties: @@ -221278,16 +221642,16 @@ webhooks: properties: added: type: array - items: *256 + items: *258 deleted: type: array - items: *256 + items: *258 updated: type: array items: type: object properties: - condition: *256 + condition: *258 changes: type: object properties: @@ -221320,16 +221684,16 @@ webhooks: properties: added: type: array - items: *566 + items: *568 deleted: type: array - items: *566 + items: *568 updated: type: array items: type: object properties: - rule: *566 + rule: *568 changes: type: object properties: @@ -221566,10 +221930,10 @@ webhooks: - from required: - owner - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -221647,10 +222011,10 @@ webhooks: type: string enum: - unarchived - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -221728,7 +222092,7 @@ webhooks: type: string enum: - create - alert: &742 + alert: &744 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -221852,10 +222216,10 @@ webhooks: type: string enum: - open - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222065,10 +222429,10 @@ webhooks: type: string enum: - dismissed - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222146,11 +222510,11 @@ webhooks: type: string enum: - reopen - alert: *742 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + alert: *744 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222352,10 +222716,10 @@ webhooks: enum: - fixed - open - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222433,17 +222797,17 @@ webhooks: type: string enum: - created - alert: &743 + alert: &745 type: object properties: - number: *152 - created_at: *153 + number: *154 + created_at: *155 updated_at: anyOf: - type: 'null' - - *154 - url: *155 - html_url: *156 + - *156 + url: *157 + html_url: *158 locations_url: type: string format: uri @@ -222547,10 +222911,10 @@ webhooks: anyOf: - type: 'null' - *4 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222631,11 +222995,11 @@ webhooks: type: string enum: - created - alert: *743 - installation: *689 - location: *744 - organization: *690 - repository: *691 + alert: *745 + installation: *691 + location: *746 + organization: *692 + repository: *693 sender: *4 required: - location @@ -222873,11 +223237,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *743 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + alert: *745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222955,11 +223319,11 @@ webhooks: type: string enum: - reopened - alert: *743 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + alert: *745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -223037,11 +223401,11 @@ webhooks: type: string enum: - resolved - alert: *743 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + alert: *745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -223119,11 +223483,11 @@ webhooks: type: string enum: - validated - alert: *743 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + alert: *745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -223253,10 +223617,10 @@ webhooks: - organization - enterprise - - repository: *691 - enterprise: *688 - installation: *689 - organization: *690 + repository: *693 + enterprise: *690 + installation: *691 + organization: *692 sender: *4 required: - action @@ -223334,11 +223698,11 @@ webhooks: type: string enum: - published - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - security_advisory: &745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + security_advisory: &747 description: The details of the security advisory, including summary, description, and severity. type: object @@ -223524,11 +223888,11 @@ webhooks: type: string enum: - updated - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - security_advisory: *745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + security_advisory: *747 sender: *4 required: - action @@ -223601,10 +223965,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -223790,11 +224154,11 @@ webhooks: from: type: object properties: - security_and_analysis: *255 - enterprise: *688 - installation: *689 - organization: *690 - repository: *315 + security_and_analysis: *257 + enterprise: *690 + installation: *691 + organization: *692 + repository: *317 sender: *4 required: - changes @@ -223872,12 +224236,12 @@ webhooks: type: string enum: - cancelled - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: &746 + sponsorship: &748 type: object properties: created_at: @@ -224182,12 +224546,12 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: *746 + sponsorship: *748 required: - action - sponsorship @@ -224275,12 +224639,12 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: *746 + sponsorship: *748 required: - action - changes @@ -224357,17 +224721,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &747 + effective_date: &749 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: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: *746 + sponsorship: *748 required: - action - sponsorship @@ -224441,7 +224805,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &748 + changes: &750 type: object properties: tier: @@ -224485,13 +224849,13 @@ webhooks: - from required: - tier - effective_date: *747 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + effective_date: *749 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: *746 + sponsorship: *748 required: - action - changes @@ -224568,13 +224932,13 @@ webhooks: type: string enum: - tier_changed - changes: *748 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + changes: *750 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: *746 + sponsorship: *748 required: - action - changes @@ -224648,10 +225012,10 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224735,10 +225099,10 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -225172,15 +225536,15 @@ webhooks: type: - string - 'null' - enterprise: *688 + enterprise: *690 id: description: The unique identifier of the status. type: integer - installation: *689 + installation: *691 name: type: string - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 sha: description: The Commit SHA. @@ -225296,9 +225660,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -225388,9 +225752,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -225480,9 +225844,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -225572,9 +225936,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -225651,12 +226015,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - team: &749 + team: &751 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -225886,9 +226250,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 repository: title: Repository description: A git repository @@ -226358,7 +226722,7 @@ webhooks: - topics - visibility sender: *4 - team: *749 + team: *751 required: - action - team @@ -226434,9 +226798,9 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 repository: title: Repository description: A git repository @@ -226906,7 +227270,7 @@ webhooks: - topics - visibility sender: *4 - team: *749 + team: *751 required: - action - team @@ -226983,9 +227347,9 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 repository: title: Repository description: A git repository @@ -227455,7 +227819,7 @@ webhooks: - topics - visibility sender: *4 - team: *749 + team: *751 required: - action - team @@ -227599,9 +227963,9 @@ webhooks: - from required: - permissions - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 repository: title: Repository description: A git repository @@ -228071,7 +228435,7 @@ webhooks: - topics - visibility sender: *4 - team: *749 + team: *751 required: - action - changes @@ -228149,9 +228513,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 repository: title: Repository description: A git repository @@ -228621,7 +228985,7 @@ webhooks: - topics - visibility sender: *4 - team: *749 + team: *751 required: - action - team @@ -228697,10 +229061,10 @@ webhooks: type: string enum: - started - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -228773,17 +229137,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *688 + enterprise: *690 inputs: type: - object - 'null' additionalProperties: true - installation: *689 - organization: *690 + installation: *691 + organization: *692 ref: type: string - repository: *691 + repository: *693 sender: *4 workflow: type: string @@ -228865,10 +229229,10 @@ webhooks: type: string enum: - completed - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 workflow_job: allOf: @@ -229124,7 +229488,7 @@ webhooks: type: string required: - conclusion - deployment: *461 + deployment: *463 required: - action - repository @@ -229203,10 +229567,10 @@ webhooks: type: string enum: - in_progress - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 workflow_job: allOf: @@ -229488,7 +229852,7 @@ webhooks: required: - status - steps - deployment: *461 + deployment: *463 required: - action - repository @@ -229567,10 +229931,10 @@ webhooks: type: string enum: - queued - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 workflow_job: type: object @@ -229716,7 +230080,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *461 + deployment: *463 required: - action - repository @@ -229795,10 +230159,10 @@ webhooks: type: string enum: - waiting - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 workflow_job: type: object @@ -229945,7 +230309,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *461 + deployment: *463 required: - action - repository @@ -230025,12 +230389,12 @@ webhooks: type: string enum: - completed - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - workflow: *703 + workflow: *705 workflow_run: title: Workflow Run type: object @@ -231049,12 +231413,12 @@ webhooks: type: string enum: - in_progress - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - workflow: *703 + workflow: *705 workflow_run: title: Workflow Run type: object @@ -232058,12 +232422,12 @@ webhooks: type: string enum: - requested - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - workflow: *703 + workflow: *705 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 421cf1b7a..6a9d52649 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -84147,6 +84147,519 @@ } } }, + "/orgs/{org}/artifacts/metadata/deployment-record": { + "post": { + "summary": "Create an artifact deployment record", + "description": "Create or update deployment records for an artifact associated with an organization.\nThis endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment.", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-artifact-deployment-record", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "examples": [ + "libfoo" + ] + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The status of the artifact. Can be either deployed or decommissioned.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "cluster": { + "type": "string", + "description": "The deployment cluster." + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment." + }, + "tags": { + "type": "object", + "description": "The tags associated with the deployment.", + "additionalProperties": { + "type": "string" + }, + "maxProperties": 5 + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + } + }, + "required": [ + "name", + "digest", + "status", + "logical_environment", + "deployment_name" + ] + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "data-access": "sensitive" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": { + "post": { + "summary": "Set cluster deployment records", + "description": "Set deployment records for a given cluster.", + "tags": [ + "orgs" + ], + "operationId": "orgs/set-cluster-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "cluster", + "in": "path", + "description": "The cluster name.", + "required": true, + "schema": { + "type": "string", + "minLength": 1, + "maxLength": 64, + "pattern": "^[a-zA-Z0-9._-]+$" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "deployments": { + "type": "array", + "description": "The list of deployments to record.", + "items": { + "type": "object", + "maxLength": 100, + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "maxLength": 255 + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The deployment status of the artifact.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment.", + "minLength": 1, + "maxLength": 128 + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + }, + "tags": { + "type": "object", + "description": "Key-value pairs to tag the deployment record.", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "version": "2.1.0", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "runtime-risk": "sensitive-data" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/metadata/storage-record": { "post": { "summary": "Create artifact metadata storage record", @@ -84373,6 +84886,155 @@ } } }, + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": { + "get": { + "summary": "List artifact deployment records", + "description": "List deployment records for an artifact metadata associated with an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-artifact-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "subject_digest", + "description": "The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`.", + "in": "path", + "required": true, + "schema": { + "type": "string", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + } + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records for this digest and organization", + "type": "integer", + "examples": [ + 3 + ] + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": { "get": { "summary": "List artifact storage records", @@ -174449,10 +175111,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -174679,10 +175339,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -174827,10 +175485,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -175063,10 +175719,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -175259,10 +175913,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -175381,10 +176033,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -303049,6 +303699,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -303883,6 +304534,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -305718,6 +306370,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -665206,16 +665859,14 @@ "default": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -665404,9 +666055,8 @@ "examples": { "default": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -665637,9 +666287,8 @@ "examples": { "default": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -729001,16 +729650,14 @@ "default": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -790280,10 +790927,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -791369,10 +792014,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -791958,10 +792601,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 423c1f8ef..d2a50e96d 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -907,7 +907,7 @@ paths: - subscriptions_url - type - url - type: &287 + type: &289 type: string description: The type of credit the user is receiving. enum: @@ -1073,7 +1073,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &611 + - &613 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1658,7 +1658,7 @@ paths: schema: type: integer default: 30 - - &184 + - &186 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1674,7 +1674,7 @@ paths: application/json: schema: type: array - items: &185 + items: &187 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1770,7 +1770,7 @@ paths: - installation_id - repository_id examples: - default: &186 + default: &188 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1905,7 +1905,7 @@ paths: description: Response content: application/json: - schema: &187 + schema: &189 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2040,7 +2040,7 @@ paths: - request - response examples: - default: &188 + default: &190 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -7757,7 +7757,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &162 + code_scanning_options: &164 type: - object - 'null' @@ -7955,7 +7955,7 @@ paths: description: Response content: application/json: - schema: &164 + schema: &166 type: array description: A list of default code security configurations items: @@ -7971,7 +7971,7 @@ paths: default configuration: *41 examples: - default: &165 + default: &167 value: - default_for_new_repos: public configuration: @@ -8302,7 +8302,7 @@ paths: - *40 - *43 responses: - '204': &166 + '204': &168 description: A header with no content is returned. '400': *14 '403': *27 @@ -8429,7 +8429,7 @@ paths: default: value: default_for_new_repos: all - configuration: &163 + configuration: &165 value: id: 1325 target_type: organization @@ -8514,7 +8514,7 @@ paths: application/json: schema: type: array - items: &167 + items: &169 type: object description: Repositories associated with a code security configuration and attachment status @@ -8859,7 +8859,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &168 + repository: &170 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8953,7 +8953,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &171 + - &173 name: state in: query description: |- @@ -8962,7 +8962,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &172 + - &174 name: severity in: query description: |- @@ -8971,7 +8971,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &173 + - &175 name: ecosystem in: query description: |- @@ -8980,14 +8980,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &174 + - &176 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &175 + - &177 name: epss_percentage in: query description: |- @@ -8999,7 +8999,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &452 + - &454 name: has in: query description: |- @@ -9013,7 +9013,7 @@ paths: type: string enum: - patch - - &176 + - &178 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9023,7 +9023,7 @@ paths: enum: - development - runtime - - &177 + - &179 name: sort in: query description: |- @@ -9049,11 +9049,11 @@ paths: application/json: schema: type: array - items: &178 + items: &180 type: object description: A Dependabot alert. properties: - number: &152 + number: &154 type: integer description: The security alert number. readOnly: true @@ -9119,7 +9119,7 @@ paths: - direct - transitive - - security_advisory: &453 + security_advisory: &455 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9326,29 +9326,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *50 - url: &155 + url: &157 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &156 + html_url: &158 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &153 + created_at: &155 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &154 + updated_at: &156 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &158 + dismissed_at: &160 type: - string - 'null' @@ -9379,7 +9379,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: &157 + fixed_at: &159 type: - string - 'null' @@ -9387,7 +9387,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &454 + auto_dismissed_at: &456 type: - string - 'null' @@ -9414,7 +9414,7 @@ paths: - repository additionalProperties: false examples: - default: &179 + default: &181 value: - number: 2 state: dismissed @@ -10827,7 +10827,7 @@ paths: milestone: anyOf: - type: 'null' - - &242 + - &244 title: Milestone description: A collection of related issues and pull requests. @@ -10999,7 +10999,7 @@ paths: timeline_url: type: string format: uri - type: &206 + type: &208 title: Issue Type description: The type of issue. type: @@ -11108,7 +11108,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &623 + sub_issues_summary: &625 title: Sub-issues Summary type: object properties: @@ -11129,7 +11129,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &624 + issue_dependencies_summary: &626 title: Issue Dependencies Summary type: object properties: @@ -11148,7 +11148,7 @@ paths: - total_blocking issue_field_values: type: array - items: &625 + items: &627 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11243,7 +11243,7 @@ paths: - user - created_at - updated_at - comment: &501 + comment: &503 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11821,7 +11821,7 @@ paths: url: type: string format: uri - user: &637 + user: &639 title: Public User description: Public User type: object @@ -13716,7 +13716,7 @@ paths: - closed - all default: open - - &209 + - &211 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -13767,7 +13767,7 @@ paths: type: array items: *78 examples: - default: &210 + default: &212 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15178,14 +15178,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &309 + - &311 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &310 + - &312 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -15247,7 +15247,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &316 + '301': &318 description: Moved permanently content: application/json: @@ -15269,7 +15269,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &530 + - &532 name: all description: If `true`, show notifications marked as read. in: query @@ -15277,7 +15277,7 @@ paths: schema: type: boolean default: false - - &531 + - &533 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -15287,7 +15287,7 @@ paths: type: boolean default: false - *68 - - &532 + - &534 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: @@ -15658,7 +15658,7 @@ paths: type: boolean examples: - false - security_and_analysis: &255 + security_and_analysis: &257 type: - object - 'null' @@ -15823,7 +15823,7 @@ paths: - url - subscription_url examples: - default: &533 + default: &535 value: - id: '1' repository: @@ -16702,7 +16702,7 @@ paths: - property_name - value examples: - default: &539 + default: &541 value: - property_name: environment value: production @@ -16752,7 +16752,7 @@ paths: required: - properties examples: - default: &540 + default: &542 value: properties: - property_name: environment @@ -17310,7 +17310,7 @@ paths: required: false schema: type: string - - &679 + - &681 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -17456,7 +17456,7 @@ paths: parameters: - *61 - *99 - - &682 + - &684 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 @@ -17568,7 +17568,7 @@ paths: - *99 - *101 - *100 - - &683 + - &685 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -17576,7 +17576,7 @@ paths: schema: type: string - *102 - - &684 + - &686 name: sku description: The SKU to query for usage. in: query @@ -18555,7 +18555,7 @@ paths: type: integer repository_cache_usages: type: array - items: &321 + items: &323 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19793,7 +19793,7 @@ paths: - all - local_only - selected - selected_actions_url: &327 + selected_actions_url: &329 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -19876,7 +19876,7 @@ paths: description: Response content: application/json: - schema: &331 + schema: &333 type: object properties: days: @@ -19918,7 +19918,7 @@ paths: required: true content: application/json: - schema: &332 + schema: &334 type: object properties: days: @@ -19975,7 +19975,7 @@ paths: required: - approval_policy examples: - default: &333 + default: &335 value: approval_policy: first_time_contributors '404': *6 @@ -20034,7 +20034,7 @@ paths: description: Response content: application/json: - schema: &334 + schema: &336 type: object required: - run_workflows_from_fork_pull_requests @@ -20088,7 +20088,7 @@ paths: required: true content: application/json: - schema: &335 + schema: &337 type: object required: - run_workflows_from_fork_pull_requests @@ -20723,7 +20723,7 @@ paths: description: Response content: application/json: - schema: &336 + schema: &338 type: object properties: default_workflow_permissions: &129 @@ -20774,7 +20774,7 @@ paths: required: false content: application/json: - schema: &337 + schema: &339 type: object properties: default_workflow_permissions: *129 @@ -21267,7 +21267,7 @@ paths: type: array items: *136 examples: - default: &640 + default: &642 value: total_count: 1 repositories: @@ -21914,7 +21914,7 @@ paths: application/json: schema: type: array - items: &338 + items: &340 title: Runner Application description: Runner Application type: object @@ -21939,7 +21939,7 @@ paths: - download_url - filename examples: - default: &339 + default: &341 value: - os: osx architecture: x64 @@ -22025,7 +22025,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &340 + '201': &342 description: Response content: application/json: @@ -22140,7 +22140,7 @@ paths: - token - expires_at examples: - default: &341 + default: &343 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -22179,7 +22179,7 @@ paths: application/json: schema: *140 examples: - default: &342 + default: &344 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -22213,7 +22213,7 @@ paths: application/json: schema: *138 examples: - default: &343 + default: &345 value: id: 23 name: MBP @@ -22439,7 +22439,7 @@ paths: - *61 - *137 responses: - '200': &344 + '200': &346 description: Response content: application/json: @@ -22496,7 +22496,7 @@ paths: parameters: - *61 - *137 - - &345 + - &347 name: name description: The name of a self-hosted runner's custom label. in: path @@ -22628,7 +22628,7 @@ paths: description: Response content: application/json: - schema: &357 + schema: &359 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -22663,7 +22663,7 @@ paths: - key_id - key examples: - default: &358 + default: &360 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23076,7 +23076,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *61 - - &326 + - &328 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -23546,6 +23546,330 @@ paths: enabledForGitHubApps: true category: actions subcategory: variables + "/orgs/{org}/artifacts/metadata/deployment-record": + post: + summary: Create an artifact deployment record + description: |- + Create or update deployment records for an artifact associated with an organization. + This endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment. + tags: + - orgs + operationId: orgs/create-artifact-deployment-record + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record + parameters: + - *61 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + examples: + - libfoo + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The status of the artifact. Can be either deployed + or decommissioned. + enum: + - deployed + - decommissioned + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + cluster: + type: string + description: The deployment cluster. + deployment_name: + type: string + description: The name of the deployment. + tags: + type: object + description: The tags associated with the deployment. + additionalProperties: + type: string + maxProperties: 5 + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + required: + - name + - digest + - status + - logical_environment + - deployment_name + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + data-access: sensitive + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: &149 + title: Artifact Deployment Record + description: Artifact Metadata Deployment Record + type: object + properties: + id: + type: integer + digest: + type: string + logical_environment: + type: string + physical_environment: + type: string + cluster: + type: string + deployment_name: + type: string + tags: + type: object + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the + deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + created_at: + type: string + updated_at: + type: string + attestation_id: + type: + - integer + - 'null' + description: The ID of the provenance attestation associated + with the deployment record. + examples: + default: &150 + value: + total_count: 1 + deployment_records: + - id: 123 + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: prod-deployment + tags: + data: sensitive + created: '2011-01-26T19:14:43Z' + updated_at: '2011-01-26T19:14:43Z' + attestation_id: 456 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": + post: + summary: Set cluster deployment records + description: Set deployment records for a given cluster. + tags: + - orgs + operationId: orgs/set-cluster-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records + parameters: + - *61 + - name: cluster + in: path + description: The cluster name. + required: true + schema: + type: string + minLength: 1 + maxLength: 64 + pattern: "^[a-zA-Z0-9._-]+$" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + deployments: + type: array + description: The list of deployments to record. + items: + type: object + maxLength: 100 + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + maxLength: 255 + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The deployment status of the artifact. + enum: + - deployed + - decommissioned + deployment_name: + type: string + description: The name of the deployment. + minLength: 1 + maxLength: 128 + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + tags: + type: object + description: Key-value pairs to tag the deployment record. + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + version: 2.1.0 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + runtime-risk: sensitive-data + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: *149 + examples: + default: *150 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/metadata/storage-record": post: summary: Create artifact metadata storage record @@ -23711,6 +24035,52 @@ paths: enabledForGitHubApps: true category: orgs subcategory: artifact-metadata + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": + get: + summary: List artifact deployment records + description: List deployment records for an artifact metadata associated with + an organization. + tags: + - orgs + operationId: orgs/list-artifact-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records + parameters: + - *61 + - name: subject_digest + description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. + in: path + required: true + schema: + type: string + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + responses: + '200': + description: Successful response + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records for this digest + and organization + type: integer + examples: + - 3 + deployment_records: + type: array + items: *149 + examples: + default: *150 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": get: summary: List artifact storage records @@ -23835,12 +24205,12 @@ paths: required: - subject_digests examples: - default: &667 + default: &669 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &668 + withPredicateType: &670 value: subject_digests: - sha256:abc123 @@ -23899,7 +24269,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &669 + default: &671 value: attestations_subject_digests: - sha256:abc: @@ -24248,7 +24618,7 @@ paths: initiator: type: string examples: - default: &371 + default: &373 value: attestations: - bundle: @@ -24467,7 +24837,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &149 + schema: &151 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -24493,7 +24863,7 @@ paths: application/json: schema: type: array - items: &150 + items: &152 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -24524,7 +24894,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &170 + items: &172 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -24601,7 +24971,7 @@ paths: parent: anyOf: - type: 'null' - - &221 + - &223 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -24737,7 +25107,7 @@ paths: - string - 'null' format: date-time - state: *149 + state: *151 contact_link: description: The contact link of the campaign. type: @@ -24960,9 +25330,9 @@ paths: description: Response content: application/json: - schema: *150 + schema: *152 examples: - default: &151 + default: &153 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -25045,9 +25415,9 @@ paths: description: Response content: application/json: - schema: *150 + schema: *152 examples: - default: *151 + default: *153 '404': *6 '422': description: Unprocessable Entity @@ -25125,7 +25495,7 @@ paths: - string - 'null' format: uri - state: *149 + state: *151 examples: default: value: @@ -25135,9 +25505,9 @@ paths: description: Response content: application/json: - schema: *150 + schema: *152 examples: - default: *151 + default: *153 '400': description: Bad Request content: @@ -25204,17 +25574,17 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *61 - - &396 + - &398 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both. in: query required: false - schema: &159 + schema: &161 type: string description: The name of the tool used to generate the code scanning analysis. - - &397 + - &399 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -25222,7 +25592,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &160 + schema: &162 type: - string - 'null' @@ -25238,7 +25608,7 @@ paths: be returned. in: query required: false - schema: &399 + schema: &401 type: string description: State of a code scanning alert. enum: @@ -25261,7 +25631,7 @@ paths: be returned. in: query required: false - schema: &400 + schema: &402 type: string description: Severity of a code scanning alert. enum: @@ -25282,18 +25652,18 @@ paths: items: type: object properties: - number: *152 - created_at: *153 - updated_at: *154 - url: *155 - html_url: *156 - instances_url: &401 + number: *154 + created_at: *155 + updated_at: *156 + url: *157 + html_url: *158 + instances_url: &403 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &161 + state: &163 type: - string - 'null' @@ -25303,13 +25673,13 @@ paths: - dismissed - fixed - - fixed_at: *157 + fixed_at: *159 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *158 - dismissed_reason: &402 + dismissed_at: *160 + dismissed_reason: &404 type: - string - 'null' @@ -25320,14 +25690,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &403 + dismissed_comment: &405 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &404 + rule: &406 type: object properties: id: @@ -25388,26 +25758,26 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &405 + tool: &407 type: object properties: - name: *159 + name: *161 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *160 - most_recent_instance: &406 + guid: *162 + most_recent_instance: &408 type: object properties: - ref: &398 + ref: &400 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &416 + analysis_key: &418 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -25418,13 +25788,13 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &417 + category: &419 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *161 + state: *163 commit_sha: type: string message: @@ -25930,7 +26300,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *162 + code_scanning_options: *164 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -26073,7 +26443,7 @@ paths: application/json: schema: *41 examples: - default: *163 + default: *165 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26101,9 +26471,9 @@ paths: description: Response content: application/json: - schema: *164 + schema: *166 examples: - default: *165 + default: *167 '304': *35 '403': *27 '404': *6 @@ -26155,7 +26525,7 @@ paths: - 32 - 91 responses: - '204': *166 + '204': *168 '400': *14 '403': *27 '404': *6 @@ -26190,7 +26560,7 @@ paths: application/json: schema: *41 examples: - default: *163 + default: *165 '304': *35 '403': *27 '404': *6 @@ -26474,7 +26844,7 @@ paths: - *61 - *43 responses: - '204': *166 + '204': *168 '400': *14 '403': *27 '404': *6 @@ -26612,7 +26982,7 @@ paths: default: value: default_for_new_repos: all - configuration: *163 + configuration: *165 '403': *27 '404': *6 x-github: @@ -26665,13 +27035,13 @@ paths: application/json: schema: type: array - items: *167 + items: *169 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *168 + repository: *170 '403': *27 '404': *6 x-github: @@ -26711,7 +27081,7 @@ paths: type: integer codespaces: type: array - items: &211 + items: &213 type: object title: Codespace description: A codespace. @@ -26746,7 +27116,7 @@ paths: machine: anyOf: - type: 'null' - - &429 + - &431 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -27033,7 +27403,7 @@ paths: - pulls_url - recent_folders examples: - default: &212 + default: &214 value: total_count: 3 codespaces: @@ -27657,7 +28027,7 @@ paths: type: integer secrets: type: array - items: &169 + items: &171 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -27698,7 +28068,7 @@ paths: - updated_at - visibility examples: - default: &430 + default: &432 value: total_count: 2 secrets: @@ -27736,7 +28106,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &433 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -27771,7 +28141,7 @@ paths: - key_id - key examples: - default: &432 + default: &434 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27801,9 +28171,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *171 examples: - default: &434 + default: &436 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -28270,7 +28640,7 @@ paths: currently being billed. seats: type: array - items: &214 + items: &216 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -28288,7 +28658,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *170 + - *172 - *53 type: - 'null' @@ -28801,7 +29171,7 @@ paths: application/json: schema: type: array - items: &291 + items: &293 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -29116,7 +29486,7 @@ paths: - date additionalProperties: true examples: - default: &292 + default: &294 value: - date: '2024-06-24' total_active_users: 24 @@ -29218,7 +29588,7 @@ paths: '500': *96 '403': *27 '404': *6 - '422': &293 + '422': &295 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -29246,11 +29616,11 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *61 - - *171 - - *172 - *173 - *174 - *175 + - *176 + - *177 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -29288,8 +29658,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *176 - - *177 + - *178 + - *179 - *46 - *38 - *39 @@ -29301,9 +29671,9 @@ paths: application/json: schema: type: array - items: *178 + items: *180 examples: - default: *179 + default: *181 '304': *35 '400': *14 '403': *27 @@ -29347,7 +29717,7 @@ paths: type: integer secrets: type: array - items: &180 + items: &182 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -29426,7 +29796,7 @@ paths: description: Response content: application/json: - schema: &457 + schema: &459 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -29445,7 +29815,7 @@ paths: - key_id - key examples: - default: &458 + default: &460 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29475,7 +29845,7 @@ paths: description: Response content: application/json: - schema: *180 + schema: *182 examples: default: value: @@ -29776,7 +30146,7 @@ paths: application/json: schema: type: array - items: &223 + items: &225 title: Package description: A software package type: object @@ -29847,7 +30217,7 @@ paths: - created_at - updated_at examples: - default: &224 + default: &226 value: - id: 197 name: hello_docker @@ -30017,7 +30387,7 @@ paths: application/json: schema: type: array - items: &203 + items: &205 title: Organization Invitation description: Organization Invitation type: object @@ -30071,7 +30441,7 @@ paths: - invitation_teams_url - node_id examples: - default: &204 + default: &206 value: - id: 1 login: monalisa @@ -30138,7 +30508,7 @@ paths: application/json: schema: type: array - items: &181 + items: &183 title: Org Hook description: Org Hook type: object @@ -30323,9 +30693,9 @@ paths: description: Response content: application/json: - schema: *181 + schema: *183 examples: - default: &182 + default: &184 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -30373,7 +30743,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *61 - - &183 + - &185 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -30386,9 +30756,9 @@ paths: description: Response content: application/json: - schema: *181 + schema: *183 examples: - default: *182 + default: *184 '404': *6 x-github: githubCloudOnly: false @@ -30416,7 +30786,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *61 - - *183 + - *185 requestBody: required: false content: @@ -30462,7 +30832,7 @@ paths: description: Response content: application/json: - schema: *181 + schema: *183 examples: default: value: @@ -30504,7 +30874,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *61 - - *183 + - *185 responses: '204': description: Response @@ -30532,7 +30902,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *61 - - *183 + - *185 responses: '200': description: Response @@ -30563,7 +30933,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *61 - - *183 + - *185 requestBody: required: false content: @@ -30614,9 +30984,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *61 - - *183 + - *185 - *17 - - *184 + - *186 responses: '200': description: Response @@ -30624,9 +30994,9 @@ paths: application/json: schema: type: array - items: *185 + items: *187 examples: - default: *186 + default: *188 '400': *14 '422': *15 x-github: @@ -30652,16 +31022,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *61 - - *183 + - *185 - *16 responses: '200': description: Response content: application/json: - schema: *187 + schema: *189 examples: - default: *188 + default: *190 '400': *14 '422': *15 x-github: @@ -30687,7 +31057,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *61 - - *183 + - *185 - *16 responses: '202': *37 @@ -30717,7 +31087,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *61 - - *183 + - *185 responses: '204': description: Response @@ -30740,7 +31110,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *61 - - &193 + - &195 name: actor_type in: path description: The type of the actor @@ -30753,14 +31123,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &194 + - &196 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &189 + - &191 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -30768,7 +31138,7 @@ paths: required: true schema: type: string - - &190 + - &192 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -30863,12 +31233,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *61 - - *189 - - *190 + - *191 + - *192 - *19 - *17 - *46 - - &199 + - &201 name: sort description: The property to sort the results by. in: query @@ -30948,14 +31318,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *61 - - *189 - - *190 + - *191 + - *192 responses: '200': description: Response content: application/json: - schema: &191 + schema: &193 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -30971,7 +31341,7 @@ paths: type: integer format: int64 examples: - default: &192 + default: &194 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -30992,23 +31362,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *61 - - &195 + - &197 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *189 - - *190 + - *191 + - *192 responses: '200': description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *192 + default: *194 x-github: enabledForGitHubApps: true category: orgs @@ -31027,18 +31397,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *61 - - *189 - - *190 - - *193 - - *194 + - *191 + - *192 + - *195 + - *196 responses: '200': description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *192 + default: *194 x-github: enabledForGitHubApps: true category: orgs @@ -31056,9 +31426,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *61 - - *189 - - *190 - - &196 + - *191 + - *192 + - &198 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -31071,7 +31441,7 @@ paths: description: Response content: application/json: - schema: &197 + schema: &199 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -31087,7 +31457,7 @@ paths: type: integer format: int64 examples: - default: &198 + default: &200 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -31124,18 +31494,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *61 - - *195 - - *189 - - *190 - - *196 + - *197 + - *191 + - *192 + - *198 responses: '200': description: Response content: application/json: - schema: *197 + schema: *199 examples: - default: *198 + default: *200 x-github: enabledForGitHubApps: true category: orgs @@ -31153,19 +31523,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *61 - - *193 - - *194 - - *189 - - *190 + - *195 - *196 + - *191 + - *192 + - *198 responses: '200': description: Response content: application/json: - schema: *197 + schema: *199 examples: - default: *198 + default: *200 x-github: enabledForGitHubApps: true category: orgs @@ -31183,13 +31553,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *61 - - *195 - - *189 - - *190 + - *197 + - *191 + - *192 - *19 - *17 - *46 - - *199 + - *201 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -31273,7 +31643,7 @@ paths: application/json: schema: *20 examples: - default: &496 + default: &498 value: id: 1 account: @@ -31439,12 +31809,12 @@ paths: application/json: schema: anyOf: - - &201 + - &203 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &200 + limit: &202 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -31472,7 +31842,7 @@ paths: properties: {} additionalProperties: false examples: - default: &202 + default: &204 value: limit: collaborators_only origin: organization @@ -31501,13 +31871,13 @@ paths: required: true content: application/json: - schema: &497 + schema: &499 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *200 + limit: *202 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -31532,9 +31902,9 @@ paths: description: Response content: application/json: - schema: *201 + schema: *203 examples: - default: *202 + default: *204 '422': *15 x-github: githubCloudOnly: false @@ -31610,9 +31980,9 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 headers: Link: *52 '404': *6 @@ -31689,7 +32059,7 @@ paths: description: Response content: application/json: - schema: *203 + schema: *205 examples: default: value: @@ -31744,7 +32114,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *61 - - &205 + - &207 name: invitation_id description: The unique identifier of the invitation. in: path @@ -31775,7 +32145,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *61 - - *205 + - *207 - *17 - *19 responses: @@ -31785,9 +32155,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: &222 + default: &224 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -31830,7 +32200,7 @@ paths: application/json: schema: type: array - items: *206 + items: *208 examples: default: value: @@ -31918,9 +32288,9 @@ paths: description: Response content: application/json: - schema: *206 + schema: *208 examples: - default: &207 + default: &209 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -31953,7 +32323,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *61 - - &208 + - &210 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -32009,9 +32379,9 @@ paths: description: Response content: application/json: - schema: *206 + schema: *208 examples: - default: *207 + default: *209 '404': *6 '422': *7 x-github: @@ -32036,7 +32406,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *61 - - *208 + - *210 responses: '204': description: Response @@ -32099,7 +32469,7 @@ paths: - closed - all default: open - - *209 + - *211 - name: type description: Can be the name of an issue type. in: query @@ -32130,7 +32500,7 @@ paths: type: array items: *78 examples: - default: *210 + default: *212 headers: Link: *52 '404': *6 @@ -32289,9 +32659,9 @@ paths: type: integer codespaces: type: array - items: *211 + items: *213 examples: - default: *212 + default: *214 '304': *35 '500': *96 '401': *23 @@ -32318,7 +32688,7 @@ paths: parameters: - *61 - *57 - - &213 + - &215 name: codespace_name in: path required: true @@ -32353,15 +32723,15 @@ paths: parameters: - *61 - *57 - - *213 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *213 examples: - default: &428 + default: &430 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -32541,7 +32911,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *214 + schema: *216 examples: default: value: @@ -32617,7 +32987,7 @@ paths: description: Response content: application/json: - schema: &215 + schema: &217 title: Org Membership description: Org Membership type: object @@ -32686,7 +33056,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &216 + response-if-user-has-an-active-admin-membership-with-organization: &218 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -32783,9 +33153,9 @@ paths: description: Response content: application/json: - schema: *215 + schema: *217 examples: - response-if-user-already-had-membership-with-organization: *216 + response-if-user-already-had-membership-with-organization: *218 '422': *15 '403': *27 x-github: @@ -32857,7 +33227,7 @@ paths: application/json: schema: type: array - items: &217 + items: &219 title: Migration description: A migration. type: object @@ -33195,7 +33565,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: default: value: @@ -33374,7 +33744,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *61 - - &218 + - &220 name: migration_id description: The unique identifier of the migration. in: path @@ -33402,7 +33772,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *217 + schema: *219 examples: default: value: @@ -33572,7 +33942,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *61 - - *218 + - *220 responses: '302': description: Response @@ -33594,7 +33964,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *61 - - *218 + - *220 responses: '204': description: Response @@ -33618,8 +33988,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *61 - - *218 - - &652 + - *220 + - &654 name: repo_name description: repo_name parameter in: path @@ -33647,7 +34017,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *61 - - *218 + - *220 - *17 - *19 responses: @@ -33659,7 +34029,7 @@ paths: type: array items: *136 examples: - default: &229 + default: &231 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -33812,7 +34182,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &220 + items: &222 title: Organization Role description: Organization roles type: object @@ -33989,7 +34359,7 @@ paths: parameters: - *61 - *62 - - &219 + - &221 name: role_id description: The unique identifier of the role. in: path @@ -34026,7 +34396,7 @@ paths: parameters: - *61 - *62 - - *219 + - *221 responses: '204': description: Response @@ -34079,7 +34449,7 @@ paths: parameters: - *61 - *57 - - *219 + - *221 responses: '204': description: Response @@ -34111,7 +34481,7 @@ paths: parameters: - *61 - *57 - - *219 + - *221 responses: '204': description: Response @@ -34140,13 +34510,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *61 - - *219 + - *221 responses: '200': description: Response content: application/json: - schema: *220 + schema: *222 examples: default: value: @@ -34197,7 +34567,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *61 - - *219 + - *221 - *17 - *19 responses: @@ -34276,7 +34646,7 @@ paths: parent: anyOf: - type: 'null' - - *221 + - *223 type: description: The ownership type of the team type: string @@ -34309,7 +34679,7 @@ paths: - type - parent examples: - default: *222 + default: *224 headers: Link: *52 '404': @@ -34339,7 +34709,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *61 - - *219 + - *221 - *17 - *19 responses: @@ -34368,7 +34738,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *221 + items: *223 name: type: - string @@ -34678,7 +35048,7 @@ paths: - nuget - container - *61 - - &653 + - &655 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -34714,12 +35084,12 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *224 + default: *226 '403': *27 '401': *23 - '400': &655 + '400': &657 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -34741,7 +35111,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &225 + - &227 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -34759,7 +35129,7 @@ paths: - docker - nuget - container - - &226 + - &228 name: package_name description: The name of the package. in: path @@ -34772,7 +35142,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *225 examples: default: value: @@ -34824,8 +35194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *225 - - *226 + - *227 + - *228 - *61 responses: '204': @@ -34858,8 +35228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *225 - - *226 + - *227 + - *228 - *61 - name: token description: package token @@ -34892,8 +35262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *225 - - *226 + - *227 + - *228 - *61 - *19 - *17 @@ -34914,7 +35284,7 @@ paths: application/json: schema: type: array - items: &227 + items: &229 title: Package Version description: A version of a software package type: object @@ -35049,10 +35419,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *225 - - *226 + - *227 + - *228 - *61 - - &228 + - &230 name: package_version_id description: Unique identifier of the package version. in: path @@ -35064,7 +35434,7 @@ paths: description: Response content: application/json: - schema: *227 + schema: *229 examples: default: value: @@ -35100,10 +35470,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *225 - - *226 - - *61 + - *227 - *228 + - *61 + - *230 responses: '204': description: Response @@ -35135,10 +35505,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *225 - - *226 - - *61 + - *227 - *228 + - *61 + - *230 responses: '204': description: Response @@ -35168,7 +35538,7 @@ paths: - *61 - *17 - *19 - - &230 + - &232 name: sort description: The property by which to sort the results. in: query @@ -35179,7 +35549,7 @@ paths: - created_at default: created_at - *46 - - &231 + - &233 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -35191,7 +35561,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &232 + - &234 name: repository description: The name of the repository to use to filter the results. in: query @@ -35200,7 +35570,7 @@ paths: type: string examples: - Hello-World - - &233 + - &235 name: permission description: The permission to use to filter the results. in: query @@ -35209,7 +35579,7 @@ paths: type: string examples: - issues_read - - &234 + - &236 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -35219,7 +35589,7 @@ paths: schema: type: string format: date-time - - &235 + - &237 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -35229,7 +35599,7 @@ paths: schema: type: string format: date-time - - &236 + - &238 name: token_id description: The ID of the token in: query @@ -35505,7 +35875,7 @@ paths: '422': *15 '404': *6 '403': *27 - '204': *166 + '204': *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35548,7 +35918,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -35574,14 +35944,14 @@ paths: - *61 - *17 - *19 - - *230 - - *46 - - *231 - *232 + - *46 - *233 - *234 - *235 - *236 + - *237 + - *238 responses: '500': *96 '422': *15 @@ -35822,7 +36192,7 @@ paths: responses: '500': *96 '404': *6 - '204': *166 + '204': *168 '403': *27 '422': *15 x-github: @@ -35865,7 +36235,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -35907,7 +36277,7 @@ paths: type: integer configurations: type: array - items: &237 + items: &239 title: Organization private registry description: Private registry configuration for an organization type: object @@ -36203,7 +36573,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &238 + org-private-registry-with-selected-visibility: &240 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -36301,9 +36671,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *237 + schema: *239 examples: - default: *238 + default: *240 '404': *6 x-github: githubCloudOnly: false @@ -36471,7 +36841,7 @@ paths: application/json: schema: type: array - items: &239 + items: &241 title: Projects v2 Project description: A projects v2 project type: object @@ -36545,7 +36915,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &732 + - &734 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -36630,7 +37000,7 @@ paths: - deleted_at - deleted_by examples: - default: &240 + default: &242 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -36733,7 +37103,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &241 + - &243 name: project_number description: The project's number. in: path @@ -36746,9 +37116,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: - default: *240 + default: *242 headers: Link: *52 '304': *35 @@ -36771,7 +37141,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *61 - - *241 + - *243 requestBody: required: true description: Details of the draft item to create in the project. @@ -36805,7 +37175,7 @@ paths: description: Response content: application/json: - schema: &246 + schema: &248 title: Projects v2 Item description: An item belonging to a project type: object @@ -36819,7 +37189,7 @@ paths: content: oneOf: - *78 - - &441 + - &443 title: Pull Request Simple description: Pull Request Simple type: object @@ -36939,7 +37309,7 @@ paths: milestone: anyOf: - type: 'null' - - *242 + - *244 active_lock_reason: type: - string @@ -36994,7 +37364,7 @@ paths: type: - array - 'null' - items: *170 + items: *172 head: type: object properties: @@ -37038,7 +37408,7 @@ paths: _links: type: object properties: - comments: &243 + comments: &245 title: Link description: Hypermedia Link type: object @@ -37047,13 +37417,13 @@ paths: type: string required: - href - commits: *243 - statuses: *243 - html: *243 - issue: *243 - review_comments: *243 - review_comment: *243 - self: *243 + commits: *245 + statuses: *245 + html: *245 + issue: *245 + review_comments: *245 + review_comment: *245 + self: *245 required: - comments - commits @@ -37064,7 +37434,7 @@ paths: - review_comment - self author_association: *65 - auto_merge: &542 + auto_merge: &544 title: Auto merge description: The status of auto merging a pull request. type: @@ -37166,7 +37536,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &245 + content_type: &247 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -37210,7 +37580,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &247 + draft_issue: &249 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -37284,7 +37654,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *241 + - *243 - *61 - *17 - *38 @@ -37296,7 +37666,7 @@ paths: application/json: schema: type: array - items: &244 + items: &246 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -37446,7 +37816,7 @@ paths: - updated_at - project_url examples: - default: &672 + default: &674 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -37577,8 +37947,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *241 - - &673 + - *243 + - &675 name: field_id description: The unique identifier of the field. in: path @@ -37591,9 +37961,9 @@ paths: description: Response content: application/json: - schema: *244 + schema: *246 examples: - default: &674 + default: &676 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -37637,7 +38007,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *241 + - *243 - *61 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -37670,7 +38040,7 @@ paths: application/json: schema: type: array - items: &248 + items: &250 title: Projects v2 Item description: An item belonging to a project type: object @@ -37687,7 +38057,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *245 + content_type: *247 content: type: - object @@ -37737,7 +38107,7 @@ paths: - updated_at - archived_at examples: - default: &249 + default: &251 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -38434,7 +38804,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *61 - - *241 + - *243 requestBody: required: true description: Details of the item to add to the project. @@ -38471,10 +38841,10 @@ paths: description: Response content: application/json: - schema: *246 + schema: *248 examples: - issue: *247 - pull_request: *247 + issue: *249 + pull_request: *249 '304': *35 '403': *27 '401': *23 @@ -38494,9 +38864,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *241 + - *243 - *61 - - &250 + - &252 name: item_id description: The unique identifier of the project item. in: path @@ -38522,9 +38892,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *249 + default: *251 headers: Link: *52 '304': *35 @@ -38545,9 +38915,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *241 + - *243 - *61 - - *250 + - *252 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -38620,13 +38990,13 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - text_field: *249 - number_field: *249 - date_field: *249 - single_select_field: *249 - iteration_field: *249 + text_field: *251 + number_field: *251 + date_field: *251 + single_select_field: *251 + iteration_field: *251 '401': *23 '403': *27 '404': *6 @@ -38646,9 +39016,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *241 + - *243 - *61 - - *250 + - *252 responses: '204': description: Response @@ -38680,7 +39050,7 @@ paths: application/json: schema: type: array - items: &251 + items: &253 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -38736,8 +39106,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -38756,7 +39124,7 @@ paths: - property_name - value_type examples: - default: &252 + default: &254 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -38815,7 +39183,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *251 + items: *253 minItems: 1 maxItems: 100 required: @@ -38845,9 +39213,9 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: - default: *252 + default: *254 '403': *27 '404': *6 x-github: @@ -38869,7 +39237,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *61 - - &253 + - &255 name: custom_property_name description: The custom property name in: path @@ -38881,9 +39249,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: &254 + default: &256 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -38918,7 +39286,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *61 - - *253 + - *255 requestBody: required: true content: @@ -38963,8 +39331,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -38996,9 +39362,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: *254 + default: *256 '403': *27 '404': *6 x-github: @@ -39022,9 +39388,9 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *61 - - *253 + - *255 responses: - '204': *166 + '204': *168 '403': *27 '404': *6 x-github: @@ -39347,7 +39713,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -39550,7 +39916,7 @@ paths: description: Response content: application/json: - schema: &315 + schema: &317 title: Full Repository description: Full Repository type: object @@ -40015,7 +40381,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &446 + code_of_conduct: &448 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -40045,7 +40411,7 @@ paths: - key - name - html_url - security_and_analysis: *255 + security_and_analysis: *257 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -40129,7 +40495,7 @@ paths: - network_count - subscribers_count examples: - default: &317 + default: &319 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -40650,7 +41016,7 @@ paths: - *61 - *17 - *19 - - &565 + - &567 name: targets description: | A comma-separated list of rule targets to filter by. @@ -40669,7 +41035,7 @@ paths: application/json: schema: type: array - items: &281 + items: &283 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -40704,7 +41070,7 @@ paths: source: type: string description: The name of the source - enforcement: &258 + enforcement: &260 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -40717,7 +41083,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &259 + items: &261 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -40788,7 +41154,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &256 + - &258 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -40812,7 +41178,7 @@ paths: match. items: type: string - - &260 + - &262 title: Organization ruleset conditions type: object description: |- @@ -40826,7 +41192,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *256 + - *258 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -40860,7 +41226,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *256 + - *258 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -40882,7 +41248,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *256 + - *258 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -40895,7 +41261,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &257 + items: &259 title: Repository ruleset property targeting definition type: object @@ -40928,7 +41294,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *257 + items: *259 required: - repository_property type: @@ -40936,12 +41302,12 @@ paths: - object rules: type: array - items: &566 + items: &568 title: Repository Rule type: object description: A repository rule. oneOf: - - &261 + - &263 title: creation description: Only allow users with bypass permission to create matching refs. @@ -40953,7 +41319,7 @@ paths: type: string enum: - creation - - &262 + - &264 title: update description: Only allow users with bypass permission to update matching refs. @@ -40974,7 +41340,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &263 + - &265 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -40986,7 +41352,7 @@ paths: type: string enum: - deletion - - &264 + - &266 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -40998,7 +41364,7 @@ paths: type: string enum: - required_linear_history - - &563 + - &565 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -41076,7 +41442,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &265 + - &267 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -41100,7 +41466,7 @@ paths: type: string required: - required_deployment_environments - - &266 + - &268 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -41112,7 +41478,7 @@ paths: type: string enum: - required_signatures - - &267 + - &269 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -41223,7 +41589,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &268 + - &270 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -41271,7 +41637,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &269 + - &271 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -41283,7 +41649,7 @@ paths: type: string enum: - non_fast_forward - - &270 + - &272 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -41319,7 +41685,7 @@ paths: required: - operator - pattern - - &271 + - &273 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -41355,7 +41721,7 @@ paths: required: - operator - pattern - - &272 + - &274 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -41391,7 +41757,7 @@ paths: required: - operator - pattern - - &273 + - &275 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -41427,7 +41793,7 @@ paths: required: - operator - pattern - - &274 + - &276 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -41463,7 +41829,7 @@ paths: required: - operator - pattern - - &275 + - &277 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -41488,7 +41854,7 @@ paths: type: string required: - restricted_file_paths - - &276 + - &278 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -41512,7 +41878,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &277 + - &279 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -41535,7 +41901,7 @@ paths: type: string required: - restricted_file_extensions - - &278 + - &280 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -41560,7 +41926,7 @@ paths: maximum: 100 required: - max_file_size - - &279 + - &281 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -41610,7 +41976,7 @@ paths: - repository_id required: - workflows - - &280 + - &282 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -41671,7 +42037,7 @@ paths: - tool required: - code_scanning_tools - - &564 + - &566 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -41769,22 +42135,20 @@ paths: - push - repository default: branch - enforcement: *258 + enforcement: *260 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *259 - conditions: *260 + items: *261 + conditions: *262 rules: type: array description: An array of rules within the ruleset. - items: &283 + items: &285 title: Repository Rule type: object description: A repository rule. oneOf: - - *261 - - *262 - *263 - *264 - *265 @@ -41803,6 +42167,8 @@ paths: - *278 - *279 - *280 + - *281 + - *282 required: - name - enforcement @@ -41840,9 +42206,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: &282 + default: &284 value: id: 21 name: super cool ruleset @@ -41897,7 +42263,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *61 - - &567 + - &569 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 @@ -41912,7 +42278,7 @@ paths: in: query schema: type: string - - &568 + - &570 name: time_period description: |- The time period to filter by. @@ -41928,14 +42294,14 @@ paths: - week - month default: day - - &569 + - &571 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 - - &570 + - &572 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -41955,7 +42321,7 @@ paths: description: Response content: application/json: - schema: &571 + schema: &573 title: Rule Suites description: Response type: array @@ -42011,7 +42377,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &572 + default: &574 value: - id: 21 actor_id: 12 @@ -42055,7 +42421,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *61 - - &573 + - &575 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -42071,7 +42437,7 @@ paths: description: Response content: application/json: - schema: &574 + schema: &576 title: Rule Suite description: Response type: object @@ -42178,7 +42544,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &575 + default: &577 value: id: 21 actor_id: 12 @@ -42251,9 +42617,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: *282 + default: *284 '404': *6 '500': *96 put: @@ -42297,16 +42663,16 @@ paths: - tag - push - repository - enforcement: *258 + enforcement: *260 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *259 - conditions: *260 + items: *261 + conditions: *262 rules: description: An array of rules within the ruleset. type: array - items: *283 + items: *285 examples: default: value: @@ -42341,9 +42707,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: *282 + default: *284 '404': *6 '500': *96 delete: @@ -42400,7 +42766,7 @@ paths: application/json: schema: type: array - items: &284 + items: &286 title: Ruleset version type: object description: The historical version of a ruleset @@ -42424,7 +42790,7 @@ paths: type: string format: date-time examples: - default: &577 + default: &579 value: - version_id: 3 actor: @@ -42477,9 +42843,9 @@ paths: description: Response content: application/json: - schema: &578 + schema: &580 allOf: - - *284 + - *286 - type: object required: - state @@ -42549,7 +42915,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *61 - - &579 + - &581 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -42560,7 +42926,7 @@ paths: enum: - open - resolved - - &580 + - &582 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -42570,7 +42936,7 @@ paths: required: false schema: type: string - - &581 + - &583 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -42579,7 +42945,7 @@ paths: required: false schema: type: string - - &582 + - &584 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. @@ -42594,7 +42960,7 @@ paths: - *46 - *19 - *17 - - &583 + - &585 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 @@ -42604,7 +42970,7 @@ paths: required: false schema: type: string - - &584 + - &586 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 @@ -42614,7 +42980,7 @@ paths: required: false schema: type: string - - &585 + - &587 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -42623,7 +42989,7 @@ paths: required: false schema: type: string - - &586 + - &588 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -42632,7 +42998,7 @@ paths: schema: type: boolean default: false - - &587 + - &589 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -42641,7 +43007,7 @@ paths: schema: type: boolean default: false - - &588 + - &590 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -42660,27 +43026,27 @@ paths: items: type: object properties: - number: *152 - created_at: *153 + number: *154 + created_at: *155 updated_at: anyOf: - type: 'null' - - *154 - url: *155 - html_url: *156 + - *156 + url: *157 + html_url: *158 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &589 + state: &591 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: &590 + resolution: &592 type: - string - 'null' @@ -42787,14 +43153,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &591 + - &593 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &593 + - &595 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -42851,7 +43217,7 @@ paths: - blob_url - commit_sha - commit_url - - &594 + - &596 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. @@ -42912,7 +43278,7 @@ paths: - page_url - commit_sha - commit_url - - &595 + - &597 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -42927,7 +43293,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &596 + - &598 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -42942,7 +43308,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &597 + - &599 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -42957,7 +43323,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &598 + - &600 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -42972,7 +43338,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &599 + - &601 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -42987,7 +43353,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &600 + - &602 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -43002,7 +43368,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &601 + - &603 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. @@ -43017,7 +43383,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &602 + - &604 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. @@ -43032,7 +43398,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &603 + - &605 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. @@ -43047,7 +43413,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &604 + - &606 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. @@ -43062,7 +43428,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &605 + - &607 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 @@ -43302,7 +43668,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &286 + pattern_config_version: &288 type: - string - 'null' @@ -43312,7 +43678,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &285 + items: &287 type: object properties: token_type: @@ -43381,7 +43747,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *285 + items: *287 examples: default: value: @@ -43438,7 +43804,7 @@ paths: schema: type: object properties: - pattern_config_version: *286 + pattern_config_version: *288 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -43464,7 +43830,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *286 + custom_pattern_version: *288 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -43562,7 +43928,7 @@ paths: application/json: schema: type: array - items: &609 + items: &611 description: A repository security advisory. type: object properties: @@ -43806,7 +44172,7 @@ paths: login: type: string description: The username of the user credited. - type: *287 + type: *289 credits_detailed: type: - array @@ -43817,7 +44183,7 @@ paths: type: object properties: user: *4 - type: *287 + type: *289 state: type: string description: The state of the user's acceptance of the @@ -43843,7 +44209,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *170 + items: *172 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -43881,7 +44247,7 @@ paths: - private_fork additionalProperties: false examples: - default: &610 + default: &612 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -44268,9 +44634,9 @@ paths: application/json: schema: type: array - items: *221 + items: *223 examples: - default: *222 + default: *224 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44355,7 +44721,7 @@ paths: description: Response content: application/json: - schema: &675 + schema: &677 type: object properties: total_minutes_used: @@ -44425,7 +44791,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &676 + default: &678 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -44461,7 +44827,7 @@ paths: description: Response content: application/json: - schema: &677 + schema: &679 type: object properties: total_gigabytes_bandwidth_used: @@ -44479,7 +44845,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &678 + default: &680 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -44511,7 +44877,7 @@ paths: description: Response content: application/json: - schema: &680 + schema: &682 type: object properties: days_left_in_billing_cycle: @@ -44529,7 +44895,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &681 + default: &683 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -44814,7 +45180,7 @@ paths: type: integer network_configurations: type: array - items: &288 + items: &290 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -44939,9 +45305,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *290 examples: - default: &289 + default: &291 value: id: 123456789ABCDEF name: My network configuration @@ -44970,7 +45336,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *61 - - &290 + - &292 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -44982,9 +45348,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *290 examples: - default: *289 + default: *291 headers: Link: *52 x-github: @@ -45006,7 +45372,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *61 - - *290 + - *292 requestBody: required: true content: @@ -45045,9 +45411,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *290 examples: - default: *289 + default: *291 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45067,7 +45433,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *61 - - *290 + - *292 responses: '204': description: Response @@ -45212,13 +45578,13 @@ paths: application/json: schema: type: array - items: *291 + items: *293 examples: - default: *292 + default: *294 '500': *96 '403': *27 '404': *6 - '422': *293 + '422': *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45246,9 +45612,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 headers: Link: *52 '403': *27 @@ -45342,7 +45708,7 @@ paths: description: Response content: application/json: - schema: &294 + schema: &296 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -45416,7 +45782,7 @@ paths: parent: anyOf: - type: 'null' - - *221 + - *223 members_count: type: integer examples: @@ -45741,7 +46107,7 @@ paths: - repos_count - organization examples: - default: &295 + default: &297 value: id: 1 node_id: MDQ6VGVhbTE= @@ -45818,9 +46184,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '404': *6 x-github: githubCloudOnly: false @@ -45905,16 +46271,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '201': description: Response content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '404': *6 '422': *15 '403': *27 @@ -45984,7 +46350,7 @@ paths: application/json: schema: type: array - items: &296 + items: &298 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -46095,7 +46461,7 @@ paths: - updated_at - url examples: - default: &627 + default: &629 value: - author: login: octocat @@ -46204,9 +46570,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: &297 + default: &299 value: author: login: octocat @@ -46280,7 +46646,7 @@ paths: parameters: - *61 - *62 - - &298 + - &300 name: discussion_number description: The number that identifies the discussion. in: path @@ -46292,9 +46658,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *297 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46318,7 +46684,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 requestBody: required: false content: @@ -46341,9 +46707,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: &628 + default: &630 value: author: login: octocat @@ -46415,7 +46781,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 responses: '204': description: Response @@ -46443,7 +46809,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 - *46 - *17 - *19 @@ -46454,7 +46820,7 @@ paths: application/json: schema: type: array - items: &299 + items: &301 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -46534,7 +46900,7 @@ paths: - updated_at - url examples: - default: &629 + default: &631 value: - author: login: octocat @@ -46604,7 +46970,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 requestBody: required: true content: @@ -46626,9 +46992,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: &300 + default: &302 value: author: login: octocat @@ -46696,8 +47062,8 @@ paths: parameters: - *61 - *62 - - *298 - - &301 + - *300 + - &303 name: comment_number description: The number that identifies the comment. in: path @@ -46709,9 +47075,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *300 + default: *302 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46735,8 +47101,8 @@ paths: parameters: - *61 - *62 - - *298 - - *301 + - *300 + - *303 requestBody: required: true content: @@ -46758,9 +47124,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: &630 + default: &632 value: author: login: octocat @@ -46826,8 +47192,8 @@ paths: parameters: - *61 - *62 - - *298 - - *301 + - *300 + - *303 responses: '204': description: Response @@ -46855,8 +47221,8 @@ paths: parameters: - *61 - *62 - - *298 - - *301 + - *300 + - *303 - 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 team discussion comment. @@ -46882,7 +47248,7 @@ paths: application/json: schema: type: array - items: &302 + items: &304 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -46926,7 +47292,7 @@ paths: - content - created_at examples: - default: &304 + default: &306 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -46978,8 +47344,8 @@ paths: parameters: - *61 - *62 - - *298 - - *301 + - *300 + - *303 requestBody: required: true content: @@ -47012,9 +47378,9 @@ paths: team discussion comment content: application/json: - schema: *302 + schema: *304 examples: - default: &303 + default: &305 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -47043,9 +47409,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47070,9 +47436,9 @@ paths: parameters: - *61 - *62 - - *298 - - *301 - - &305 + - *300 + - *303 + - &307 name: reaction_id description: The unique identifier of the reaction. in: path @@ -47106,7 +47472,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 - 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 team discussion. @@ -47132,9 +47498,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 x-github: @@ -47162,7 +47528,7 @@ paths: parameters: - *61 - *62 - - *298 + - *300 requestBody: required: true content: @@ -47194,16 +47560,16 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47228,8 +47594,8 @@ paths: parameters: - *61 - *62 - - *298 - - *305 + - *300 + - *307 responses: '204': description: Response @@ -47264,9 +47630,9 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 headers: Link: *52 x-github: @@ -47350,7 +47716,7 @@ paths: description: Response content: application/json: - schema: &306 + schema: &308 title: Team Membership description: Team Membership type: object @@ -47378,7 +47744,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &631 + response-if-user-is-a-team-maintainer: &633 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47441,9 +47807,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: &632 + response-if-users-membership-with-team-is-now-pending: &634 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47516,7 +47882,7 @@ paths: application/json: schema: type: array - items: &307 + items: &309 title: Team Project description: A team's access to a project. type: object @@ -47585,7 +47951,7 @@ paths: - updated_at - permissions examples: - default: &633 + default: &635 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47650,7 +48016,7 @@ paths: parameters: - *61 - *62 - - &308 + - &310 name: project_id description: The unique identifier of the project. in: path @@ -47662,9 +48028,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *309 examples: - default: &634 + default: &636 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -47728,7 +48094,7 @@ paths: parameters: - *61 - *62 - - *308 + - *310 requestBody: required: false content: @@ -47797,7 +48163,7 @@ paths: parameters: - *61 - *62 - - *308 + - *310 responses: '204': description: Response @@ -47837,7 +48203,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -47868,14 +48234,14 @@ paths: parameters: - *61 - *62 - - *309 - - *310 + - *311 + - *312 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &635 + schema: &637 title: Team Repository description: A team's access to a repository. type: object @@ -48518,8 +48884,8 @@ paths: parameters: - *61 - *62 - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -48566,8 +48932,8 @@ paths: parameters: - *61 - *62 - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -48602,9 +48968,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - response-if-child-teams-exist: &636 + response-if-child-teams-exist: &638 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48731,7 +49097,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#get-a-project-column parameters: - - &311 + - &313 name: column_id description: The unique identifier of the column. in: path @@ -48743,7 +49109,7 @@ paths: description: Response content: application/json: - schema: &312 + schema: &314 title: Project Column description: Project columns contain cards of work. type: object @@ -48797,7 +49163,7 @@ paths: - created_at - updated_at examples: - default: &313 + default: &315 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -48832,7 +49198,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#update-an-existing-project-column parameters: - - *311 + - *313 requestBody: required: true content: @@ -48857,9 +49223,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: *313 + default: *315 '304': *35 '403': *27 '401': *23 @@ -48884,7 +49250,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#delete-a-project-column parameters: - - *311 + - *313 responses: '204': description: Response @@ -48913,7 +49279,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#move-a-project-column parameters: - - *311 + - *313 requestBody: required: true content: @@ -48974,7 +49340,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#list-project-collaborators parameters: - - *308 + - *310 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -49031,7 +49397,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#add-project-collaborator parameters: - - *308 + - *310 - *57 requestBody: required: false @@ -49086,7 +49452,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *308 + - *310 - *57 responses: '204': @@ -49118,7 +49484,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *308 + - *310 - *57 responses: '200': @@ -49216,7 +49582,7 @@ paths: resources: type: object properties: - core: &314 + core: &316 title: Rate Limit type: object properties: @@ -49233,21 +49599,21 @@ paths: - remaining - reset - used - graphql: *314 - search: *314 - code_search: *314 - source_import: *314 - integration_manifest: *314 - code_scanning_upload: *314 - actions_runner_registration: *314 - scim: *314 - dependency_snapshots: *314 - dependency_sbom: *314 - code_scanning_autofix: *314 + graphql: *316 + search: *316 + code_search: *316 + source_import: *316 + integration_manifest: *316 + code_scanning_upload: *316 + actions_runner_registration: *316 + scim: *316 + dependency_snapshots: *316 + dependency_sbom: *316 + code_scanning_autofix: *316 required: - core - search - rate: *314 + rate: *316 required: - rate - resources @@ -49352,14 +49718,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *315 + schema: *317 examples: default-response: summary: Default response @@ -49860,7 +50226,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *316 + '301': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49878,8 +50244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -50127,10 +50493,10 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *317 - '307': &318 + default: *319 + '307': &320 description: Temporary Redirect content: application/json: @@ -50159,8 +50525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -50182,7 +50548,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *318 + '307': *320 '404': *6 '409': *45 x-github: @@ -50206,11 +50572,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 - - &349 + - &351 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50233,7 +50599,7 @@ paths: type: integer artifacts: type: array - items: &319 + items: &321 title: Artifact description: An artifact type: object @@ -50328,7 +50694,7 @@ paths: - expires_at - updated_at examples: - default: &350 + default: &352 value: total_count: 2 artifacts: @@ -50389,9 +50755,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *309 - - *310 - - &320 + - *311 + - *312 + - &322 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50403,7 +50769,7 @@ paths: description: Response content: application/json: - schema: *319 + schema: *321 examples: default: value: @@ -50441,9 +50807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *309 - - *310 - - *320 + - *311 + - *312 + - *322 responses: '204': description: Response @@ -50467,9 +50833,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *309 - - *310 - - *320 + - *311 + - *312 + - *322 - name: archive_format in: path required: true @@ -50483,7 +50849,7 @@ paths: 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': &500 + '410': &502 description: Gone content: application/json: @@ -50510,14 +50876,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *321 + schema: *323 examples: default: value: @@ -50543,11 +50909,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 - - &322 + - &324 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -50581,7 +50947,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &325 title: Repository actions caches description: Repository actions caches type: object @@ -50631,7 +50997,7 @@ paths: - total_count - actions_caches examples: - default: &324 + default: &326 value: total_count: 1 actions_caches: @@ -50663,23 +51029,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *309 - - *310 + - *311 + - *312 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *322 + - *324 responses: '200': description: Response content: application/json: - schema: *323 + schema: *325 examples: - default: *324 + default: *326 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50699,8 +51065,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *309 - - *310 + - *311 + - *312 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50731,9 +51097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *309 - - *310 - - &325 + - *311 + - *312 + - &327 name: job_id description: The unique identifier of the job. in: path @@ -50745,7 +51111,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &355 title: Job description: Information of a job execution in a workflow run type: object @@ -51092,9 +51458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *309 - - *310 - - *325 + - *311 + - *312 + - *327 responses: '302': description: Response @@ -51122,9 +51488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *309 - - *310 - - *325 + - *311 + - *312 + - *327 requestBody: required: false content: @@ -51170,8 +51536,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Status response @@ -51221,8 +51587,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -51285,8 +51651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -51304,7 +51670,7 @@ paths: type: integer secrets: type: array - items: &355 + items: &357 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51325,7 +51691,7 @@ paths: - created_at - updated_at examples: - default: &356 + default: &358 value: total_count: 2 secrets: @@ -51358,9 +51724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *309 - - *310 - - *326 + - *311 + - *312 + - *328 - *19 responses: '200': @@ -51377,7 +51743,7 @@ paths: type: integer variables: type: array - items: &359 + items: &361 title: Actions Variable type: object properties: @@ -51411,7 +51777,7 @@ paths: - created_at - updated_at examples: - default: &360 + default: &362 value: total_count: 2 variables: @@ -51444,8 +51810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -51454,11 +51820,11 @@ paths: schema: type: object properties: - enabled: &328 + enabled: &330 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *121 - selected_actions_url: *327 + selected_actions_url: *329 sha_pinning_required: *122 required: - enabled @@ -51487,8 +51853,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -51499,7 +51865,7 @@ paths: schema: type: object properties: - enabled: *328 + enabled: *330 allowed_actions: *121 sha_pinning_required: *122 required: @@ -51531,14 +51897,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: &329 + schema: &331 type: object properties: access_level: @@ -51555,7 +51921,7 @@ paths: required: - access_level examples: - default: &330 + default: &332 value: access_level: organization x-github: @@ -51579,15 +51945,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: application/json: - schema: *329 + schema: *331 examples: - default: *330 + default: *332 responses: '204': description: Response @@ -51611,14 +51977,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *331 + schema: *333 examples: default: value: @@ -51642,8 +52008,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Empty response for successful settings update @@ -51653,7 +52019,7 @@ paths: required: true content: application/json: - schema: *332 + schema: *334 examples: default: summary: Set retention days @@ -51677,8 +52043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -51686,7 +52052,7 @@ paths: application/json: schema: *123 examples: - default: *333 + default: *335 '404': *6 x-github: enabledForGitHubApps: true @@ -51705,8 +52071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -51740,14 +52106,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *334 + schema: *336 examples: default: *124 '403': *27 @@ -51769,13 +52135,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: application/json: - schema: *335 + schema: *337 examples: default: *124 responses: @@ -51801,8 +52167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -51829,8 +52195,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -51862,14 +52228,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *336 + schema: *338 examples: default: *131 x-github: @@ -51892,8 +52258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Success response @@ -51904,7 +52270,7 @@ paths: required: true content: application/json: - schema: *337 + schema: *339 examples: default: *131 x-github: @@ -51933,8 +52299,8 @@ paths: in: query schema: type: string - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -51978,8 +52344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -51987,9 +52353,9 @@ paths: application/json: schema: type: array - items: *338 + items: *340 examples: - default: *339 + default: *341 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52011,8 +52377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -52055,7 +52421,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *340 + '201': *342 '404': *6 '422': *7 '409': *45 @@ -52086,8 +52452,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '201': description: Response @@ -52095,7 +52461,7 @@ paths: application/json: schema: *140 examples: - default: *341 + default: *343 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52123,8 +52489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '201': description: Response @@ -52132,7 +52498,7 @@ paths: application/json: schema: *140 examples: - default: *342 + default: *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52154,8 +52520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 responses: '200': @@ -52164,7 +52530,7 @@ paths: application/json: schema: *138 examples: - default: *343 + default: *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52185,8 +52551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 responses: '204': @@ -52213,8 +52579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 responses: '200': *142 @@ -52239,8 +52605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 requestBody: required: true @@ -52289,8 +52655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 requestBody: required: true @@ -52340,11 +52706,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 responses: - '200': *344 + '200': *346 '404': *6 x-github: githubCloudOnly: false @@ -52371,10 +52737,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *137 - - *345 + - *347 responses: '200': *142 '404': *6 @@ -52402,9 +52768,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *309 - - *310 - - &363 + - *311 + - *312 + - &365 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -52412,7 +52778,7 @@ paths: required: false schema: type: string - - &364 + - &366 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52420,7 +52786,7 @@ paths: required: false schema: type: string - - &365 + - &367 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52429,7 +52795,7 @@ paths: required: false schema: type: string - - &366 + - &368 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -52456,7 +52822,7 @@ paths: - pending - *17 - *19 - - &367 + - &369 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -52465,7 +52831,7 @@ paths: schema: type: string format: date-time - - &346 + - &348 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52474,13 +52840,13 @@ paths: schema: type: boolean default: false - - &368 + - &370 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &369 + - &371 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52503,7 +52869,7 @@ paths: type: integer workflow_runs: type: array - items: &347 + items: &349 title: Workflow Run description: An invocation of a workflow type: object @@ -52620,7 +52986,7 @@ paths: type: - array - 'null' - items: &388 + items: &390 title: Pull Request Minimal type: object properties: @@ -52747,7 +53113,7 @@ paths: head_commit: anyOf: - type: 'null' - - &392 + - &394 title: Simple Commit description: A commit. type: object @@ -52862,7 +53228,7 @@ paths: - workflow_url - pull_requests examples: - default: &370 + default: &372 value: total_count: 1 workflow_runs: @@ -53098,24 +53464,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *309 - - *310 - - &348 + - *311 + - *312 + - &350 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *346 + - *348 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: &351 + default: &353 value: id: 30433642 name: Build @@ -53356,9 +53722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '204': description: Response @@ -53381,9 +53747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '200': description: Response @@ -53511,9 +53877,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '201': description: Response @@ -53546,12 +53912,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 - *17 - *19 - - *349 + - *351 responses: '200': description: Response @@ -53567,9 +53933,9 @@ paths: type: integer artifacts: type: array - items: *319 + items: *321 examples: - default: *350 + default: *352 headers: Link: *52 x-github: @@ -53593,25 +53959,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *309 - - *310 - - *348 - - &352 + - *311 + - *312 + - *350 + - &354 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *346 + - *348 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: - default: *351 + default: *353 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53634,10 +54000,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *309 - - *310 - - *348 - - *352 + - *311 + - *312 + - *350 + - *354 - *17 - *19 responses: @@ -53655,9 +54021,9 @@ paths: type: integer jobs: type: array - items: *353 + items: *355 examples: - default: &354 + default: &356 value: total_count: 1 jobs: @@ -53770,10 +54136,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *309 - - *310 - - *348 - - *352 + - *311 + - *312 + - *350 + - *354 responses: '302': description: Response @@ -53801,9 +54167,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '202': description: Response @@ -53836,9 +54202,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 requestBody: required: true content: @@ -53905,9 +54271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '202': description: Response @@ -53940,9 +54306,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -53972,9 +54338,9 @@ paths: type: integer jobs: type: array - items: *353 + items: *355 examples: - default: *354 + default: *356 headers: Link: *52 x-github: @@ -53999,9 +54365,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '302': description: Response @@ -54028,9 +54394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '204': description: Response @@ -54057,9 +54423,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '200': description: Response @@ -54128,7 +54494,7 @@ paths: items: type: object properties: - type: &466 + type: &468 type: string description: The type of reviewer. enum: @@ -54139,7 +54505,7 @@ paths: reviewer: anyOf: - *4 - - *170 + - *172 required: - environment - wait_timer @@ -54214,9 +54580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 requestBody: required: true content: @@ -54266,7 +54632,7 @@ paths: application/json: schema: type: array - items: &461 + items: &463 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -54378,7 +54744,7 @@ paths: - created_at - updated_at examples: - default: &462 + default: &464 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54434,9 +54800,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 requestBody: required: false content: @@ -54481,9 +54847,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 requestBody: required: false content: @@ -54537,9 +54903,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *309 - - *310 - - *348 + - *311 + - *312 + - *350 responses: '200': description: Response @@ -54676,8 +55042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -54695,9 +55061,9 @@ paths: type: integer secrets: type: array - items: *355 + items: *357 examples: - default: *356 + default: *358 headers: Link: *52 x-github: @@ -54722,16 +55088,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *357 + schema: *359 examples: - default: *358 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54753,17 +55119,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '200': description: Response content: application/json: - schema: *355 + schema: *357 examples: - default: &479 + default: &481 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54789,8 +55155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 requestBody: required: true @@ -54848,8 +55214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '204': @@ -54875,9 +55241,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *309 - - *310 - - *326 + - *311 + - *312 + - *328 - *19 responses: '200': @@ -54894,9 +55260,9 @@ paths: type: integer variables: type: array - items: *359 + items: *361 examples: - default: *360 + default: *362 headers: Link: *52 x-github: @@ -54919,8 +55285,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -54972,17 +55338,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *309 - - *310 + - *311 + - *312 - *147 responses: '200': description: Response content: application/json: - schema: *359 + schema: *361 examples: - default: &480 + default: &482 value: name: USERNAME value: octocat @@ -55008,8 +55374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *309 - - *310 + - *311 + - *312 - *147 requestBody: required: true @@ -55052,8 +55418,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *309 - - *310 + - *311 + - *312 - *147 responses: '204': @@ -55079,8 +55445,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -55098,7 +55464,7 @@ paths: type: integer workflows: type: array - items: &361 + items: &363 title: Workflow description: A GitHub Actions workflow type: object @@ -55216,9 +55582,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *309 - - *310 - - &362 + - *311 + - *312 + - &364 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55233,7 +55599,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *363 examples: default: value: @@ -55266,9 +55632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *309 - - *310 - - *362 + - *311 + - *312 + - *364 responses: '204': description: Response @@ -55293,9 +55659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *309 - - *310 - - *362 + - *311 + - *312 + - *364 responses: '204': description: Response @@ -55346,9 +55712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *309 - - *310 - - *362 + - *311 + - *312 + - *364 responses: '204': description: Response @@ -55375,19 +55741,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *309 - - *310 - - *362 - - *363 + - *311 + - *312 - *364 - *365 - *366 - - *17 - - *19 - *367 - - *346 - *368 + - *17 + - *19 - *369 + - *348 + - *370 + - *371 responses: '200': description: Response @@ -55403,9 +55769,9 @@ paths: type: integer workflow_runs: type: array - items: *347 + items: *349 examples: - default: *370 + default: *372 headers: Link: *52 x-github: @@ -55437,9 +55803,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *309 - - *310 - - *362 + - *311 + - *312 + - *364 responses: '200': description: Response @@ -55500,8 +55866,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *309 - - *310 + - *311 + - *312 - *46 - *17 - *38 @@ -55669,8 +56035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -55707,8 +56073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *309 - - *310 + - *311 + - *312 - name: assignee in: path required: true @@ -55744,8 +56110,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -55857,8 +56223,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *38 - *39 @@ -55915,7 +56281,7 @@ paths: initiator: type: string examples: - default: *371 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55935,8 +56301,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -55944,7 +56310,7 @@ paths: application/json: schema: type: array - items: &372 + items: &374 title: Autolink reference description: An autolink reference. type: object @@ -56003,8 +56369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -56043,9 +56409,9 @@ paths: description: response content: application/json: - schema: *372 + schema: *374 examples: - default: &373 + default: &375 value: id: 1 key_prefix: TICKET- @@ -56076,9 +56442,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *309 - - *310 - - &374 + - *311 + - *312 + - &376 name: autolink_id description: The unique identifier of the autolink. in: path @@ -56090,9 +56456,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *374 examples: - default: *373 + default: *375 '404': *6 x-github: githubCloudOnly: false @@ -56112,9 +56478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *309 - - *310 - - *374 + - *311 + - *312 + - *376 responses: '204': description: Response @@ -56138,8 +56504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response if Dependabot is enabled @@ -56189,8 +56555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -56211,8 +56577,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -56232,8 +56598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *309 - - *310 + - *311 + - *312 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56271,7 +56637,7 @@ paths: - url protected: type: boolean - protection: &376 + protection: &378 title: Branch Protection description: Branch Protection type: object @@ -56314,7 +56680,7 @@ paths: required: - contexts - checks - enforce_admins: &379 + enforce_admins: &381 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56331,7 +56697,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &381 + required_pull_request_reviews: &383 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56353,7 +56719,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *170 + items: *172 apps: description: The list of apps with review dismissal access. @@ -56385,7 +56751,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *170 + items: *172 apps: description: The list of apps allowed to bypass pull request requirements. @@ -56415,7 +56781,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &378 + restrictions: &380 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56478,7 +56844,7 @@ paths: type: string teams: type: array - items: *170 + items: *172 apps: type: array items: @@ -56708,9 +57074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *309 - - *310 - - &377 + - *311 + - *312 + - &379 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -56724,14 +57090,14 @@ paths: description: Response content: application/json: - schema: &387 + schema: &389 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &437 + commit: &439 title: Commit description: Commit type: object @@ -56770,7 +57136,7 @@ paths: author: anyOf: - type: 'null' - - &375 + - &377 title: Git User description: Metaproperties for Git author/committer information. @@ -56791,7 +57157,7 @@ paths: committer: anyOf: - type: 'null' - - *375 + - *377 message: type: string examples: @@ -56815,7 +57181,7 @@ paths: required: - sha - url - verification: &486 + verification: &488 title: Verification type: object properties: @@ -56895,7 +57261,7 @@ paths: type: integer files: type: array - items: &448 + items: &450 title: Diff Entry description: Diff Entry type: object @@ -56991,7 +57357,7 @@ paths: - self protected: type: boolean - protection: *376 + protection: *378 protection_url: type: string format: uri @@ -57100,7 +57466,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *316 + '301': *318 '404': *6 x-github: githubCloudOnly: false @@ -57122,15 +57488,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *376 + schema: *378 examples: default: value: @@ -57324,9 +57690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -57586,7 +57952,7 @@ paths: url: type: string format: uri - required_status_checks: &384 + required_status_checks: &386 title: Status Check Policy description: Status Check Policy type: object @@ -57667,7 +58033,7 @@ paths: items: *4 teams: type: array - items: *170 + items: *172 apps: type: array items: *5 @@ -57685,7 +58051,7 @@ paths: items: *4 teams: type: array - items: *170 + items: *172 apps: type: array items: *5 @@ -57745,7 +58111,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *378 + restrictions: *380 required_conversation_resolution: type: object properties: @@ -57857,9 +58223,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -57884,17 +58250,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: &380 + default: &382 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -57916,17 +58282,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: *380 + default: *382 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57945,9 +58311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -57972,17 +58338,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *381 + schema: *383 examples: - default: &382 + default: &384 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -58078,9 +58444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -58178,9 +58544,9 @@ paths: description: Response content: application/json: - schema: *381 + schema: *383 examples: - default: *382 + default: *384 '422': *15 x-github: githubCloudOnly: false @@ -58201,9 +58567,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -58230,17 +58596,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: &383 + default: &385 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58263,17 +58629,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *379 + schema: *381 examples: - default: *383 + default: *385 '404': *6 x-github: githubCloudOnly: false @@ -58293,9 +58659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -58320,17 +58686,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *384 + schema: *386 examples: - default: &385 + default: &387 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58356,9 +58722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -58410,9 +58776,9 @@ paths: description: Response content: application/json: - schema: *384 + schema: *386 examples: - default: *385 + default: *387 '404': *6 '422': *15 x-github: @@ -58434,9 +58800,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -58460,9 +58826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response @@ -58496,9 +58862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -58565,9 +58931,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -58631,9 +58997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: content: application/json: @@ -58699,15 +59065,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response content: application/json: - schema: *378 + schema: *380 examples: default: value: @@ -58798,9 +59164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '204': description: Response @@ -58823,9 +59189,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response @@ -58835,7 +59201,7 @@ paths: type: array items: *5 examples: - default: &386 + default: &388 value: - id: 1 slug: octoapp @@ -58892,9 +59258,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -58928,7 +59294,7 @@ paths: type: array items: *5 examples: - default: *386 + default: *388 '422': *15 x-github: githubCloudOnly: false @@ -58949,9 +59315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -58985,7 +59351,7 @@ paths: type: array items: *5 examples: - default: *386 + default: *388 '422': *15 x-github: githubCloudOnly: false @@ -59006,9 +59372,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -59042,7 +59408,7 @@ paths: type: array items: *5 examples: - default: *386 + default: *388 '422': *15 x-github: githubCloudOnly: false @@ -59064,9 +59430,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response @@ -59074,9 +59440,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 '404': *6 x-github: githubCloudOnly: false @@ -59096,9 +59462,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -59134,9 +59500,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 '422': *15 x-github: githubCloudOnly: false @@ -59157,9 +59523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: false content: @@ -59195,9 +59561,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 '422': *15 x-github: githubCloudOnly: false @@ -59218,9 +59584,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: content: application/json: @@ -59255,9 +59621,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 '422': *15 x-github: githubCloudOnly: false @@ -59279,9 +59645,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 responses: '200': description: Response @@ -59315,9 +59681,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -59375,9 +59741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -59435,9 +59801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -59497,9 +59863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 requestBody: required: true content: @@ -59521,7 +59887,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *389 examples: default: value: @@ -59637,8 +60003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -59917,7 +60283,7 @@ paths: description: Response content: application/json: - schema: &389 + schema: &391 title: CheckRun description: A check performed on the code of a given code change type: object @@ -60052,8 +60418,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *388 - deployment: &693 + items: *390 + deployment: &695 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60340,9 +60706,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *309 - - *310 - - &390 + - *311 + - *312 + - &392 name: check_run_id description: The unique identifier of the check run. in: path @@ -60354,9 +60720,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: &391 + default: &393 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60456,9 +60822,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *309 - - *310 - - *390 + - *311 + - *312 + - *392 requestBody: required: true content: @@ -60698,9 +61064,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *391 + default: *393 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60720,9 +61086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *309 - - *310 - - *390 + - *311 + - *312 + - *392 - *17 - *19 responses: @@ -60832,9 +61198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *309 - - *310 - - *390 + - *311 + - *312 + - *392 responses: '201': description: Response @@ -60878,8 +61244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -60901,7 +61267,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &393 + schema: &395 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -60983,7 +61349,7 @@ paths: type: - array - 'null' - items: *388 + items: *390 app: anyOf: - type: 'null' @@ -60999,7 +61365,7 @@ paths: - string - 'null' format: date-time - head_commit: *392 + head_commit: *394 latest_check_runs_count: type: integer check_runs_url: @@ -61027,7 +61393,7 @@ paths: - check_runs_url - pull_requests examples: - default: &394 + default: &396 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61318,9 +61684,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *393 + schema: *395 examples: - default: *394 + default: *396 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61339,8 +61705,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -61649,9 +62015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *309 - - *310 - - &395 + - *311 + - *312 + - &397 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61663,9 +62029,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - default: *394 + default: *396 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61688,17 +62054,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *309 - - *310 - - *395 - - &443 + - *311 + - *312 + - *397 + - &445 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &444 + - &446 name: status description: Returns check runs with the specified `status`. in: query @@ -61737,9 +62103,9 @@ paths: type: integer check_runs: type: array - items: *389 + items: *391 examples: - default: &445 + default: &447 value: total_count: 1 check_runs: @@ -61841,9 +62207,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *309 - - *310 - - *395 + - *311 + - *312 + - *397 responses: '201': description: Response @@ -61876,21 +62242,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *309 - - *310 - - *396 - - *397 + - *311 + - *312 + - *398 + - *399 - *19 - *17 - - &414 + - &416 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *398 - - &415 + schema: *400 + - &417 name: pr description: The number of the pull request for the results you want to list. in: query @@ -61915,13 +62281,13 @@ paths: be returned. in: query required: false - schema: *399 + schema: *401 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *400 + schema: *402 responses: '200': description: Response @@ -61932,24 +62298,24 @@ paths: items: type: object properties: - number: *152 - created_at: *153 - updated_at: *154 - url: *155 - html_url: *156 - instances_url: *401 - state: *161 - fixed_at: *157 + number: *154 + created_at: *155 + updated_at: *156 + url: *157 + html_url: *158 + instances_url: *403 + state: *163 + fixed_at: *159 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *158 - dismissed_reason: *402 - dismissed_comment: *403 - rule: *404 - tool: *405 - most_recent_instance: *406 + dismissed_at: *160 + dismissed_reason: *404 + dismissed_comment: *405 + rule: *406 + tool: *407 + most_recent_instance: *408 dismissal_approved_by: anyOf: - type: 'null' @@ -62072,7 +62438,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &407 + '403': &409 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -62099,9 +62465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *309 - - *310 - - &408 + - *311 + - *312 + - &410 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -62109,30 +62475,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *152 + schema: *154 responses: '200': description: Response content: application/json: - schema: &409 + schema: &411 type: object properties: - number: *152 - created_at: *153 - updated_at: *154 - url: *155 - html_url: *156 - instances_url: *401 - state: *161 - fixed_at: *157 + number: *154 + created_at: *155 + updated_at: *156 + url: *157 + html_url: *158 + instances_url: *403 + state: *163 + fixed_at: *159 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *158 - dismissed_reason: *402 - dismissed_comment: *403 + dismissed_at: *160 + dismissed_reason: *404 + dismissed_comment: *405 rule: type: object properties: @@ -62194,8 +62560,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *405 - most_recent_instance: *406 + tool: *407 + most_recent_instance: *408 dismissal_approved_by: anyOf: - type: 'null' @@ -62291,7 +62657,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -62311,9 +62677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 requestBody: required: true content: @@ -62328,8 +62694,8 @@ paths: enum: - open - dismissed - dismissed_reason: *402 - dismissed_comment: *403 + dismissed_reason: *404 + dismissed_comment: *405 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -62348,7 +62714,7 @@ paths: description: Response content: application/json: - schema: *409 + schema: *411 examples: default: value: @@ -62424,7 +62790,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &413 + '403': &415 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -62451,15 +62817,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 responses: '200': description: Response content: application/json: - schema: &410 + schema: &412 type: object properties: status: @@ -62486,13 +62852,13 @@ paths: - description - started_at examples: - default: &411 + default: &413 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &412 + '400': &414 description: Bad Request content: application/json: @@ -62503,7 +62869,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -62528,29 +62894,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 responses: '200': description: OK content: application/json: - schema: *410 + schema: *412 examples: - default: *411 + default: *413 '202': description: Accepted content: application/json: - schema: *410 + schema: *412 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *412 + '400': *414 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62582,9 +62948,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 requestBody: required: false content: @@ -62630,8 +62996,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *412 - '403': *413 + '400': *414 + '403': *415 '404': *6 '422': description: Unprocessable Entity @@ -62655,13 +63021,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 - *19 - *17 - - *414 - - *415 + - *416 + - *417 responses: '200': description: Response @@ -62669,7 +63035,7 @@ paths: application/json: schema: type: array - items: *406 + items: *408 examples: default: value: @@ -62708,7 +63074,7 @@ paths: end_column: 50 classifications: - source - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -62742,25 +63108,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *309 - - *310 - - *396 - - *397 + - *311 + - *312 + - *398 + - *399 - *19 - *17 - - *415 + - *417 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *398 + schema: *400 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &418 + schema: &420 type: string description: An identifier for the upload. examples: @@ -62782,23 +63148,23 @@ paths: application/json: schema: type: array - items: &419 + items: &421 type: object properties: - ref: *398 - commit_sha: &427 + ref: *400 + commit_sha: &429 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *416 + analysis_key: *418 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *417 + category: *419 error: type: string examples: @@ -62823,8 +63189,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *418 - tool: *405 + sarif_id: *420 + tool: *407 deletable: type: boolean warning: @@ -62886,7 +63252,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -62922,8 +63288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62936,7 +63302,7 @@ paths: description: Response content: application/json: - schema: *419 + schema: *421 examples: response: summary: application/json response @@ -62990,7 +63356,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *407 + '403': *409 '404': *6 '422': description: Response if analysis could not be processed @@ -63077,8 +63443,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63134,7 +63500,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *413 + '403': *415 '404': *6 '503': *97 x-github: @@ -63156,8 +63522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -63165,7 +63531,7 @@ paths: application/json: schema: type: array - items: &420 + items: &422 title: CodeQL Database description: A CodeQL database. type: object @@ -63277,7 +63643,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -63306,8 +63672,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: language in: path description: The language of the CodeQL database. @@ -63319,7 +63685,7 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: default: value: @@ -63351,9 +63717,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &450 + '302': &452 description: Found - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -63375,8 +63741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *309 - - *310 + - *311 + - *312 - name: language in: path description: The language of the CodeQL database. @@ -63386,7 +63752,7 @@ paths: responses: '204': description: Response - '403': *413 + '403': *415 '404': *6 '503': *97 x-github: @@ -63414,8 +63780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -63424,10 +63790,11 @@ paths: type: object additionalProperties: false properties: - language: &421 + language: &423 type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -63503,7 +63870,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &425 + schema: &427 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63513,7 +63880,7 @@ paths: description: The ID of the variant analysis. controller_repo: *51 actor: *4 - query_language: *421 + query_language: *423 query_pack_url: type: string description: The download url for the query pack. @@ -63561,7 +63928,7 @@ paths: items: type: object properties: - repository: &422 + repository: &424 title: Repository Identifier description: Repository Identifier type: object @@ -63603,7 +63970,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &426 + analysis_status: &428 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63635,7 +64002,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &423 + access_mismatch_repos: &425 type: object properties: repository_count: @@ -63650,7 +64017,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *422 + items: *424 required: - repository_count - repositories @@ -63673,8 +64040,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *423 - over_limit_repos: *423 + no_codeql_db_repos: *425 + over_limit_repos: *425 required: - access_mismatch_repos - not_found_repos @@ -63690,7 +64057,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &424 + value: &426 summary: Default response value: id: 1 @@ -63842,10 +64209,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *424 + value: *426 repository_lists: summary: Response for a successful variant analysis submission - value: *424 + value: *426 '404': *6 '422': description: Unable to process variant analysis submission @@ -63873,8 +64240,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *309 - - *310 + - *311 + - *312 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -63886,9 +64253,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *424 + default: *426 '404': *6 '503': *97 x-github: @@ -63911,7 +64278,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *309 + - *311 - name: repo in: path description: The name of the controller repository. @@ -63946,7 +64313,7 @@ paths: type: object properties: repository: *51 - analysis_status: *426 + analysis_status: *428 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -64071,8 +64438,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -64165,7 +64532,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *407 + '403': *409 '404': *6 '503': *97 x-github: @@ -64186,8 +64553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -64281,7 +64648,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *413 + '403': *415 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64352,8 +64719,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -64361,7 +64728,7 @@ paths: schema: type: object properties: - commit_sha: *427 + commit_sha: *429 ref: type: string description: |- @@ -64421,7 +64788,7 @@ paths: schema: type: object properties: - id: *418 + id: *420 url: type: string description: The REST API URL for checking the status of the upload. @@ -64435,7 +64802,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *413 + '403': *415 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -64458,8 +64825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *309 - - *310 + - *311 + - *312 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64507,7 +64874,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *407 + '403': *409 '404': description: Not Found if the sarif id does not match any upload '503': *97 @@ -64532,8 +64899,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -64589,7 +64956,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *166 + '204': *168 '304': *35 '403': *27 '404': *6 @@ -64614,8 +64981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *309 - - *310 + - *311 + - *312 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -64743,8 +65110,8 @@ paths: parameters: - *17 - *19 - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -64760,7 +65127,7 @@ paths: type: integer codespaces: type: array - items: *211 + items: *213 examples: default: value: @@ -65058,8 +65425,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -65123,17 +65490,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '400': *14 '401': *23 '403': *27 @@ -65162,8 +65529,8 @@ paths: parameters: - *17 - *19 - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -65227,8 +65594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65265,9 +65632,9 @@ paths: type: integer machines: type: array - items: *429 + items: *431 examples: - default: &643 + default: &645 value: total_count: 2 machines: @@ -65307,8 +65674,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *309 - - *310 + - *311 + - *312 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65395,8 +65762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *309 - - *310 + - *311 + - *312 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -65465,8 +65832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -65484,7 +65851,7 @@ paths: type: integer secrets: type: array - items: &433 + items: &435 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65505,7 +65872,7 @@ paths: - created_at - updated_at examples: - default: *430 + default: *432 headers: Link: *52 x-github: @@ -65528,16 +65895,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65557,17 +65924,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '200': description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65587,8 +65954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 requestBody: required: true @@ -65641,8 +66008,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '204': @@ -65671,8 +66038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *309 - - *310 + - *311 + - *312 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65710,7 +66077,7 @@ paths: application/json: schema: type: array - items: &435 + items: &437 title: Collaborator description: Collaborator type: object @@ -65903,8 +66270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *309 - - *310 + - *311 + - *312 - *57 responses: '204': @@ -65951,8 +66318,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *309 - - *310 + - *311 + - *312 - *57 requestBody: required: false @@ -65979,7 +66346,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &499 + schema: &501 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -66207,8 +66574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *309 - - *310 + - *311 + - *312 - *57 responses: '204': @@ -66240,8 +66607,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *309 - - *310 + - *311 + - *312 - *57 responses: '200': @@ -66262,7 +66629,7 @@ paths: user: anyOf: - type: 'null' - - *435 + - *437 required: - permission - role_name @@ -66316,8 +66683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -66327,7 +66694,7 @@ paths: application/json: schema: type: array - items: &436 + items: &438 title: Commit Comment description: Commit Comment type: object @@ -66385,7 +66752,7 @@ paths: - created_at - updated_at examples: - default: &439 + default: &441 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66444,17 +66811,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '200': description: Response content: application/json: - schema: *436 + schema: *438 examples: - default: &440 + default: &442 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66511,8 +66878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -66535,7 +66902,7 @@ paths: description: Response content: application/json: - schema: *436 + schema: *438 examples: default: value: @@ -66586,8 +66953,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '204': @@ -66609,8 +66976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -66637,9 +67004,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 '404': *6 @@ -66660,8 +67027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -66694,16 +67061,16 @@ paths: description: Reaction exists content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Reaction created content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '422': *15 x-github: githubCloudOnly: false @@ -66725,10 +67092,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *309 - - *310 + - *311 + - *312 - *77 - - *305 + - *307 responses: '204': description: Response @@ -66777,8 +67144,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *309 - - *310 + - *311 + - *312 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -66834,9 +67201,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: &549 + default: &551 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66930,9 +67297,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *309 - - *310 - - &438 + - *311 + - *312 + - &440 name: commit_sha description: The SHA of the commit. in: path @@ -67004,9 +67371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *309 - - *310 - - *438 + - *311 + - *312 + - *440 - *17 - *19 responses: @@ -67016,9 +67383,9 @@ paths: application/json: schema: type: array - items: *436 + items: *438 examples: - default: *439 + default: *441 headers: Link: *52 x-github: @@ -67046,9 +67413,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *309 - - *310 - - *438 + - *311 + - *312 + - *440 requestBody: required: true content: @@ -67083,9 +67450,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *438 examples: - default: *440 + default: *442 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67113,9 +67480,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *309 - - *310 - - *438 + - *311 + - *312 + - *440 - *17 - *19 responses: @@ -67125,9 +67492,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: &541 + default: &543 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67664,11 +68031,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *309 - - *310 + - *311 + - *312 - *19 - *17 - - &442 + - &444 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -67683,9 +68050,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: - default: &527 + default: &529 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67798,11 +68165,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *309 - - *310 - - *442 - - *443 + - *311 + - *312 - *444 + - *445 + - *446 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -67836,9 +68203,9 @@ paths: type: integer check_runs: type: array - items: *389 + items: *391 examples: - default: *445 + default: *447 headers: Link: *52 x-github: @@ -67863,9 +68230,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *309 - - *310 - - *442 + - *311 + - *312 + - *444 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -67873,7 +68240,7 @@ paths: schema: type: integer example: 1 - - *443 + - *445 - *17 - *19 responses: @@ -67891,7 +68258,7 @@ paths: type: integer check_suites: type: array - items: *393 + items: *395 examples: default: value: @@ -68091,9 +68458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *309 - - *310 - - *442 + - *311 + - *312 + - *444 - *17 - *19 responses: @@ -68295,9 +68662,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *309 - - *310 - - *442 + - *311 + - *312 + - *444 - *17 - *19 responses: @@ -68307,7 +68674,7 @@ paths: application/json: schema: type: array - items: &614 + items: &616 title: Status description: The status of a commit. type: object @@ -68388,7 +68755,7 @@ paths: site_admin: false headers: Link: *52 - '301': *316 + '301': *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68416,8 +68783,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -68450,11 +68817,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *446 + - *448 code_of_conduct_file: anyOf: - type: 'null' - - &447 + - &449 title: Community Health File type: object properties: @@ -68474,19 +68841,19 @@ paths: contributing: anyOf: - type: 'null' - - *447 + - *449 readme: anyOf: - type: 'null' - - *447 + - *449 issue_template: anyOf: - type: 'null' - - *447 + - *449 pull_request_template: anyOf: - type: 'null' - - *447 + - *449 required: - code_of_conduct - code_of_conduct_file @@ -68615,8 +68982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *309 - - *310 + - *311 + - *312 - *19 - *17 - name: basehead @@ -68664,8 +69031,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *437 - merge_base_commit: *437 + base_commit: *439 + merge_base_commit: *439 status: type: string enum: @@ -68689,10 +69056,10 @@ paths: - 6 commits: type: array - items: *437 + items: *439 files: type: array - items: *448 + items: *450 required: - url - html_url @@ -68978,8 +69345,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *309 - - *310 + - *311 + - *312 - name: path description: path parameter in: path @@ -69132,7 +69499,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &449 + response-if-content-is-a-file: &451 summary: Response if content is a file value: type: file @@ -69269,7 +69636,7 @@ paths: - size - type - url - - &554 + - &556 title: Content File description: Content File type: object @@ -69487,7 +69854,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *449 + response-if-content-is-a-file: *451 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -69556,7 +69923,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *450 + '302': *452 '304': *35 x-github: githubCloudOnly: false @@ -69579,8 +69946,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *309 - - *310 + - *311 + - *312 - name: path description: path parameter in: path @@ -69675,7 +70042,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &453 title: File Commit description: File Commit type: object @@ -69831,7 +70198,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: example-for-creating-a-file: value: @@ -69885,7 +70252,7 @@ paths: schema: oneOf: - *3 - - &481 + - &483 description: Repository rule violation was detected type: object properties: @@ -69906,7 +70273,7 @@ paths: items: type: object properties: - placeholder_id: &606 + placeholder_id: &608 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -69938,8 +70305,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *309 - - *310 + - *311 + - *312 - name: path description: path parameter in: path @@ -70000,7 +70367,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: default: value: @@ -70055,8 +70422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *309 - - *310 + - *311 + - *312 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -70180,22 +70547,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *309 - - *310 - - *171 - - *172 + - *311 + - *312 - *173 - *174 + - *175 + - *176 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *175 - - *452 - - *176 - *177 + - *454 + - *178 + - *179 - *46 - name: per_page description: The number of results per page (max 100). For more information, @@ -70214,11 +70581,11 @@ paths: application/json: schema: type: array - items: &455 + items: &457 type: object description: A Dependabot alert. properties: - number: *152 + number: *154 state: type: string description: The state of the Dependabot alert. @@ -70264,13 +70631,13 @@ paths: - direct - transitive - - security_advisory: *453 + security_advisory: *455 security_vulnerability: *50 - url: *155 - html_url: *156 - created_at: *153 - updated_at: *154 - dismissed_at: *158 + url: *157 + html_url: *158 + created_at: *155 + updated_at: *156 + dismissed_at: *160 dismissed_by: anyOf: - type: 'null' @@ -70294,8 +70661,8 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *157 - auto_dismissed_at: *454 + fixed_at: *159 + auto_dismissed_at: *456 required: - number - state @@ -70525,9 +70892,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *309 - - *310 - - &456 + - *311 + - *312 + - &458 name: alert_number in: path description: |- @@ -70536,13 +70903,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *152 + schema: *154 responses: '200': description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -70655,9 +71022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *309 - - *310 - - *456 + - *311 + - *312 + - *458 requestBody: required: true content: @@ -70702,7 +71069,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -70831,8 +71198,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -70850,7 +71217,7 @@ paths: type: integer secrets: type: array - items: &459 + items: &461 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -70904,16 +71271,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *457 + schema: *459 examples: - default: *458 + default: *460 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70933,15 +71300,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '200': description: Response content: application/json: - schema: *459 + schema: *461 examples: default: value: @@ -70967,8 +71334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 requestBody: required: true @@ -71021,8 +71388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *309 - - *310 + - *311 + - *312 - *144 responses: '204': @@ -71045,8 +71412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *309 - - *310 + - *311 + - *312 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -71220,8 +71587,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -71481,8 +71848,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -71565,7 +71932,7 @@ paths: - version - url additionalProperties: false - metadata: &460 + metadata: &462 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71604,7 +71971,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *460 + metadata: *462 resolved: type: object description: A collection of resolved package dependencies. @@ -71618,7 +71985,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *460 + metadata: *462 relationship: type: string description: A notation of whether a dependency is requested @@ -71751,8 +72118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *309 - - *310 + - *311 + - *312 - name: sha description: The SHA recorded at creation time. in: query @@ -71793,9 +72160,9 @@ paths: application/json: schema: type: array - items: *461 + items: *463 examples: - default: *462 + default: *464 headers: Link: *52 x-github: @@ -71861,8 +72228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -71944,7 +72311,7 @@ paths: description: Response content: application/json: - schema: *461 + schema: *463 examples: simple-example: summary: Simple example @@ -72017,9 +72384,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *309 - - *310 - - &463 + - *311 + - *312 + - &465 name: deployment_id description: deployment_id parameter in: path @@ -72031,7 +72398,7 @@ paths: description: Response content: application/json: - schema: *461 + schema: *463 examples: default: value: @@ -72096,9 +72463,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *309 - - *310 - - *463 + - *311 + - *312 + - *465 responses: '204': description: Response @@ -72120,9 +72487,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *309 - - *310 - - *463 + - *311 + - *312 + - *465 - *17 - *19 responses: @@ -72132,7 +72499,7 @@ paths: application/json: schema: type: array - items: &464 + items: &466 title: Deployment Status description: The status of a deployment. type: object @@ -72296,9 +72663,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *309 - - *310 - - *463 + - *311 + - *312 + - *465 requestBody: required: true content: @@ -72373,9 +72740,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *466 examples: - default: &465 + default: &467 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72431,9 +72798,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *309 - - *310 - - *463 + - *311 + - *312 + - *465 - name: status_id in: path required: true @@ -72444,9 +72811,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *466 examples: - default: *465 + default: *467 '404': *6 x-github: githubCloudOnly: false @@ -72471,8 +72838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -72529,8 +72896,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -72548,7 +72915,7 @@ paths: - 5 environments: type: array - items: &467 + items: &469 title: Environment description: Details of a deployment environment type: object @@ -72610,7 +72977,7 @@ paths: type: string examples: - wait_timer - wait_timer: &469 + wait_timer: &471 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -72652,11 +73019,11 @@ paths: items: type: object properties: - type: *466 + type: *468 reviewer: anyOf: - *4 - - *170 + - *172 required: - id - node_id @@ -72679,7 +73046,7 @@ paths: - id - node_id - type - deployment_branch_policy: &470 + deployment_branch_policy: &472 type: - object - 'null' @@ -72796,9 +73163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *309 - - *310 - - &468 + - *311 + - *312 + - &470 name: environment_name in: path required: true @@ -72811,9 +73178,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *469 examples: - default: &471 + default: &473 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -72897,9 +73264,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 requestBody: required: false content: @@ -72909,7 +73276,7 @@ paths: - object - 'null' properties: - wait_timer: *469 + wait_timer: *471 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -72928,14 +73295,14 @@ paths: items: type: object properties: - type: *466 + type: *468 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *470 + deployment_branch_policy: *472 additionalProperties: false examples: default: @@ -72955,9 +73322,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *469 examples: - default: *471 + default: *473 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -72981,9 +73348,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 responses: '204': description: Default response @@ -73008,9 +73375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *17 - *19 responses: @@ -73029,7 +73396,7 @@ paths: - 2 branch_policies: type: array - items: &472 + items: &474 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -73090,9 +73457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 requestBody: required: true content: @@ -73140,9 +73507,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: - example-wildcard: &473 + example-wildcard: &475 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -73184,10 +73551,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *309 - - *310 - - *468 - - &474 + - *311 + - *312 + - *470 + - &476 name: branch_policy_id in: path required: true @@ -73199,9 +73566,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: - default: *473 + default: *475 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73220,10 +73587,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *309 - - *310 - - *468 - - *474 + - *311 + - *312 + - *470 + - *476 requestBody: required: true content: @@ -73252,9 +73619,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: - default: *473 + default: *475 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73273,10 +73640,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *309 - - *310 - - *468 - - *474 + - *311 + - *312 + - *470 + - *476 responses: '204': description: Response @@ -73301,9 +73668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *468 - - *310 - - *309 + - *470 + - *312 + - *311 responses: '200': description: List of deployment protection rules @@ -73320,7 +73687,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &475 + items: &477 title: Deployment protection rule description: Deployment protection rule type: object @@ -73342,7 +73709,7 @@ paths: for the environment. examples: - true - app: &476 + app: &478 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73445,9 +73812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *468 - - *310 - - *309 + - *470 + - *312 + - *311 requestBody: content: application/json: @@ -73468,9 +73835,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *475 + schema: *477 examples: - default: &477 + default: &479 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73505,9 +73872,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *468 - - *310 - - *309 + - *470 + - *312 + - *311 - *19 - *17 responses: @@ -73527,7 +73894,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *476 + items: *478 examples: default: value: @@ -73562,10 +73929,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *309 - - *310 - - *468 - - &478 + - *311 + - *312 + - *470 + - &480 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73577,9 +73944,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *477 examples: - default: *477 + default: *479 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73600,10 +73967,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *468 - - *310 - - *309 - - *478 + - *470 + - *312 + - *311 + - *480 responses: '204': description: Response @@ -73629,9 +73996,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *17 - *19 responses: @@ -73649,9 +74016,9 @@ paths: type: integer secrets: type: array - items: *355 + items: *357 examples: - default: *356 + default: *358 headers: Link: *52 x-github: @@ -73676,17 +74043,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 responses: '200': description: Response content: application/json: - schema: *357 + schema: *359 examples: - default: *358 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73708,18 +74075,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *144 responses: '200': description: Response content: application/json: - schema: *355 + schema: *357 examples: - default: *479 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73741,9 +74108,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *144 requestBody: required: true @@ -73801,9 +74168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *144 responses: '204': @@ -73829,10 +74196,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *309 - - *310 - - *468 - - *326 + - *311 + - *312 + - *470 + - *328 - *19 responses: '200': @@ -73849,9 +74216,9 @@ paths: type: integer variables: type: array - items: *359 + items: *361 examples: - default: *360 + default: *362 headers: Link: *52 x-github: @@ -73874,9 +74241,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 requestBody: required: true content: @@ -73928,18 +74295,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *309 - - *310 - - *468 + - *311 + - *312 + - *470 - *147 responses: '200': description: Response content: application/json: - schema: *359 + schema: *361 examples: - default: *480 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73960,10 +74327,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *309 - - *310 + - *311 + - *312 - *147 - - *468 + - *470 requestBody: required: true content: @@ -74005,10 +74372,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *309 - - *310 + - *311 + - *312 - *147 - - *468 + - *470 responses: '204': description: Response @@ -74030,8 +74397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -74099,8 +74466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *309 - - *310 + - *311 + - *312 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -74259,8 +74626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -74293,9 +74660,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *317 + default: *319 '400': *14 '422': *15 '403': *27 @@ -74316,8 +74683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -74377,7 +74744,7 @@ paths: schema: oneOf: - *105 - - *481 + - *483 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74402,8 +74769,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *309 - - *310 + - *311 + - *312 - name: file_sha in: path required: true @@ -74503,8 +74870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -74613,7 +74980,7 @@ paths: description: Response content: application/json: - schema: &482 + schema: &484 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -74840,15 +75207,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *309 - - *310 - - *438 + - *311 + - *312 + - *440 responses: '200': description: Response content: application/json: - schema: *482 + schema: *484 examples: default: value: @@ -74904,9 +75271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *309 - - *310 - - &483 + - *311 + - *312 + - &485 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. @@ -74923,7 +75290,7 @@ paths: application/json: schema: type: array - items: &484 + items: &486 title: Git Reference description: Git references within a repository type: object @@ -74999,17 +75366,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *309 - - *310 - - *483 + - *311 + - *312 + - *485 responses: '200': description: Response content: application/json: - schema: *484 + schema: *486 examples: - default: &485 + default: &487 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -75038,8 +75405,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -75068,9 +75435,9 @@ paths: description: Response content: application/json: - schema: *484 + schema: *486 examples: - default: *485 + default: *487 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -75096,9 +75463,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *309 - - *310 - - *483 + - *311 + - *312 + - *485 requestBody: required: true content: @@ -75127,9 +75494,9 @@ paths: description: Response content: application/json: - schema: *484 + schema: *486 examples: - default: *485 + default: *487 '422': *15 '409': *45 x-github: @@ -75147,9 +75514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *309 - - *310 - - *483 + - *311 + - *312 + - *485 responses: '204': description: Response @@ -75204,8 +75571,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -75272,7 +75639,7 @@ paths: description: Response content: application/json: - schema: &487 + schema: &489 title: Git Tag description: Metadata for a Git tag type: object @@ -75328,7 +75695,7 @@ paths: - sha - type - url - verification: *486 + verification: *488 required: - sha - url @@ -75338,7 +75705,7 @@ paths: - tag - message examples: - default: &488 + default: &490 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75411,8 +75778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *309 - - *310 + - *311 + - *312 - name: tag_sha in: path required: true @@ -75423,9 +75790,9 @@ paths: description: Response content: application/json: - schema: *487 + schema: *489 examples: - default: *488 + default: *490 '404': *6 '409': *45 x-github: @@ -75449,8 +75816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -75524,7 +75891,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &491 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75626,8 +75993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *309 - - *310 + - *311 + - *312 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -75650,7 +76017,7 @@ paths: description: Response content: application/json: - schema: *489 + schema: *491 examples: default-response: summary: Default response @@ -75709,8 +76076,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -75720,7 +76087,7 @@ paths: application/json: schema: type: array - items: &490 + items: &492 title: Webhook description: Webhooks for repositories. type: object @@ -75783,7 +76150,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &724 + last_response: &726 title: Hook Response type: object properties: @@ -75860,8 +76227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -75914,9 +76281,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *492 examples: - default: &491 + default: &493 value: type: Repository id: 12345678 @@ -75964,17 +76331,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 responses: '200': description: Response content: application/json: - schema: *490 + schema: *492 examples: - default: *491 + default: *493 '404': *6 x-github: githubCloudOnly: false @@ -75994,9 +76361,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 requestBody: required: true content: @@ -76041,9 +76408,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *492 examples: - default: *491 + default: *493 '422': *15 '404': *6 x-github: @@ -76064,9 +76431,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 responses: '204': description: Response @@ -76090,9 +76457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 responses: '200': description: Response @@ -76119,9 +76486,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 requestBody: required: false content: @@ -76165,11 +76532,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 - *17 - - *184 + - *186 responses: '200': description: Response @@ -76177,9 +76544,9 @@ paths: application/json: schema: type: array - items: *185 + items: *187 examples: - default: *186 + default: *188 '400': *14 '422': *15 x-github: @@ -76198,18 +76565,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 - *16 responses: '200': description: Response content: application/json: - schema: *187 + schema: *189 examples: - default: *188 + default: *190 '400': *14 '422': *15 x-github: @@ -76228,9 +76595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 - *16 responses: '202': *37 @@ -76253,9 +76620,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 responses: '204': description: Response @@ -76280,9 +76647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *309 - - *310 - - *183 + - *311 + - *312 + - *185 responses: '204': description: Response @@ -76305,8 +76672,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response if immutable releases are enabled @@ -76354,10 +76721,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *309 - - *310 + - *311 + - *312 responses: - '204': *166 + '204': *168 '409': *45 x-github: githubCloudOnly: false @@ -76375,10 +76742,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *309 - - *310 + - *311 + - *312 responses: - '204': *166 + '204': *168 '409': *45 x-github: githubCloudOnly: false @@ -76433,14 +76800,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: &492 + schema: &494 title: Import description: A repository import from an external source. type: object @@ -76547,7 +76914,7 @@ paths: - html_url - authors_url examples: - default: &495 + default: &497 value: vcs: subversion use_lfs: true @@ -76563,7 +76930,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': &493 + '503': &495 description: Unavailable due to service under maintenance. content: application/json: @@ -76592,8 +76959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -76641,7 +77008,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *494 examples: default: value: @@ -76666,7 +77033,7 @@ paths: type: string '422': *15 '404': *6 - '503': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76694,8 +77061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -76747,7 +77114,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *494 examples: example-1: summary: Example 1 @@ -76795,7 +77162,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': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76818,12 +77185,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response - '503': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76849,9 +77216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *309 - - *310 - - &664 + - *311 + - *312 + - &666 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76865,7 +77232,7 @@ paths: application/json: schema: type: array - items: &494 + items: &496 title: Porter Author description: Porter Author type: object @@ -76919,7 +77286,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': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76944,8 +77311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *309 - - *310 + - *311 + - *312 - name: author_id in: path required: true @@ -76975,7 +77342,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *496 examples: default: value: @@ -76988,7 +77355,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77012,8 +77379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -77054,7 +77421,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77082,8 +77449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -77110,11 +77477,11 @@ paths: description: Response content: application/json: - schema: *492 + schema: *494 examples: - default: *495 + default: *497 '422': *15 - '503': *493 + '503': *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77137,8 +77504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -77146,8 +77513,8 @@ paths: application/json: schema: *20 examples: - default: *496 - '301': *316 + default: *498 + '301': *318 '404': *6 x-github: githubCloudOnly: false @@ -77167,8 +77534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -77176,12 +77543,12 @@ paths: application/json: schema: anyOf: - - *201 + - *203 - type: object properties: {} additionalProperties: false examples: - default: &498 + default: &500 value: limit: collaborators_only origin: repository @@ -77206,13 +77573,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: application/json: - schema: *497 + schema: *499 examples: default: summary: Example request body @@ -77224,9 +77591,9 @@ paths: description: Response content: application/json: - schema: *201 + schema: *203 examples: - default: *498 + default: *500 '409': description: Response x-github: @@ -77248,8 +77615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -77272,8 +77639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -77283,9 +77650,9 @@ paths: application/json: schema: type: array - items: *499 + items: *501 examples: - default: &657 + default: &659 value: - id: 1 repository: @@ -77416,9 +77783,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *309 - - *310 - - *205 + - *311 + - *312 + - *207 requestBody: required: false content: @@ -77447,7 +77814,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *501 examples: default: value: @@ -77578,9 +77945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *309 - - *310 - - *205 + - *311 + - *312 + - *207 responses: '204': description: Response @@ -77611,8 +77978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *309 - - *310 + - *311 + - *312 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -77660,7 +78027,7 @@ paths: required: false schema: type: string - - *209 + - *211 - name: sort description: What to sort results by. in: query @@ -77685,7 +78052,7 @@ paths: type: array items: *78 examples: - default: &507 + default: &509 value: - id: 1 node_id: MDU6SXNzdWUx @@ -77833,7 +78200,7 @@ paths: state_reason: completed headers: Link: *52 - '301': *316 + '301': *318 '422': *15 '404': *6 x-github: @@ -77862,8 +78229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -77955,7 +78322,7 @@ paths: application/json: schema: *78 examples: - default: &504 + default: &506 value: id: 1 node_id: MDU6SXNzdWUx @@ -78111,7 +78478,7 @@ paths: '422': *15 '503': *97 '404': *6 - '410': *500 + '410': *502 x-github: triggersNotification: true githubCloudOnly: false @@ -78139,8 +78506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *87 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -78161,9 +78528,9 @@ paths: application/json: schema: type: array - items: *501 + items: *503 examples: - default: &506 + default: &508 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78221,17 +78588,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '200': description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: &502 + default: &504 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78285,8 +78652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -78309,9 +78676,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *502 + default: *504 '422': *15 x-github: githubCloudOnly: false @@ -78329,8 +78696,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '204': @@ -78351,8 +78718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -78379,9 +78746,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 '404': *6 @@ -78402,8 +78769,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -78436,16 +78803,16 @@ paths: description: Reaction exists content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Reaction created content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '422': *15 x-github: githubCloudOnly: false @@ -78467,10 +78834,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *309 - - *310 + - *311 + - *312 - *77 - - *305 + - *307 responses: '204': description: Response @@ -78490,8 +78857,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -78501,7 +78868,7 @@ paths: application/json: schema: type: array - items: &503 + items: &505 title: Issue Event description: Issue Event type: object @@ -78581,7 +78948,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *170 + requested_team: *172 dismissed_review: title: Issue Event Dismissed Review type: object @@ -78840,8 +79207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *309 - - *310 + - *311 + - *312 - name: event_id in: path required: true @@ -78852,7 +79219,7 @@ paths: description: Response content: application/json: - schema: *503 + schema: *505 examples: default: value: @@ -79045,7 +79412,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *500 + '410': *502 '403': *27 x-github: githubCloudOnly: false @@ -79079,9 +79446,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *309 - - *310 - - &505 + - *311 + - *312 + - &507 name: issue_number description: The number that identifies the issue. in: path @@ -79095,10 +79462,10 @@ paths: application/json: schema: *78 examples: - default: *504 - '301': *316 + default: *506 + '301': *318 '404': *6 - '410': *500 + '410': *502 '304': *35 x-github: githubCloudOnly: false @@ -79123,9 +79490,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: false content: @@ -79246,13 +79613,13 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 '422': *15 '503': *97 '403': *27 - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79270,9 +79637,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: false content: @@ -79300,7 +79667,7 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79316,9 +79683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: content: application/json: @@ -79345,7 +79712,7 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79367,9 +79734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - name: assignee in: path required: true @@ -79409,9 +79776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *68 - *17 - *19 @@ -79422,13 +79789,13 @@ paths: application/json: schema: type: array - items: *501 + items: *503 examples: - default: *506 + default: *508 headers: Link: *52 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79457,9 +79824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -79481,16 +79848,16 @@ paths: description: Response content: application/json: - schema: *501 + schema: *503 examples: - default: *502 + default: *504 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *500 + '410': *502 '422': *15 '404': *6 x-github: @@ -79518,9 +79885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -79532,12 +79899,12 @@ paths: type: array items: *78 examples: - default: *507 + default: *509 headers: Link: *52 - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79565,9 +79932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -79591,15 +79958,15 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *316 + '301': *318 '403': *27 - '410': *500 + '410': *502 '422': *15 '404': *6 x-github: @@ -79630,9 +79997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -79646,13 +80013,13 @@ paths: application/json: schema: *78 examples: - default: *504 - '301': *316 + default: *506 + '301': *318 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *500 + '410': *502 x-github: triggersNotification: true githubCloudOnly: false @@ -79678,9 +80045,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -79692,12 +80059,12 @@ paths: type: array items: *78 examples: - default: *507 + default: *509 headers: Link: *52 - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79714,9 +80081,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -79730,7 +80097,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &510 + - &512 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79779,7 +80146,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &511 + - &513 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -79907,7 +80274,7 @@ paths: - performed_via_github_app - assignee - assigner - - &512 + - &514 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -79953,7 +80320,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &513 + - &515 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -79999,7 +80366,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &514 + - &516 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -80048,7 +80415,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &515 + - &517 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -80077,7 +80444,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *170 + requested_team: *172 requested_reviewer: *4 required: - review_requester @@ -80090,7 +80457,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &516 + - &518 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -80119,7 +80486,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *170 + requested_team: *172 requested_reviewer: *4 required: - review_requester @@ -80132,7 +80499,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &517 + - &519 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80188,7 +80555,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &518 + - &520 title: Locked Issue Event description: Locked Issue Event type: object @@ -80233,7 +80600,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &519 + - &521 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -80294,7 +80661,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &520 + - &522 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -80355,7 +80722,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &521 + - &523 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80416,7 +80783,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &522 + - &524 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80509,7 +80876,7 @@ paths: color: red headers: Link: *52 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80526,9 +80893,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -80538,7 +80905,7 @@ paths: application/json: schema: type: array - items: &508 + items: &510 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -80593,7 +80960,7 @@ paths: - color - default examples: - default: &509 + default: &511 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80611,9 +80978,9 @@ paths: default: false headers: Link: *52 - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80630,9 +80997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: false content: @@ -80691,12 +81058,12 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: - default: *509 - '301': *316 + default: *511 + '301': *318 '404': *6 - '410': *500 + '410': *502 '422': *15 x-github: githubCloudOnly: false @@ -80713,9 +81080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: false content: @@ -80775,12 +81142,12 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: - default: *509 - '301': *316 + default: *511 + '301': *318 '404': *6 - '410': *500 + '410': *502 '422': *15 x-github: githubCloudOnly: false @@ -80797,15 +81164,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 responses: '204': description: Response - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80824,9 +81191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - name: name in: path required: true @@ -80839,7 +81206,7 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: default: value: @@ -80850,9 +81217,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *316 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80872,9 +81239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: false content: @@ -80903,7 +81270,7 @@ paths: '204': description: Response '403': *27 - '410': *500 + '410': *502 '404': *6 '422': *15 x-github: @@ -80921,9 +81288,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 responses: '204': description: Response @@ -80953,9 +81320,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 responses: '200': description: Response @@ -80963,10 +81330,10 @@ paths: application/json: schema: *78 examples: - default: *504 - '301': *316 + default: *506 + '301': *318 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80983,9 +81350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - 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. @@ -81011,13 +81378,13 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81035,9 +81402,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -81069,16 +81436,16 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '422': *15 x-github: githubCloudOnly: false @@ -81100,10 +81467,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *309 - - *310 - - *505 - - *305 + - *311 + - *312 + - *507 + - *307 responses: '204': description: Response @@ -81132,9 +81499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -81158,7 +81525,7 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -81191,9 +81558,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -81205,11 +81572,11 @@ paths: type: array items: *78 examples: - default: *507 + default: *509 headers: Link: *52 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81237,9 +81604,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -81268,14 +81635,14 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *500 + '410': *502 '422': *15 '404': *6 x-github: @@ -81295,9 +81662,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 requestBody: required: true content: @@ -81330,7 +81697,7 @@ paths: application/json: schema: *78 examples: - default: *504 + default: *506 '403': *27 '404': *6 '422': *7 @@ -81352,9 +81719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *309 - - *310 - - *505 + - *311 + - *312 + - *507 - *17 - *19 responses: @@ -81369,8 +81736,6 @@ paths: description: Timeline Event type: object anyOf: - - *510 - - *511 - *512 - *513 - *514 @@ -81382,6 +81747,8 @@ paths: - *520 - *521 - *522 + - *523 + - *524 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81710,7 +82077,7 @@ paths: type: string comments: type: array - items: &543 + items: &545 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81948,7 +82315,7 @@ paths: type: string comments: type: array - items: *436 + items: *438 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -82223,7 +82590,7 @@ paths: headers: Link: *52 '404': *6 - '410': *500 + '410': *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82240,8 +82607,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -82251,7 +82618,7 @@ paths: application/json: schema: type: array - items: &523 + items: &525 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82319,8 +82686,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -82356,9 +82723,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *525 examples: - default: &524 + default: &526 value: id: 1 key: ssh-rsa AAA... @@ -82392,9 +82759,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *309 - - *310 - - &525 + - *311 + - *312 + - &527 name: key_id description: The unique identifier of the key. in: path @@ -82406,9 +82773,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *525 examples: - default: *524 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -82426,9 +82793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *309 - - *310 - - *525 + - *311 + - *312 + - *527 responses: '204': description: Response @@ -82448,8 +82815,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -82459,9 +82826,9 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: - default: *509 + default: *511 headers: Link: *52 '404': *6 @@ -82482,8 +82849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -82519,9 +82886,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: - default: &526 + default: &528 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82553,8 +82920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *309 - - *310 + - *311 + - *312 - name: name in: path required: true @@ -82565,9 +82932,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: - default: *526 + default: *528 '404': *6 x-github: githubCloudOnly: false @@ -82584,8 +82951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *309 - - *310 + - *311 + - *312 - name: name in: path required: true @@ -82624,7 +82991,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: default: value: @@ -82650,8 +83017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *309 - - *310 + - *311 + - *312 - name: name in: path required: true @@ -82677,8 +83044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -82717,9 +83084,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *309 - - *310 - - *414 + - *311 + - *312 + - *416 responses: '200': description: Response @@ -82866,8 +83233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -82932,8 +83299,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -82967,9 +83334,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *437 + schema: *439 examples: - default: *527 + default: *529 '204': description: Response when already merged '404': @@ -82994,8 +83361,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *309 - - *310 + - *311 + - *312 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -83036,7 +83403,7 @@ paths: application/json: schema: type: array - items: *242 + items: *244 examples: default: value: @@ -83092,8 +83459,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -83133,9 +83500,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: &528 + default: &530 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83194,9 +83561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *309 - - *310 - - &529 + - *311 + - *312 + - &531 name: milestone_number description: The number that identifies the milestone. in: path @@ -83208,9 +83575,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: *528 + default: *530 '404': *6 x-github: githubCloudOnly: false @@ -83227,9 +83594,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *309 - - *310 - - *529 + - *311 + - *312 + - *531 requestBody: required: false content: @@ -83267,9 +83634,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: - default: *528 + default: *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83285,9 +83652,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *309 - - *310 - - *529 + - *311 + - *312 + - *531 responses: '204': description: Response @@ -83308,9 +83675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *309 - - *310 - - *529 + - *311 + - *312 + - *531 - *17 - *19 responses: @@ -83320,9 +83687,9 @@ paths: application/json: schema: type: array - items: *508 + items: *510 examples: - default: *509 + default: *511 headers: Link: *52 x-github: @@ -83341,12 +83708,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *309 - - *310 - - *530 - - *531 - - *68 + - *311 + - *312 - *532 + - *533 + - *68 + - *534 - *17 - *19 responses: @@ -83358,7 +83725,7 @@ paths: type: array items: *90 examples: - default: *533 + default: *535 headers: Link: *52 x-github: @@ -83382,8 +83749,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -83441,14 +83808,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: &534 + schema: &536 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83592,7 +83959,7 @@ paths: - custom_404 - public examples: - default: &535 + default: &537 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83633,8 +84000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -83689,9 +84056,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *536 examples: - default: *535 + default: *537 '422': *15 '409': *45 x-github: @@ -83714,8 +84081,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -83815,8 +84182,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -83842,8 +84209,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -83853,7 +84220,7 @@ paths: application/json: schema: type: array - items: &536 + items: &538 title: Page Build description: Page Build type: object @@ -83945,8 +84312,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *309 - - *310 + - *311 + - *312 responses: '201': description: Response @@ -83993,16 +84360,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *536 + schema: *538 examples: - default: &537 + default: &539 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -84050,8 +84417,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *309 - - *310 + - *311 + - *312 - name: build_id in: path required: true @@ -84062,9 +84429,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *538 examples: - default: *537 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84084,8 +84451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -84193,9 +84560,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *309 - - *310 - - &538 + - *311 + - *312 + - &540 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84253,11 +84620,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *309 - - *310 - - *538 + - *311 + - *312 + - *540 responses: - '204': *166 + '204': *168 '404': *6 x-github: githubCloudOnly: false @@ -84282,8 +84649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -84578,8 +84945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Private vulnerability reporting status @@ -84616,10 +84983,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: - '204': *166 + '204': *168 '422': *14 x-github: githubCloudOnly: false @@ -84638,10 +85005,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: - '204': *166 + '204': *168 '422': *14 x-github: githubCloudOnly: false @@ -84661,8 +85028,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -84672,7 +85039,7 @@ paths: type: array items: *95 examples: - default: *539 + default: *541 '403': *27 '404': *6 x-github: @@ -84694,8 +85061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -84711,7 +85078,7 @@ paths: required: - properties examples: - default: *540 + default: *542 responses: '204': description: No Content when custom property values are successfully created @@ -84749,8 +85116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *309 - - *310 + - *311 + - *312 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -84810,9 +85177,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *541 + default: *543 headers: Link: *52 '304': *35 @@ -84844,8 +85211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -84912,7 +85279,7 @@ paths: description: Response content: application/json: - schema: &545 + schema: &547 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85041,7 +85408,7 @@ paths: milestone: anyOf: - type: 'null' - - *242 + - *244 active_lock_reason: type: - string @@ -85096,7 +85463,7 @@ paths: type: - array - 'null' - items: *221 + items: *223 head: type: object properties: @@ -85134,14 +85501,14 @@ paths: _links: type: object properties: - comments: *243 - commits: *243 - statuses: *243 - html: *243 - issue: *243 - review_comments: *243 - review_comment: *243 - self: *243 + comments: *245 + commits: *245 + statuses: *245 + html: *245 + issue: *245 + review_comments: *245 + review_comment: *245 + self: *245 required: - comments - commits @@ -85152,7 +85519,7 @@ paths: - review_comment - self author_association: *65 - auto_merge: *542 + auto_merge: *544 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -85254,7 +85621,7 @@ paths: - merged_by - review_comments examples: - default: &546 + default: &548 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -85781,8 +86148,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: sort in: query required: false @@ -85811,9 +86178,9 @@ paths: application/json: schema: type: array - items: *543 + items: *545 examples: - default: &548 + default: &550 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85890,17 +86257,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '200': description: Response content: application/json: - schema: *543 + schema: *545 examples: - default: &544 + default: &546 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85975,8 +86342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -85999,9 +86366,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *545 examples: - default: *544 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86017,8 +86384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *309 - - *310 + - *311 + - *312 - *77 responses: '204': @@ -86040,8 +86407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -86068,9 +86435,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 '404': *6 @@ -86091,8 +86458,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *309 - - *310 + - *311 + - *312 - *77 requestBody: required: true @@ -86125,16 +86492,16 @@ paths: description: Reaction exists content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Reaction created content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '422': *15 x-github: githubCloudOnly: false @@ -86156,10 +86523,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *309 - - *310 + - *311 + - *312 - *77 - - *305 + - *307 responses: '204': description: Response @@ -86202,9 +86569,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *309 - - *310 - - &547 + - *311 + - *312 + - &549 name: pull_number description: The number that identifies the pull request. in: path @@ -86217,9 +86584,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *545 + schema: *547 examples: - default: *546 + default: *548 '304': *35 '404': *6 '406': @@ -86254,9 +86621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: false content: @@ -86298,9 +86665,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *547 examples: - default: *546 + default: *548 '422': *15 '403': *27 x-github: @@ -86322,9 +86689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: true content: @@ -86385,17 +86752,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '401': *23 '403': *27 '404': *6 @@ -86425,9 +86792,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 - *87 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -86448,9 +86815,9 @@ paths: application/json: schema: type: array - items: *543 + items: *545 examples: - default: *548 + default: *550 headers: Link: *52 x-github: @@ -86483,9 +86850,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: true content: @@ -86591,7 +86958,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *545 examples: example-for-a-multi-line-comment: value: @@ -86679,9 +87046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 - *77 requestBody: required: true @@ -86704,7 +87071,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *545 examples: default: value: @@ -86790,9 +87157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 - *17 - *19 responses: @@ -86802,9 +87169,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *549 + default: *551 headers: Link: *52 x-github: @@ -86834,9 +87201,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 - *17 - *19 responses: @@ -86846,7 +87213,7 @@ paths: application/json: schema: type: array - items: *448 + items: *450 examples: default: value: @@ -86884,9 +87251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 responses: '204': description: Response if pull request has been merged @@ -86909,9 +87276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: false content: @@ -87023,9 +87390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 responses: '200': description: Response @@ -87041,7 +87408,7 @@ paths: items: *4 teams: type: array - items: *170 + items: *172 required: - users - teams @@ -87100,9 +87467,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: false content: @@ -87139,7 +87506,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: default: value: @@ -87675,9 +88042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: true content: @@ -87711,7 +88078,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: default: value: @@ -88216,9 +88583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 - *17 - *19 responses: @@ -88228,7 +88595,7 @@ paths: application/json: schema: type: array - items: &550 + items: &552 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88384,9 +88751,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: false content: @@ -88476,9 +88843,9 @@ paths: description: Response content: application/json: - schema: *550 + schema: *552 examples: - default: &552 + default: &554 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88541,10 +88908,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 - - &551 + - *311 + - *312 + - *549 + - &553 name: review_id description: The unique identifier of the review. in: path @@ -88556,9 +88923,9 @@ paths: description: Response content: application/json: - schema: *550 + schema: *552 examples: - default: &553 + default: &555 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88617,10 +88984,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 - - *551 + - *311 + - *312 + - *549 + - *553 requestBody: required: true content: @@ -88643,7 +89010,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *552 examples: default: value: @@ -88705,18 +89072,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 - - *551 + - *311 + - *312 + - *549 + - *553 responses: '200': description: Response content: application/json: - schema: *550 + schema: *552 examples: - default: *552 + default: *554 '422': *7 '404': *6 x-github: @@ -88743,10 +89110,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *309 - - *310 - - *547 - - *551 + - *311 + - *312 + - *549 + - *553 - *17 - *19 responses: @@ -88844,9 +89211,9 @@ paths: _links: type: object properties: - self: *243 - html: *243 - pull_request: *243 + self: *245 + html: *245 + pull_request: *245 required: - self - html @@ -89004,10 +89371,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 - - *551 + - *311 + - *312 + - *549 + - *553 requestBody: required: true content: @@ -89036,7 +89403,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *552 examples: default: value: @@ -89099,10 +89466,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *309 - - *310 - - *547 - - *551 + - *311 + - *312 + - *549 + - *553 requestBody: required: true content: @@ -89137,9 +89504,9 @@ paths: description: Response content: application/json: - schema: *550 + schema: *552 examples: - default: *553 + default: *555 '404': *6 '422': *7 '403': *27 @@ -89161,9 +89528,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *309 - - *310 - - *547 + - *311 + - *312 + - *549 requestBody: required: false content: @@ -89227,8 +89594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *309 - - *310 + - *311 + - *312 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89241,9 +89608,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: - default: &555 + default: &557 value: type: file encoding: base64 @@ -89285,8 +89652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *309 - - *310 + - *311 + - *312 - name: dir description: The alternate path to look for a README file in: path @@ -89306,9 +89673,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: - default: *555 + default: *557 '404': *6 '422': *15 x-github: @@ -89330,8 +89697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -89341,7 +89708,7 @@ paths: application/json: schema: type: array - items: &556 + items: &558 title: Release description: A release. type: object @@ -89423,7 +89790,7 @@ paths: author: *4 assets: type: array - items: &557 + items: &559 title: Release Asset description: Data related to a release. type: object @@ -89610,8 +89977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -89687,9 +90054,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: &560 + default: &562 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89794,9 +90161,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *309 - - *310 - - &558 + - *311 + - *312 + - &560 name: asset_id description: The unique identifier of the asset. in: path @@ -89808,9 +90175,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *559 examples: - default: &559 + default: &561 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 @@ -89845,7 +90212,7 @@ paths: type: User site_admin: false '404': *6 - '302': *450 + '302': *452 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89861,9 +90228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *309 - - *310 - - *558 + - *311 + - *312 + - *560 requestBody: required: false content: @@ -89892,9 +90259,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *559 examples: - default: *559 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89910,9 +90277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *309 - - *310 - - *558 + - *311 + - *312 + - *560 responses: '204': description: Response @@ -89936,8 +90303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -90023,16 +90390,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: *560 + default: *562 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90049,8 +90416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *309 - - *310 + - *311 + - *312 - name: tag description: tag parameter in: path @@ -90063,9 +90430,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: *560 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -90087,9 +90454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *309 - - *310 - - &561 + - *311 + - *312 + - &563 name: release_id description: The unique identifier of the release. in: path @@ -90103,9 +90470,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: *556 + schema: *558 examples: - default: *560 + default: *562 '401': description: Unauthorized x-github: @@ -90123,9 +90490,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 requestBody: required: false content: @@ -90189,9 +90556,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *558 examples: - default: *560 + default: *562 '404': description: Not Found if the discussion category name is invalid content: @@ -90212,9 +90579,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 responses: '204': description: Response @@ -90234,9 +90601,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 - *17 - *19 responses: @@ -90246,7 +90613,7 @@ paths: application/json: schema: type: array - items: *557 + items: *559 examples: default: value: @@ -90327,9 +90694,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 - name: name in: query required: true @@ -90355,7 +90722,7 @@ paths: description: Response for successful upload content: application/json: - schema: *557 + schema: *559 examples: response-for-successful-upload: value: @@ -90410,9 +90777,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 - 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. @@ -90436,9 +90803,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 '404': *6 @@ -90459,9 +90826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *309 - - *310 - - *561 + - *311 + - *312 + - *563 requestBody: required: true content: @@ -90491,16 +90858,16 @@ paths: description: Reaction exists content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '201': description: Reaction created content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '422': *15 x-github: githubCloudOnly: false @@ -90522,10 +90889,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *309 - - *310 - - *561 - - *305 + - *311 + - *312 + - *563 + - *307 responses: '204': description: Response @@ -90549,9 +90916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *309 - - *310 - - *377 + - *311 + - *312 + - *379 - *17 - *19 responses: @@ -90567,8 +90934,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *261 - - &562 + - *263 + - &564 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90587,69 +90954,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *262 - - *562 - - allOf: - - *263 - - *562 - allOf: - *264 - - *562 - - allOf: - - *563 - - *562 + - *564 - allOf: - *265 - - *562 + - *564 - allOf: - *266 - - *562 + - *564 + - allOf: + - *565 + - *564 - allOf: - *267 - - *562 + - *564 - allOf: - *268 - - *562 + - *564 - allOf: - *269 - - *562 + - *564 - allOf: - *270 - - *562 + - *564 - allOf: - *271 - - *562 + - *564 - allOf: - *272 - - *562 + - *564 - allOf: - *273 - - *562 + - *564 - allOf: - *274 - - *562 + - *564 - allOf: - *275 - - *562 + - *564 - allOf: - *276 - - *562 + - *564 - allOf: - *277 - - *562 + - *564 - allOf: - *278 - - *562 + - *564 - allOf: - *279 - - *562 + - *564 - allOf: - *280 - - *562 + - *564 + - allOf: + - *281 + - *564 - allOf: + - *282 + - *564 + - allOf: + - *566 - *564 - - *562 examples: default: value: @@ -90688,8 +91055,8 @@ paths: category: repos subcategory: rules parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 - name: includes_parents @@ -90700,7 +91067,7 @@ paths: schema: type: boolean default: true - - *565 + - *567 responses: '200': description: Response @@ -90708,7 +91075,7 @@ paths: application/json: schema: type: array - items: *281 + items: *283 examples: default: value: @@ -90755,8 +91122,8 @@ paths: category: repos subcategory: rules parameters: - - *309 - - *310 + - *311 + - *312 requestBody: description: Request body required: true @@ -90776,16 +91143,16 @@ paths: - tag - push default: branch - enforcement: *258 + enforcement: *260 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *259 - conditions: *256 + items: *261 + conditions: *258 rules: type: array description: An array of rules within the ruleset. - items: *566 + items: *568 required: - name - enforcement @@ -90816,9 +91183,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: &576 + default: &578 value: id: 42 name: super cool ruleset @@ -90865,12 +91232,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *309 - - *310 - - *567 - - *568 + - *311 + - *312 - *569 - *570 + - *571 + - *572 - *17 - *19 responses: @@ -90878,9 +91245,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *573 examples: - default: *572 + default: *574 '404': *6 '500': *96 x-github: @@ -90901,17 +91268,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *309 - - *310 - - *573 + - *311 + - *312 + - *575 responses: '200': description: Response content: application/json: - schema: *574 + schema: *576 examples: - default: *575 + default: *577 '404': *6 '500': *96 x-github: @@ -90939,8 +91306,8 @@ paths: category: repos subcategory: rules parameters: - - *309 - - *310 + - *311 + - *312 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90960,9 +91327,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: *576 + default: *578 '404': *6 '500': *96 put: @@ -90980,8 +91347,8 @@ paths: category: repos subcategory: rules parameters: - - *309 - - *310 + - *311 + - *312 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91006,16 +91373,16 @@ paths: - branch - tag - push - enforcement: *258 + enforcement: *260 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *259 - conditions: *256 + items: *261 + conditions: *258 rules: description: An array of rules within the ruleset. type: array - items: *566 + items: *568 examples: default: value: @@ -91043,9 +91410,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *283 examples: - default: *576 + default: *578 '404': *6 '500': *96 delete: @@ -91063,8 +91430,8 @@ paths: category: repos subcategory: rules parameters: - - *309 - - *310 + - *311 + - *312 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91087,8 +91454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 - name: ruleset_id @@ -91104,9 +91471,9 @@ paths: application/json: schema: type: array - items: *284 + items: *286 examples: - default: *577 + default: *579 '404': *6 '500': *96 x-github: @@ -91125,8 +91492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *309 - - *310 + - *311 + - *312 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91144,7 +91511,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *580 examples: default: value: @@ -91199,21 +91566,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *309 - - *310 - - *579 - - *580 + - *311 + - *312 - *581 - *582 + - *583 + - *584 - *46 - *19 - *17 - - *583 - - *584 - *585 - *586 - *587 - *588 + - *589 + - *590 responses: '200': description: Response @@ -91221,24 +91588,24 @@ paths: application/json: schema: type: array - items: &592 + items: &594 type: object properties: - number: *152 - created_at: *153 + number: *154 + created_at: *155 updated_at: anyOf: - type: 'null' - - *154 - url: *155 - html_url: *156 + - *156 + url: *157 + html_url: *158 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *589 - resolution: *590 + state: *591 + resolution: *592 resolved_at: type: - string @@ -91332,7 +91699,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *591 + - *593 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -91477,16 +91844,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *309 - - *310 - - *408 - - *588 + - *311 + - *312 + - *410 + - *590 responses: '200': description: Response content: application/json: - schema: *592 + schema: *594 examples: default: value: @@ -91538,9 +91905,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 requestBody: required: true content: @@ -91548,8 +91915,8 @@ paths: schema: type: object properties: - state: *589 - resolution: *590 + state: *591 + resolution: *592 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -91569,7 +91936,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *594 examples: default: value: @@ -91644,9 +92011,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *309 - - *310 - - *408 + - *311 + - *312 + - *410 - *19 - *17 responses: @@ -91657,7 +92024,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &744 + items: &746 type: object properties: type: @@ -91684,8 +92051,6 @@ paths: - commit details: oneOf: - - *593 - - *594 - *595 - *596 - *597 @@ -91697,6 +92062,8 @@ paths: - *603 - *604 - *605 + - *606 + - *607 examples: default: value: @@ -91782,8 +92149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -91791,14 +92158,14 @@ paths: schema: type: object properties: - reason: &607 + reason: &609 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *606 + placeholder_id: *608 required: - reason - placeholder_id @@ -91815,7 +92182,7 @@ paths: schema: type: object properties: - reason: *607 + reason: *609 expire_at: type: - string @@ -91862,8 +92229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -91878,7 +92245,7 @@ paths: properties: incremental_scans: type: array - items: &608 + items: &610 description: Information on a single scan performed by secret scanning on the repository type: object @@ -91906,15 +92273,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *608 + items: *610 backfill_scans: type: array - items: *608 + items: *610 custom_pattern_backfill_scans: type: array items: allOf: - - *608 + - *610 - type: object properties: pattern_name: @@ -91984,8 +92351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *309 - - *310 + - *311 + - *312 - *46 - name: sort description: The property to sort the results by. @@ -92029,9 +92396,9 @@ paths: application/json: schema: type: array - items: *609 + items: *611 examples: - default: *610 + default: *612 '400': *14 '404': *6 x-github: @@ -92054,8 +92421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -92135,7 +92502,7 @@ paths: login: type: string description: The username of the user credited. - type: *287 + type: *289 required: - login - type @@ -92225,9 +92592,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *611 examples: - default: &612 + default: &614 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92460,8 +92827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -92574,7 +92941,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *611 examples: default: value: @@ -92721,17 +93088,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *309 - - *310 - - *611 + - *311 + - *312 + - *613 responses: '200': description: Response content: application/json: - schema: *609 + schema: *611 examples: - default: *612 + default: *614 '403': *27 '404': *6 x-github: @@ -92755,9 +93122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *309 - - *310 - - *611 + - *311 + - *312 + - *613 requestBody: required: true content: @@ -92837,7 +93204,7 @@ paths: login: type: string description: The username of the user credited. - type: *287 + type: *289 required: - login - type @@ -92928,10 +93295,10 @@ paths: description: Response content: application/json: - schema: *609 + schema: *611 examples: - default: *612 - add_credit: *612 + default: *614 + add_credit: *614 '403': *27 '404': *6 '422': @@ -92969,9 +93336,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *309 - - *310 - - *611 + - *311 + - *312 + - *613 responses: '202': *37 '400': *14 @@ -92998,17 +93365,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *309 - - *310 - - *611 + - *311 + - *312 + - *613 responses: '202': description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *317 + default: *319 '400': *14 '422': *15 '403': *27 @@ -93034,8 +93401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -93131,8 +93498,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -93141,7 +93508,7 @@ paths: application/json: schema: type: array - items: &613 + items: &615 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93154,7 +93521,7 @@ paths: - 1124 - -435 '202': *37 - '204': *166 + '204': *168 '422': description: Repository contains more than 10,000 commits x-github: @@ -93174,8 +93541,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -93226,7 +93593,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *166 + '204': *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93253,8 +93620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -93326,7 +93693,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *166 + '204': *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93348,8 +93715,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -93503,8 +93870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -93514,7 +93881,7 @@ paths: application/json: schema: type: array - items: *613 + items: *615 examples: default: value: @@ -93527,7 +93894,7 @@ paths: - - 0 - 2 - 21 - '204': *166 + '204': *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93547,8 +93914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *309 - - *310 + - *311 + - *312 - name: sha in: path required: true @@ -93604,7 +93971,7 @@ paths: description: Response content: application/json: - schema: *614 + schema: *616 examples: default: value: @@ -93658,8 +94025,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -93691,14 +94058,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &615 + schema: &617 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93771,8 +94138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: false content: @@ -93798,7 +94165,7 @@ paths: description: Response content: application/json: - schema: *615 + schema: *617 examples: default: value: @@ -93825,8 +94192,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -93846,8 +94213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -93929,8 +94296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -93938,7 +94305,7 @@ paths: application/json: schema: type: array - items: &616 + items: &618 title: Tag protection description: Tag protection type: object @@ -93995,8 +94362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -94019,7 +94386,7 @@ paths: description: Response content: application/json: - schema: *616 + schema: *618 examples: default: value: @@ -94050,8 +94417,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -94088,8 +94455,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *309 - - *310 + - *311 + - *312 - name: ref in: path required: true @@ -94125,8 +94492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *309 - - *310 + - *311 + - *312 - *17 - *19 responses: @@ -94136,9 +94503,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - default: *222 + default: *224 headers: Link: *52 '404': *6 @@ -94158,8 +94525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *309 - - *310 + - *311 + - *312 - *19 - *17 responses: @@ -94167,7 +94534,7 @@ paths: description: Response content: application/json: - schema: &617 + schema: &619 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94179,7 +94546,7 @@ paths: required: - names examples: - default: &618 + default: &620 value: names: - octocat @@ -94202,8 +94569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -94234,9 +94601,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *619 examples: - default: *618 + default: *620 '404': *6 '422': *7 x-github: @@ -94257,9 +94624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *309 - - *310 - - &619 + - *311 + - *312 + - &621 name: per description: The time frame to display results for. in: query @@ -94290,7 +94657,7 @@ paths: - 128 clones: type: array - items: &620 + items: &622 title: Traffic type: object properties: @@ -94377,8 +94744,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -94472,8 +94839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *309 - - *310 + - *311 + - *312 responses: '200': description: Response @@ -94536,9 +94903,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *309 - - *310 - - *619 + - *311 + - *312 + - *621 responses: '200': description: Response @@ -94559,7 +94926,7 @@ paths: - 3782 views: type: array - items: *620 + items: *622 required: - uniques - count @@ -94636,8 +95003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *309 - - *310 + - *311 + - *312 requestBody: required: true content: @@ -94911,8 +95278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -94935,8 +95302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -94958,8 +95325,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -94985,8 +95352,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *309 - - *310 + - *311 + - *312 - name: ref in: path required: true @@ -95078,9 +95445,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *317 + default: *319 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -95329,7 +95696,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &621 + text_matches: &623 title: Search Result Text Matches type: array items: @@ -95492,7 +95859,7 @@ paths: enum: - author-date - committer-date - - &622 + - &624 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 @@ -95561,7 +95928,7 @@ paths: committer: anyOf: - type: 'null' - - *375 + - *377 comment_count: type: integer message: @@ -95580,7 +95947,7 @@ paths: url: type: string format: uri - verification: *486 + verification: *488 required: - author - committer @@ -95595,7 +95962,7 @@ paths: committer: anyOf: - type: 'null' - - *375 + - *377 parents: type: array items: @@ -95612,7 +95979,7 @@ paths: type: number node_id: type: string - text_matches: *621 + text_matches: *623 required: - sha - node_id @@ -95804,7 +96171,7 @@ paths: - interactions - created - updated - - *622 + - *624 - *17 - *19 - name: advanced_search @@ -95901,11 +96268,11 @@ paths: type: - string - 'null' - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: type: string state_reason: @@ -95919,7 +96286,7 @@ paths: milestone: anyOf: - type: 'null' - - *242 + - *244 comments: type: integer created_at: @@ -95933,7 +96300,7 @@ paths: - string - 'null' format: date-time - text_matches: *621 + text_matches: *623 pull_request: type: object properties: @@ -95982,7 +96349,7 @@ paths: timeline_url: type: string format: uri - type: *206 + type: *208 performed_via_github_app: anyOf: - type: 'null' @@ -96156,7 +96523,7 @@ paths: enum: - created - updated - - *622 + - *624 - *17 - *19 responses: @@ -96201,7 +96568,7 @@ paths: - 'null' score: type: number - text_matches: *621 + text_matches: *623 required: - id - node_id @@ -96286,7 +96653,7 @@ paths: - forks - help-wanted-issues - updated - - *622 + - *624 - *17 - *19 responses: @@ -96523,7 +96890,7 @@ paths: - admin - pull - push - text_matches: *621 + text_matches: *623 temp_clone_token: type: string allow_merge_commit: @@ -96831,7 +97198,7 @@ paths: - string - 'null' format: uri - text_matches: *621 + text_matches: *623 related: type: - array @@ -97024,7 +97391,7 @@ paths: - followers - repositories - joined - - *622 + - *624 - *17 - *19 responses: @@ -97134,7 +97501,7 @@ paths: type: - boolean - 'null' - text_matches: *621 + text_matches: *623 blog: type: - string @@ -97216,7 +97583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &626 + - &628 name: team_id description: The unique identifier of the team. in: path @@ -97228,9 +97595,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '404': *6 x-github: githubCloudOnly: false @@ -97257,7 +97624,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *626 + - *628 requestBody: required: true content: @@ -97321,16 +97688,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '201': description: Response content: application/json: - schema: *294 + schema: *296 examples: - default: *295 + default: *297 '404': *6 '422': *15 '403': *27 @@ -97358,7 +97725,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *626 + - *628 responses: '204': description: Response @@ -97389,7 +97756,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *626 + - *628 - *46 - *17 - *19 @@ -97400,9 +97767,9 @@ paths: application/json: schema: type: array - items: *296 + items: *298 examples: - default: *627 + default: *629 headers: Link: *52 x-github: @@ -97431,7 +97798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *626 + - *628 requestBody: required: true content: @@ -97465,9 +97832,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *297 + default: *299 x-github: triggersNotification: true githubCloudOnly: false @@ -97494,16 +97861,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *626 - - *298 + - *628 + - *300 responses: '200': description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *297 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97528,8 +97895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *626 - - *298 + - *628 + - *300 requestBody: required: false content: @@ -97552,9 +97919,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *628 + default: *630 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97579,8 +97946,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *626 - - *298 + - *628 + - *300 responses: '204': description: Response @@ -97609,8 +97976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *626 - - *298 + - *628 + - *300 - *46 - *17 - *19 @@ -97621,9 +97988,9 @@ paths: application/json: schema: type: array - items: *299 + items: *301 examples: - default: *629 + default: *631 headers: Link: *52 x-github: @@ -97652,8 +98019,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *626 - - *298 + - *628 + - *300 requestBody: required: true content: @@ -97675,9 +98042,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *300 + default: *302 x-github: triggersNotification: true githubCloudOnly: false @@ -97704,17 +98071,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *626 - - *298 - - *301 + - *628 + - *300 + - *303 responses: '200': description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *300 + default: *302 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97739,9 +98106,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *626 - - *298 - - *301 + - *628 + - *300 + - *303 requestBody: required: true content: @@ -97763,9 +98130,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *301 examples: - default: *630 + default: *632 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97790,9 +98157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *626 - - *298 - - *301 + - *628 + - *300 + - *303 responses: '204': description: Response @@ -97821,9 +98188,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *626 - - *298 - - *301 + - *628 + - *300 + - *303 - 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 team discussion comment. @@ -97849,9 +98216,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 x-github: @@ -97880,9 +98247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *626 - - *298 - - *301 + - *628 + - *300 + - *303 requestBody: required: true content: @@ -97914,9 +98281,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97942,8 +98309,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *626 - - *298 + - *628 + - *300 - 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 team discussion. @@ -97969,9 +98336,9 @@ paths: application/json: schema: type: array - items: *302 + items: *304 examples: - default: *304 + default: *306 headers: Link: *52 x-github: @@ -98000,8 +98367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *626 - - *298 + - *628 + - *300 requestBody: required: true content: @@ -98033,9 +98400,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98059,7 +98426,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *626 + - *628 - *17 - *19 responses: @@ -98069,9 +98436,9 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 headers: Link: *52 x-github: @@ -98097,7 +98464,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *626 + - *628 - name: role description: Filters members returned by their role in the team. in: query @@ -98148,7 +98515,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *626 + - *628 - *57 responses: '204': @@ -98185,7 +98552,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *626 + - *628 - *57 responses: '204': @@ -98225,7 +98592,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *626 + - *628 - *57 responses: '204': @@ -98262,16 +98629,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *626 + - *628 - *57 responses: '200': description: Response content: application/json: - schema: *306 + schema: *308 examples: - response-if-user-is-a-team-maintainer: *631 + response-if-user-is-a-team-maintainer: *633 '404': *6 x-github: githubCloudOnly: false @@ -98304,7 +98671,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *626 + - *628 - *57 requestBody: required: false @@ -98330,9 +98697,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *308 examples: - response-if-users-membership-with-team-is-now-pending: *632 + response-if-users-membership-with-team-is-now-pending: *634 '403': description: Forbidden if team synchronization is set up '422': @@ -98366,7 +98733,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *626 + - *628 - *57 responses: '204': @@ -98395,7 +98762,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *626 + - *628 - *17 - *19 responses: @@ -98405,9 +98772,9 @@ paths: application/json: schema: type: array - items: *307 + items: *309 examples: - default: *633 + default: *635 headers: Link: *52 '404': *6 @@ -98433,16 +98800,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *626 - - *308 + - *628 + - *310 responses: '200': description: Response content: application/json: - schema: *307 + schema: *309 examples: - default: *634 + default: *636 '404': description: Not Found if project is not managed by this team x-github: @@ -98466,8 +98833,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *626 - - *308 + - *628 + - *310 requestBody: required: false content: @@ -98534,8 +98901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *626 - - *308 + - *628 + - *310 responses: '204': description: Response @@ -98562,7 +98929,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *626 + - *628 - *17 - *19 responses: @@ -98574,7 +98941,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 '404': *6 @@ -98604,15 +98971,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *626 - - *309 - - *310 + - *628 + - *311 + - *312 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *635 + schema: *637 examples: alternative-response-with-extra-repository-information: value: @@ -98763,9 +99130,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *626 - - *309 - - *310 + - *628 + - *311 + - *312 requestBody: required: false content: @@ -98815,9 +99182,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *626 - - *309 - - *310 + - *628 + - *311 + - *312 responses: '204': description: Response @@ -98842,7 +99209,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *626 + - *628 - *17 - *19 responses: @@ -98852,9 +99219,9 @@ paths: application/json: schema: type: array - items: *170 + items: *172 examples: - response-if-child-teams-exist: *636 + response-if-child-teams-exist: *638 headers: Link: *52 '404': *6 @@ -98887,7 +99254,7 @@ paths: application/json: schema: oneOf: - - &638 + - &640 title: Private User description: Private User type: object @@ -99137,7 +99504,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *637 + - *639 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -99297,7 +99664,7 @@ paths: description: Response content: application/json: - schema: *638 + schema: *640 examples: default: value: @@ -99500,9 +99867,9 @@ paths: type: integer codespaces: type: array - items: *211 + items: *213 examples: - default: *212 + default: *214 '304': *35 '500': *96 '401': *23 @@ -99641,17 +100008,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '401': *23 '403': *27 '404': *6 @@ -99695,7 +100062,7 @@ paths: type: integer secrets: type: array - items: &639 + items: &641 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -99737,7 +100104,7 @@ paths: - visibility - selected_repositories_url examples: - default: *430 + default: *432 headers: Link: *52 x-github: @@ -99815,7 +100182,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: default: value: @@ -99961,7 +100328,7 @@ paths: type: array items: *136 examples: - default: *640 + default: *642 '401': *23 '403': *27 '404': *6 @@ -100105,15 +100472,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '304': *35 '500': *96 '401': *23 @@ -100139,7 +100506,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 requestBody: required: false content: @@ -100169,9 +100536,9 @@ paths: description: Response content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '401': *23 '403': *27 '404': *6 @@ -100193,7 +100560,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 responses: '202': *37 '304': *35 @@ -100222,13 +100589,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 responses: '202': description: Response content: application/json: - schema: &641 + schema: &643 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -100281,7 +100648,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &642 + default: &644 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -100313,7 +100680,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *213 + - *215 - name: export_id in: path required: true @@ -100326,9 +100693,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *643 examples: - default: *642 + default: *644 '404': *6 x-github: githubCloudOnly: false @@ -100349,7 +100716,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *213 + - *215 responses: '200': description: Response @@ -100365,9 +100732,9 @@ paths: type: integer machines: type: array - items: *429 + items: *431 examples: - default: *643 + default: *645 '304': *35 '500': *96 '401': *23 @@ -100396,7 +100763,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *213 + - *215 requestBody: required: true content: @@ -100452,11 +100819,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *315 + repository: *317 machine: anyOf: - type: 'null' - - *429 + - *431 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -101253,15 +101620,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '304': *35 '500': *96 '400': *14 @@ -101293,15 +101660,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *213 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *213 examples: - default: *428 + default: *430 '500': *96 '401': *23 '403': *27 @@ -101331,9 +101698,9 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: &654 + default: &656 value: - id: 197 name: hello_docker @@ -101434,7 +101801,7 @@ paths: application/json: schema: type: array - items: &644 + items: &646 title: Email description: Email type: object @@ -101504,9 +101871,9 @@ paths: application/json: schema: type: array - items: *644 + items: *646 examples: - default: &656 + default: &658 value: - email: octocat@github.com verified: true @@ -101583,7 +101950,7 @@ paths: application/json: schema: type: array - items: *644 + items: *646 examples: default: value: @@ -101841,7 +102208,7 @@ paths: application/json: schema: type: array - items: &645 + items: &647 title: GPG Key description: A unique encryption key type: object @@ -101986,7 +102353,7 @@ paths: - subkeys - revoked examples: - default: &670 + default: &672 value: - id: 3 name: Octocat's GPG Key @@ -102071,9 +102438,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *647 examples: - default: &646 + default: &648 value: id: 3 name: Octocat's GPG Key @@ -102130,7 +102497,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &647 + - &649 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -102142,9 +102509,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *647 examples: - default: *646 + default: *648 '404': *6 '304': *35 '403': *27 @@ -102167,7 +102534,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *647 + - *649 responses: '204': description: Response @@ -102443,12 +102810,12 @@ paths: application/json: schema: anyOf: - - *201 + - *203 - type: object properties: {} additionalProperties: false examples: - default: *202 + default: *204 '204': description: Response when there are no restrictions x-github: @@ -102472,7 +102839,7 @@ paths: required: true content: application/json: - schema: *497 + schema: *499 examples: default: value: @@ -102483,7 +102850,7 @@ paths: description: Response content: application/json: - schema: *201 + schema: *203 examples: default: value: @@ -102564,7 +102931,7 @@ paths: - closed - all default: open - - *209 + - *211 - name: sort description: What to sort results by. in: query @@ -102589,7 +102956,7 @@ paths: type: array items: *78 examples: - default: *210 + default: *212 headers: Link: *52 '404': *6 @@ -102622,7 +102989,7 @@ paths: application/json: schema: type: array - items: &648 + items: &650 title: Key description: Key type: object @@ -102725,9 +103092,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *650 examples: - default: &649 + default: &651 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -102760,15 +103127,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *525 + - *527 responses: '200': description: Response content: application/json: - schema: *648 + schema: *650 examples: - default: *649 + default: *651 '404': *6 '304': *35 '403': *27 @@ -102791,7 +103158,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *525 + - *527 responses: '204': description: Response @@ -102824,7 +103191,7 @@ paths: application/json: schema: type: array - items: &650 + items: &652 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -102903,7 +103270,7 @@ paths: - account - plan examples: - default: &651 + default: &653 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -102965,9 +103332,9 @@ paths: application/json: schema: type: array - items: *650 + items: *652 examples: - default: *651 + default: *653 headers: Link: *52 '304': *35 @@ -103007,7 +103374,7 @@ paths: application/json: schema: type: array - items: *215 + items: *217 examples: default: value: @@ -103115,7 +103482,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *217 examples: default: value: @@ -103198,7 +103565,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *217 examples: default: value: @@ -103266,7 +103633,7 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: default: value: @@ -103528,7 +103895,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: default: value: @@ -103708,7 +104075,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *218 + - *220 - name: exclude in: query required: false @@ -103721,7 +104088,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: default: value: @@ -103915,7 +104282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *218 + - *220 responses: '302': description: Response @@ -103941,7 +104308,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *218 + - *220 responses: '204': description: Response @@ -103970,8 +104337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *218 - - *652 + - *220 + - *654 responses: '204': description: Response @@ -103995,7 +104362,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *218 + - *220 - *17 - *19 responses: @@ -104007,7 +104374,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 '404': *6 @@ -104086,7 +104453,7 @@ paths: - docker - nuget - container - - *653 + - *655 - *19 - *17 responses: @@ -104096,10 +104463,10 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *654 - '400': *655 + default: *656 + '400': *657 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104119,16 +104486,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 + - *228 responses: '200': description: Response content: application/json: - schema: *223 + schema: *225 examples: - default: &671 + default: &673 value: id: 40201 name: octo-name @@ -104241,8 +104608,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 + - *228 responses: '204': description: Response @@ -104272,8 +104639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 + - *228 - name: token description: package token schema: @@ -104305,8 +104672,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *225 - - *226 + - *227 + - *228 - *19 - *17 - name: state @@ -104326,7 +104693,7 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: default: value: @@ -104375,15 +104742,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 - *228 + - *230 responses: '200': description: Response content: application/json: - schema: *227 + schema: *229 examples: default: value: @@ -104419,9 +104786,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 - *228 + - *230 responses: '204': description: Response @@ -104451,9 +104818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *225 - - *226 + - *227 - *228 + - *230 responses: '204': description: Response @@ -104490,9 +104857,9 @@ paths: application/json: schema: type: array - items: *644 + items: *646 examples: - default: *656 + default: *658 headers: Link: *52 '304': *35 @@ -104605,7 +104972,7 @@ paths: type: array items: *64 examples: - default: &663 + default: &665 summary: Default response value: - id: 1296269 @@ -104923,9 +105290,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *317 + default: *319 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -104963,9 +105330,9 @@ paths: application/json: schema: type: array - items: *499 + items: *501 examples: - default: *657 + default: *659 headers: Link: *52 '304': *35 @@ -104988,7 +105355,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *205 + - *207 responses: '204': description: Response @@ -105011,7 +105378,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *205 + - *207 responses: '204': description: Response @@ -105044,7 +105411,7 @@ paths: application/json: schema: type: array - items: &658 + items: &660 title: Social account description: Social media account type: object @@ -105061,7 +105428,7 @@ paths: - provider - url examples: - default: &659 + default: &661 value: - provider: twitter url: https://twitter.com/github @@ -105124,9 +105491,9 @@ paths: application/json: schema: type: array - items: *658 + items: *660 examples: - default: *659 + default: *661 '422': *15 '304': *35 '404': *6 @@ -105214,7 +105581,7 @@ paths: application/json: schema: type: array - items: &660 + items: &662 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -105234,16 +105601,14 @@ paths: - title - created_at examples: - default: &685 + default: &687 value: - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 - id: 2 - url: https://api.github.com/user/keys/2 + - id: 2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 - id: 3 - url: https://api.github.com/user/keys/3 + - id: 3 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: @@ -105301,13 +105666,12 @@ paths: description: Response content: application/json: - schema: *660 + schema: *662 examples: - default: &661 + default: &663 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 - url: https://api.github.com/user/keys/2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' '422': *15 @@ -105334,7 +105698,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: - - &662 + - &664 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -105346,9 +105710,9 @@ paths: description: Response content: application/json: - schema: *660 + schema: *662 examples: - default: *661 + default: *663 '404': *6 '304': *35 '403': *27 @@ -105371,7 +105735,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: - - *662 + - *664 responses: '204': description: Response @@ -105400,7 +105764,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &686 + - &688 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 @@ -105425,11 +105789,11 @@ paths: type: array items: *64 examples: - default-response: *663 + default-response: *665 application/vnd.github.v3.star+json: schema: type: array - items: &687 + items: &689 title: Starred Repository description: Starred Repository type: object @@ -105585,8 +105949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response if this repository is starred by you @@ -105614,8 +105978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -105639,8 +106003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *309 - - *310 + - *311 + - *312 responses: '204': description: Response @@ -105675,7 +106039,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 '304': *35 @@ -105712,7 +106076,7 @@ paths: application/json: schema: type: array - items: *294 + items: *296 examples: default: value: @@ -105798,10 +106162,10 @@ paths: application/json: schema: oneOf: - - *638 - - *637 + - *640 + - *639 examples: - default-response: &665 + default-response: &667 summary: Default response value: login: octocat @@ -105836,7 +106200,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &666 + response-with-git-hub-plan-information: &668 summary: Response with GitHub plan information value: login: octocat @@ -105899,7 +106263,7 @@ paths: required: true schema: type: string - - *241 + - *243 requestBody: required: true description: Details of the draft item to create in the project. @@ -105933,9 +106297,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *248 examples: - draft_issue: *247 + draft_issue: *249 '304': *35 '403': *27 '401': *23 @@ -105958,7 +106322,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *664 + - *666 - *17 responses: '200': @@ -106007,11 +106371,11 @@ paths: application/json: schema: oneOf: - - *638 - - *637 + - *640 + - *639 examples: - default-response: *665 - response-with-git-hub-plan-information: *666 + default-response: *667 + response-with-git-hub-plan-information: *668 '404': *6 x-github: githubCloudOnly: false @@ -106061,8 +106425,8 @@ paths: required: - subject_digests examples: - default: *667 - withPredicateType: *668 + default: *669 + withPredicateType: *670 responses: '200': description: Response @@ -106116,7 +106480,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *669 + default: *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106321,7 +106685,7 @@ paths: initiator: type: string examples: - default: *371 + default: *373 '201': description: Response content: @@ -106360,9 +106724,9 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *654 + default: *656 '403': *27 '401': *23 x-github: @@ -106746,9 +107110,9 @@ paths: application/json: schema: type: array - items: *645 + items: *647 examples: - default: *670 + default: *672 headers: Link: *52 x-github: @@ -106852,7 +107216,7 @@ paths: application/json: schema: *20 examples: - default: *496 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106977,7 +107341,7 @@ paths: - docker - nuget - container - - *653 + - *655 - *57 - *19 - *17 @@ -106988,12 +107352,12 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *654 + default: *656 '403': *27 '401': *23 - '400': *655 + '400': *657 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107013,17 +107377,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *225 - - *226 + - *227 + - *228 - *57 responses: '200': description: Response content: application/json: - schema: *223 + schema: *225 examples: - default: *671 + default: *673 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107044,8 +107408,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *225 - - *226 + - *227 + - *228 - *57 responses: '204': @@ -107078,8 +107442,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *225 - - *226 + - *227 + - *228 - *57 - name: token description: package token @@ -107112,8 +107476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *225 - - *226 + - *227 + - *228 - *57 responses: '200': @@ -107122,7 +107486,7 @@ paths: application/json: schema: type: array - items: *227 + items: *229 examples: default: value: @@ -107180,16 +107544,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *225 - - *226 + - *227 - *228 + - *230 - *57 responses: '200': description: Response content: application/json: - schema: *227 + schema: *229 examples: default: value: @@ -107224,10 +107588,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *225 - - *226 - - *57 + - *227 - *228 + - *57 + - *230 responses: '204': description: Response @@ -107259,10 +107623,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *225 - - *226 - - *57 + - *227 - *228 + - *57 + - *230 responses: '204': description: Response @@ -107303,9 +107667,9 @@ paths: application/json: schema: type: array - items: *239 + items: *241 examples: - default: *240 + default: *242 headers: Link: *52 '304': *35 @@ -107327,16 +107691,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *241 + - *243 - *57 responses: '200': description: Response content: application/json: - schema: *239 + schema: *241 examples: - default: *240 + default: *242 headers: Link: *52 '304': *35 @@ -107358,7 +107722,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *241 + - *243 - *57 - *17 - *38 @@ -107370,9 +107734,9 @@ paths: application/json: schema: type: array - items: *244 + items: *246 examples: - default: *672 + default: *674 headers: Link: *52 '304': *35 @@ -107394,17 +107758,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *241 - - *673 + - *243 + - *675 - *57 responses: '200': description: Response content: application/json: - schema: *244 + schema: *246 examples: - default: *674 + default: *676 headers: Link: *52 '304': *35 @@ -107427,7 +107791,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *241 + - *243 - *57 - *38 - *39 @@ -107460,9 +107824,9 @@ paths: application/json: schema: type: array - items: *248 + items: *250 examples: - default: *249 + default: *251 headers: Link: *52 '304': *35 @@ -107484,7 +107848,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *57 - - *241 + - *243 requestBody: required: true description: Details of the item to add to the project. @@ -107521,10 +107885,10 @@ paths: description: Response content: application/json: - schema: *246 + schema: *248 examples: - issue: *247 - pull_request: *247 + issue: *249 + pull_request: *249 '304': *35 '403': *27 '401': *23 @@ -107544,9 +107908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *241 + - *243 - *57 - - *250 + - *252 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -107566,9 +107930,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - default: *249 + default: *251 headers: Link: *52 '304': *35 @@ -107589,9 +107953,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *241 + - *243 - *57 - - *250 + - *252 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -107664,13 +108028,13 @@ paths: description: Response content: application/json: - schema: *248 + schema: *250 examples: - text_field: *249 - number_field: *249 - date_field: *249 - single_select_field: *249 - iteration_field: *249 + text_field: *251 + number_field: *251 + date_field: *251 + single_select_field: *251 + iteration_field: *251 '401': *23 '403': *27 '404': *6 @@ -107690,9 +108054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *241 + - *243 - *57 - - *250 + - *252 responses: '204': description: Response @@ -107912,7 +108276,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -107942,9 +108306,9 @@ paths: description: Response content: application/json: - schema: *675 + schema: *677 examples: - default: *676 + default: *678 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107972,9 +108336,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *679 examples: - default: *678 + default: *680 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107998,7 +108362,7 @@ paths: - *99 - *101 - *100 - - *679 + - *681 - *102 responses: '200': @@ -108135,9 +108499,9 @@ paths: description: Response content: application/json: - schema: *680 + schema: *682 examples: - default: *681 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108159,7 +108523,7 @@ paths: parameters: - *57 - *99 - - *682 + - *684 - *100 responses: '200': @@ -108258,9 +108622,9 @@ paths: - *99 - *101 - *100 - - *683 + - *685 - *102 - - *684 + - *686 responses: '200': description: Response when getting a billing usage summary @@ -108394,9 +108758,9 @@ paths: application/json: schema: type: array - items: *658 + items: *660 examples: - default: *659 + default: *661 headers: Link: *52 x-github: @@ -108426,9 +108790,9 @@ paths: application/json: schema: type: array - items: *660 + items: *662 examples: - default: *685 + default: *687 headers: Link: *52 x-github: @@ -108453,7 +108817,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *57 - - *686 + - *688 - *46 - *17 - *19 @@ -108465,11 +108829,11 @@ paths: schema: anyOf: - type: array - items: *687 + items: *689 - type: array items: *64 examples: - default-response: *663 + default-response: *665 headers: Link: *52 x-github: @@ -108500,7 +108864,7 @@ paths: type: array items: *136 examples: - default: *229 + default: *231 headers: Link: *52 x-github: @@ -108629,7 +108993,7 @@ webhooks: type: string enum: - disabled - enterprise: &688 + enterprise: &690 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -108698,7 +109062,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &689 + installation: &691 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -108719,7 +109083,7 @@ webhooks: required: - id - node_id - organization: &690 + organization: &692 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -108792,7 +109156,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &691 + repository: &693 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -109705,10 +110069,10 @@ webhooks: type: string enum: - enabled - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -109784,11 +110148,11 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - rule: &692 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + rule: &694 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) @@ -110011,11 +110375,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - rule: *692 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + rule: *694 sender: *4 required: - action @@ -110203,11 +110567,11 @@ webhooks: - everyone required: - from - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - rule: *692 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + rule: *694 sender: *4 required: - action @@ -110291,7 +110655,7 @@ webhooks: type: string enum: - completed - check_run: &694 + check_run: &696 title: CheckRun description: A check performed on the code of a given code change type: object @@ -110356,7 +110720,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *388 + items: *390 repository: *136 status: type: string @@ -110401,7 +110765,7 @@ webhooks: - examples: - neutral - deployment: *693 + deployment: *695 details_url: type: string examples: @@ -110461,7 +110825,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *388 + items: *390 started_at: type: string format: date-time @@ -110499,10 +110863,10 @@ webhooks: - output - app - pull_requests - installation: *689 - enterprise: *688 - organization: *690 - repository: *691 + installation: *691 + enterprise: *690 + organization: *692 + repository: *693 sender: *4 required: - check_run @@ -110895,11 +111259,11 @@ webhooks: type: string enum: - created - check_run: *694 - installation: *689 - enterprise: *688 - organization: *690 - repository: *691 + check_run: *696 + installation: *691 + enterprise: *690 + organization: *692 + repository: *693 sender: *4 required: - check_run @@ -111295,11 +111659,11 @@ webhooks: type: string enum: - requested_action - check_run: *694 - installation: *689 - enterprise: *688 - organization: *690 - repository: *691 + check_run: *696 + installation: *691 + enterprise: *690 + organization: *692 + repository: *693 requested_action: description: The action requested by the user. type: object @@ -111704,11 +112068,11 @@ webhooks: type: string enum: - rerequested - check_run: *694 - installation: *689 - enterprise: *688 - organization: *690 - repository: *691 + check_run: *696 + installation: *691 + enterprise: *690 + organization: *692 + repository: *693 sender: *4 required: - check_run @@ -112700,10 +113064,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -113403,10 +113767,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -114100,10 +114464,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -114272,7 +114636,7 @@ webhooks: required: - login - id - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -114424,20 +114788,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &695 + commit_oid: &697 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: *688 - installation: *689 - organization: *690 - ref: &696 + enterprise: *690 + installation: *691 + organization: *692 + ref: &698 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: *691 + repository: *693 sender: *4 required: - action @@ -114604,7 +114968,7 @@ webhooks: required: - login - id - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -114845,12 +115209,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *695 - enterprise: *688 - installation: *689 - organization: *690 - ref: *696 - repository: *691 + commit_oid: *697 + enterprise: *690 + installation: *691 + organization: *692 + ref: *698 + repository: *693 sender: *4 required: - action @@ -114948,7 +115312,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115133,12 +115497,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *695 - enterprise: *688 - installation: *689 - organization: *690 - ref: *696 - repository: *691 + commit_oid: *697 + enterprise: *690 + installation: *691 + organization: *692 + ref: *698 + repository: *693 sender: *4 required: - action @@ -115307,7 +115671,7 @@ webhooks: required: - login - id - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -115484,12 +115848,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *695 - enterprise: *688 - installation: *689 - organization: *690 - ref: *696 - repository: *691 + commit_oid: *697 + enterprise: *690 + installation: *691 + organization: *692 + ref: *698 + repository: *693 sender: *4 required: - action @@ -115592,7 +115956,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115772,9 +116136,9 @@ webhooks: type: - string - 'null' - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -115782,7 +116146,7 @@ webhooks: type: - string - 'null' - repository: *691 + repository: *693 sender: *4 required: - action @@ -115881,7 +116245,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *403 + dismissed_comment: *405 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116028,12 +116392,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *695 - enterprise: *688 - installation: *689 - organization: *690 - ref: *696 - repository: *691 + commit_oid: *697 + enterprise: *690 + installation: *691 + organization: *692 + ref: *698 + repository: *693 sender: *4 required: - action @@ -116295,10 +116659,10 @@ webhooks: - updated_at - author_association - body - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -116379,18 +116743,18 @@ webhooks: type: - string - 'null' - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *690 - pusher_type: &697 + organization: *692 + pusher_type: &699 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &698 + ref: &700 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -116400,7 +116764,7 @@ webhooks: enum: - tag - branch - repository: *691 + repository: *693 sender: *4 required: - ref @@ -116482,10 +116846,10 @@ webhooks: type: string enum: - created - definition: *251 - enterprise: *688 - installation: *689 - organization: *690 + definition: *253 + enterprise: *690 + installation: *691 + organization: *692 sender: *4 required: - action @@ -116570,9 +116934,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 sender: *4 required: - action @@ -116649,10 +117013,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *251 - enterprise: *688 - installation: *689 - organization: *690 + definition: *253 + enterprise: *690 + installation: *691 + organization: *692 sender: *4 required: - action @@ -116729,10 +117093,10 @@ webhooks: type: string enum: - updated - definition: *251 - enterprise: *688 - installation: *689 - organization: *690 + definition: *253 + enterprise: *690 + installation: *691 + organization: *692 sender: *4 required: - action @@ -116809,10 +117173,10 @@ webhooks: type: string enum: - updated - enterprise: *688 - installation: *689 - repository: *691 - organization: *690 + enterprise: *690 + installation: *691 + repository: *693 + organization: *692 sender: *4 new_property_values: type: array @@ -116897,18 +117261,18 @@ webhooks: title: delete event type: object properties: - enterprise: *688 - installation: *689 - organization: *690 - pusher_type: *697 - ref: *698 + enterprise: *690 + installation: *691 + organization: *692 + pusher_type: *699 + ref: *700 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *691 + repository: *693 sender: *4 required: - ref @@ -116992,11 +117356,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117080,11 +117444,11 @@ webhooks: type: string enum: - auto_reopened - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117168,11 +117532,11 @@ webhooks: type: string enum: - created - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117254,11 +117618,11 @@ webhooks: type: string enum: - dismissed - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117340,11 +117704,11 @@ webhooks: type: string enum: - fixed - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117427,11 +117791,11 @@ webhooks: type: string enum: - reintroduced - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117513,11 +117877,11 @@ webhooks: type: string enum: - reopened - alert: *455 - installation: *689 - organization: *690 - enterprise: *688 - repository: *691 + alert: *457 + installation: *691 + organization: *692 + enterprise: *690 + repository: *693 sender: *4 required: - action @@ -117594,9 +117958,9 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - key: &699 + enterprise: *690 + installation: *691 + key: &701 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -117634,8 +117998,8 @@ webhooks: - verified - created_at - read_only - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -117712,11 +118076,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - key: *699 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + key: *701 + organization: *692 + repository: *693 sender: *4 required: - action @@ -118288,12 +118652,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - workflow: &703 + workflow: &705 title: Workflow type: - object @@ -119031,13 +119395,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *461 + deployment: *463 pull_requests: type: array - items: *545 - repository: *691 - organization: *690 - installation: *689 + items: *547 + repository: *693 + organization: *692 + installation: *691 sender: *4 responses: '200': @@ -119108,7 +119472,7 @@ webhooks: type: string enum: - approved - approver: &700 + approver: &702 type: object properties: avatar_url: @@ -119151,11 +119515,11 @@ webhooks: type: string comment: type: string - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - reviewers: &701 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + reviewers: &703 type: array items: type: object @@ -119236,7 +119600,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &702 + workflow_job_run: &704 type: object properties: conclusion: @@ -119982,18 +120346,18 @@ webhooks: type: string enum: - rejected - approver: *700 + approver: *702 comment: type: string - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - reviewers: *701 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + reviewers: *703 sender: *4 since: type: string - workflow_job_run: *702 + workflow_job_run: *704 workflow_job_runs: type: array items: @@ -120710,13 +121074,13 @@ webhooks: type: string enum: - requested - enterprise: *688 + enterprise: *690 environment: type: string - installation: *689 - organization: *690 - repository: *691 - requestor: &708 + installation: *691 + organization: *692 + repository: *693 + requestor: &710 title: User type: - object @@ -122659,12 +123023,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - workflow: *703 + workflow: *705 workflow_run: title: Deployment Workflow Run type: @@ -123355,7 +123719,7 @@ webhooks: type: string enum: - answered - answer: &706 + answer: &708 type: object properties: author_association: @@ -123515,7 +123879,7 @@ webhooks: - created_at - updated_at - body - discussion: &704 + discussion: &706 title: Discussion description: A Discussion in a repository. type: object @@ -123811,7 +124175,7 @@ webhooks: - id labels: type: array - items: *508 + items: *510 required: - repository_url - category @@ -123833,10 +124197,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -123963,11 +124327,11 @@ webhooks: - from required: - category - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124050,11 +124414,11 @@ webhooks: type: string enum: - closed - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124136,7 +124500,7 @@ webhooks: type: string enum: - created - comment: &705 + comment: &707 type: object properties: author_association: @@ -124296,11 +124660,11 @@ webhooks: - updated_at - body - reactions - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124383,12 +124747,12 @@ webhooks: type: string enum: - deleted - comment: *705 - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + comment: *707 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124483,12 +124847,12 @@ webhooks: - from required: - body - comment: *705 - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + comment: *707 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124572,11 +124936,11 @@ webhooks: type: string enum: - created - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124658,11 +125022,11 @@ webhooks: type: string enum: - deleted - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124762,11 +125126,11 @@ webhooks: type: string required: - from - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124848,10 +125212,10 @@ webhooks: type: string enum: - labeled - discussion: *704 - enterprise: *688 - installation: *689 - label: &707 + discussion: *706 + enterprise: *690 + installation: *691 + label: &709 title: Label type: object properties: @@ -124884,8 +125248,8 @@ webhooks: - color - default - description - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -124968,11 +125332,11 @@ webhooks: type: string enum: - locked - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125054,11 +125418,11 @@ webhooks: type: string enum: - pinned - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125140,11 +125504,11 @@ webhooks: type: string enum: - reopened - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125229,16 +125593,16 @@ webhooks: changes: type: object properties: - new_discussion: *704 - new_repository: *691 + new_discussion: *706 + new_repository: *693 required: - new_discussion - new_repository - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125321,10 +125685,10 @@ webhooks: type: string enum: - unanswered - discussion: *704 - old_answer: *706 - organization: *690 - repository: *691 + discussion: *706 + old_answer: *708 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125406,12 +125770,12 @@ webhooks: type: string enum: - unlabeled - discussion: *704 - enterprise: *688 - installation: *689 - label: *707 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125494,11 +125858,11 @@ webhooks: type: string enum: - unlocked - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125580,11 +125944,11 @@ webhooks: type: string enum: - unpinned - discussion: *704 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + discussion: *706 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -125657,7 +126021,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *688 + enterprise: *690 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -126335,9 +126699,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - forkee @@ -126483,9 +126847,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pages: description: The pages that were updated. type: array @@ -126523,7 +126887,7 @@ webhooks: - action - sha - html_url - repository: *691 + repository: *693 sender: *4 required: - pages @@ -126599,10 +126963,10 @@ webhooks: type: string enum: - created - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories: &709 + organization: *692 + repositories: &711 description: An array of repository objects that the installation can access. type: array @@ -126628,8 +126992,8 @@ webhooks: - name - full_name - private - repository: *691 - requester: *708 + repository: *693 + requester: *710 sender: *4 required: - action @@ -126704,11 +127068,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories: *709 - repository: *691 + organization: *692 + repositories: *711 + repository: *693 requester: type: - 'null' @@ -126785,11 +127149,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories: *709 - repository: *691 + organization: *692 + repositories: *711 + repository: *693 requester: type: - 'null' @@ -126866,10 +127230,10 @@ webhooks: type: string enum: - added - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories_added: &710 + organization: *692 + repositories_added: &712 description: An array of repository objects, which were added to the installation. type: array @@ -126915,15 +127279,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *691 - repository_selection: &711 + repository: *693 + repository_selection: &713 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *708 + requester: *710 sender: *4 required: - action @@ -127002,10 +127366,10 @@ webhooks: type: string enum: - removed - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories_added: *710 + organization: *692 + repositories_added: *712 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -127032,9 +127396,9 @@ webhooks: - name - full_name - private - repository: *691 - repository_selection: *711 - requester: *708 + repository: *693 + repository_selection: *713 + requester: *710 sender: *4 required: - action @@ -127113,11 +127477,11 @@ webhooks: type: string enum: - suspend - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories: *709 - repository: *691 + organization: *692 + repositories: *711 + repository: *693 requester: type: - 'null' @@ -127299,10 +127663,10 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 target_type: type: string @@ -127381,11 +127745,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *688 + enterprise: *690 installation: *20 - organization: *690 - repositories: *709 - repository: *691 + organization: *692 + repositories: *711 + repository: *693 requester: type: - 'null' @@ -127633,8 +127997,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128451,8 +128815,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128469,7 +128833,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -128813,8 +129177,8 @@ webhooks: - state - locked - assignee - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -128894,7 +129258,7 @@ webhooks: type: string enum: - deleted - comment: &712 + comment: &714 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -129061,8 +129425,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129875,8 +130239,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129893,7 +130257,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -130239,8 +130603,8 @@ webhooks: - state - locked - assignee - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -130320,7 +130684,7 @@ webhooks: type: string enum: - edited - changes: &736 + changes: &738 description: The changes to the comment. type: object properties: @@ -130332,9 +130696,9 @@ webhooks: type: string required: - from - comment: *712 - enterprise: *688 - installation: *689 + comment: *714 + enterprise: *690 + installation: *691 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131150,8 +131514,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131168,7 +131532,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -131512,8 +131876,8 @@ webhooks: - state - locked - assignee - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -131603,9 +131967,9 @@ webhooks: type: number blocking_issue: *78 blocking_issue_repo: *64 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -131699,9 +132063,9 @@ webhooks: type: number blocking_issue: *78 blocking_issue_repo: *64 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -131794,9 +132158,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -131890,9 +132254,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -131977,10 +132341,10 @@ webhooks: type: string enum: - assigned - assignee: *708 - enterprise: *688 - installation: *689 - issue: &715 + assignee: *710 + enterprise: *690 + installation: *691 + issue: &717 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -132792,11 +133156,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132813,7 +133177,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -132916,8 +133280,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -132997,8 +133361,8 @@ webhooks: type: string enum: - closed - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133815,11 +134179,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133836,7 +134200,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -134082,8 +134446,8 @@ webhooks: required: - state - closed_at - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -134162,8 +134526,8 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134971,11 +135335,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134992,7 +135356,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -135094,8 +135458,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -135174,8 +135538,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136006,11 +136370,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136027,7 +136391,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -136108,7 +136472,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &713 + milestone: &715 title: Milestone description: A collection of related issues and pull requests. type: object @@ -136251,8 +136615,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -136351,8 +136715,8 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137164,11 +137528,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137182,7 +137546,7 @@ webhooks: timeline_url: type: string format: uri - type: *206 + type: *208 title: description: Title of the issue type: string @@ -137288,9 +137652,9 @@ webhooks: - active_lock_reason - body - reactions - label: *707 - organization: *690 - repository: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -137370,8 +137734,8 @@ webhooks: type: string enum: - labeled - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138182,11 +138546,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138200,7 +138564,7 @@ webhooks: timeline_url: type: string format: uri - type: *206 + type: *208 title: description: Title of the issue type: string @@ -138306,9 +138670,9 @@ webhooks: - active_lock_reason - body - reactions - label: *707 - organization: *690 - repository: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -138388,8 +138752,8 @@ webhooks: type: string enum: - locked - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139225,11 +139589,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139243,7 +139607,7 @@ webhooks: timeline_url: type: string format: uri - type: *206 + type: *208 title: description: Title of the issue type: string @@ -139326,8 +139690,8 @@ webhooks: format: uri user_view_type: type: string - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -139406,8 +139770,8 @@ webhooks: type: string enum: - milestoned - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140237,11 +140601,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140258,7 +140622,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -140338,9 +140702,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *713 - organization: *690 - repository: *691 + milestone: *715 + organization: *692 + repository: *693 sender: *4 required: - action @@ -141232,11 +141596,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141332,7 +141696,7 @@ webhooks: required: - login - id - type: *206 + type: *208 required: - id - number @@ -141813,8 +142177,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142626,11 +142990,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142647,7 +143011,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -142749,8 +143113,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -142830,9 +143194,9 @@ webhooks: type: string enum: - pinned - enterprise: *688 - installation: *689 - issue: &714 + enterprise: *690 + installation: *691 + issue: &716 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143638,11 +144002,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143659,7 +144023,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -143761,8 +144125,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -143841,8 +144205,8 @@ webhooks: type: string enum: - reopened - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144676,11 +145040,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144777,9 +145141,9 @@ webhooks: format: uri user_view_type: type: string - type: *206 - organization: *690 - repository: *691 + type: *208 + organization: *692 + repository: *693 sender: *4 required: - action @@ -145668,11 +146032,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145689,7 +146053,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -146271,11 +146635,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *688 - installation: *689 - issue: *714 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *716 + organization: *692 + repository: *693 sender: *4 required: - action @@ -146355,12 +146719,12 @@ webhooks: type: string enum: - typed - enterprise: *688 - installation: *689 - issue: *715 - type: *206 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *717 + type: *208 + organization: *692 + repository: *693 sender: *4 required: - action @@ -146441,7 +146805,7 @@ webhooks: type: string enum: - unassigned - assignee: &739 + assignee: &741 title: User type: - object @@ -146513,11 +146877,11 @@ webhooks: required: - login - id - enterprise: *688 - installation: *689 - issue: *715 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *717 + organization: *692 + repository: *693 sender: *4 required: - action @@ -146596,12 +146960,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *688 - installation: *689 - issue: *715 - label: *707 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *717 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -146681,8 +147045,8 @@ webhooks: type: string enum: - unlocked - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147516,11 +147880,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *623 - issue_dependencies_summary: *624 + sub_issues_summary: *625 + issue_dependencies_summary: *626 issue_field_values: type: array - items: *625 + items: *627 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147537,7 +147901,7 @@ webhooks: title: description: Title of the issue type: string - type: *206 + type: *208 updated_at: type: string format: date-time @@ -147617,8 +147981,8 @@ webhooks: format: uri user_view_type: type: string - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -147698,11 +148062,11 @@ webhooks: type: string enum: - unpinned - enterprise: *688 - installation: *689 - issue: *714 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *716 + organization: *692 + repository: *693 sender: *4 required: - action @@ -147781,12 +148145,12 @@ webhooks: type: string enum: - untyped - enterprise: *688 - installation: *689 - issue: *715 - type: *206 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + issue: *717 + type: *208 + organization: *692 + repository: *693 sender: *4 required: - action @@ -147866,11 +148230,11 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - label: *707 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -147948,11 +148312,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - label: *707 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -148062,11 +148426,11 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - label: *707 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + label: *709 + organization: *692 + repository: *693 sender: *4 required: - action @@ -148148,9 +148512,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *688 - installation: *689 - marketplace_purchase: &716 + enterprise: *690 + installation: *691 + marketplace_purchase: &718 title: Marketplace Purchase type: object required: @@ -148238,8 +148602,8 @@ webhooks: type: integer unit_count: type: integer - organization: *690 - previous_marketplace_purchase: &717 + organization: *692 + previous_marketplace_purchase: &719 title: Marketplace Purchase type: object properties: @@ -148323,7 +148687,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *691 + repository: *693 sender: *4 required: - action @@ -148403,10 +148767,10 @@ webhooks: - changed effective_date: type: string - enterprise: *688 - installation: *689 - marketplace_purchase: *716 - organization: *690 + enterprise: *690 + installation: *691 + marketplace_purchase: *718 + organization: *692 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148494,7 +148858,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *691 + repository: *693 sender: *4 required: - action @@ -148576,10 +148940,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *688 - installation: *689 - marketplace_purchase: *716 - organization: *690 + enterprise: *690 + installation: *691 + marketplace_purchase: *718 + organization: *692 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148665,7 +149029,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *691 + repository: *693 sender: *4 required: - action @@ -148746,8 +149110,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 marketplace_purchase: title: Marketplace Purchase type: object @@ -148833,9 +149197,9 @@ webhooks: type: integer unit_count: type: integer - organization: *690 - previous_marketplace_purchase: *717 - repository: *691 + organization: *692 + previous_marketplace_purchase: *719 + repository: *693 sender: *4 required: - action @@ -148915,12 +149279,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *688 - installation: *689 - marketplace_purchase: *716 - organization: *690 - previous_marketplace_purchase: *717 - repository: *691 + enterprise: *690 + installation: *691 + marketplace_purchase: *718 + organization: *692 + previous_marketplace_purchase: *719 + repository: *693 sender: *4 required: - action @@ -149022,11 +149386,11 @@ webhooks: type: string required: - to - enterprise: *688 - installation: *689 - member: *708 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + member: *710 + organization: *692 + repository: *693 sender: *4 required: - action @@ -149128,11 +149492,11 @@ webhooks: type: - string - 'null' - enterprise: *688 - installation: *689 - member: *708 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + member: *710 + organization: *692 + repository: *693 sender: *4 required: - action @@ -149211,11 +149575,11 @@ webhooks: type: string enum: - removed - enterprise: *688 - installation: *689 - member: *708 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + member: *710 + organization: *692 + repository: *693 sender: *4 required: - action @@ -149293,11 +149657,11 @@ webhooks: type: string enum: - added - enterprise: *688 - installation: *689 - member: *708 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + member: *710 + organization: *692 + repository: *693 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149375,7 +149739,7 @@ webhooks: required: - login - id - team: &718 + team: &720 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -149605,11 +149969,11 @@ webhooks: type: string enum: - removed - enterprise: *688 - installation: *689 - member: *708 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + member: *710 + organization: *692 + repository: *693 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149688,7 +150052,7 @@ webhooks: required: - login - id - team: *718 + team: *720 required: - action - scope @@ -149770,8 +150134,8 @@ webhooks: type: string enum: - checks_requested - installation: *689 - merge_group: &719 + installation: *691 + merge_group: &721 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -149790,15 +150154,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *392 + head_commit: *394 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -149884,10 +150248,10 @@ webhooks: - merged - invalidated - dequeued - installation: *689 - merge_group: *719 - organization: *690 - repository: *691 + installation: *691 + merge_group: *721 + organization: *692 + repository: *693 sender: *4 required: - action @@ -149960,7 +150324,7 @@ webhooks: type: string enum: - deleted - enterprise: *688 + enterprise: *690 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -150069,12 +150433,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *689 - organization: *690 + installation: *691 + organization: *692 repository: anyOf: - type: 'null' - - *691 + - *693 sender: *4 required: - action @@ -150154,11 +150518,11 @@ webhooks: type: string enum: - closed - enterprise: *688 - installation: *689 - milestone: *713 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + milestone: *715 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150237,9 +150601,9 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - milestone: &720 + enterprise: *690 + installation: *691 + milestone: &722 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150381,8 +150745,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150461,11 +150825,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - milestone: *713 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + milestone: *715 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150575,11 +150939,11 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - milestone: *713 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + milestone: *715 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150659,11 +151023,11 @@ webhooks: type: string enum: - opened - enterprise: *688 - installation: *689 - milestone: *720 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + milestone: *722 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150742,11 +151106,11 @@ webhooks: type: string enum: - blocked - blocked_user: *708 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + blocked_user: *710 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150825,11 +151189,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *708 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + blocked_user: *710 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -150908,9 +151272,9 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - membership: &721 + enterprise: *690 + installation: *691 + membership: &723 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -151020,8 +151384,8 @@ webhooks: - role - organization_url - user - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -151099,11 +151463,11 @@ webhooks: type: string enum: - member_added - enterprise: *688 - installation: *689 - membership: *721 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + membership: *723 + organization: *692 + repository: *693 sender: *4 required: - action @@ -151182,8 +151546,8 @@ webhooks: type: string enum: - member_invited - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -151305,10 +151669,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 - user: *708 + user: *710 required: - action - invitation @@ -151386,11 +151750,11 @@ webhooks: type: string enum: - member_removed - enterprise: *688 - installation: *689 - membership: *721 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + membership: *723 + organization: *692 + repository: *693 sender: *4 required: - action @@ -151477,11 +151841,11 @@ webhooks: properties: from: type: string - enterprise: *688 - installation: *689 - membership: *721 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + membership: *723 + organization: *692 + repository: *693 sender: *4 required: - action @@ -151557,9 +151921,9 @@ webhooks: type: string enum: - published - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 package: description: Information about the package. type: object @@ -152082,7 +152446,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &722 + items: &724 title: Ruby Gems metadata type: object properties: @@ -152179,7 +152543,7 @@ webhooks: - owner - package_version - registry - repository: *691 + repository: *693 sender: *4 required: - action @@ -152255,9 +152619,9 @@ webhooks: type: string enum: - updated - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 package: description: Information about the package. type: object @@ -152619,7 +152983,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *722 + items: *724 source_url: type: string format: uri @@ -152690,7 +153054,7 @@ webhooks: - owner - package_version - registry - repository: *691 + repository: *693 sender: *4 required: - action @@ -152871,12 +153235,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *688 + enterprise: *690 id: type: integer - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - id @@ -152953,7 +153317,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &723 + personal_access_token_request: &725 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -153103,10 +153467,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *688 - organization: *690 + enterprise: *690 + organization: *692 sender: *4 - installation: *689 + installation: *691 required: - action - personal_access_token_request @@ -153183,11 +153547,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *723 - enterprise: *688 - organization: *690 + personal_access_token_request: *725 + enterprise: *690 + organization: *692 sender: *4 - installation: *689 + installation: *691 required: - action - personal_access_token_request @@ -153263,11 +153627,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *723 - enterprise: *688 - organization: *690 + personal_access_token_request: *725 + enterprise: *690 + organization: *692 sender: *4 - installation: *689 + installation: *691 required: - action - personal_access_token_request @@ -153342,11 +153706,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *723 - organization: *690 - enterprise: *688 + personal_access_token_request: *725 + organization: *692 + enterprise: *690 sender: *4 - installation: *689 + installation: *691 required: - action - personal_access_token_request @@ -153451,7 +153815,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *724 + last_response: *726 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -153483,8 +153847,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 zen: description: Random string of GitHub zen. @@ -153729,10 +154093,10 @@ webhooks: - from required: - note - enterprise: *688 - installation: *689 - organization: *690 - project_card: &725 + enterprise: *690 + installation: *691 + organization: *692 + project_card: &727 title: Project Card type: object properties: @@ -153855,7 +154219,7 @@ webhooks: - creator - created_at - updated_at - repository: *691 + repository: *693 sender: *4 required: - action @@ -153936,11 +154300,11 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - project_card: *725 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project_card: *727 + repository: *693 sender: *4 required: - action @@ -154020,9 +154384,9 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 project_card: title: Project Card type: object @@ -154152,7 +154516,7 @@ webhooks: repository: anyOf: - type: 'null' - - *691 + - *693 sender: *4 required: - action @@ -154246,11 +154610,11 @@ webhooks: - from required: - note - enterprise: *688 - installation: *689 - organization: *690 - project_card: *725 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project_card: *727 + repository: *693 sender: *4 required: - action @@ -154344,9 +154708,9 @@ webhooks: - from required: - column_id - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 project_card: allOf: - title: Project Card @@ -154543,7 +154907,7 @@ webhooks: type: string required: - after_id - repository: *691 + repository: *693 sender: *4 required: - action @@ -154623,10 +154987,10 @@ webhooks: type: string enum: - closed - enterprise: *688 - installation: *689 - organization: *690 - project: &727 + enterprise: *690 + installation: *691 + organization: *692 + project: &729 title: Project type: object properties: @@ -154753,7 +155117,7 @@ webhooks: - creator - created_at - updated_at - repository: *691 + repository: *693 sender: *4 required: - action @@ -154833,10 +155197,10 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - project_column: &726 + enterprise: *690 + installation: *691 + organization: *692 + project_column: &728 title: Project Column type: object properties: @@ -154876,7 +155240,7 @@ webhooks: - name - created_at - updated_at - repository: *691 + repository: *693 sender: *4 required: - action @@ -154955,14 +155319,14 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - project_column: *726 + enterprise: *690 + installation: *691 + organization: *692 + project_column: *728 repository: anyOf: - type: 'null' - - *691 + - *693 sender: *4 required: - action @@ -155051,11 +155415,11 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - organization: *690 - project_column: *726 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project_column: *728 + repository: *693 sender: *4 required: - action @@ -155135,11 +155499,11 @@ webhooks: type: string enum: - moved - enterprise: *688 - installation: *689 - organization: *690 - project_column: *726 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project_column: *728 + repository: *693 sender: *4 required: - action @@ -155219,11 +155583,11 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - project: *727 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project: *729 + repository: *693 sender: *4 required: - action @@ -155303,14 +155667,14 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - project: *727 + enterprise: *690 + installation: *691 + organization: *692 + project: *729 repository: anyOf: - type: 'null' - - *691 + - *693 sender: *4 required: - action @@ -155411,11 +155775,11 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - organization: *690 - project: *727 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project: *729 + repository: *693 sender: *4 required: - action @@ -155494,11 +155858,11 @@ webhooks: type: string enum: - reopened - enterprise: *688 - installation: *689 - organization: *690 - project: *727 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + project: *729 + repository: *693 sender: *4 required: - action @@ -155579,9 +155943,9 @@ webhooks: type: string enum: - closed - installation: *689 - organization: *690 - projects_v2: *239 + installation: *691 + organization: *692 + projects_v2: *241 sender: *4 required: - action @@ -155662,9 +156026,9 @@ webhooks: type: string enum: - created - installation: *689 - organization: *690 - projects_v2: *239 + installation: *691 + organization: *692 + projects_v2: *241 sender: *4 required: - action @@ -155745,9 +156109,9 @@ webhooks: type: string enum: - deleted - installation: *689 - organization: *690 - projects_v2: *239 + installation: *691 + organization: *692 + projects_v2: *241 sender: *4 required: - action @@ -155868,9 +156232,9 @@ webhooks: type: string to: type: string - installation: *689 - organization: *690 - projects_v2: *239 + installation: *691 + organization: *692 + projects_v2: *241 sender: *4 required: - action @@ -155953,7 +156317,7 @@ webhooks: type: string enum: - archived - changes: &731 + changes: &733 type: object properties: archived_at: @@ -155969,9 +156333,9 @@ webhooks: - string - 'null' format: date-time - installation: *689 - organization: *690 - projects_v2_item: &728 + installation: *691 + organization: *692 + projects_v2_item: &730 title: Projects v2 Item description: An item belonging to a project type: object @@ -155989,7 +156353,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *245 + content_type: *247 creator: *4 created_at: type: string @@ -156111,9 +156475,9 @@ webhooks: - 'null' to: type: string - installation: *689 - organization: *690 - projects_v2_item: *728 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156195,9 +156559,9 @@ webhooks: type: string enum: - created - installation: *689 - organization: *690 - projects_v2_item: *728 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156278,9 +156642,9 @@ webhooks: type: string enum: - deleted - installation: *689 - organization: *690 - projects_v2_item: *728 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156385,7 +156749,7 @@ webhooks: oneOf: - type: string - type: integer - - &729 + - &731 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -156409,7 +156773,7 @@ webhooks: required: - id - name - - &730 + - &732 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -156449,8 +156813,8 @@ webhooks: oneOf: - type: string - type: integer - - *729 - - *730 + - *731 + - *732 type: - 'null' - string @@ -156473,9 +156837,9 @@ webhooks: - 'null' required: - body - installation: *689 - organization: *690 - projects_v2_item: *728 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156572,9 +156936,9 @@ webhooks: type: - string - 'null' - installation: *689 - organization: *690 - projects_v2_item: *728 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156657,10 +157021,10 @@ webhooks: type: string enum: - restored - changes: *731 - installation: *689 - organization: *690 - projects_v2_item: *728 + changes: *733 + installation: *691 + organization: *692 + projects_v2_item: *730 sender: *4 required: - action @@ -156742,9 +157106,9 @@ webhooks: type: string enum: - reopened - installation: *689 - organization: *690 - projects_v2: *239 + installation: *691 + organization: *692 + projects_v2: *241 sender: *4 required: - action @@ -156825,9 +157189,9 @@ webhooks: type: string enum: - created - installation: *689 - organization: *690 - projects_v2_status_update: *732 + installation: *691 + organization: *692 + projects_v2_status_update: *734 sender: *4 required: - action @@ -156908,9 +157272,9 @@ webhooks: type: string enum: - deleted - installation: *689 - organization: *690 - projects_v2_status_update: *732 + installation: *691 + organization: *692 + projects_v2_status_update: *734 sender: *4 required: - action @@ -157056,9 +157420,9 @@ webhooks: - string - 'null' format: date - installation: *689 - organization: *690 - projects_v2_status_update: *732 + installation: *691 + organization: *692 + projects_v2_status_update: *734 sender: *4 required: - action @@ -157129,10 +157493,10 @@ webhooks: title: public event type: object properties: - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - repository @@ -157209,13 +157573,13 @@ webhooks: type: string enum: - assigned - assignee: *708 - enterprise: *688 - installation: *689 - number: &733 + assignee: *710 + enterprise: *690 + installation: *691 + number: &735 description: The pull request number. type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -159564,7 +159928,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -159646,11 +160010,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -161992,7 +162356,7 @@ webhooks: - draft reason: type: string - repository: *691 + repository: *693 sender: *4 required: - action @@ -162074,11 +162438,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -164420,7 +164784,7 @@ webhooks: - draft reason: type: string - repository: *691 + repository: *693 sender: *4 required: - action @@ -164502,13 +164866,13 @@ webhooks: type: string enum: - closed - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: &734 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: &736 allOf: - - *545 + - *547 - type: object properties: allow_auto_merge: @@ -164570,7 +164934,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *691 + repository: *693 sender: *4 required: - action @@ -164651,12 +165015,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: *734 - repository: *691 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: *736 + repository: *693 sender: *4 required: - action @@ -164736,11 +165100,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *688 - milestone: *242 - number: *733 - organization: *690 - pull_request: &735 + enterprise: *690 + milestone: *244 + number: *735 + organization: *692 + pull_request: &737 title: Pull Request type: object properties: @@ -167067,7 +167431,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -167146,11 +167510,11 @@ webhooks: type: string enum: - dequeued - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -169496,7 +169860,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *691 + repository: *693 sender: *4 required: - action @@ -169620,12 +169984,12 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: *734 - repository: *691 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: *736 + repository: *693 sender: *4 required: - action @@ -169705,11 +170069,11 @@ webhooks: type: string enum: - enqueued - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -172040,7 +172404,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -172120,11 +172484,11 @@ webhooks: type: string enum: - labeled - enterprise: *688 - installation: *689 - label: *707 - number: *733 - organization: *690 + enterprise: *690 + installation: *691 + label: *709 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -174472,7 +174836,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -174553,10 +174917,10 @@ webhooks: type: string enum: - locked - enterprise: *688 - installation: *689 - number: *733 - organization: *690 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -176902,7 +177266,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -176982,12 +177346,12 @@ webhooks: type: string enum: - milestoned - enterprise: *688 - milestone: *242 - number: *733 - organization: *690 - pull_request: *735 - repository: *691 + enterprise: *690 + milestone: *244 + number: *735 + organization: *692 + pull_request: *737 + repository: *693 sender: *4 required: - action @@ -177066,12 +177430,12 @@ webhooks: type: string enum: - opened - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: *734 - repository: *691 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: *736 + repository: *693 sender: *4 required: - action @@ -177152,12 +177516,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: *734 - repository: *691 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: *736 + repository: *693 sender: *4 required: - action @@ -177237,12 +177601,12 @@ webhooks: type: string enum: - reopened - enterprise: *688 - installation: *689 - number: *733 - organization: *690 - pull_request: *734 - repository: *691 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 + pull_request: *736 + repository: *693 sender: *4 required: - action @@ -177617,9 +177981,9 @@ webhooks: - start_side - side - reactions - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: type: object properties: @@ -179849,7 +180213,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *691 + repository: *693 sender: *4 required: - action @@ -179929,7 +180293,7 @@ webhooks: type: string enum: - deleted - comment: &737 + comment: &739 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -180222,9 +180586,9 @@ webhooks: - start_side - side - reactions - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: type: object properties: @@ -182442,7 +182806,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *691 + repository: *693 sender: *4 required: - action @@ -182522,11 +182886,11 @@ webhooks: type: string enum: - edited - changes: *736 - comment: *737 - enterprise: *688 - installation: *689 - organization: *690 + changes: *738 + comment: *739 + enterprise: *690 + installation: *691 + organization: *692 pull_request: type: object properties: @@ -184747,7 +185111,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *691 + repository: *693 sender: *4 required: - action @@ -184828,9 +185192,9 @@ webhooks: type: string enum: - dismissed - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: title: Simple Pull Request type: object @@ -187063,7 +187427,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *691 + repository: *693 review: description: The review that was affected. type: object @@ -187314,9 +187678,9 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: title: Simple Pull Request type: object @@ -189430,8 +189794,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *691 - review: &738 + repository: *693 + review: &740 description: The review that was affected. type: object properties: @@ -189669,12 +190033,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: description: The pull request number. type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -192021,7 +192385,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 requested_reviewer: title: User type: @@ -192107,12 +192471,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: description: The pull request number. type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -194466,7 +194830,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194661,12 +195025,12 @@ webhooks: type: string enum: - review_requested - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: description: The pull request number. type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -197015,7 +197379,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 requested_reviewer: title: User type: @@ -197102,12 +197466,12 @@ webhooks: type: string enum: - review_requested - enterprise: *688 - installation: *689 + enterprise: *690 + installation: *691 number: description: The pull request number. type: integer - organization: *690 + organization: *692 pull_request: title: Pull Request type: object @@ -199447,7 +199811,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199631,9 +199995,9 @@ webhooks: type: string enum: - submitted - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: title: Simple Pull Request type: object @@ -201869,8 +202233,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *691 - review: *738 + repository: *693 + review: *740 sender: *4 required: - action @@ -201950,9 +202314,9 @@ webhooks: type: string enum: - resolved - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: title: Simple Pull Request type: object @@ -204083,7 +204447,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *691 + repository: *693 sender: *4 thread: type: object @@ -204480,9 +204844,9 @@ webhooks: type: string enum: - unresolved - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 pull_request: title: Simple Pull Request type: object @@ -206596,7 +206960,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *691 + repository: *693 sender: *4 thread: type: object @@ -206995,10 +207359,10 @@ webhooks: type: string before: type: string - enterprise: *688 - installation: *689 - number: *733 - organization: *690 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -209333,7 +209697,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -209415,11 +209779,11 @@ webhooks: type: string enum: - unassigned - assignee: *739 - enterprise: *688 - installation: *689 - number: *733 - organization: *690 + assignee: *741 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -211769,7 +212133,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -211848,11 +212212,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *688 - installation: *689 - label: *707 - number: *733 - organization: *690 + enterprise: *690 + installation: *691 + label: *709 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -214191,7 +214555,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -214272,10 +214636,10 @@ webhooks: type: string enum: - unlocked - enterprise: *688 - installation: *689 - number: *733 - organization: *690 + enterprise: *690 + installation: *691 + number: *735 + organization: *692 pull_request: title: Pull Request type: object @@ -216604,7 +216968,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *691 + repository: *693 sender: *4 required: - action @@ -216807,7 +217171,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *688 + enterprise: *690 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -216902,8 +217266,8 @@ webhooks: - url - author - committer - installation: *689 - organization: *690 + installation: *691 + organization: *692 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -217491,9 +217855,9 @@ webhooks: type: string enum: - published - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 registry_package: type: object properties: @@ -217970,7 +218334,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *722 + items: *724 summary: type: string tag_name: @@ -218026,7 +218390,7 @@ webhooks: - owner - package_version - registry - repository: *691 + repository: *693 sender: *4 required: - action @@ -218104,9 +218468,9 @@ webhooks: type: string enum: - updated - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 registry_package: type: object properties: @@ -218418,7 +218782,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *722 + items: *724 summary: type: string tag_name: @@ -218468,7 +218832,7 @@ webhooks: - owner - package_version - registry - repository: *691 + repository: *693 sender: *4 required: - action @@ -218545,10 +218909,10 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - release: &740 + enterprise: *690 + installation: *691 + organization: *692 + release: &742 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218879,7 +219243,7 @@ webhooks: - updated_at - zipball_url - body - repository: *691 + repository: *693 sender: *4 required: - action @@ -218956,11 +219320,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - release: *740 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + release: *742 + repository: *693 sender: *4 required: - action @@ -219077,11 +219441,11 @@ webhooks: type: boolean required: - to - enterprise: *688 - installation: *689 - organization: *690 - release: *740 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + release: *742 + repository: *693 sender: *4 required: - action @@ -219159,9 +219523,9 @@ webhooks: type: string enum: - prereleased - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -219497,7 +219861,7 @@ webhooks: - string - 'null' format: uri - repository: *691 + repository: *693 sender: *4 required: - action @@ -219573,10 +219937,10 @@ webhooks: type: string enum: - published - enterprise: *688 - installation: *689 - organization: *690 - release: &741 + enterprise: *690 + installation: *691 + organization: *692 + release: &743 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219909,7 +220273,7 @@ webhooks: - string - 'null' format: uri - repository: *691 + repository: *693 sender: *4 required: - action @@ -219985,11 +220349,11 @@ webhooks: type: string enum: - released - enterprise: *688 - installation: *689 - organization: *690 - release: *740 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + release: *742 + repository: *693 sender: *4 required: - action @@ -220065,11 +220429,11 @@ webhooks: type: string enum: - unpublished - enterprise: *688 - installation: *689 - organization: *690 - release: *741 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + release: *743 + repository: *693 sender: *4 required: - action @@ -220145,11 +220509,11 @@ webhooks: type: string enum: - published - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - repository_advisory: *609 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + repository_advisory: *611 sender: *4 required: - action @@ -220225,11 +220589,11 @@ webhooks: type: string enum: - reported - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - repository_advisory: *609 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + repository_advisory: *611 sender: *4 required: - action @@ -220305,10 +220669,10 @@ webhooks: type: string enum: - archived - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220385,10 +220749,10 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220466,10 +220830,10 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220554,10 +220918,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220672,10 +221036,10 @@ webhooks: - 'null' items: type: string - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220747,10 +221111,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 status: type: string @@ -220831,10 +221195,10 @@ webhooks: type: string enum: - privatized - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -220911,10 +221275,10 @@ webhooks: type: string enum: - publicized - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -221008,10 +221372,10 @@ webhooks: - name required: - repository - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -221091,11 +221455,11 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - repository_ruleset: *281 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + repository_ruleset: *283 sender: *4 required: - action @@ -221173,11 +221537,11 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - repository_ruleset: *281 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + repository_ruleset: *283 sender: *4 required: - action @@ -221255,11 +221619,11 @@ webhooks: type: string enum: - edited - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - repository_ruleset: *281 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + repository_ruleset: *283 changes: type: object properties: @@ -221278,16 +221642,16 @@ webhooks: properties: added: type: array - items: *256 + items: *258 deleted: type: array - items: *256 + items: *258 updated: type: array items: type: object properties: - condition: *256 + condition: *258 changes: type: object properties: @@ -221320,16 +221684,16 @@ webhooks: properties: added: type: array - items: *566 + items: *568 deleted: type: array - items: *566 + items: *568 updated: type: array items: type: object properties: - rule: *566 + rule: *568 changes: type: object properties: @@ -221566,10 +221930,10 @@ webhooks: - from required: - owner - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -221647,10 +222011,10 @@ webhooks: type: string enum: - unarchived - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -221728,7 +222092,7 @@ webhooks: type: string enum: - create - alert: &742 + alert: &744 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -221852,10 +222216,10 @@ webhooks: type: string enum: - open - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222065,10 +222429,10 @@ webhooks: type: string enum: - dismissed - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222146,11 +222510,11 @@ webhooks: type: string enum: - reopen - alert: *742 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + alert: *744 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222352,10 +222716,10 @@ webhooks: enum: - fixed - open - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222433,17 +222797,17 @@ webhooks: type: string enum: - created - alert: &743 + alert: &745 type: object properties: - number: *152 - created_at: *153 + number: *154 + created_at: *155 updated_at: anyOf: - type: 'null' - - *154 - url: *155 - html_url: *156 + - *156 + url: *157 + html_url: *158 locations_url: type: string format: uri @@ -222547,10 +222911,10 @@ webhooks: anyOf: - type: 'null' - *4 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222631,11 +222995,11 @@ webhooks: type: string enum: - created - alert: *743 - installation: *689 - location: *744 - organization: *690 - repository: *691 + alert: *745 + installation: *691 + location: *746 + organization: *692 + repository: *693 sender: *4 required: - location @@ -222873,11 +223237,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *743 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + alert: *745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -222955,11 +223319,11 @@ webhooks: type: string enum: - reopened - alert: *743 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + alert: *745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -223037,11 +223401,11 @@ webhooks: type: string enum: - resolved - alert: *743 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + alert: *745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -223119,11 +223483,11 @@ webhooks: type: string enum: - validated - alert: *743 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + alert: *745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -223253,10 +223617,10 @@ webhooks: - organization - enterprise - - repository: *691 - enterprise: *688 - installation: *689 - organization: *690 + repository: *693 + enterprise: *690 + installation: *691 + organization: *692 sender: *4 required: - action @@ -223334,11 +223698,11 @@ webhooks: type: string enum: - published - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - security_advisory: &745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + security_advisory: &747 description: The details of the security advisory, including summary, description, and severity. type: object @@ -223524,11 +223888,11 @@ webhooks: type: string enum: - updated - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 - security_advisory: *745 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 + security_advisory: *747 sender: *4 required: - action @@ -223601,10 +223965,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -223790,11 +224154,11 @@ webhooks: from: type: object properties: - security_and_analysis: *255 - enterprise: *688 - installation: *689 - organization: *690 - repository: *315 + security_and_analysis: *257 + enterprise: *690 + installation: *691 + organization: *692 + repository: *317 sender: *4 required: - changes @@ -223872,12 +224236,12 @@ webhooks: type: string enum: - cancelled - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: &746 + sponsorship: &748 type: object properties: created_at: @@ -224182,12 +224546,12 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: *746 + sponsorship: *748 required: - action - sponsorship @@ -224275,12 +224639,12 @@ webhooks: type: string required: - from - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: *746 + sponsorship: *748 required: - action - changes @@ -224357,17 +224721,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &747 + effective_date: &749 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: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: *746 + sponsorship: *748 required: - action - sponsorship @@ -224441,7 +224805,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &748 + changes: &750 type: object properties: tier: @@ -224485,13 +224849,13 @@ webhooks: - from required: - tier - effective_date: *747 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + effective_date: *749 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: *746 + sponsorship: *748 required: - action - changes @@ -224568,13 +224932,13 @@ webhooks: type: string enum: - tier_changed - changes: *748 - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + changes: *750 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - sponsorship: *746 + sponsorship: *748 required: - action - changes @@ -224648,10 +225012,10 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224735,10 +225099,10 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -225172,15 +225536,15 @@ webhooks: type: - string - 'null' - enterprise: *688 + enterprise: *690 id: description: The unique identifier of the status. type: integer - installation: *689 + installation: *691 name: type: string - organization: *690 - repository: *691 + organization: *692 + repository: *693 sender: *4 sha: description: The Commit SHA. @@ -225296,9 +225660,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -225388,9 +225752,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -225480,9 +225844,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -225572,9 +225936,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *78 - installation: *689 - organization: *690 - repository: *691 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -225651,12 +226015,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - team: &749 + team: &751 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -225886,9 +226250,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 repository: title: Repository description: A git repository @@ -226358,7 +226722,7 @@ webhooks: - topics - visibility sender: *4 - team: *749 + team: *751 required: - action - team @@ -226434,9 +226798,9 @@ webhooks: type: string enum: - created - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 repository: title: Repository description: A git repository @@ -226906,7 +227270,7 @@ webhooks: - topics - visibility sender: *4 - team: *749 + team: *751 required: - action - team @@ -226983,9 +227347,9 @@ webhooks: type: string enum: - deleted - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 repository: title: Repository description: A git repository @@ -227455,7 +227819,7 @@ webhooks: - topics - visibility sender: *4 - team: *749 + team: *751 required: - action - team @@ -227599,9 +227963,9 @@ webhooks: - from required: - permissions - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 repository: title: Repository description: A git repository @@ -228071,7 +228435,7 @@ webhooks: - topics - visibility sender: *4 - team: *749 + team: *751 required: - action - changes @@ -228149,9 +228513,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *688 - installation: *689 - organization: *690 + enterprise: *690 + installation: *691 + organization: *692 repository: title: Repository description: A git repository @@ -228621,7 +228985,7 @@ webhooks: - topics - visibility sender: *4 - team: *749 + team: *751 required: - action - team @@ -228697,10 +229061,10 @@ webhooks: type: string enum: - started - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 required: - action @@ -228773,17 +229137,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *688 + enterprise: *690 inputs: type: - object - 'null' additionalProperties: true - installation: *689 - organization: *690 + installation: *691 + organization: *692 ref: type: string - repository: *691 + repository: *693 sender: *4 workflow: type: string @@ -228865,10 +229229,10 @@ webhooks: type: string enum: - completed - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 workflow_job: allOf: @@ -229124,7 +229488,7 @@ webhooks: type: string required: - conclusion - deployment: *461 + deployment: *463 required: - action - repository @@ -229203,10 +229567,10 @@ webhooks: type: string enum: - in_progress - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 workflow_job: allOf: @@ -229488,7 +229852,7 @@ webhooks: required: - status - steps - deployment: *461 + deployment: *463 required: - action - repository @@ -229567,10 +229931,10 @@ webhooks: type: string enum: - queued - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 workflow_job: type: object @@ -229716,7 +230080,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *461 + deployment: *463 required: - action - repository @@ -229795,10 +230159,10 @@ webhooks: type: string enum: - waiting - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 workflow_job: type: object @@ -229945,7 +230309,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *461 + deployment: *463 required: - action - repository @@ -230025,12 +230389,12 @@ webhooks: type: string enum: - completed - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - workflow: *703 + workflow: *705 workflow_run: title: Workflow Run type: object @@ -231049,12 +231413,12 @@ webhooks: type: string enum: - in_progress - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - workflow: *703 + workflow: *705 workflow_run: title: Workflow Run type: object @@ -232058,12 +232422,12 @@ webhooks: type: string enum: - requested - enterprise: *688 - installation: *689 - organization: *690 - repository: *691 + enterprise: *690 + installation: *691 + organization: *692 + repository: *693 sender: *4 - workflow: *703 + workflow: *705 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 715ac919b..413f06000 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -52805,10 +52805,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -53046,10 +53044,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -53209,10 +53205,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -53486,10 +53480,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -53690,10 +53682,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -53814,10 +53804,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -54644,10 +54632,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -54874,10 +54860,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -55022,10 +55006,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -55267,10 +55249,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -55486,10 +55466,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -55682,10 +55660,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -55804,10 +55780,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -133258,6 +133232,519 @@ } } }, + "/orgs/{org}/artifacts/metadata/deployment-record": { + "post": { + "summary": "Create an artifact deployment record", + "description": "Create or update deployment records for an artifact associated with an organization.\nThis endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment.", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-artifact-deployment-record", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-an-artifact-deployment-record" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "examples": [ + "libfoo" + ] + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The status of the artifact. Can be either deployed or decommissioned.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "cluster": { + "type": "string", + "description": "The deployment cluster." + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment." + }, + "tags": { + "type": "object", + "description": "The tags associated with the deployment.", + "additionalProperties": { + "type": "string" + }, + "maxProperties": 5 + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + } + }, + "required": [ + "name", + "digest", + "status", + "logical_environment", + "deployment_name" + ] + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "data-access": "sensitive" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": { + "post": { + "summary": "Set cluster deployment records", + "description": "Set deployment records for a given cluster.", + "tags": [ + "orgs" + ], + "operationId": "orgs/set-cluster-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#set-cluster-deployment-records" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "cluster", + "in": "path", + "description": "The cluster name.", + "required": true, + "schema": { + "type": "string", + "minLength": 1, + "maxLength": 64, + "pattern": "^[a-zA-Z0-9._-]+$" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "deployments": { + "type": "array", + "description": "The list of deployments to record.", + "items": { + "type": "object", + "maxLength": 100, + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "maxLength": 255 + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The deployment status of the artifact.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment.", + "minLength": 1, + "maxLength": 128 + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + }, + "tags": { + "type": "object", + "description": "Key-value pairs to tag the deployment record.", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "version": "2.1.0", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "runtime-risk": "sensitive-data" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/metadata/storage-record": { "post": { "summary": "Create artifact metadata storage record", @@ -133484,6 +133971,155 @@ } } }, + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": { + "get": { + "summary": "List artifact deployment records", + "description": "List deployment records for an artifact metadata associated with an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-artifact-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-deployment-records" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "subject_digest", + "description": "The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`.", + "in": "path", + "required": true, + "schema": { + "type": "string", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + } + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records for this digest and organization", + "type": "integer", + "examples": [ + 3 + ] + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": { "get": { "summary": "List artifact storage records", @@ -230894,10 +231530,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -231124,10 +231758,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -231272,10 +231904,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -231508,10 +232138,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -231704,10 +232332,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -231826,10 +232452,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -365444,6 +366068,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -366278,6 +366903,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -368113,6 +368739,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -742326,16 +742953,14 @@ "default": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -742524,9 +743149,8 @@ "examples": { "default": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -742757,9 +743381,8 @@ "examples": { "default": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -806197,16 +806820,14 @@ "default": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -879298,10 +879919,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -880387,10 +881006,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -880976,10 +881593,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -1201997,10 +1202612,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -1202870,10 +1203483,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 5de251e72..41507805b 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -915,7 +915,7 @@ paths: - subscriptions_url - type - url - type: &419 + type: &421 type: string description: The type of credit the user is receiving. enum: @@ -1081,7 +1081,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &738 + - &740 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1666,7 +1666,7 @@ paths: schema: type: integer default: 30 - - &333 + - &335 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1682,7 +1682,7 @@ paths: application/json: schema: type: array - items: &334 + items: &336 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1778,7 +1778,7 @@ paths: - installation_id - repository_id examples: - default: &335 + default: &337 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1810,7 +1810,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &748 + schema: &750 title: Scim Error description: Scim Error type: object @@ -1913,7 +1913,7 @@ paths: description: Response content: application/json: - schema: &336 + schema: &338 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2048,7 +2048,7 @@ paths: - request - response examples: - default: &337 + default: &339 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -9101,7 +9101,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &749 + '401': &751 description: Authorization failure '404': *6 x-github: @@ -11939,7 +11939,7 @@ paths: required: false schema: type: string - - &289 + - &291 name: include description: |- The event types to include: @@ -11957,7 +11957,7 @@ paths: - web - git - all - - &290 + - &292 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. @@ -11965,7 +11965,7 @@ paths: required: false schema: type: string - - &291 + - &293 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. @@ -11973,7 +11973,7 @@ paths: required: false schema: type: string - - &292 + - &294 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -11995,7 +11995,7 @@ paths: application/json: schema: type: array - items: &293 + items: &295 type: object properties: "@timestamp": @@ -12117,7 +12117,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &294 + default: &296 value: - "@timestamp": 1606929874512 action: team.add_member @@ -12785,7 +12785,7 @@ paths: application/json: schema: type: array - items: &295 + items: &297 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -12957,7 +12957,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &296 + default: &298 value: - id: 21 number: 42 @@ -13062,7 +13062,7 @@ paths: application/json: schema: type: array - items: &298 + items: &300 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -13193,7 +13193,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &299 + default: &301 value: - id: 21 number: 42 @@ -13278,7 +13278,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *39 - - &304 + - &306 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -13288,7 +13288,7 @@ paths: schema: &105 type: string description: The name of the tool used to generate the code scanning analysis. - - &305 + - &307 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -13312,7 +13312,7 @@ paths: be returned. in: query required: false - schema: &306 + schema: &308 type: string description: State of a code scanning alert. enum: @@ -13337,7 +13337,7 @@ paths: application/json: schema: type: array - items: &307 + items: &309 type: object properties: number: &119 @@ -13366,7 +13366,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &530 + instances_url: &532 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -13402,7 +13402,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &531 + dismissed_reason: &533 type: - string - 'null' @@ -13413,14 +13413,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &532 + dismissed_comment: &534 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &533 + rule: &535 type: object properties: id: @@ -13481,7 +13481,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &534 + tool: &536 type: object properties: name: *105 @@ -13492,15 +13492,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *106 - most_recent_instance: &535 + most_recent_instance: &537 type: object properties: - ref: &528 + ref: &530 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &545 + analysis_key: &547 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -13511,7 +13511,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &546 + category: &548 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -13902,7 +13902,7 @@ paths: - most_recent_instance - repository examples: - default: &308 + default: &310 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -14561,7 +14561,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &309 + code_scanning_options: &311 type: - object - 'null' @@ -14759,7 +14759,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &313 type: array description: A list of default code security configurations items: @@ -14775,7 +14775,7 @@ paths: default configuration: *108 examples: - default: &312 + default: &314 value: - default_for_new_repos: public configuration: @@ -15229,7 +15229,7 @@ paths: default: value: default_for_new_repos: all - configuration: &310 + configuration: &312 value: id: 1325 target_type: organization @@ -15314,7 +15314,7 @@ paths: application/json: schema: type: array - items: &313 + items: &315 type: object description: Repositories associated with a code security configuration and attachment status @@ -15338,7 +15338,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &314 + repository: &316 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -15839,7 +15839,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &300 + - &302 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -15916,7 +15916,7 @@ paths: parent: anyOf: - type: 'null' - - &368 + - &370 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -17263,7 +17263,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *39 - - &320 + - &322 name: state in: query description: |- @@ -17272,7 +17272,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &321 + - &323 name: severity in: query description: |- @@ -17281,7 +17281,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &322 + - &324 name: ecosystem in: query description: |- @@ -17290,14 +17290,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &323 + - &325 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &324 + - &326 name: epss_percentage in: query description: |- @@ -17309,7 +17309,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &581 + - &583 name: has in: query description: |- @@ -17323,7 +17323,7 @@ paths: type: string enum: - patch - - &325 + - &327 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -17333,7 +17333,7 @@ paths: enum: - development - runtime - - &326 + - &328 name: sort in: query description: |- @@ -17359,7 +17359,7 @@ paths: application/json: schema: type: array - items: &327 + items: &329 type: object description: A Dependabot alert. properties: @@ -17426,7 +17426,7 @@ paths: - direct - transitive - - security_advisory: &582 + security_advisory: &584 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17662,7 +17662,7 @@ paths: dismissal. maxLength: 280 fixed_at: *129 - auto_dismissed_at: &583 + auto_dismissed_at: &585 type: - string - 'null' @@ -17689,7 +17689,7 @@ paths: - repository additionalProperties: false examples: - default: &328 + default: &330 value: - number: 2 state: dismissed @@ -18807,7 +18807,7 @@ paths: - name - created_on examples: - default: &429 + default: &431 value: total_count: 2 network_configurations: @@ -19030,7 +19030,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *39 - - &430 + - &432 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -19042,7 +19042,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &433 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -19081,7 +19081,7 @@ paths: - subnet_id - region examples: - default: &432 + default: &434 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -19177,8 +19177,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -19400,8 +19398,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -19706,8 +19702,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -19915,7 +19909,7 @@ paths: required: true content: application/json: - schema: &398 + schema: &400 title: Custom Property Set Payload description: Custom property set payload type: object @@ -19955,8 +19949,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -21092,7 +21084,7 @@ paths: conditions: anyOf: - *151 - - &402 + - &404 title: Organization ruleset conditions type: object description: |- @@ -21142,7 +21134,7 @@ paths: - object rules: type: array - items: &704 + items: &706 title: Repository Rule type: object description: A repository rule. @@ -21151,7 +21143,7 @@ paths: - *160 - *161 - *162 - - &701 + - &703 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -21245,7 +21237,7 @@ paths: - *176 - *177 - *178 - - &702 + - &704 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. @@ -21501,7 +21493,7 @@ paths: type: string format: date-time examples: - default: &405 + default: &407 value: - version_id: 3 actor: @@ -21554,7 +21546,7 @@ paths: description: Response content: application/json: - schema: &406 + schema: &408 allOf: - *183 - type: object @@ -21609,7 +21601,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &407 + - &409 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -21620,7 +21612,7 @@ paths: enum: - open - resolved - - &408 + - &410 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -21630,7 +21622,7 @@ paths: required: false schema: type: string - - &409 + - &411 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -21639,7 +21631,7 @@ paths: required: false schema: type: string - - &410 + - &412 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. @@ -21655,7 +21647,7 @@ paths: - *17 - *102 - *103 - - &411 + - &413 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -21664,7 +21656,7 @@ paths: required: false schema: type: string - - &412 + - &414 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -21673,7 +21665,7 @@ paths: schema: type: boolean default: false - - &413 + - &415 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -21682,7 +21674,7 @@ paths: schema: type: boolean default: false - - &414 + - &416 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -21698,7 +21690,7 @@ paths: application/json: schema: type: array - items: &415 + items: &417 type: object properties: number: *119 @@ -21714,14 +21706,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &716 + state: &718 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: &717 + resolution: &719 type: - string - 'null' @@ -21828,14 +21820,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &718 + - &720 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &720 + - &722 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -21892,7 +21884,7 @@ paths: - blob_url - commit_sha - commit_url - - &721 + - &723 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. @@ -21953,7 +21945,7 @@ paths: - page_url - commit_sha - commit_url - - &722 + - &724 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -21968,7 +21960,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &723 + - &725 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -21983,7 +21975,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &724 + - &726 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -21998,7 +21990,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &725 + - &727 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22013,7 +22005,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &726 + - &728 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22028,7 +22020,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &727 + - &729 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22043,7 +22035,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &728 + - &730 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. @@ -22058,7 +22050,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &729 + - &731 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. @@ -22073,7 +22065,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &730 + - &732 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. @@ -22088,7 +22080,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &731 + - &733 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. @@ -22103,7 +22095,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &732 + - &734 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 @@ -22128,7 +22120,7 @@ paths: - type: 'null' - *4 examples: - default: &416 + default: &418 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -22337,7 +22329,7 @@ paths: description: Response content: application/json: - schema: &417 + schema: &419 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -22424,7 +22416,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *185 examples: - default: &418 + default: &420 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -22568,7 +22560,7 @@ paths: description: Response content: application/json: - schema: &420 + schema: &422 type: object properties: total_minutes_used: @@ -22638,7 +22630,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &421 + default: &423 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -22669,7 +22661,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &422 + - &424 name: advanced_security_product in: query description: | @@ -22689,7 +22681,7 @@ paths: description: Success content: application/json: - schema: &423 + schema: &425 type: object properties: total_advanced_security_committers: @@ -22752,7 +22744,7 @@ paths: required: - repositories examples: - default: &424 + default: &426 value: total_advanced_security_committers: 2 total_count: 2 @@ -24094,7 +24086,7 @@ paths: description: Response content: application/json: - schema: &425 + schema: &427 type: object properties: total_gigabytes_bandwidth_used: @@ -24112,7 +24104,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &426 + default: &428 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -24356,7 +24348,7 @@ paths: description: Response content: application/json: - schema: &427 + schema: &429 type: object properties: days_left_in_billing_cycle: @@ -24374,7 +24366,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &428 + default: &430 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -25729,7 +25721,7 @@ paths: milestone: anyOf: - type: 'null' - - &389 + - &391 title: Milestone description: A collection of related issues and pull requests. @@ -25901,7 +25893,7 @@ paths: timeline_url: type: string format: uri - type: &355 + type: &357 title: Issue Type description: The type of issue. type: @@ -26010,7 +26002,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &776 + sub_issues_summary: &778 title: Sub-issues Summary type: object properties: @@ -26031,7 +26023,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &777 + issue_dependencies_summary: &779 title: Issue Dependencies Summary type: object properties: @@ -26050,7 +26042,7 @@ paths: - total_blocking issue_field_values: type: array - items: &778 + items: &780 title: Issue Field Value description: A value assigned to an issue field type: object @@ -26145,7 +26137,7 @@ paths: - user - created_at - updated_at - comment: &639 + comment: &641 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -26711,7 +26703,7 @@ paths: url: type: string format: uri - user: &790 + user: &792 title: Public User description: Public User type: object @@ -28606,7 +28598,7 @@ paths: - closed - all default: open - - &358 + - &360 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -28657,7 +28649,7 @@ paths: type: array items: *219 examples: - default: &359 + default: &361 value: - id: 1 node_id: MDU6SXNzdWUx @@ -30068,14 +30060,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &452 + - &454 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &453 + - &455 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -30137,7 +30129,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &464 + '301': &466 description: Moved permanently content: application/json: @@ -30159,7 +30151,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &668 + - &670 name: all description: If `true`, show notifications marked as read. in: query @@ -30167,7 +30159,7 @@ paths: schema: type: boolean default: false - - &669 + - &671 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -30177,7 +30169,7 @@ paths: type: boolean default: false - *209 - - &670 + - &672 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: @@ -30548,7 +30540,7 @@ paths: type: boolean examples: - false - security_and_analysis: &399 + security_and_analysis: &401 type: - object - 'null' @@ -30721,7 +30713,7 @@ paths: - url - subscription_url examples: - default: &671 + default: &673 value: - id: '1' repository: @@ -31326,7 +31318,7 @@ paths: - 3 custom_roles: type: array - items: &316 + items: &318 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -31375,7 +31367,7 @@ paths: - created_at - updated_at examples: - default: &317 + default: &319 value: id: 8030 name: Security Engineer @@ -31702,7 +31694,7 @@ paths: type: array items: *145 examples: - default: &677 + default: &679 value: - property_name: environment value: production @@ -31752,7 +31744,7 @@ paths: required: - properties examples: - default: &678 + default: &680 value: properties: - property_name: environment @@ -33207,7 +33199,7 @@ paths: type: integer repository_cache_usages: type: array - items: &469 + items: &471 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -35330,7 +35322,7 @@ paths: type: array items: *273 examples: - default: &793 + default: &795 value: total_count: 1 repositories: @@ -36374,7 +36366,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &491 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -36409,7 +36401,7 @@ paths: - key_id - key examples: - default: &490 + default: &492 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -36822,7 +36814,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *81 - - &474 + - &476 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -37370,6 +37362,330 @@ paths: enabledForGitHubApps: true category: announcement-banners subcategory: organizations + "/orgs/{org}/artifacts/metadata/deployment-record": + post: + summary: Create an artifact deployment record + description: |- + Create or update deployment records for an artifact associated with an organization. + This endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment. + tags: + - orgs + operationId: orgs/create-artifact-deployment-record + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-an-artifact-deployment-record + parameters: + - *81 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + examples: + - libfoo + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The status of the artifact. Can be either deployed + or decommissioned. + enum: + - deployed + - decommissioned + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + cluster: + type: string + description: The deployment cluster. + deployment_name: + type: string + description: The name of the deployment. + tags: + type: object + description: The tags associated with the deployment. + additionalProperties: + type: string + maxProperties: 5 + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + required: + - name + - digest + - status + - logical_environment + - deployment_name + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + data-access: sensitive + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: &289 + title: Artifact Deployment Record + description: Artifact Metadata Deployment Record + type: object + properties: + id: + type: integer + digest: + type: string + logical_environment: + type: string + physical_environment: + type: string + cluster: + type: string + deployment_name: + type: string + tags: + type: object + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the + deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + created_at: + type: string + updated_at: + type: string + attestation_id: + type: + - integer + - 'null' + description: The ID of the provenance attestation associated + with the deployment record. + examples: + default: &290 + value: + total_count: 1 + deployment_records: + - id: 123 + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: prod-deployment + tags: + data: sensitive + created: '2011-01-26T19:14:43Z' + updated_at: '2011-01-26T19:14:43Z' + attestation_id: 456 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": + post: + summary: Set cluster deployment records + description: Set deployment records for a given cluster. + tags: + - orgs + operationId: orgs/set-cluster-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#set-cluster-deployment-records + parameters: + - *81 + - name: cluster + in: path + description: The cluster name. + required: true + schema: + type: string + minLength: 1 + maxLength: 64 + pattern: "^[a-zA-Z0-9._-]+$" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + deployments: + type: array + description: The list of deployments to record. + items: + type: object + maxLength: 100 + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + maxLength: 255 + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The deployment status of the artifact. + enum: + - deployed + - decommissioned + deployment_name: + type: string + description: The name of the deployment. + minLength: 1 + maxLength: 128 + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + tags: + type: object + description: Key-value pairs to tag the deployment record. + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + version: 2.1.0 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + runtime-risk: sensitive-data + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: *289 + examples: + default: *290 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/metadata/storage-record": post: summary: Create artifact metadata storage record @@ -37535,6 +37851,52 @@ paths: enabledForGitHubApps: true category: orgs subcategory: artifact-metadata + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": + get: + summary: List artifact deployment records + description: List deployment records for an artifact metadata associated with + an organization. + tags: + - orgs + operationId: orgs/list-artifact-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-deployment-records + parameters: + - *81 + - name: subject_digest + description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. + in: path + required: true + schema: + type: string + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + responses: + '200': + description: Successful response + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records for this digest + and organization + type: integer + examples: + - 3 + deployment_records: + type: array + items: *289 + examples: + default: *290 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": get: summary: List artifact storage records @@ -37659,12 +38021,12 @@ paths: required: - subject_digests examples: - default: &820 + default: &822 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &821 + withPredicateType: &823 value: subject_digests: - sha256:abc123 @@ -37723,7 +38085,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &822 + default: &824 value: attestations_subject_digests: - sha256:abc: @@ -38072,7 +38434,7 @@ paths: initiator: type: string examples: - default: &503 + default: &505 value: attestations: - bundle: @@ -38198,10 +38560,10 @@ paths: required: false schema: type: string - - *289 - - *290 - *291 - *292 + - *293 + - *294 - *17 responses: '200': @@ -38210,9 +38572,9 @@ paths: application/json: schema: type: array - items: *293 + items: *295 examples: - default: *294 + default: *296 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -38335,7 +38697,7 @@ paths: subcategory: bypass-requests parameters: - *81 - - &297 + - &299 name: repository_name description: The name of the repository to filter on. in: query @@ -38354,9 +38716,9 @@ paths: application/json: schema: type: array - items: *295 + items: *297 examples: - default: *296 + default: *298 '404': *6 '500': *38 "/orgs/{org}/bypass-requests/secret-scanning": @@ -38380,7 +38742,7 @@ paths: subcategory: delegated-bypass parameters: - *81 - - *297 + - *299 - *97 - *98 - *99 @@ -38394,9 +38756,9 @@ paths: application/json: schema: type: array - items: *298 + items: *300 examples: - default: *299 + default: *301 '404': *6 '500': *38 "/orgs/{org}/campaigns": @@ -38423,7 +38785,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &301 + schema: &303 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -38449,7 +38811,7 @@ paths: application/json: schema: type: array - items: &302 + items: &304 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -38480,7 +38842,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *300 + items: *302 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -38499,7 +38861,7 @@ paths: - string - 'null' format: date-time - state: *301 + state: *303 contact_link: description: The contact link of the campaign. type: @@ -38722,9 +39084,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: &303 + default: &305 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -38807,9 +39169,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '404': *6 '422': description: Unprocessable Entity @@ -38887,7 +39249,7 @@ paths: - string - 'null' format: uri - state: *301 + state: *303 examples: default: value: @@ -38897,9 +39259,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '400': description: Bad Request content: @@ -38966,8 +39328,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *81 - - *304 - - *305 + - *306 + - *307 - *102 - *103 - *19 @@ -38978,7 +39340,7 @@ paths: be returned. in: query required: false - schema: *306 + schema: *308 - name: sort description: The property by which to sort the results. in: query @@ -38994,7 +39356,7 @@ paths: be returned. in: query required: false - schema: &529 + schema: &531 type: string description: Severity of a code scanning alert. enum: @@ -39012,9 +39374,9 @@ paths: application/json: schema: type: array - items: *307 + items: *309 examples: - default: *308 + default: *310 headers: Link: *41 '404': *6 @@ -39229,7 +39591,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *309 + code_scanning_options: *311 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -39372,7 +39734,7 @@ paths: application/json: schema: *108 examples: - default: *310 + default: *312 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39400,9 +39762,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *313 examples: - default: *312 + default: *314 '304': *35 '403': *27 '404': *6 @@ -39489,7 +39851,7 @@ paths: application/json: schema: *108 examples: - default: *310 + default: *312 '304': *35 '403': *27 '404': *6 @@ -39911,7 +40273,7 @@ paths: default: value: default_for_new_repos: all - configuration: *310 + configuration: *312 '403': *27 '404': *6 x-github: @@ -39964,13 +40326,13 @@ paths: application/json: schema: type: array - items: *313 + items: *315 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *314 + repository: *316 '403': *27 '404': *6 x-github: @@ -40010,7 +40372,7 @@ paths: type: integer codespaces: type: array - items: &360 + items: &362 type: object title: Codespace description: A codespace. @@ -40045,7 +40407,7 @@ paths: machine: anyOf: - type: 'null' - - &558 + - &560 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -40332,7 +40694,7 @@ paths: - pulls_url - recent_folders examples: - default: &361 + default: &363 value: total_count: 3 codespaces: @@ -40956,7 +41318,7 @@ paths: type: integer secrets: type: array - items: &315 + items: &317 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -40997,7 +41359,7 @@ paths: - updated_at - visibility examples: - default: &559 + default: &561 value: total_count: 2 secrets: @@ -41035,7 +41397,7 @@ paths: description: Response content: application/json: - schema: &560 + schema: &562 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -41070,7 +41432,7 @@ paths: - key_id - key examples: - default: &561 + default: &563 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -41100,9 +41462,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: &563 + default: &565 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -42189,7 +42551,7 @@ paths: - 3 custom_roles: type: array - items: *316 + items: *318 examples: default: value: @@ -42281,7 +42643,7 @@ paths: required: true content: application/json: - schema: &318 + schema: &320 type: object properties: name: @@ -42323,9 +42685,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '422': *15 '404': *6 x-github: @@ -42356,9 +42718,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '404': *6 x-github: githubCloudOnly: true @@ -42386,7 +42748,7 @@ paths: required: true content: application/json: - schema: &319 + schema: &321 type: object properties: name: @@ -42425,9 +42787,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '422': *15 '404': *6 x-github: @@ -42485,7 +42847,7 @@ paths: required: true content: application/json: - schema: *318 + schema: *320 examples: default: value: @@ -42499,9 +42861,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '422': *15 '404': *6 x-github: @@ -42538,9 +42900,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '404': *6 x-github: githubCloudOnly: true @@ -42574,7 +42936,7 @@ paths: required: true content: application/json: - schema: *319 + schema: *321 examples: default: value: @@ -42589,9 +42951,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '422': *15 '404': *6 x-github: @@ -42651,11 +43013,11 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *81 - - *320 - - *321 - *322 - *323 - *324 + - *325 + - *326 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -42693,8 +43055,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *325 - - *326 + - *327 + - *328 - *104 - *102 - *103 @@ -42706,9 +43068,9 @@ paths: application/json: schema: type: array - items: *327 + items: *329 examples: - default: *328 + default: *330 '304': *35 '400': *14 '403': *27 @@ -42752,7 +43114,7 @@ paths: type: integer secrets: type: array - items: &329 + items: &331 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -42831,7 +43193,7 @@ paths: description: Response content: application/json: - schema: &586 + schema: &588 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -42850,7 +43212,7 @@ paths: - key_id - key examples: - default: &587 + default: &589 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -42880,7 +43242,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *331 examples: default: value: @@ -43180,7 +43542,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *81 - - &595 + - &597 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -43188,7 +43550,7 @@ paths: required: false schema: type: string - - &596 + - &598 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -43196,7 +43558,7 @@ paths: required: false schema: type: string - - &597 + - &599 name: time_period description: |- The time period to filter by. @@ -43212,7 +43574,7 @@ paths: - week - month default: month - - &598 + - &600 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -43227,7 +43589,7 @@ paths: - denied - all default: all - - *297 + - *299 - *17 - *19 responses: @@ -43237,7 +43599,7 @@ paths: application/json: schema: type: array - items: &599 + items: &601 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -43400,7 +43762,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &600 + default: &602 value: - id: 21 number: 42 @@ -43487,11 +43849,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *81 - - *297 + - *299 - *97 - *98 - *99 - - &601 + - &603 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -43517,7 +43879,7 @@ paths: application/json: schema: type: array - items: &602 + items: &604 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -43644,7 +44006,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &603 + default: &605 value: - id: 21 number: 42 @@ -43732,7 +44094,7 @@ paths: application/json: schema: type: array - items: &370 + items: &372 title: Package description: A software package type: object @@ -43803,7 +44165,7 @@ paths: - created_at - updated_at examples: - default: &371 + default: &373 value: - id: 197 name: hello_docker @@ -43990,7 +44352,7 @@ paths: description: Response content: application/json: - schema: &447 + schema: &449 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -44080,7 +44442,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &448 + default: &450 value: group_id: '123' group_name: Octocat admins @@ -44135,7 +44497,7 @@ paths: description: Response content: application/json: - schema: &445 + schema: &447 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -44175,7 +44537,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &446 + default: &448 value: groups: - group_id: '123' @@ -44219,7 +44581,7 @@ paths: application/json: schema: type: array - items: &352 + items: &354 title: Organization Invitation description: Organization Invitation type: object @@ -44273,7 +44635,7 @@ paths: - invitation_teams_url - node_id examples: - default: &353 + default: &355 value: - id: 1 login: monalisa @@ -44340,7 +44702,7 @@ paths: application/json: schema: type: array - items: &400 + items: &402 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -44354,7 +44716,7 @@ paths: - name - description examples: - default: &401 + default: &403 value: - name: add_assignee description: Assign or remove a user @@ -44395,7 +44757,7 @@ paths: application/json: schema: type: array - items: &330 + items: &332 title: Org Hook description: Org Hook type: object @@ -44578,9 +44940,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *332 examples: - default: &331 + default: &333 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -44625,7 +44987,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *81 - - &332 + - &334 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -44638,9 +45000,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *332 examples: - default: *331 + default: *333 '404': *6 x-github: githubCloudOnly: false @@ -44662,7 +45024,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *81 - - *332 + - *334 requestBody: required: false content: @@ -44708,7 +45070,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *332 examples: default: value: @@ -44748,7 +45110,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *81 - - *332 + - *334 responses: '204': description: Response @@ -44774,7 +45136,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *81 - - *332 + - *334 responses: '200': description: Response @@ -44803,7 +45165,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *81 - - *332 + - *334 requestBody: required: false content: @@ -44852,9 +45214,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *81 - - *332 + - *334 - *17 - - *333 + - *335 responses: '200': description: Response @@ -44862,9 +45224,9 @@ paths: application/json: schema: type: array - items: *334 + items: *336 examples: - default: *335 + default: *337 '400': *14 '422': *15 x-github: @@ -44888,16 +45250,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *81 - - *332 + - *334 - *16 responses: '200': description: Response content: application/json: - schema: *336 + schema: *338 examples: - default: *337 + default: *339 '400': *14 '422': *15 x-github: @@ -44921,7 +45283,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *81 - - *332 + - *334 - *16 responses: '202': *37 @@ -44948,7 +45310,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *81 - - *332 + - *334 responses: '204': description: Response @@ -44971,7 +45333,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *81 - - &342 + - &344 name: actor_type in: path description: The type of the actor @@ -44984,14 +45346,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &343 + - &345 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &338 + - &340 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -44999,7 +45361,7 @@ paths: required: true schema: type: string - - &339 + - &341 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -45094,12 +45456,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *81 - - *338 - - *339 + - *340 + - *341 - *19 - *17 - *104 - - &348 + - &350 name: sort description: The property to sort the results by. in: query @@ -45179,14 +45541,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *81 - - *338 - - *339 + - *340 + - *341 responses: '200': description: Response content: application/json: - schema: &340 + schema: &342 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -45202,7 +45564,7 @@ paths: type: integer format: int64 examples: - default: &341 + default: &343 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -45223,23 +45585,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *81 - - &344 + - &346 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *338 - - *339 + - *340 + - *341 responses: '200': description: Response content: application/json: - schema: *340 + schema: *342 examples: - default: *341 + default: *343 x-github: enabledForGitHubApps: true category: orgs @@ -45258,18 +45620,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *81 - - *338 - - *339 - - *342 - - *343 + - *340 + - *341 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *340 + schema: *342 examples: - default: *341 + default: *343 x-github: enabledForGitHubApps: true category: orgs @@ -45287,9 +45649,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *81 - - *338 - - *339 - - &345 + - *340 + - *341 + - &347 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -45302,7 +45664,7 @@ paths: description: Response content: application/json: - schema: &346 + schema: &348 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -45318,7 +45680,7 @@ paths: type: integer format: int64 examples: - default: &347 + default: &349 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -45355,18 +45717,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *81 - - *344 - - *338 - - *339 - - *345 + - *346 + - *340 + - *341 + - *347 responses: '200': description: Response content: application/json: - schema: *346 + schema: *348 examples: - default: *347 + default: *349 x-github: enabledForGitHubApps: true category: orgs @@ -45384,19 +45746,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *81 - - *342 - - *343 - - *338 - - *339 + - *344 - *345 + - *340 + - *341 + - *347 responses: '200': description: Response content: application/json: - schema: *346 + schema: *348 examples: - default: *347 + default: *349 x-github: enabledForGitHubApps: true category: orgs @@ -45414,13 +45776,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *81 - - *344 - - *338 - - *339 + - *346 + - *340 + - *341 - *19 - *17 - *104 - - *348 + - *350 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -45504,7 +45866,7 @@ paths: application/json: schema: *20 examples: - default: &634 + default: &636 value: id: 1 account: @@ -45670,12 +46032,12 @@ paths: application/json: schema: anyOf: - - &350 + - &352 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &349 + limit: &351 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -45703,7 +46065,7 @@ paths: properties: {} additionalProperties: false examples: - default: &351 + default: &353 value: limit: collaborators_only origin: organization @@ -45732,13 +46094,13 @@ paths: required: true content: application/json: - schema: &635 + schema: &637 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *349 + limit: *351 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -45763,9 +46125,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *352 examples: - default: *351 + default: *353 '422': *15 x-github: githubCloudOnly: false @@ -45843,9 +46205,9 @@ paths: application/json: schema: type: array - items: *352 + items: *354 examples: - default: *353 + default: *355 headers: Link: *41 '404': *6 @@ -45923,7 +46285,7 @@ paths: description: Response content: application/json: - schema: *352 + schema: *354 examples: default: value: @@ -45980,7 +46342,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *81 - - &354 + - &356 name: invitation_id description: The unique identifier of the invitation. in: path @@ -46014,7 +46376,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *81 - - *354 + - *356 - *17 - *19 responses: @@ -46024,9 +46386,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: &369 + default: &371 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -46069,7 +46431,7 @@ paths: application/json: schema: type: array - items: *355 + items: *357 examples: default: value: @@ -46157,9 +46519,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *357 examples: - default: &356 + default: &358 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -46192,7 +46554,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *81 - - &357 + - &359 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -46248,9 +46610,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *357 examples: - default: *356 + default: *358 '404': *6 '422': *7 x-github: @@ -46275,7 +46637,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *81 - - *357 + - *359 responses: '204': description: Response @@ -46338,7 +46700,7 @@ paths: - closed - all default: open - - *358 + - *360 - name: type description: Can be the name of an issue type. in: query @@ -46369,7 +46731,7 @@ paths: type: array items: *219 examples: - default: *359 + default: *361 headers: Link: *41 '404': *6 @@ -46528,9 +46890,9 @@ paths: type: integer codespaces: type: array - items: *360 + items: *362 examples: - default: *361 + default: *363 '304': *35 '500': *38 '401': *23 @@ -46557,7 +46919,7 @@ paths: parameters: - *81 - *132 - - &362 + - &364 name: codespace_name in: path required: true @@ -46592,15 +46954,15 @@ paths: parameters: - *81 - *132 - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: &557 + default: &559 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -46856,7 +47218,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &365 title: Org Membership description: Org Membership type: object @@ -46925,7 +47287,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &364 + response-if-user-has-an-active-admin-membership-with-organization: &366 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -47022,9 +47384,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *365 examples: - response-if-user-already-had-membership-with-organization: *364 + response-if-user-already-had-membership-with-organization: *366 '422': *15 '403': *27 x-github: @@ -47096,7 +47458,7 @@ paths: application/json: schema: type: array - items: &365 + items: &367 title: Migration description: A migration. type: object @@ -47434,7 +47796,7 @@ paths: description: Response content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -47613,7 +47975,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *81 - - &366 + - &368 name: migration_id description: The unique identifier of the migration. in: path @@ -47641,7 +48003,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -47811,7 +48173,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *81 - - *366 + - *368 responses: '302': description: Response @@ -47833,7 +48195,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *81 - - *366 + - *368 responses: '204': description: Response @@ -47857,8 +48219,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *81 - - *366 - - &805 + - *368 + - &807 name: repo_name description: repo_name parameter in: path @@ -47886,7 +48248,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *81 - - *366 + - *368 - *17 - *19 responses: @@ -47898,7 +48260,7 @@ paths: type: array items: *273 examples: - default: &376 + default: &378 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -48107,7 +48469,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &367 + items: &369 title: Organization Role description: Organization roles type: object @@ -48316,7 +48678,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *369 examples: default: value: @@ -48546,7 +48908,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *369 examples: default: value: @@ -48643,7 +49005,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *369 examples: default: value: @@ -48802,7 +49164,7 @@ paths: parent: anyOf: - type: 'null' - - *368 + - *370 type: description: The ownership type of the team type: string @@ -48835,7 +49197,7 @@ paths: - type - parent examples: - default: *369 + default: *371 headers: Link: *41 '404': @@ -48894,7 +49256,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *368 + items: *370 name: type: - string @@ -49204,7 +49566,7 @@ paths: - nuget - container - *81 - - &806 + - &808 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -49240,12 +49602,12 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: *371 + default: *373 '403': *27 '401': *23 - '400': &808 + '400': &810 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -49267,7 +49629,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &372 + - &374 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -49285,7 +49647,7 @@ paths: - docker - nuget - container - - &373 + - &375 name: package_name description: The name of the package. in: path @@ -49298,7 +49660,7 @@ paths: description: Response content: application/json: - schema: *370 + schema: *372 examples: default: value: @@ -49350,8 +49712,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *372 - - *373 + - *374 + - *375 - *81 responses: '204': @@ -49384,8 +49746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *372 - - *373 + - *374 + - *375 - *81 - name: token description: package token @@ -49418,8 +49780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *372 - - *373 + - *374 + - *375 - *81 - *19 - *17 @@ -49440,7 +49802,7 @@ paths: application/json: schema: type: array - items: &374 + items: &376 title: Package Version description: A version of a software package type: object @@ -49575,10 +49937,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *372 - - *373 + - *374 + - *375 - *81 - - &375 + - &377 name: package_version_id description: Unique identifier of the package version. in: path @@ -49590,7 +49952,7 @@ paths: description: Response content: application/json: - schema: *374 + schema: *376 examples: default: value: @@ -49626,10 +49988,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *372 - - *373 - - *81 + - *374 - *375 + - *81 + - *377 responses: '204': description: Response @@ -49661,10 +50023,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *372 - - *373 - - *81 + - *374 - *375 + - *81 + - *377 responses: '204': description: Response @@ -49694,7 +50056,7 @@ paths: - *81 - *17 - *19 - - &377 + - &379 name: sort description: The property by which to sort the results. in: query @@ -49705,7 +50067,7 @@ paths: - created_at default: created_at - *104 - - &378 + - &380 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -49717,7 +50079,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &379 + - &381 name: repository description: The name of the repository to use to filter the results. in: query @@ -49726,7 +50088,7 @@ paths: type: string examples: - Hello-World - - &380 + - &382 name: permission description: The permission to use to filter the results. in: query @@ -49735,7 +50097,7 @@ paths: type: string examples: - issues_read - - &381 + - &383 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -49745,7 +50107,7 @@ paths: schema: type: string format: date-time - - &382 + - &384 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -49755,7 +50117,7 @@ paths: schema: type: string format: date-time - - &383 + - &385 name: token_id description: The ID of the token in: query @@ -50074,7 +50436,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -50100,14 +50462,14 @@ paths: - *81 - *17 - *19 - - *377 - - *104 - - *378 - *379 + - *104 - *380 - *381 - *382 - *383 + - *384 + - *385 responses: '500': *38 '422': *15 @@ -50391,7 +50753,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -50433,7 +50795,7 @@ paths: type: integer configurations: type: array - items: &384 + items: &386 title: Organization private registry description: Private registry configuration for an organization type: object @@ -50729,7 +51091,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &385 + org-private-registry-with-selected-visibility: &387 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -50827,9 +51189,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *384 + schema: *386 examples: - default: *385 + default: *387 '404': *6 x-github: githubCloudOnly: false @@ -50997,7 +51359,7 @@ paths: application/json: schema: type: array - items: &386 + items: &388 title: Projects v2 Project description: A projects v2 project type: object @@ -51071,7 +51433,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &882 + - &884 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -51156,7 +51518,7 @@ paths: - deleted_at - deleted_by examples: - default: &387 + default: &389 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -51259,7 +51621,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &388 + - &390 name: project_number description: The project's number. in: path @@ -51272,9 +51634,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *388 examples: - default: *387 + default: *389 headers: Link: *41 '304': *35 @@ -51297,7 +51659,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *81 - - *388 + - *390 requestBody: required: true description: Details of the draft item to create in the project. @@ -51331,7 +51693,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &395 title: Projects v2 Item description: An item belonging to a project type: object @@ -51345,7 +51707,7 @@ paths: content: oneOf: - *219 - - &570 + - &572 title: Pull Request Simple description: Pull Request Simple type: object @@ -51465,7 +51827,7 @@ paths: milestone: anyOf: - type: 'null' - - *389 + - *391 active_lock_reason: type: - string @@ -51520,7 +51882,7 @@ paths: type: - array - 'null' - items: *300 + items: *302 head: type: object properties: @@ -51564,7 +51926,7 @@ paths: _links: type: object properties: - comments: &390 + comments: &392 title: Link description: Hypermedia Link type: object @@ -51573,13 +51935,13 @@ paths: type: string required: - href - commits: *390 - statuses: *390 - html: *390 - issue: *390 - review_comments: *390 - review_comment: *390 - self: *390 + commits: *392 + statuses: *392 + html: *392 + issue: *392 + review_comments: *392 + review_comment: *392 + self: *392 required: - comments - commits @@ -51590,7 +51952,7 @@ paths: - review_comment - self author_association: *206 - auto_merge: &680 + auto_merge: &682 title: Auto merge description: The status of auto merging a pull request. type: @@ -51692,7 +52054,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &392 + content_type: &394 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -51736,7 +52098,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &394 + draft_issue: &396 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -51810,7 +52172,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *388 + - *390 - *81 - *17 - *102 @@ -51822,7 +52184,7 @@ paths: application/json: schema: type: array - items: &391 + items: &393 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -51972,7 +52334,7 @@ paths: - updated_at - project_url examples: - default: &825 + default: &827 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -52103,8 +52465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *388 - - &826 + - *390 + - &828 name: field_id description: The unique identifier of the field. in: path @@ -52117,9 +52479,9 @@ paths: description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: &827 + default: &829 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -52163,7 +52525,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *388 + - *390 - *81 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -52196,7 +52558,7 @@ paths: application/json: schema: type: array - items: &395 + items: &397 title: Projects v2 Item description: An item belonging to a project type: object @@ -52213,7 +52575,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *392 + content_type: *394 content: type: - object @@ -52263,7 +52625,7 @@ paths: - updated_at - archived_at examples: - default: &396 + default: &398 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -52960,7 +53322,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - *81 - - *388 + - *390 requestBody: required: true description: Details of the item to add to the project. @@ -52997,10 +53359,10 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - issue: *394 - pull_request: *394 + issue: *396 + pull_request: *396 '304': *35 '403': *27 '401': *23 @@ -53020,9 +53382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *388 + - *390 - *81 - - &397 + - &399 name: item_id description: The unique identifier of the project item. in: path @@ -53048,9 +53410,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: *396 + default: *398 headers: Link: *41 '304': *35 @@ -53071,9 +53433,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *388 + - *390 - *81 - - *397 + - *399 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -53146,13 +53508,13 @@ paths: description: Response content: application/json: - schema: *395 + schema: *397 examples: - text_field: *396 - number_field: *396 - date_field: *396 - single_select_field: *396 - iteration_field: *396 + text_field: *398 + number_field: *398 + date_field: *398 + single_select_field: *398 + iteration_field: *398 '401': *23 '403': *27 '404': *6 @@ -53172,9 +53534,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *388 + - *390 - *81 - - *397 + - *399 responses: '204': description: Response @@ -53337,7 +53699,7 @@ paths: required: true content: application/json: - schema: *398 + schema: *400 examples: default: value: @@ -53705,7 +54067,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -53909,7 +54271,7 @@ paths: description: Response content: application/json: - schema: &463 + schema: &465 title: Full Repository description: Full Repository type: object @@ -54374,7 +54736,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &575 + code_of_conduct: &577 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -54404,7 +54766,7 @@ paths: - key - name - html_url - security_and_analysis: *399 + security_and_analysis: *401 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -54488,7 +54850,7 @@ paths: - network_count - subscribers_count examples: - default: &465 + default: &467 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -55014,9 +55376,9 @@ paths: application/json: schema: type: array - items: *400 + items: *402 examples: - default: *401 + default: *403 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -55041,7 +55403,7 @@ paths: - *81 - *17 - *19 - - &703 + - &705 name: targets description: | A comma-separated list of rule targets to filter by. @@ -55133,11 +55495,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *158 - conditions: *402 + conditions: *404 rules: type: array description: An array of rules within the ruleset. - items: &404 + items: &406 title: Repository Rule type: object description: A repository rule. @@ -55201,7 +55563,7 @@ paths: application/json: schema: *179 examples: - default: &403 + default: &405 value: id: 21 name: super cool ruleset @@ -55256,7 +55618,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *81 - - &705 + - &707 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 @@ -55266,16 +55628,16 @@ paths: schema: type: string x-multi-segment: true - - *297 + - *299 - *99 - - &706 + - &708 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 - - &707 + - &709 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -55295,7 +55657,7 @@ paths: description: Response content: application/json: - schema: &708 + schema: &710 title: Rule Suites description: Response type: array @@ -55351,7 +55713,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &709 + default: &711 value: - id: 21 actor_id: 12 @@ -55395,7 +55757,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *81 - - &710 + - &712 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -55411,7 +55773,7 @@ paths: description: Response content: application/json: - schema: &711 + schema: &713 title: Rule Suite description: Response type: object @@ -55518,7 +55880,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &712 + default: &714 value: id: 21 actor_id: 12 @@ -55593,7 +55955,7 @@ paths: application/json: schema: *179 examples: - default: *403 + default: *405 '404': *6 '500': *38 put: @@ -55642,11 +56004,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *158 - conditions: *402 + conditions: *404 rules: description: An array of rules within the ruleset. type: array - items: *404 + items: *406 examples: default: value: @@ -55683,7 +56045,7 @@ paths: application/json: schema: *179 examples: - default: *403 + default: *405 '404': *6 '500': *38 delete: @@ -55742,7 +56104,7 @@ paths: type: array items: *183 examples: - default: *405 + default: *407 '404': *6 '500': *38 x-github: @@ -55779,7 +56141,7 @@ paths: description: Response content: application/json: - schema: *406 + schema: *408 examples: default: value: @@ -55842,14 +56204,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *81 - - *407 - - *408 - *409 - *410 + - *411 + - *412 - *104 - *19 - *17 - - &714 + - &716 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 @@ -55859,7 +56221,7 @@ paths: required: false schema: type: string - - &715 + - &717 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 @@ -55869,10 +56231,10 @@ paths: required: false schema: type: string - - *411 - - *412 - *413 - *414 + - *415 + - *416 responses: '200': description: Response @@ -55880,9 +56242,9 @@ paths: application/json: schema: type: array - items: *415 + items: *417 examples: - default: *416 + default: *418 headers: Link: *41 '404': *6 @@ -55917,9 +56279,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *419 examples: - default: *418 + default: *420 '403': *27 '404': *6 patch: @@ -56072,7 +56434,7 @@ paths: application/json: schema: type: array - items: &736 + items: &738 description: A repository security advisory. type: object properties: @@ -56316,7 +56678,7 @@ paths: login: type: string description: The username of the user credited. - type: *419 + type: *421 credits_detailed: type: - array @@ -56327,7 +56689,7 @@ paths: type: object properties: user: *4 - type: *419 + type: *421 state: type: string description: The state of the user's acceptance of the @@ -56353,7 +56715,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *300 + items: *302 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -56391,7 +56753,7 @@ paths: - private_fork additionalProperties: false examples: - default: &737 + default: &739 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -56778,9 +57140,9 @@ paths: application/json: schema: type: array - items: *368 + items: *370 examples: - default: *369 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56865,9 +57227,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: - default: *421 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -56892,7 +57254,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *81 - - *422 + - *424 - *17 - *19 responses: @@ -56900,9 +57262,9 @@ paths: description: Success content: application/json: - schema: *423 + schema: *425 examples: - default: *424 + default: *426 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -56930,9 +57292,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -56960,9 +57322,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -57245,7 +57607,7 @@ paths: type: array items: *137 examples: - default: *429 + default: *431 headers: Link: *41 x-github: @@ -57446,15 +57808,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *81 - - *430 + - *432 responses: '200': description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 headers: Link: *41 x-github: @@ -57492,7 +57854,7 @@ paths: description: Response content: application/json: - schema: &454 + schema: &456 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -57544,7 +57906,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &455 + default: &457 value: groups: - group_id: '123' @@ -57656,9 +58018,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 headers: Link: *41 '403': *27 @@ -57752,7 +58114,7 @@ paths: description: Response content: application/json: - schema: &433 + schema: &435 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -57826,7 +58188,7 @@ paths: parent: anyOf: - type: 'null' - - *368 + - *370 members_count: type: integer examples: @@ -58151,7 +58513,7 @@ paths: - repos_count - organization examples: - default: &434 + default: &436 value: id: 1 node_id: MDQ6VGVhbTE= @@ -58228,9 +58590,9 @@ paths: description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '404': *6 x-github: githubCloudOnly: false @@ -58315,16 +58677,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '201': description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '404': *6 '422': *15 '403': *27 @@ -58394,7 +58756,7 @@ paths: application/json: schema: type: array - items: &435 + items: &437 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -58505,7 +58867,7 @@ paths: - updated_at - url examples: - default: &780 + default: &782 value: - author: login: octocat @@ -58614,9 +58976,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: &436 + default: &438 value: author: login: octocat @@ -58690,7 +59052,7 @@ paths: parameters: - *81 - *204 - - &437 + - &439 name: discussion_number description: The number that identifies the discussion. in: path @@ -58702,9 +59064,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: *436 + default: *438 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58728,7 +59090,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 requestBody: required: false content: @@ -58751,9 +59113,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: &781 + default: &783 value: author: login: octocat @@ -58825,7 +59187,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 responses: '204': description: Response @@ -58853,7 +59215,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 - *104 - *17 - *19 @@ -58864,7 +59226,7 @@ paths: application/json: schema: type: array - items: &438 + items: &440 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -58944,7 +59306,7 @@ paths: - updated_at - url examples: - default: &782 + default: &784 value: - author: login: octocat @@ -59014,7 +59376,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 requestBody: required: true content: @@ -59036,9 +59398,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: &439 + default: &441 value: author: login: octocat @@ -59106,8 +59468,8 @@ paths: parameters: - *81 - *204 - - *437 - - &440 + - *439 + - &442 name: comment_number description: The number that identifies the comment. in: path @@ -59119,9 +59481,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: *439 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59145,8 +59507,8 @@ paths: parameters: - *81 - *204 - - *437 - - *440 + - *439 + - *442 requestBody: required: true content: @@ -59168,9 +59530,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: &783 + default: &785 value: author: login: octocat @@ -59236,8 +59598,8 @@ paths: parameters: - *81 - *204 - - *437 - - *440 + - *439 + - *442 responses: '204': description: Response @@ -59265,8 +59627,8 @@ paths: parameters: - *81 - *204 - - *437 - - *440 + - *439 + - *442 - 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 team discussion comment. @@ -59292,7 +59654,7 @@ paths: application/json: schema: type: array - items: &441 + items: &443 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -59336,7 +59698,7 @@ paths: - content - created_at examples: - default: &443 + default: &445 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -59388,8 +59750,8 @@ paths: parameters: - *81 - *204 - - *437 - - *440 + - *439 + - *442 requestBody: required: true content: @@ -59422,9 +59784,9 @@ paths: team discussion comment content: application/json: - schema: *441 + schema: *443 examples: - default: &442 + default: &444 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -59453,9 +59815,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59480,9 +59842,9 @@ paths: parameters: - *81 - *204 - - *437 - - *440 - - &444 + - *439 + - *442 + - &446 name: reaction_id description: The unique identifier of the reaction. in: path @@ -59516,7 +59878,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 - 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 team discussion. @@ -59542,9 +59904,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 x-github: @@ -59572,7 +59934,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 requestBody: required: true content: @@ -59604,16 +59966,16 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -59638,8 +60000,8 @@ paths: parameters: - *81 - *204 - - *437 - - *444 + - *439 + - *446 responses: '204': description: Response @@ -59669,9 +60031,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: - default: *446 + default: *448 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -59715,9 +60077,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *449 examples: - default: *448 + default: *450 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -59772,9 +60134,9 @@ paths: application/json: schema: type: array - items: *352 + items: *354 examples: - default: *353 + default: *355 headers: Link: *41 x-github: @@ -59858,7 +60220,7 @@ paths: description: Response content: application/json: - schema: &449 + schema: &451 title: Team Membership description: Team Membership type: object @@ -59886,7 +60248,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &784 + response-if-user-is-a-team-maintainer: &786 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -59949,9 +60311,9 @@ paths: description: Response content: application/json: - schema: *449 + schema: *451 examples: - response-if-users-membership-with-team-is-now-pending: &785 + response-if-users-membership-with-team-is-now-pending: &787 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -60024,7 +60386,7 @@ paths: application/json: schema: type: array - items: &450 + items: &452 title: Team Project description: A team's access to a project. type: object @@ -60093,7 +60455,7 @@ paths: - updated_at - permissions examples: - default: &786 + default: &788 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -60158,7 +60520,7 @@ paths: parameters: - *81 - *204 - - &451 + - &453 name: project_id description: The unique identifier of the project. in: path @@ -60170,9 +60532,9 @@ paths: description: Response content: application/json: - schema: *450 + schema: *452 examples: - default: &787 + default: &789 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -60236,7 +60598,7 @@ paths: parameters: - *81 - *204 - - *451 + - *453 requestBody: required: false content: @@ -60305,7 +60667,7 @@ paths: parameters: - *81 - *204 - - *451 + - *453 responses: '204': description: Response @@ -60345,7 +60707,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -60376,14 +60738,14 @@ paths: parameters: - *81 - *204 - - *452 - - *453 + - *454 + - *455 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &788 + schema: &790 title: Team Repository description: A team's access to a repository. type: object @@ -61026,8 +61388,8 @@ paths: parameters: - *81 - *204 - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -61074,8 +61436,8 @@ paths: parameters: - *81 - *204 - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -61108,9 +61470,9 @@ paths: description: Response content: application/json: - schema: *454 + schema: *456 examples: - default: *455 + default: *457 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -61176,7 +61538,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *456 examples: default: value: @@ -61219,9 +61581,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - response-if-child-teams-exist: &789 + response-if-child-teams-exist: &791 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -61348,7 +61710,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#get-a-project-card parameters: - - &456 + - &458 name: card_id description: The unique identifier of the card. in: path @@ -61360,7 +61722,7 @@ paths: description: Response content: application/json: - schema: &457 + schema: &459 title: Project Card description: Project cards represent a scope of work. type: object @@ -61435,7 +61797,7 @@ paths: - created_at - updated_at examples: - default: &458 + default: &460 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -61491,7 +61853,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#update-an-existing-project-card parameters: - - *456 + - *458 requestBody: required: false content: @@ -61521,9 +61883,9 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: - default: *458 + default: *460 '304': *35 '403': *27 '401': *23 @@ -61550,7 +61912,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#delete-a-project-card parameters: - - *456 + - *458 responses: '204': description: Response @@ -61594,7 +61956,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#move-a-project-card parameters: - - *456 + - *458 requestBody: required: true content: @@ -61707,7 +62069,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#get-a-project-column parameters: - - &459 + - &461 name: column_id description: The unique identifier of the column. in: path @@ -61719,7 +62081,7 @@ paths: description: Response content: application/json: - schema: &460 + schema: &462 title: Project Column description: Project columns contain cards of work. type: object @@ -61773,7 +62135,7 @@ paths: - created_at - updated_at examples: - default: &461 + default: &463 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -61808,7 +62170,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#update-an-existing-project-column parameters: - - *459 + - *461 requestBody: required: true content: @@ -61833,9 +62195,9 @@ paths: description: Response content: application/json: - schema: *460 + schema: *462 examples: - default: *461 + default: *463 '304': *35 '403': *27 '401': *23 @@ -61860,7 +62222,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#delete-a-project-column parameters: - - *459 + - *461 responses: '204': description: Response @@ -61889,7 +62251,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#list-project-cards parameters: - - *459 + - *461 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -61910,7 +62272,7 @@ paths: application/json: schema: type: array - items: *457 + items: *459 examples: default: value: @@ -61969,7 +62331,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#create-a-project-card parameters: - - *459 + - *461 requestBody: required: true content: @@ -62013,9 +62375,9 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: - default: *458 + default: *460 '304': *35 '403': *27 '401': *23 @@ -62071,7 +62433,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#move-a-project-column parameters: - - *459 + - *461 requestBody: required: true content: @@ -62132,7 +62494,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#list-project-collaborators parameters: - - *451 + - *453 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -62189,7 +62551,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#add-project-collaborator parameters: - - *451 + - *453 - *132 requestBody: required: false @@ -62244,7 +62606,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *451 + - *453 - *132 responses: '204': @@ -62276,7 +62638,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *451 + - *453 - *132 responses: '200': @@ -62374,7 +62736,7 @@ paths: resources: type: object properties: - core: &462 + core: &464 title: Rate Limit type: object properties: @@ -62391,21 +62753,21 @@ paths: - remaining - reset - used - graphql: *462 - search: *462 - code_search: *462 - source_import: *462 - integration_manifest: *462 - code_scanning_upload: *462 - actions_runner_registration: *462 - scim: *462 - dependency_snapshots: *462 - dependency_sbom: *462 - code_scanning_autofix: *462 + graphql: *464 + search: *464 + code_search: *464 + source_import: *464 + integration_manifest: *464 + code_scanning_upload: *464 + actions_runner_registration: *464 + scim: *464 + dependency_snapshots: *464 + dependency_sbom: *464 + code_scanning_autofix: *464 required: - core - search - rate: *462 + rate: *464 required: - rate - resources @@ -62510,14 +62872,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *463 + schema: *465 examples: default-response: summary: Default response @@ -63022,7 +63384,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *464 + '301': *466 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63040,8 +63402,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -63299,10 +63661,10 @@ paths: description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *465 - '307': &466 + default: *467 + '307': &468 description: Temporary Redirect content: application/json: @@ -63331,8 +63693,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -63354,7 +63716,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *466 + '307': *468 '404': *6 '409': *112 x-github: @@ -63378,11 +63740,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 - - &481 + - &483 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -63405,7 +63767,7 @@ paths: type: integer artifacts: type: array - items: &467 + items: &469 title: Artifact description: An artifact type: object @@ -63500,7 +63862,7 @@ paths: - expires_at - updated_at examples: - default: &482 + default: &484 value: total_count: 2 artifacts: @@ -63561,9 +63923,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *452 - - *453 - - &468 + - *454 + - *455 + - &470 name: artifact_id description: The unique identifier of the artifact. in: path @@ -63575,7 +63937,7 @@ paths: description: Response content: application/json: - schema: *467 + schema: *469 examples: default: value: @@ -63613,9 +63975,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *452 - - *453 - - *468 + - *454 + - *455 + - *470 responses: '204': description: Response @@ -63639,9 +64001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *452 - - *453 - - *468 + - *454 + - *455 + - *470 - name: archive_format in: path required: true @@ -63655,7 +64017,7 @@ paths: 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': &638 + '410': &640 description: Gone content: application/json: @@ -63682,14 +64044,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *469 + schema: *471 examples: default: value: @@ -63715,11 +64077,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 - - &470 + - &472 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -63753,7 +64115,7 @@ paths: description: Response content: application/json: - schema: &471 + schema: &473 title: Repository actions caches description: Repository actions caches type: object @@ -63803,7 +64165,7 @@ paths: - total_count - actions_caches examples: - default: &472 + default: &474 value: total_count: 1 actions_caches: @@ -63835,23 +64197,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *452 - - *453 + - *454 + - *455 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *470 + - *472 responses: '200': description: Response content: application/json: - schema: *471 + schema: *473 examples: - default: *472 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63871,8 +64233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *452 - - *453 + - *454 + - *455 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -63903,9 +64265,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *452 - - *453 - - &473 + - *454 + - *455 + - &475 name: job_id description: The unique identifier of the job. in: path @@ -63917,7 +64279,7 @@ paths: description: Response content: application/json: - schema: &485 + schema: &487 title: Job description: Information of a job execution in a workflow run type: object @@ -64264,9 +64626,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *452 - - *453 - - *473 + - *454 + - *455 + - *475 responses: '302': description: Response @@ -64294,9 +64656,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *452 - - *453 - - *473 + - *454 + - *455 + - *475 requestBody: required: false content: @@ -64342,8 +64704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Status response @@ -64393,8 +64755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -64457,8 +64819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -64476,7 +64838,7 @@ paths: type: integer secrets: type: array - items: &487 + items: &489 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -64497,7 +64859,7 @@ paths: - created_at - updated_at examples: - default: &488 + default: &490 value: total_count: 2 secrets: @@ -64530,9 +64892,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *452 - - *453 - - *474 + - *454 + - *455 + - *476 - *19 responses: '200': @@ -64549,7 +64911,7 @@ paths: type: integer variables: type: array - items: &491 + items: &493 title: Actions Variable type: object properties: @@ -64583,7 +64945,7 @@ paths: - created_at - updated_at examples: - default: &492 + default: &494 value: total_count: 2 variables: @@ -64616,8 +64978,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -64626,7 +64988,7 @@ paths: schema: type: object properties: - enabled: &475 + enabled: &477 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *54 @@ -64661,8 +65023,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -64673,7 +65035,7 @@ paths: schema: type: object properties: - enabled: *475 + enabled: *477 allowed_actions: *54 sha_pinning_required: *55 required: @@ -64706,14 +65068,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: &476 + schema: &478 type: object properties: access_level: @@ -64731,7 +65093,7 @@ paths: required: - access_level examples: - default: &477 + default: &479 value: access_level: organization x-github: @@ -64756,15 +65118,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 responses: '204': description: Response @@ -64788,8 +65150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -64819,8 +65181,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Empty response for successful settings update @@ -64854,8 +65216,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -64882,8 +65244,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -64917,8 +65279,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -64946,8 +65308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -64978,8 +65340,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -65010,8 +65372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -65043,8 +65405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -65073,8 +65435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Success response @@ -65114,8 +65476,8 @@ paths: in: query schema: type: string - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -65159,8 +65521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -65192,8 +65554,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -65267,8 +65629,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '201': description: Response @@ -65304,8 +65666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '201': description: Response @@ -65335,8 +65697,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 responses: '200': @@ -65366,8 +65728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 responses: '204': @@ -65394,8 +65756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 responses: '200': *75 @@ -65420,8 +65782,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 requestBody: required: true @@ -65470,8 +65832,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 requestBody: required: true @@ -65521,8 +65883,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 responses: '200': *280 @@ -65552,8 +65914,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 - *281 responses: @@ -65583,9 +65945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *452 - - *453 - - &495 + - *454 + - *455 + - &497 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -65593,7 +65955,7 @@ paths: required: false schema: type: string - - &496 + - &498 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -65601,7 +65963,7 @@ paths: required: false schema: type: string - - &497 + - &499 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -65610,7 +65972,7 @@ paths: required: false schema: type: string - - &498 + - &500 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -65637,7 +65999,7 @@ paths: - pending - *17 - *19 - - &499 + - &501 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -65646,7 +66008,7 @@ paths: schema: type: string format: date-time - - &478 + - &480 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -65655,13 +66017,13 @@ paths: schema: type: boolean default: false - - &500 + - &502 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &501 + - &503 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -65684,7 +66046,7 @@ paths: type: integer workflow_runs: type: array - items: &479 + items: &481 title: Workflow Run description: An invocation of a workflow type: object @@ -65801,7 +66163,7 @@ paths: type: - array - 'null' - items: &520 + items: &522 title: Pull Request Minimal type: object properties: @@ -65928,7 +66290,7 @@ paths: head_commit: anyOf: - type: 'null' - - &524 + - &526 title: Simple Commit description: A commit. type: object @@ -66043,7 +66405,7 @@ paths: - workflow_url - pull_requests examples: - default: &502 + default: &504 value: total_count: 1 workflow_runs: @@ -66279,24 +66641,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *452 - - *453 - - &480 + - *454 + - *455 + - &482 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *478 + - *480 responses: '200': description: Response content: application/json: - schema: *479 + schema: *481 examples: - default: &483 + default: &485 value: id: 30433642 name: Build @@ -66537,9 +66899,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '204': description: Response @@ -66562,9 +66924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '200': description: Response @@ -66692,9 +67054,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '201': description: Response @@ -66727,12 +67089,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 - *17 - *19 - - *481 + - *483 responses: '200': description: Response @@ -66748,9 +67110,9 @@ paths: type: integer artifacts: type: array - items: *467 + items: *469 examples: - default: *482 + default: *484 headers: Link: *41 x-github: @@ -66774,25 +67136,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *452 - - *453 - - *480 - - &484 + - *454 + - *455 + - *482 + - &486 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *478 + - *480 responses: '200': description: Response content: application/json: - schema: *479 + schema: *481 examples: - default: *483 + default: *485 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66815,10 +67177,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *452 - - *453 - - *480 - - *484 + - *454 + - *455 + - *482 + - *486 - *17 - *19 responses: @@ -66836,9 +67198,9 @@ paths: type: integer jobs: type: array - items: *485 + items: *487 examples: - default: &486 + default: &488 value: total_count: 1 jobs: @@ -66951,10 +67313,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *452 - - *453 - - *480 - - *484 + - *454 + - *455 + - *482 + - *486 responses: '302': description: Response @@ -66982,9 +67344,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '202': description: Response @@ -67017,9 +67379,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 requestBody: required: true content: @@ -67086,9 +67448,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '202': description: Response @@ -67121,9 +67483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -67153,9 +67515,9 @@ paths: type: integer jobs: type: array - items: *485 + items: *487 examples: - default: *486 + default: *488 headers: Link: *41 x-github: @@ -67180,9 +67542,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '302': description: Response @@ -67209,9 +67571,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '204': description: Response @@ -67238,9 +67600,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '200': description: Response @@ -67309,7 +67671,7 @@ paths: items: type: object properties: - type: &604 + type: &606 type: string description: The type of reviewer. enum: @@ -67320,7 +67682,7 @@ paths: reviewer: anyOf: - *4 - - *300 + - *302 required: - environment - wait_timer @@ -67395,9 +67757,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 requestBody: required: true content: @@ -67447,7 +67809,7 @@ paths: application/json: schema: type: array - items: &590 + items: &592 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -67559,7 +67921,7 @@ paths: - created_at - updated_at examples: - default: &591 + default: &593 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -67615,9 +67977,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 requestBody: required: false content: @@ -67662,9 +68024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 requestBody: required: false content: @@ -67719,9 +68081,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '200': description: Response @@ -67858,8 +68220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -67877,9 +68239,9 @@ paths: type: integer secrets: type: array - items: *487 + items: *489 examples: - default: *488 + default: *490 headers: Link: *41 x-github: @@ -67904,16 +68266,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *489 + schema: *491 examples: - default: *490 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67935,17 +68297,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '200': description: Response content: application/json: - schema: *487 + schema: *489 examples: - default: &617 + default: &619 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -67971,8 +68333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 requestBody: required: true @@ -68030,8 +68392,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '204': @@ -68057,9 +68419,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *452 - - *453 - - *474 + - *454 + - *455 + - *476 - *19 responses: '200': @@ -68076,9 +68438,9 @@ paths: type: integer variables: type: array - items: *491 + items: *493 examples: - default: *492 + default: *494 headers: Link: *41 x-github: @@ -68101,8 +68463,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -68154,17 +68516,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *452 - - *453 + - *454 + - *455 - *286 responses: '200': description: Response content: application/json: - schema: *491 + schema: *493 examples: - default: &618 + default: &620 value: name: USERNAME value: octocat @@ -68190,8 +68552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *452 - - *453 + - *454 + - *455 - *286 requestBody: required: true @@ -68234,8 +68596,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *452 - - *453 + - *454 + - *455 - *286 responses: '204': @@ -68261,8 +68623,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -68280,7 +68642,7 @@ paths: type: integer workflows: type: array - items: &493 + items: &495 title: Workflow description: A GitHub Actions workflow type: object @@ -68398,9 +68760,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *452 - - *453 - - &494 + - *454 + - *455 + - &496 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -68415,7 +68777,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *495 examples: default: value: @@ -68448,9 +68810,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *452 - - *453 - - *494 + - *454 + - *455 + - *496 responses: '204': description: Response @@ -68475,9 +68837,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *452 - - *453 - - *494 + - *454 + - *455 + - *496 responses: '204': description: Response @@ -68528,9 +68890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *452 - - *453 - - *494 + - *454 + - *455 + - *496 responses: '204': description: Response @@ -68557,19 +68919,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *452 - - *453 - - *494 - - *495 + - *454 + - *455 - *496 - *497 - *498 - - *17 - - *19 - *499 - - *478 - *500 + - *17 + - *19 - *501 + - *480 + - *502 + - *503 responses: '200': description: Response @@ -68585,9 +68947,9 @@ paths: type: integer workflow_runs: type: array - items: *479 + items: *481 examples: - default: *502 + default: *504 headers: Link: *41 x-github: @@ -68620,9 +68982,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *452 - - *453 - - *494 + - *454 + - *455 + - *496 responses: '200': description: Response @@ -68683,8 +69045,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *452 - - *453 + - *454 + - *455 - *104 - *17 - *102 @@ -68852,8 +69214,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -68890,8 +69252,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *452 - - *453 + - *454 + - *455 - name: assignee in: path required: true @@ -68927,8 +69289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -69040,8 +69402,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *102 - *103 @@ -69098,7 +69460,7 @@ paths: initiator: type: string examples: - default: *503 + default: *505 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69118,8 +69480,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -69127,7 +69489,7 @@ paths: application/json: schema: type: array - items: &504 + items: &506 title: Autolink reference description: An autolink reference. type: object @@ -69186,8 +69548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -69226,9 +69588,9 @@ paths: description: response content: application/json: - schema: *504 + schema: *506 examples: - default: &505 + default: &507 value: id: 1 key_prefix: TICKET- @@ -69259,9 +69621,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *452 - - *453 - - &506 + - *454 + - *455 + - &508 name: autolink_id description: The unique identifier of the autolink. in: path @@ -69273,9 +69635,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *506 examples: - default: *505 + default: *507 '404': *6 x-github: githubCloudOnly: false @@ -69295,9 +69657,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *452 - - *453 - - *506 + - *454 + - *455 + - *508 responses: '204': description: Response @@ -69321,8 +69683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response if Dependabot is enabled @@ -69372,8 +69734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -69394,8 +69756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -69415,8 +69777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *452 - - *453 + - *454 + - *455 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -69454,7 +69816,7 @@ paths: - url protected: type: boolean - protection: &508 + protection: &510 title: Branch Protection description: Branch Protection type: object @@ -69497,7 +69859,7 @@ paths: required: - contexts - checks - enforce_admins: &511 + enforce_admins: &513 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -69514,7 +69876,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &513 + required_pull_request_reviews: &515 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -69536,7 +69898,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *300 + items: *302 apps: description: The list of apps with review dismissal access. @@ -69568,7 +69930,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *300 + items: *302 apps: description: The list of apps allowed to bypass pull request requirements. @@ -69598,7 +69960,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &510 + restrictions: &512 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -69661,7 +70023,7 @@ paths: type: string teams: type: array - items: *300 + items: *302 apps: type: array items: @@ -69891,9 +70253,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *452 - - *453 - - &509 + - *454 + - *455 + - &511 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -69907,14 +70269,14 @@ paths: description: Response content: application/json: - schema: &519 + schema: &521 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &566 + commit: &568 title: Commit description: Commit type: object @@ -69953,7 +70315,7 @@ paths: author: anyOf: - type: 'null' - - &507 + - &509 title: Git User description: Metaproperties for Git author/committer information. @@ -69974,7 +70336,7 @@ paths: committer: anyOf: - type: 'null' - - *507 + - *509 message: type: string examples: @@ -69998,7 +70360,7 @@ paths: required: - sha - url - verification: &624 + verification: &626 title: Verification type: object properties: @@ -70078,7 +70440,7 @@ paths: type: integer files: type: array - items: &577 + items: &579 title: Diff Entry description: Diff Entry type: object @@ -70174,7 +70536,7 @@ paths: - self protected: type: boolean - protection: *508 + protection: *510 protection_url: type: string format: uri @@ -70283,7 +70645,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *464 + '301': *466 '404': *6 x-github: githubCloudOnly: false @@ -70305,15 +70667,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *508 + schema: *510 examples: default: value: @@ -70507,9 +70869,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -70769,7 +71131,7 @@ paths: url: type: string format: uri - required_status_checks: &516 + required_status_checks: &518 title: Status Check Policy description: Status Check Policy type: object @@ -70850,7 +71212,7 @@ paths: items: *4 teams: type: array - items: *300 + items: *302 apps: type: array items: *5 @@ -70868,7 +71230,7 @@ paths: items: *4 teams: type: array - items: *300 + items: *302 apps: type: array items: *5 @@ -70928,7 +71290,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *510 + restrictions: *512 required_conversation_resolution: type: object properties: @@ -71040,9 +71402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -71067,17 +71429,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: &512 + default: &514 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -71099,17 +71461,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *512 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71128,9 +71490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -71155,17 +71517,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *513 + schema: *515 examples: - default: &514 + default: &516 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -71261,9 +71623,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -71361,9 +71723,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *515 examples: - default: *514 + default: *516 '422': *15 x-github: githubCloudOnly: false @@ -71384,9 +71746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -71413,17 +71775,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: &515 + default: &517 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -71446,17 +71808,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *515 + default: *517 '404': *6 x-github: githubCloudOnly: false @@ -71476,9 +71838,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -71503,17 +71865,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *516 + schema: *518 examples: - default: &517 + default: &519 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -71539,9 +71901,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -71593,9 +71955,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *518 examples: - default: *517 + default: *519 '404': *6 '422': *15 x-github: @@ -71617,9 +71979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -71643,9 +72005,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response @@ -71679,9 +72041,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -71748,9 +72110,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -71814,9 +72176,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: content: application/json: @@ -71882,15 +72244,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *510 + schema: *512 examples: default: value: @@ -71981,9 +72343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -72006,9 +72368,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response @@ -72018,7 +72380,7 @@ paths: type: array items: *5 examples: - default: &518 + default: &520 value: - id: 1 slug: octoapp @@ -72075,9 +72437,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72111,7 +72473,7 @@ paths: type: array items: *5 examples: - default: *518 + default: *520 '422': *15 x-github: githubCloudOnly: false @@ -72132,9 +72494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72168,7 +72530,7 @@ paths: type: array items: *5 examples: - default: *518 + default: *520 '422': *15 x-github: githubCloudOnly: false @@ -72189,9 +72551,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72225,7 +72587,7 @@ paths: type: array items: *5 examples: - default: *518 + default: *520 '422': *15 x-github: githubCloudOnly: false @@ -72247,9 +72609,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response @@ -72257,9 +72619,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 '404': *6 x-github: githubCloudOnly: false @@ -72279,9 +72641,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -72317,9 +72679,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 '422': *15 x-github: githubCloudOnly: false @@ -72340,9 +72702,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -72378,9 +72740,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 '422': *15 x-github: githubCloudOnly: false @@ -72401,9 +72763,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: content: application/json: @@ -72438,9 +72800,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 '422': *15 x-github: githubCloudOnly: false @@ -72462,9 +72824,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response @@ -72498,9 +72860,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72558,9 +72920,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72618,9 +72980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72680,9 +73042,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72704,7 +73066,7 @@ paths: description: Response content: application/json: - schema: *519 + schema: *521 examples: default: value: @@ -72818,8 +73180,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *452 - - *453 + - *454 + - *455 - *97 - *98 - *99 @@ -72833,9 +73195,9 @@ paths: application/json: schema: type: array - items: *295 + items: *297 examples: - default: *296 + default: *298 '404': *6 '500': *38 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -72855,8 +73217,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: bypass_request_number in: path required: true @@ -72870,7 +73232,7 @@ paths: description: Response content: application/json: - schema: *295 + schema: *297 examples: default: value: @@ -72929,8 +73291,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *452 - - *453 + - *454 + - *455 - *97 - *98 - *99 @@ -72944,9 +73306,9 @@ paths: application/json: schema: type: array - items: *298 + items: *300 examples: - default: *299 + default: *301 '404': *6 '403': *27 '500': *38 @@ -72970,8 +73332,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *452 - - *453 + - *454 + - *455 - name: bypass_request_number in: path required: true @@ -72983,7 +73345,7 @@ paths: description: A single bypass request. content: application/json: - schema: *298 + schema: *300 examples: default: value: @@ -73041,8 +73403,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *452 - - *453 + - *454 + - *455 - name: bypass_request_number in: path required: true @@ -73113,8 +73475,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *452 - - *453 + - *454 + - *455 - name: bypass_response_id in: path required: true @@ -73147,8 +73509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -73427,7 +73789,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &523 title: CheckRun description: A check performed on the code of a given code change type: object @@ -73562,8 +73924,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *520 - deployment: &838 + items: *522 + deployment: &840 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -73850,9 +74212,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *452 - - *453 - - &522 + - *454 + - *455 + - &524 name: check_run_id description: The unique identifier of the check run. in: path @@ -73864,9 +74226,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *523 examples: - default: &523 + default: &525 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -73966,9 +74328,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *452 - - *453 - - *522 + - *454 + - *455 + - *524 requestBody: required: true content: @@ -74208,9 +74570,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *523 examples: - default: *523 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74230,9 +74592,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *452 - - *453 - - *522 + - *454 + - *455 + - *524 - *17 - *19 responses: @@ -74342,9 +74704,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *452 - - *453 - - *522 + - *454 + - *455 + - *524 responses: '201': description: Response @@ -74388,8 +74750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -74411,7 +74773,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &525 + schema: &527 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -74493,7 +74855,7 @@ paths: type: - array - 'null' - items: *520 + items: *522 app: anyOf: - type: 'null' @@ -74509,7 +74871,7 @@ paths: - string - 'null' format: date-time - head_commit: *524 + head_commit: *526 latest_check_runs_count: type: integer check_runs_url: @@ -74537,7 +74899,7 @@ paths: - check_runs_url - pull_requests examples: - default: &526 + default: &528 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -74828,9 +75190,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *525 + schema: *527 examples: - default: *526 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74849,8 +75211,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -75159,9 +75521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *452 - - *453 - - &527 + - *454 + - *455 + - &529 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -75173,9 +75535,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *527 examples: - default: *526 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75198,17 +75560,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *452 - - *453 - - *527 - - &572 + - *454 + - *455 + - *529 + - &574 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &573 + - &575 name: status description: Returns check runs with the specified `status`. in: query @@ -75247,9 +75609,9 @@ paths: type: integer check_runs: type: array - items: *521 + items: *523 examples: - default: &574 + default: &576 value: total_count: 1 check_runs: @@ -75351,9 +75713,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *452 - - *453 - - *527 + - *454 + - *455 + - *529 responses: '201': description: Response @@ -75386,21 +75748,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *452 - - *453 - - *304 - - *305 + - *454 + - *455 + - *306 + - *307 - *19 - *17 - - &543 + - &545 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *528 - - &544 + schema: *530 + - &546 name: pr description: The number of the pull request for the results you want to list. in: query @@ -75425,13 +75787,13 @@ paths: be returned. in: query required: false - schema: *306 + schema: *308 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *529 + schema: *531 responses: '200': description: Response @@ -75447,7 +75809,7 @@ paths: updated_at: *127 url: *124 html_url: *125 - instances_url: *530 + instances_url: *532 state: *107 fixed_at: *129 dismissed_by: @@ -75455,11 +75817,11 @@ paths: - type: 'null' - *4 dismissed_at: *128 - dismissed_reason: *531 - dismissed_comment: *532 - rule: *533 - tool: *534 - most_recent_instance: *535 + dismissed_reason: *533 + dismissed_comment: *534 + rule: *535 + tool: *536 + most_recent_instance: *537 dismissal_approved_by: anyOf: - type: 'null' @@ -75582,7 +75944,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &536 + '403': &538 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -75609,9 +75971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *452 - - *453 - - &537 + - *454 + - *455 + - &539 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -75625,7 +75987,7 @@ paths: description: Response content: application/json: - schema: &538 + schema: &540 type: object properties: number: *119 @@ -75633,7 +75995,7 @@ paths: updated_at: *127 url: *124 html_url: *125 - instances_url: *530 + instances_url: *532 state: *107 fixed_at: *129 dismissed_by: @@ -75641,8 +76003,8 @@ paths: - type: 'null' - *4 dismissed_at: *128 - dismissed_reason: *531 - dismissed_comment: *532 + dismissed_reason: *533 + dismissed_comment: *534 rule: type: object properties: @@ -75704,8 +76066,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *534 - most_recent_instance: *535 + tool: *536 + most_recent_instance: *537 dismissal_approved_by: anyOf: - type: 'null' @@ -75801,7 +76163,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -75821,9 +76183,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 requestBody: required: true content: @@ -75838,8 +76200,8 @@ paths: enum: - open - dismissed - dismissed_reason: *531 - dismissed_comment: *532 + dismissed_reason: *533 + dismissed_comment: *534 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -75858,7 +76220,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *540 examples: default: value: @@ -75934,7 +76296,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &542 + '403': &544 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -75961,15 +76323,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 responses: '200': description: Response content: application/json: - schema: &539 + schema: &541 type: object properties: status: @@ -75996,13 +76358,13 @@ paths: - description - started_at examples: - default: &540 + default: &542 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &541 + '400': &543 description: Bad Request content: application/json: @@ -76013,7 +76375,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -76038,29 +76400,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 responses: '200': description: OK content: application/json: - schema: *539 + schema: *541 examples: - default: *540 + default: *542 '202': description: Accepted content: application/json: - schema: *539 + schema: *541 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *541 + '400': *543 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -76092,9 +76454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 requestBody: required: false content: @@ -76140,8 +76502,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *541 - '403': *542 + '400': *543 + '403': *544 '404': *6 '422': description: Unprocessable Entity @@ -76165,13 +76527,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 - *19 - *17 - - *543 - - *544 + - *545 + - *546 responses: '200': description: Response @@ -76179,7 +76541,7 @@ paths: application/json: schema: type: array - items: *535 + items: *537 examples: default: value: @@ -76218,7 +76580,7 @@ paths: end_column: 50 classifications: - source - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -76252,25 +76614,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *452 - - *453 - - *304 - - *305 + - *454 + - *455 + - *306 + - *307 - *19 - *17 - - *544 + - *546 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *528 + schema: *530 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &547 + schema: &549 type: string description: An identifier for the upload. examples: @@ -76292,23 +76654,23 @@ paths: application/json: schema: type: array - items: &548 + items: &550 type: object properties: - ref: *528 - commit_sha: &556 + ref: *530 + commit_sha: &558 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *545 + analysis_key: *547 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *546 + category: *548 error: type: string examples: @@ -76333,8 +76695,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *547 - tool: *534 + sarif_id: *549 + tool: *536 deletable: type: boolean warning: @@ -76396,7 +76758,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -76432,8 +76794,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76446,7 +76808,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *550 examples: response: summary: application/json response @@ -76500,7 +76862,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *536 + '403': *538 '404': *6 '422': description: Response if analysis could not be processed @@ -76587,8 +76949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76644,7 +77006,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *542 + '403': *544 '404': *6 '503': *184 x-github: @@ -76666,8 +77028,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -76675,7 +77037,7 @@ paths: application/json: schema: type: array - items: &549 + items: &551 title: CodeQL Database description: A CodeQL database. type: object @@ -76787,7 +77149,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -76816,8 +77178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: language in: path description: The language of the CodeQL database. @@ -76829,7 +77191,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *551 examples: default: value: @@ -76861,9 +77223,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &579 + '302': &581 description: Found - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -76885,8 +77247,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *452 - - *453 + - *454 + - *455 - name: language in: path description: The language of the CodeQL database. @@ -76896,7 +77258,7 @@ paths: responses: '204': description: Response - '403': *542 + '403': *544 '404': *6 '503': *184 x-github: @@ -76924,8 +77286,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -76934,10 +77296,11 @@ paths: type: object additionalProperties: false properties: - language: &550 + language: &552 type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -77013,7 +77376,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &554 + schema: &556 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -77023,7 +77386,7 @@ paths: description: The ID of the variant analysis. controller_repo: *113 actor: *4 - query_language: *550 + query_language: *552 query_pack_url: type: string description: The download url for the query pack. @@ -77071,7 +77434,7 @@ paths: items: type: object properties: - repository: &551 + repository: &553 title: Repository Identifier description: Repository Identifier type: object @@ -77113,7 +77476,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &555 + analysis_status: &557 type: string description: The new status of the CodeQL variant analysis repository task. @@ -77145,7 +77508,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &552 + access_mismatch_repos: &554 type: object properties: repository_count: @@ -77160,7 +77523,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *551 + items: *553 required: - repository_count - repositories @@ -77183,8 +77546,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *552 - over_limit_repos: *552 + no_codeql_db_repos: *554 + over_limit_repos: *554 required: - access_mismatch_repos - not_found_repos @@ -77200,7 +77563,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &553 + value: &555 summary: Default response value: id: 1 @@ -77352,10 +77715,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *553 + value: *555 repository_lists: summary: Response for a successful variant analysis submission - value: *553 + value: *555 '404': *6 '422': description: Unable to process variant analysis submission @@ -77383,8 +77746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *452 - - *453 + - *454 + - *455 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -77396,9 +77759,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: - default: *553 + default: *555 '404': *6 '503': *184 x-github: @@ -77421,7 +77784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *452 + - *454 - name: repo in: path description: The name of the controller repository. @@ -77456,7 +77819,7 @@ paths: type: object properties: repository: *113 - analysis_status: *555 + analysis_status: *557 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -77581,8 +77944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -77675,7 +78038,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -77696,8 +78059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -77791,7 +78154,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *542 + '403': *544 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -77862,8 +78225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -77871,7 +78234,7 @@ paths: schema: type: object properties: - commit_sha: *556 + commit_sha: *558 ref: type: string description: |- @@ -77931,7 +78294,7 @@ paths: schema: type: object properties: - id: *547 + id: *549 url: type: string description: The REST API URL for checking the status of the upload. @@ -77945,7 +78308,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *542 + '403': *544 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -77968,8 +78331,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *452 - - *453 + - *454 + - *455 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -78017,7 +78380,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *536 + '403': *538 '404': description: Not Found if the sarif id does not match any upload '503': *184 @@ -78042,8 +78405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -78124,8 +78487,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *452 - - *453 + - *454 + - *455 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -78253,8 +78616,8 @@ paths: parameters: - *17 - *19 - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -78270,7 +78633,7 @@ paths: type: integer codespaces: type: array - items: *360 + items: *362 examples: default: value: @@ -78568,8 +78931,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -78633,17 +78996,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '400': *14 '401': *23 '403': *27 @@ -78672,8 +79035,8 @@ paths: parameters: - *17 - *19 - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -78737,8 +79100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -78775,9 +79138,9 @@ paths: type: integer machines: type: array - items: *558 + items: *560 examples: - default: &796 + default: &798 value: total_count: 2 machines: @@ -78817,8 +79180,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *452 - - *453 + - *454 + - *455 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -78905,8 +79268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *452 - - *453 + - *454 + - *455 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -78975,8 +79338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -78994,7 +79357,7 @@ paths: type: integer secrets: type: array - items: &562 + items: &564 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -79015,7 +79378,7 @@ paths: - created_at - updated_at examples: - default: *559 + default: *561 headers: Link: *41 x-github: @@ -79038,16 +79401,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *560 + schema: *562 examples: - default: *561 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -79067,17 +79430,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '200': description: Response content: application/json: - schema: *562 + schema: *564 examples: - default: *563 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79097,8 +79460,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 requestBody: required: true @@ -79151,8 +79514,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '204': @@ -79181,8 +79544,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *452 - - *453 + - *454 + - *455 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -79220,7 +79583,7 @@ paths: application/json: schema: type: array - items: &564 + items: &566 title: Collaborator description: Collaborator type: object @@ -79413,8 +79776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *452 - - *453 + - *454 + - *455 - *132 responses: '204': @@ -79461,8 +79824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *452 - - *453 + - *454 + - *455 - *132 requestBody: required: false @@ -79489,7 +79852,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &637 + schema: &639 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -79717,8 +80080,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *452 - - *453 + - *454 + - *455 - *132 responses: '204': @@ -79750,8 +80113,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *452 - - *453 + - *454 + - *455 - *132 responses: '200': @@ -79772,7 +80135,7 @@ paths: user: anyOf: - type: 'null' - - *564 + - *566 required: - permission - role_name @@ -79826,8 +80189,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -79837,7 +80200,7 @@ paths: application/json: schema: type: array - items: &565 + items: &567 title: Commit Comment description: Commit Comment type: object @@ -79895,7 +80258,7 @@ paths: - created_at - updated_at examples: - default: &568 + default: &570 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -79954,17 +80317,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '200': description: Response content: application/json: - schema: *565 + schema: *567 examples: - default: &569 + default: &571 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80021,8 +80384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -80045,7 +80408,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *567 examples: default: value: @@ -80096,8 +80459,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '204': @@ -80119,8 +80482,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -80147,9 +80510,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 '404': *6 @@ -80170,8 +80533,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -80204,16 +80567,16 @@ paths: description: Reaction exists content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Reaction created content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '422': *15 x-github: githubCloudOnly: false @@ -80235,10 +80598,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *452 - - *453 + - *454 + - *455 - *218 - - *444 + - *446 responses: '204': description: Response @@ -80287,8 +80650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *452 - - *453 + - *454 + - *455 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -80344,9 +80707,9 @@ paths: application/json: schema: type: array - items: *566 + items: *568 examples: - default: &687 + default: &689 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -80440,9 +80803,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *452 - - *453 - - &567 + - *454 + - *455 + - &569 name: commit_sha description: The SHA of the commit. in: path @@ -80514,9 +80877,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *452 - - *453 - - *567 + - *454 + - *455 + - *569 - *17 - *19 responses: @@ -80526,9 +80889,9 @@ paths: application/json: schema: type: array - items: *565 + items: *567 examples: - default: *568 + default: *570 headers: Link: *41 x-github: @@ -80556,9 +80919,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *452 - - *453 - - *567 + - *454 + - *455 + - *569 requestBody: required: true content: @@ -80593,9 +80956,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *567 examples: - default: *569 + default: *571 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80623,9 +80986,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *452 - - *453 - - *567 + - *454 + - *455 + - *569 - *17 - *19 responses: @@ -80635,9 +80998,9 @@ paths: application/json: schema: type: array - items: *570 + items: *572 examples: - default: &679 + default: &681 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -81174,11 +81537,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *452 - - *453 + - *454 + - *455 - *19 - *17 - - &571 + - &573 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -81193,9 +81556,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *568 examples: - default: &665 + default: &667 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -81308,11 +81671,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *452 - - *453 - - *571 - - *572 + - *454 + - *455 - *573 + - *574 + - *575 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -81346,9 +81709,9 @@ paths: type: integer check_runs: type: array - items: *521 + items: *523 examples: - default: *574 + default: *576 headers: Link: *41 x-github: @@ -81373,9 +81736,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *452 - - *453 - - *571 + - *454 + - *455 + - *573 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -81383,7 +81746,7 @@ paths: schema: type: integer example: 1 - - *572 + - *574 - *17 - *19 responses: @@ -81401,7 +81764,7 @@ paths: type: integer check_suites: type: array - items: *525 + items: *527 examples: default: value: @@ -81601,9 +81964,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *452 - - *453 - - *571 + - *454 + - *455 + - *573 - *17 - *19 responses: @@ -81805,9 +82168,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *452 - - *453 - - *571 + - *454 + - *455 + - *573 - *17 - *19 responses: @@ -81817,7 +82180,7 @@ paths: application/json: schema: type: array - items: &741 + items: &743 title: Status description: The status of a commit. type: object @@ -81898,7 +82261,7 @@ paths: site_admin: false headers: Link: *41 - '301': *464 + '301': *466 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81926,8 +82289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -81960,11 +82323,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *575 + - *577 code_of_conduct_file: anyOf: - type: 'null' - - &576 + - &578 title: Community Health File type: object properties: @@ -81984,19 +82347,19 @@ paths: contributing: anyOf: - type: 'null' - - *576 + - *578 readme: anyOf: - type: 'null' - - *576 + - *578 issue_template: anyOf: - type: 'null' - - *576 + - *578 pull_request_template: anyOf: - type: 'null' - - *576 + - *578 required: - code_of_conduct - code_of_conduct_file @@ -82125,8 +82488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *452 - - *453 + - *454 + - *455 - *19 - *17 - name: basehead @@ -82174,8 +82537,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *566 - merge_base_commit: *566 + base_commit: *568 + merge_base_commit: *568 status: type: string enum: @@ -82199,10 +82562,10 @@ paths: - 6 commits: type: array - items: *566 + items: *568 files: type: array - items: *577 + items: *579 required: - url - html_url @@ -82488,8 +82851,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *452 - - *453 + - *454 + - *455 - name: path description: path parameter in: path @@ -82642,7 +83005,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &578 + response-if-content-is-a-file: &580 summary: Response if content is a file value: type: file @@ -82779,7 +83142,7 @@ paths: - size - type - url - - &692 + - &694 title: Content File description: Content File type: object @@ -82997,7 +83360,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *578 + response-if-content-is-a-file: *580 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -83066,7 +83429,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *579 + '302': *581 '304': *35 x-github: githubCloudOnly: false @@ -83089,8 +83452,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *452 - - *453 + - *454 + - *455 - name: path description: path parameter in: path @@ -83185,7 +83548,7 @@ paths: description: Response content: application/json: - schema: &580 + schema: &582 title: File Commit description: File Commit type: object @@ -83341,7 +83704,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: example-for-creating-a-file: value: @@ -83395,7 +83758,7 @@ paths: schema: oneOf: - *3 - - &619 + - &621 description: Repository rule violation was detected type: object properties: @@ -83416,7 +83779,7 @@ paths: items: type: object properties: - placeholder_id: &733 + placeholder_id: &735 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -83448,8 +83811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *452 - - *453 + - *454 + - *455 - name: path description: path parameter in: path @@ -83510,7 +83873,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: default: value: @@ -83565,8 +83928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *452 - - *453 + - *454 + - *455 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -83690,22 +84053,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *452 - - *453 - - *320 - - *321 + - *454 + - *455 - *322 - *323 + - *324 + - *325 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *324 - - *581 - - *325 - *326 + - *583 + - *327 + - *328 - *104 - name: per_page description: The number of results per page (max 100). For more information, @@ -83724,7 +84087,7 @@ paths: application/json: schema: type: array - items: &584 + items: &586 type: object description: A Dependabot alert. properties: @@ -83774,7 +84137,7 @@ paths: - direct - transitive - - security_advisory: *582 + security_advisory: *584 security_vulnerability: *123 url: *124 html_url: *125 @@ -83805,7 +84168,7 @@ paths: dismissal. maxLength: 280 fixed_at: *129 - auto_dismissed_at: *583 + auto_dismissed_at: *585 required: - number - state @@ -84035,9 +84398,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *452 - - *453 - - &585 + - *454 + - *455 + - &587 name: alert_number in: path description: |- @@ -84052,7 +84415,7 @@ paths: description: Response content: application/json: - schema: *584 + schema: *586 examples: default: value: @@ -84165,9 +84528,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *452 - - *453 - - *585 + - *454 + - *455 + - *587 requestBody: required: true content: @@ -84212,7 +84575,7 @@ paths: description: Response content: application/json: - schema: *584 + schema: *586 examples: default: value: @@ -84341,8 +84704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -84360,7 +84723,7 @@ paths: type: integer secrets: type: array - items: &588 + items: &590 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -84414,16 +84777,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *586 + schema: *588 examples: - default: *587 + default: *589 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84443,15 +84806,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '200': description: Response content: application/json: - schema: *588 + schema: *590 examples: default: value: @@ -84477,8 +84840,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 requestBody: required: true @@ -84531,8 +84894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '204': @@ -84555,8 +84918,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *452 - - *453 + - *454 + - *455 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -84730,8 +85093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -84991,8 +85354,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -85075,7 +85438,7 @@ paths: - version - url additionalProperties: false - metadata: &589 + metadata: &591 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -85114,7 +85477,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *589 + metadata: *591 resolved: type: object description: A collection of resolved package dependencies. @@ -85128,7 +85491,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *589 + metadata: *591 relationship: type: string description: A notation of whether a dependency is requested @@ -85261,8 +85624,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *452 - - *453 + - *454 + - *455 - name: sha description: The SHA recorded at creation time. in: query @@ -85303,9 +85666,9 @@ paths: application/json: schema: type: array - items: *590 + items: *592 examples: - default: *591 + default: *593 headers: Link: *41 x-github: @@ -85371,8 +85734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -85454,7 +85817,7 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: simple-example: summary: Simple example @@ -85527,9 +85890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *452 - - *453 - - &592 + - *454 + - *455 + - &594 name: deployment_id description: deployment_id parameter in: path @@ -85541,7 +85904,7 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: default: value: @@ -85606,9 +85969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *452 - - *453 - - *592 + - *454 + - *455 + - *594 responses: '204': description: Response @@ -85630,9 +85993,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *452 - - *453 - - *592 + - *454 + - *455 + - *594 - *17 - *19 responses: @@ -85642,7 +86005,7 @@ paths: application/json: schema: type: array - items: &593 + items: &595 title: Deployment Status description: The status of a deployment. type: object @@ -85806,9 +86169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *452 - - *453 - - *592 + - *454 + - *455 + - *594 requestBody: required: true content: @@ -85883,9 +86246,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *595 examples: - default: &594 + default: &596 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -85941,9 +86304,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *452 - - *453 - - *592 + - *454 + - *455 + - *594 - name: status_id in: path required: true @@ -85954,9 +86317,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -85983,12 +86346,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 - - *595 - - *596 + - *454 + - *455 - *597 - *598 + - *599 + - *600 - *17 - *19 responses: @@ -85998,9 +86361,9 @@ paths: application/json: schema: type: array - items: *599 + items: *601 examples: - default: *600 + default: *602 '404': *6 '403': *27 '500': *38 @@ -86024,8 +86387,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: alert_number in: path required: true @@ -86037,7 +86400,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *599 + schema: *601 examples: default: value: @@ -86093,8 +86456,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: alert_number in: path required: true @@ -86153,12 +86516,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 + - *454 + - *455 - *97 - *98 - *99 - - *601 + - *603 - *17 - *19 responses: @@ -86168,9 +86531,9 @@ paths: application/json: schema: type: array - items: *602 + items: *604 examples: - default: *603 + default: *605 '404': *6 '403': *27 '500': *38 @@ -86195,8 +86558,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: alert_number in: path required: true @@ -86208,7 +86571,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *602 + schema: *604 examples: default: value: @@ -86266,8 +86629,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: alert_number in: path required: true @@ -86336,8 +86699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -86394,8 +86757,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -86413,7 +86776,7 @@ paths: - 5 environments: type: array - items: &605 + items: &607 title: Environment description: Details of a deployment environment type: object @@ -86475,7 +86838,7 @@ paths: type: string examples: - wait_timer - wait_timer: &607 + wait_timer: &609 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -86517,11 +86880,11 @@ paths: items: type: object properties: - type: *604 + type: *606 reviewer: anyOf: - *4 - - *300 + - *302 required: - id - node_id @@ -86544,7 +86907,7 @@ paths: - id - node_id - type - deployment_branch_policy: &608 + deployment_branch_policy: &610 type: - object - 'null' @@ -86661,9 +87024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *452 - - *453 - - &606 + - *454 + - *455 + - &608 name: environment_name in: path required: true @@ -86676,9 +87039,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: - default: &609 + default: &611 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -86762,9 +87125,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 requestBody: required: false content: @@ -86774,7 +87137,7 @@ paths: - object - 'null' properties: - wait_timer: *607 + wait_timer: *609 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -86793,14 +87156,14 @@ paths: items: type: object properties: - type: *604 + type: *606 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *608 + deployment_branch_policy: *610 additionalProperties: false examples: default: @@ -86820,9 +87183,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: - default: *609 + default: *611 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -86846,9 +87209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 responses: '204': description: Default response @@ -86873,9 +87236,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *17 - *19 responses: @@ -86894,7 +87257,7 @@ paths: - 2 branch_policies: type: array - items: &610 + items: &612 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -86955,9 +87318,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 requestBody: required: true content: @@ -87005,9 +87368,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *612 examples: - example-wildcard: &611 + example-wildcard: &613 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -87049,10 +87412,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *452 - - *453 - - *606 - - &612 + - *454 + - *455 + - *608 + - &614 name: branch_policy_id in: path required: true @@ -87064,9 +87427,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *612 examples: - default: *611 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87085,10 +87448,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *452 - - *453 - - *606 - - *612 + - *454 + - *455 + - *608 + - *614 requestBody: required: true content: @@ -87117,9 +87480,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *612 examples: - default: *611 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87138,10 +87501,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *452 - - *453 - - *606 - - *612 + - *454 + - *455 + - *608 + - *614 responses: '204': description: Response @@ -87166,9 +87529,9 @@ 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: - - *606 - - *453 - - *452 + - *608 + - *455 + - *454 responses: '200': description: List of deployment protection rules @@ -87185,7 +87548,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &613 + items: &615 title: Deployment protection rule description: Deployment protection rule type: object @@ -87207,7 +87570,7 @@ paths: for the environment. examples: - true - app: &614 + app: &616 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -87310,9 +87673,9 @@ 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: - - *606 - - *453 - - *452 + - *608 + - *455 + - *454 requestBody: content: application/json: @@ -87333,9 +87696,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *613 + schema: *615 examples: - default: &615 + default: &617 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -87370,9 +87733,9 @@ 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: - - *606 - - *453 - - *452 + - *608 + - *455 + - *454 - *19 - *17 responses: @@ -87392,7 +87755,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *614 + items: *616 examples: default: value: @@ -87427,10 +87790,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *452 - - *453 - - *606 - - &616 + - *454 + - *455 + - *608 + - &618 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -87442,9 +87805,9 @@ paths: description: Response content: application/json: - schema: *613 + schema: *615 examples: - default: *615 + default: *617 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87465,10 +87828,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: - - *606 - - *453 - - *452 - - *616 + - *608 + - *455 + - *454 + - *618 responses: '204': description: Response @@ -87494,9 +87857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *17 - *19 responses: @@ -87514,9 +87877,9 @@ paths: type: integer secrets: type: array - items: *487 + items: *489 examples: - default: *488 + default: *490 headers: Link: *41 x-github: @@ -87541,17 +87904,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 responses: '200': description: Response content: application/json: - schema: *489 + schema: *491 examples: - default: *490 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87573,18 +87936,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *283 responses: '200': description: Response content: application/json: - schema: *487 + schema: *489 examples: - default: *617 + default: *619 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87606,9 +87969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *283 requestBody: required: true @@ -87666,9 +88029,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *283 responses: '204': @@ -87694,10 +88057,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *452 - - *453 - - *606 - - *474 + - *454 + - *455 + - *608 + - *476 - *19 responses: '200': @@ -87714,9 +88077,9 @@ paths: type: integer variables: type: array - items: *491 + items: *493 examples: - default: *492 + default: *494 headers: Link: *41 x-github: @@ -87739,9 +88102,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 requestBody: required: true content: @@ -87793,18 +88156,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *286 responses: '200': description: Response content: application/json: - schema: *491 + schema: *493 examples: - default: *618 + default: *620 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87825,10 +88188,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *452 - - *453 + - *454 + - *455 - *286 - - *606 + - *608 requestBody: required: true content: @@ -87870,10 +88233,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *452 - - *453 + - *454 + - *455 - *286 - - *606 + - *608 responses: '204': description: Response @@ -87895,8 +88258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -87964,8 +88327,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *452 - - *453 + - *454 + - *455 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -88124,8 +88487,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -88158,9 +88521,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *465 + default: *467 '400': *14 '422': *15 '403': *27 @@ -88181,8 +88544,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -88242,7 +88605,7 @@ paths: schema: oneOf: - *248 - - *619 + - *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88267,8 +88630,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *452 - - *453 + - *454 + - *455 - name: file_sha in: path required: true @@ -88368,8 +88731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -88478,7 +88841,7 @@ paths: description: Response content: application/json: - schema: &620 + schema: &622 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -88705,15 +89068,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *452 - - *453 - - *567 + - *454 + - *455 + - *569 responses: '200': description: Response content: application/json: - schema: *620 + schema: *622 examples: default: value: @@ -88769,9 +89132,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *452 - - *453 - - &621 + - *454 + - *455 + - &623 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. @@ -88788,7 +89151,7 @@ paths: application/json: schema: type: array - items: &622 + items: &624 title: Git Reference description: Git references within a repository type: object @@ -88864,17 +89227,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *452 - - *453 - - *621 + - *454 + - *455 + - *623 responses: '200': description: Response content: application/json: - schema: *622 + schema: *624 examples: - default: &623 + default: &625 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -88903,8 +89266,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -88933,9 +89296,9 @@ paths: description: Response content: application/json: - schema: *622 + schema: *624 examples: - default: *623 + default: *625 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -88961,9 +89324,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *452 - - *453 - - *621 + - *454 + - *455 + - *623 requestBody: required: true content: @@ -88992,9 +89355,9 @@ paths: description: Response content: application/json: - schema: *622 + schema: *624 examples: - default: *623 + default: *625 '422': *15 '409': *112 x-github: @@ -89012,9 +89375,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *452 - - *453 - - *621 + - *454 + - *455 + - *623 responses: '204': description: Response @@ -89069,8 +89432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -89137,7 +89500,7 @@ paths: description: Response content: application/json: - schema: &625 + schema: &627 title: Git Tag description: Metadata for a Git tag type: object @@ -89193,7 +89556,7 @@ paths: - sha - type - url - verification: *624 + verification: *626 required: - sha - url @@ -89203,7 +89566,7 @@ paths: - tag - message examples: - default: &626 + default: &628 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -89276,8 +89639,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *452 - - *453 + - *454 + - *455 - name: tag_sha in: path required: true @@ -89288,9 +89651,9 @@ paths: description: Response content: application/json: - schema: *625 + schema: *627 examples: - default: *626 + default: *628 '404': *6 '409': *112 x-github: @@ -89314,8 +89677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -89389,7 +89752,7 @@ paths: description: Response content: application/json: - schema: &627 + schema: &629 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -89491,8 +89854,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *452 - - *453 + - *454 + - *455 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -89515,7 +89878,7 @@ paths: description: Response content: application/json: - schema: *627 + schema: *629 examples: default-response: summary: Default response @@ -89574,8 +89937,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -89585,7 +89948,7 @@ paths: application/json: schema: type: array - items: &628 + items: &630 title: Webhook description: Webhooks for repositories. type: object @@ -89648,7 +90011,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &874 + last_response: &876 title: Hook Response type: object properties: @@ -89725,8 +90088,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -89779,9 +90142,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *630 examples: - default: &629 + default: &631 value: type: Repository id: 12345678 @@ -89829,17 +90192,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 responses: '200': description: Response content: application/json: - schema: *628 + schema: *630 examples: - default: *629 + default: *631 '404': *6 x-github: githubCloudOnly: false @@ -89859,9 +90222,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 requestBody: required: true content: @@ -89906,9 +90269,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *630 examples: - default: *629 + default: *631 '422': *15 '404': *6 x-github: @@ -89929,9 +90292,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 responses: '204': description: Response @@ -89955,9 +90318,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 responses: '200': description: Response @@ -89984,9 +90347,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 requestBody: required: false content: @@ -90030,11 +90393,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 - *17 - - *333 + - *335 responses: '200': description: Response @@ -90042,9 +90405,9 @@ paths: application/json: schema: type: array - items: *334 + items: *336 examples: - default: *335 + default: *337 '400': *14 '422': *15 x-github: @@ -90063,18 +90426,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 - *16 responses: '200': description: Response content: application/json: - schema: *336 + schema: *338 examples: - default: *337 + default: *339 '400': *14 '422': *15 x-github: @@ -90093,9 +90456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 - *16 responses: '202': *37 @@ -90118,9 +90481,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 responses: '204': description: Response @@ -90145,9 +90508,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 responses: '204': description: Response @@ -90170,8 +90533,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response if immutable releases are enabled @@ -90219,8 +90582,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': *144 '409': *112 @@ -90240,8 +90603,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': *144 '409': *112 @@ -90298,14 +90661,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: &630 + schema: &632 title: Import description: A repository import from an external source. type: object @@ -90412,7 +90775,7 @@ paths: - html_url - authors_url examples: - default: &633 + default: &635 value: vcs: subversion use_lfs: true @@ -90428,7 +90791,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': &631 + '503': &633 description: Unavailable due to service under maintenance. content: application/json: @@ -90457,8 +90820,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -90506,7 +90869,7 @@ paths: description: Response content: application/json: - schema: *630 + schema: *632 examples: default: value: @@ -90531,7 +90894,7 @@ paths: type: string '422': *15 '404': *6 - '503': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90559,8 +90922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -90612,7 +90975,7 @@ paths: description: Response content: application/json: - schema: *630 + schema: *632 examples: example-1: summary: Example 1 @@ -90660,7 +91023,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': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90683,12 +91046,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response - '503': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90714,9 +91077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *452 - - *453 - - &817 + - *454 + - *455 + - &819 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -90730,7 +91093,7 @@ paths: application/json: schema: type: array - items: &632 + items: &634 title: Porter Author description: Porter Author type: object @@ -90784,7 +91147,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': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90809,8 +91172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *452 - - *453 + - *454 + - *455 - name: author_id in: path required: true @@ -90840,7 +91203,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *634 examples: default: value: @@ -90853,7 +91216,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90877,8 +91240,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -90919,7 +91282,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90947,8 +91310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -90975,11 +91338,11 @@ paths: description: Response content: application/json: - schema: *630 + schema: *632 examples: - default: *633 + default: *635 '422': *15 - '503': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91002,8 +91365,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -91011,8 +91374,8 @@ paths: application/json: schema: *20 examples: - default: *634 - '301': *464 + default: *636 + '301': *466 '404': *6 x-github: githubCloudOnly: false @@ -91032,8 +91395,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -91041,12 +91404,12 @@ paths: application/json: schema: anyOf: - - *350 + - *352 - type: object properties: {} additionalProperties: false examples: - default: &636 + default: &638 value: limit: collaborators_only origin: repository @@ -91071,13 +91434,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: application/json: - schema: *635 + schema: *637 examples: default: summary: Example request body @@ -91089,9 +91452,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *352 examples: - default: *636 + default: *638 '409': description: Response x-github: @@ -91113,8 +91476,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -91137,8 +91500,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -91148,9 +91511,9 @@ paths: application/json: schema: type: array - items: *637 + items: *639 examples: - default: &810 + default: &812 value: - id: 1 repository: @@ -91281,9 +91644,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *452 - - *453 - - *354 + - *454 + - *455 + - *356 requestBody: required: false content: @@ -91312,7 +91675,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *639 examples: default: value: @@ -91443,9 +91806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *452 - - *453 - - *354 + - *454 + - *455 + - *356 responses: '204': description: Response @@ -91476,8 +91839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *452 - - *453 + - *454 + - *455 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -91525,7 +91888,7 @@ paths: required: false schema: type: string - - *358 + - *360 - name: sort description: What to sort results by. in: query @@ -91550,7 +91913,7 @@ paths: type: array items: *219 examples: - default: &645 + default: &647 value: - id: 1 node_id: MDU6SXNzdWUx @@ -91698,7 +92061,7 @@ paths: state_reason: completed headers: Link: *41 - '301': *464 + '301': *466 '422': *15 '404': *6 x-github: @@ -91727,8 +92090,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -91820,7 +92183,7 @@ paths: application/json: schema: *219 examples: - default: &642 + default: &644 value: id: 1 node_id: MDU6SXNzdWUx @@ -91976,7 +92339,7 @@ paths: '422': *15 '503': *184 '404': *6 - '410': *638 + '410': *640 x-github: triggersNotification: true githubCloudOnly: false @@ -92004,8 +92367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *228 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -92026,9 +92389,9 @@ paths: application/json: schema: type: array - items: *639 + items: *641 examples: - default: &644 + default: &646 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92086,17 +92449,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '200': description: Response content: application/json: - schema: *639 + schema: *641 examples: - default: &640 + default: &642 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92150,8 +92513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -92174,9 +92537,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: - default: *640 + default: *642 '422': *15 x-github: githubCloudOnly: false @@ -92194,8 +92557,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '204': @@ -92216,8 +92579,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -92244,9 +92607,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 '404': *6 @@ -92267,8 +92630,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -92301,16 +92664,16 @@ paths: description: Reaction exists content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Reaction created content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '422': *15 x-github: githubCloudOnly: false @@ -92332,10 +92695,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *452 - - *453 + - *454 + - *455 - *218 - - *444 + - *446 responses: '204': description: Response @@ -92355,8 +92718,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -92366,7 +92729,7 @@ paths: application/json: schema: type: array - items: &641 + items: &643 title: Issue Event description: Issue Event type: object @@ -92446,7 +92809,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *300 + requested_team: *302 dismissed_review: title: Issue Event Dismissed Review type: object @@ -92705,8 +93068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *452 - - *453 + - *454 + - *455 - name: event_id in: path required: true @@ -92717,7 +93080,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *643 examples: default: value: @@ -92910,7 +93273,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *638 + '410': *640 '403': *27 x-github: githubCloudOnly: false @@ -92944,9 +93307,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *452 - - *453 - - &643 + - *454 + - *455 + - &645 name: issue_number description: The number that identifies the issue. in: path @@ -92960,10 +93323,10 @@ paths: application/json: schema: *219 examples: - default: *642 - '301': *464 + default: *644 + '301': *466 '404': *6 - '410': *638 + '410': *640 '304': *35 x-github: githubCloudOnly: false @@ -92988,9 +93351,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: false content: @@ -93111,13 +93474,13 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 '422': *15 '503': *184 '403': *27 - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93135,9 +93498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: false content: @@ -93165,7 +93528,7 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93181,9 +93544,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: content: application/json: @@ -93210,7 +93573,7 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93232,9 +93595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - name: assignee in: path required: true @@ -93274,9 +93637,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *209 - *17 - *19 @@ -93287,13 +93650,13 @@ paths: application/json: schema: type: array - items: *639 + items: *641 examples: - default: *644 + default: *646 headers: Link: *41 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93322,9 +93685,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -93346,16 +93709,16 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: - default: *640 + default: *642 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *638 + '410': *640 '422': *15 '404': *6 x-github: @@ -93383,9 +93746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -93397,12 +93760,12 @@ paths: type: array items: *219 examples: - default: *645 + default: *647 headers: Link: *41 - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93430,9 +93793,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -93456,15 +93819,15 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *464 + '301': *466 '403': *27 - '410': *638 + '410': *640 '422': *15 '404': *6 x-github: @@ -93495,9 +93858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -93511,13 +93874,13 @@ paths: application/json: schema: *219 examples: - default: *642 - '301': *464 + default: *644 + '301': *466 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *638 + '410': *640 x-github: triggersNotification: true githubCloudOnly: false @@ -93543,9 +93906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -93557,12 +93920,12 @@ paths: type: array items: *219 examples: - default: *645 + default: *647 headers: Link: *41 - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93579,9 +93942,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -93595,7 +93958,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &648 + - &650 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -93644,7 +94007,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &649 + - &651 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -93772,7 +94135,7 @@ paths: - performed_via_github_app - assignee - assigner - - &650 + - &652 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -93818,7 +94181,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &651 + - &653 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -93864,7 +94227,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &652 + - &654 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -93913,7 +94276,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &653 + - &655 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -93942,7 +94305,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *300 + requested_team: *302 requested_reviewer: *4 required: - review_requester @@ -93955,7 +94318,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &654 + - &656 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -93984,7 +94347,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *300 + requested_team: *302 requested_reviewer: *4 required: - review_requester @@ -93997,7 +94360,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &655 + - &657 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -94053,7 +94416,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &656 + - &658 title: Locked Issue Event description: Locked Issue Event type: object @@ -94098,7 +94461,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &657 + - &659 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -94159,7 +94522,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &658 + - &660 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -94220,7 +94583,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &659 + - &661 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -94281,7 +94644,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &660 + - &662 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -94374,7 +94737,7 @@ paths: color: red headers: Link: *41 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94391,9 +94754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -94403,7 +94766,7 @@ paths: application/json: schema: type: array - items: &646 + items: &648 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -94458,7 +94821,7 @@ paths: - color - default examples: - default: &647 + default: &649 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94476,9 +94839,9 @@ paths: default: false headers: Link: *41 - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94495,9 +94858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: false content: @@ -94556,12 +94919,12 @@ paths: application/json: schema: type: array - items: *646 + items: *648 examples: - default: *647 - '301': *464 + default: *649 + '301': *466 '404': *6 - '410': *638 + '410': *640 '422': *15 x-github: githubCloudOnly: false @@ -94578,9 +94941,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: false content: @@ -94640,12 +95003,12 @@ paths: application/json: schema: type: array - items: *646 + items: *648 examples: - default: *647 - '301': *464 + default: *649 + '301': *466 '404': *6 - '410': *638 + '410': *640 '422': *15 x-github: githubCloudOnly: false @@ -94662,15 +95025,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 responses: '204': description: Response - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94689,9 +95052,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - name: name in: path required: true @@ -94704,7 +95067,7 @@ paths: application/json: schema: type: array - items: *646 + items: *648 examples: default: value: @@ -94715,9 +95078,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94737,9 +95100,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: false content: @@ -94768,7 +95131,7 @@ paths: '204': description: Response '403': *27 - '410': *638 + '410': *640 '404': *6 '422': *15 x-github: @@ -94786,9 +95149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 responses: '204': description: Response @@ -94818,9 +95181,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 responses: '200': description: Response @@ -94828,10 +95191,10 @@ paths: application/json: schema: *219 examples: - default: *642 - '301': *464 + default: *644 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94848,9 +95211,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - 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. @@ -94876,13 +95239,13 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94900,9 +95263,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -94934,16 +95297,16 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '422': *15 x-github: githubCloudOnly: false @@ -94965,10 +95328,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *452 - - *453 - - *643 - - *444 + - *454 + - *455 + - *645 + - *446 responses: '204': description: Response @@ -94997,9 +95360,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -95023,7 +95386,7 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -95056,9 +95419,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -95070,11 +95433,11 @@ paths: type: array items: *219 examples: - default: *645 + default: *647 headers: Link: *41 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95102,9 +95465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -95133,14 +95496,14 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *638 + '410': *640 '422': *15 '404': *6 x-github: @@ -95160,9 +95523,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -95195,7 +95558,7 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 '403': *27 '404': *6 '422': *7 @@ -95217,9 +95580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -95234,8 +95597,6 @@ paths: description: Timeline Event type: object anyOf: - - *648 - - *649 - *650 - *651 - *652 @@ -95247,6 +95608,8 @@ paths: - *658 - *659 - *660 + - *661 + - *662 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -95575,7 +95938,7 @@ paths: type: string comments: type: array - items: &681 + items: &683 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -95813,7 +96176,7 @@ paths: type: string comments: type: array - items: *565 + items: *567 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -96088,7 +96451,7 @@ paths: headers: Link: *41 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96105,8 +96468,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -96116,7 +96479,7 @@ paths: application/json: schema: type: array - items: &661 + items: &663 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -96184,8 +96547,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -96221,9 +96584,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *663 examples: - default: &662 + default: &664 value: id: 1 key: ssh-rsa AAA... @@ -96257,9 +96620,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *452 - - *453 - - &663 + - *454 + - *455 + - &665 name: key_id description: The unique identifier of the key. in: path @@ -96271,9 +96634,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *663 examples: - default: *662 + default: *664 '404': *6 x-github: githubCloudOnly: false @@ -96291,9 +96654,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *452 - - *453 - - *663 + - *454 + - *455 + - *665 responses: '204': description: Response @@ -96313,8 +96676,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -96324,9 +96687,9 @@ paths: application/json: schema: type: array - items: *646 + items: *648 examples: - default: *647 + default: *649 headers: Link: *41 '404': *6 @@ -96347,8 +96710,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -96384,9 +96747,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *648 examples: - default: &664 + default: &666 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96418,8 +96781,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *452 - - *453 + - *454 + - *455 - name: name in: path required: true @@ -96430,9 +96793,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *648 examples: - default: *664 + default: *666 '404': *6 x-github: githubCloudOnly: false @@ -96449,8 +96812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *452 - - *453 + - *454 + - *455 - name: name in: path required: true @@ -96489,7 +96852,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *648 examples: default: value: @@ -96515,8 +96878,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *452 - - *453 + - *454 + - *455 - name: name in: path required: true @@ -96542,8 +96905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -96579,8 +96942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '202': *37 '403': @@ -96608,8 +96971,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -96635,9 +96998,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *452 - - *453 - - *543 + - *454 + - *455 + - *545 responses: '200': description: Response @@ -96784,8 +97147,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -96850,8 +97213,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -96885,9 +97248,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *566 + schema: *568 examples: - default: *665 + default: *667 '204': description: Response when already merged '404': @@ -96912,8 +97275,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *452 - - *453 + - *454 + - *455 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -96954,7 +97317,7 @@ paths: application/json: schema: type: array - items: *389 + items: *391 examples: default: value: @@ -97010,8 +97373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -97051,9 +97414,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: &666 + default: &668 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -97112,9 +97475,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *452 - - *453 - - &667 + - *454 + - *455 + - &669 name: milestone_number description: The number that identifies the milestone. in: path @@ -97126,9 +97489,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *666 + default: *668 '404': *6 x-github: githubCloudOnly: false @@ -97145,9 +97508,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *452 - - *453 - - *667 + - *454 + - *455 + - *669 requestBody: required: false content: @@ -97185,9 +97548,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *666 + default: *668 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97203,9 +97566,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *452 - - *453 - - *667 + - *454 + - *455 + - *669 responses: '204': description: Response @@ -97226,9 +97589,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *452 - - *453 - - *667 + - *454 + - *455 + - *669 - *17 - *19 responses: @@ -97238,9 +97601,9 @@ paths: application/json: schema: type: array - items: *646 + items: *648 examples: - default: *647 + default: *649 headers: Link: *41 x-github: @@ -97259,12 +97622,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *452 - - *453 - - *668 - - *669 - - *209 + - *454 + - *455 - *670 + - *671 + - *209 + - *672 - *17 - *19 responses: @@ -97276,7 +97639,7 @@ paths: type: array items: *231 examples: - default: *671 + default: *673 headers: Link: *41 x-github: @@ -97300,8 +97663,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -97359,14 +97722,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: &672 + schema: &674 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -97510,7 +97873,7 @@ paths: - custom_404 - public examples: - default: &673 + default: &675 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -97551,8 +97914,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -97607,9 +97970,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *674 examples: - default: *673 + default: *675 '422': *15 '409': *112 x-github: @@ -97632,8 +97995,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -97741,8 +98104,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -97768,8 +98131,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -97779,7 +98142,7 @@ paths: application/json: schema: type: array - items: &674 + items: &676 title: Page Build description: Page Build type: object @@ -97871,8 +98234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *452 - - *453 + - *454 + - *455 responses: '201': description: Response @@ -97919,16 +98282,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *674 + schema: *676 examples: - default: &675 + default: &677 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -97976,8 +98339,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *452 - - *453 + - *454 + - *455 - name: build_id in: path required: true @@ -97988,9 +98351,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *676 examples: - default: *675 + default: *677 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98010,8 +98373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -98119,9 +98482,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *452 - - *453 - - &676 + - *454 + - *455 + - &678 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -98179,9 +98542,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *452 - - *453 - - *676 + - *454 + - *455 + - *678 responses: '204': *144 '404': *6 @@ -98208,8 +98571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -98504,8 +98867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Private vulnerability reporting status @@ -98542,8 +98905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': *144 '422': *14 @@ -98564,8 +98927,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': *144 '422': *14 @@ -98587,8 +98950,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -98598,7 +98961,7 @@ paths: type: array items: *145 examples: - default: *677 + default: *679 '403': *27 '404': *6 x-github: @@ -98620,8 +98983,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -98637,7 +99000,7 @@ paths: required: - properties examples: - default: *678 + default: *680 responses: '204': description: No Content when custom property values are successfully created @@ -98675,8 +99038,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -98736,9 +99099,9 @@ paths: application/json: schema: type: array - items: *570 + items: *572 examples: - default: *679 + default: *681 headers: Link: *41 '304': *35 @@ -98770,8 +99133,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -98838,7 +99201,7 @@ paths: description: Response content: application/json: - schema: &683 + schema: &685 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -98967,7 +99330,7 @@ paths: milestone: anyOf: - type: 'null' - - *389 + - *391 active_lock_reason: type: - string @@ -99022,7 +99385,7 @@ paths: type: - array - 'null' - items: *368 + items: *370 head: type: object properties: @@ -99060,14 +99423,14 @@ paths: _links: type: object properties: - comments: *390 - commits: *390 - statuses: *390 - html: *390 - issue: *390 - review_comments: *390 - review_comment: *390 - self: *390 + comments: *392 + commits: *392 + statuses: *392 + html: *392 + issue: *392 + review_comments: *392 + review_comment: *392 + self: *392 required: - comments - commits @@ -99078,7 +99441,7 @@ paths: - review_comment - self author_association: *206 - auto_merge: *680 + auto_merge: *682 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -99180,7 +99543,7 @@ paths: - merged_by - review_comments examples: - default: &684 + default: &686 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -99707,8 +100070,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: sort in: query required: false @@ -99737,9 +100100,9 @@ paths: application/json: schema: type: array - items: *681 + items: *683 examples: - default: &686 + default: &688 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -99816,17 +100179,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '200': description: Response content: application/json: - schema: *681 + schema: *683 examples: - default: &682 + default: &684 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -99901,8 +100264,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -99925,9 +100288,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *683 examples: - default: *682 + default: *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99943,8 +100306,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '204': @@ -99966,8 +100329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -99994,9 +100357,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 '404': *6 @@ -100017,8 +100380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -100051,16 +100414,16 @@ paths: description: Reaction exists content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Reaction created content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '422': *15 x-github: githubCloudOnly: false @@ -100082,10 +100445,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *452 - - *453 + - *454 + - *455 - *218 - - *444 + - *446 responses: '204': description: Response @@ -100128,9 +100491,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *452 - - *453 - - &685 + - *454 + - *455 + - &687 name: pull_number description: The number that identifies the pull request. in: path @@ -100143,9 +100506,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *683 + schema: *685 examples: - default: *684 + default: *686 '304': *35 '404': *6 '406': @@ -100180,9 +100543,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: false content: @@ -100224,9 +100587,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *685 examples: - default: *684 + default: *686 '422': *15 '403': *27 x-github: @@ -100248,9 +100611,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: true content: @@ -100311,17 +100674,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '401': *23 '403': *27 '404': *6 @@ -100351,9 +100714,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 - *228 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -100374,9 +100737,9 @@ paths: application/json: schema: type: array - items: *681 + items: *683 examples: - default: *686 + default: *688 headers: Link: *41 x-github: @@ -100409,9 +100772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: true content: @@ -100517,7 +100880,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *683 examples: example-for-a-multi-line-comment: value: @@ -100605,9 +100968,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 - *218 requestBody: required: true @@ -100630,7 +100993,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *683 examples: default: value: @@ -100716,9 +101079,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 - *17 - *19 responses: @@ -100728,9 +101091,9 @@ paths: application/json: schema: type: array - items: *566 + items: *568 examples: - default: *687 + default: *689 headers: Link: *41 x-github: @@ -100760,9 +101123,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 - *17 - *19 responses: @@ -100772,7 +101135,7 @@ paths: application/json: schema: type: array - items: *577 + items: *579 examples: default: value: @@ -100810,9 +101173,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 responses: '204': description: Response if pull request has been merged @@ -100835,9 +101198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: false content: @@ -100949,9 +101312,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 responses: '200': description: Response @@ -100967,7 +101330,7 @@ paths: items: *4 teams: type: array - items: *300 + items: *302 required: - users - teams @@ -101026,9 +101389,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: false content: @@ -101065,7 +101428,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *572 examples: default: value: @@ -101601,9 +101964,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: true content: @@ -101637,7 +102000,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *572 examples: default: value: @@ -102142,9 +102505,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 - *17 - *19 responses: @@ -102154,7 +102517,7 @@ paths: application/json: schema: type: array - items: &688 + items: &690 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -102310,9 +102673,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: false content: @@ -102402,9 +102765,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: - default: &690 + default: &692 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102467,10 +102830,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 - - &689 + - *454 + - *455 + - *687 + - &691 name: review_id description: The unique identifier of the review. in: path @@ -102482,9 +102845,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: - default: &691 + default: &693 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102543,10 +102906,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 - - *689 + - *454 + - *455 + - *687 + - *691 requestBody: required: true content: @@ -102569,7 +102932,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: default: value: @@ -102631,18 +102994,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 - - *689 + - *454 + - *455 + - *687 + - *691 responses: '200': description: Response content: application/json: - schema: *688 + schema: *690 examples: - default: *690 + default: *692 '422': *7 '404': *6 x-github: @@ -102669,10 +103032,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *452 - - *453 - - *685 - - *689 + - *454 + - *455 + - *687 + - *691 - *17 - *19 responses: @@ -102770,9 +103133,9 @@ paths: _links: type: object properties: - self: *390 - html: *390 - pull_request: *390 + self: *392 + html: *392 + pull_request: *392 required: - self - html @@ -102930,10 +103293,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 - - *689 + - *454 + - *455 + - *687 + - *691 requestBody: required: true content: @@ -102962,7 +103325,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: default: value: @@ -103025,10 +103388,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 - - *689 + - *454 + - *455 + - *687 + - *691 requestBody: required: true content: @@ -103063,9 +103426,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: - default: *691 + default: *693 '404': *6 '422': *7 '403': *27 @@ -103087,9 +103450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: false content: @@ -103153,8 +103516,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *452 - - *453 + - *454 + - *455 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -103167,9 +103530,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *694 examples: - default: &693 + default: &695 value: type: file encoding: base64 @@ -103211,8 +103574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *452 - - *453 + - *454 + - *455 - name: dir description: The alternate path to look for a README file in: path @@ -103232,9 +103595,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *694 examples: - default: *693 + default: *695 '404': *6 '422': *15 x-github: @@ -103256,8 +103619,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -103267,7 +103630,7 @@ paths: application/json: schema: type: array - items: &694 + items: &696 title: Release description: A release. type: object @@ -103349,7 +103712,7 @@ paths: author: *4 assets: type: array - items: &695 + items: &697 title: Release Asset description: Data related to a release. type: object @@ -103536,8 +103899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -103613,9 +103976,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: &698 + default: &700 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -103720,9 +104083,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *452 - - *453 - - &696 + - *454 + - *455 + - &698 name: asset_id description: The unique identifier of the asset. in: path @@ -103734,9 +104097,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *697 examples: - default: &697 + default: &699 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 @@ -103771,7 +104134,7 @@ paths: type: User site_admin: false '404': *6 - '302': *579 + '302': *581 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103787,9 +104150,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *452 - - *453 - - *696 + - *454 + - *455 + - *698 requestBody: required: false content: @@ -103818,9 +104181,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *697 examples: - default: *697 + default: *699 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103836,9 +104199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *452 - - *453 - - *696 + - *454 + - *455 + - *698 responses: '204': description: Response @@ -103862,8 +104225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -103949,16 +104312,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: *698 + default: *700 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103975,8 +104338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *452 - - *453 + - *454 + - *455 - name: tag description: tag parameter in: path @@ -103989,9 +104352,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: *698 + default: *700 '404': *6 x-github: githubCloudOnly: false @@ -104013,9 +104376,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *452 - - *453 - - &699 + - *454 + - *455 + - &701 name: release_id description: The unique identifier of the release. in: path @@ -104029,9 +104392,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: *694 + schema: *696 examples: - default: *698 + default: *700 '401': description: Unauthorized x-github: @@ -104049,9 +104412,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 requestBody: required: false content: @@ -104115,9 +104478,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: *698 + default: *700 '404': description: Not Found if the discussion category name is invalid content: @@ -104138,9 +104501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 responses: '204': description: Response @@ -104160,9 +104523,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 - *17 - *19 responses: @@ -104172,7 +104535,7 @@ paths: application/json: schema: type: array - items: *695 + items: *697 examples: default: value: @@ -104254,9 +104617,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 - name: name in: query required: true @@ -104282,7 +104645,7 @@ paths: description: Response for successful upload content: application/json: - schema: *695 + schema: *697 examples: response-for-successful-upload: value: @@ -104337,9 +104700,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 - 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. @@ -104363,9 +104726,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 '404': *6 @@ -104386,9 +104749,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 requestBody: required: true content: @@ -104418,16 +104781,16 @@ paths: description: Reaction exists content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Reaction created content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '422': *15 x-github: githubCloudOnly: false @@ -104449,10 +104812,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *452 - - *453 - - *699 - - *444 + - *454 + - *455 + - *701 + - *446 responses: '204': description: Response @@ -104476,9 +104839,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 - *17 - *19 responses: @@ -104495,7 +104858,7 @@ paths: oneOf: - allOf: - *159 - - &700 + - &702 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -104516,67 +104879,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *160 - - *700 + - *702 - allOf: - *161 - - *700 + - *702 - allOf: - *162 - - *700 + - *702 - allOf: - - *701 - - *700 + - *703 + - *702 - allOf: - *163 - - *700 + - *702 - allOf: - *164 - - *700 + - *702 - allOf: - *165 - - *700 + - *702 - allOf: - *166 - - *700 + - *702 - allOf: - *167 - - *700 + - *702 - allOf: - *168 - - *700 + - *702 - allOf: - *169 - - *700 + - *702 - allOf: - *170 - - *700 + - *702 - allOf: - *171 - - *700 + - *702 - allOf: - *172 - - *700 + - *702 - allOf: - *173 - - *700 + - *702 - allOf: - *174 - - *700 + - *702 - allOf: - *175 - - *700 + - *702 - allOf: - *176 - - *700 + - *702 - allOf: - *177 - - *700 + - *702 - allOf: - *178 - - *700 + - *702 - allOf: + - *704 - *702 - - *700 examples: default: value: @@ -104615,8 +104978,8 @@ paths: category: repos subcategory: rules parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 - name: includes_parents @@ -104627,7 +104990,7 @@ paths: schema: type: boolean default: true - - *703 + - *705 responses: '200': description: Response @@ -104682,8 +105045,8 @@ paths: category: repos subcategory: rules parameters: - - *452 - - *453 + - *454 + - *455 requestBody: description: Request body required: true @@ -104712,7 +105075,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *704 + items: *706 required: - name - enforcement @@ -104745,7 +105108,7 @@ paths: application/json: schema: *179 examples: - default: &713 + default: &715 value: id: 42 name: super cool ruleset @@ -104792,12 +105155,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *452 - - *453 - - *705 - - *99 - - *706 + - *454 + - *455 - *707 + - *99 + - *708 + - *709 - *17 - *19 responses: @@ -104805,9 +105168,9 @@ paths: description: Response content: application/json: - schema: *708 + schema: *710 examples: - default: *709 + default: *711 '404': *6 '500': *38 x-github: @@ -104828,17 +105191,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *452 - - *453 - - *710 + - *454 + - *455 + - *712 responses: '200': description: Response content: application/json: - schema: *711 + schema: *713 examples: - default: *712 + default: *714 '404': *6 '500': *38 x-github: @@ -104866,8 +105229,8 @@ paths: category: repos subcategory: rules parameters: - - *452 - - *453 + - *454 + - *455 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104889,7 +105252,7 @@ paths: application/json: schema: *179 examples: - default: *713 + default: *715 '404': *6 '500': *38 put: @@ -104907,8 +105270,8 @@ paths: category: repos subcategory: rules parameters: - - *452 - - *453 + - *454 + - *455 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104942,7 +105305,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *704 + items: *706 examples: default: value: @@ -104972,7 +105335,7 @@ paths: application/json: schema: *179 examples: - default: *713 + default: *715 '404': *6 '500': *38 delete: @@ -104990,8 +105353,8 @@ paths: category: repos subcategory: rules parameters: - - *452 - - *453 + - *454 + - *455 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105014,8 +105377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 - name: ruleset_id @@ -105033,7 +105396,7 @@ paths: type: array items: *183 examples: - default: *405 + default: *407 '404': *6 '500': *38 x-github: @@ -105052,8 +105415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *452 - - *453 + - *454 + - *455 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105071,7 +105434,7 @@ paths: description: Response content: application/json: - schema: *406 + schema: *408 examples: default: value: @@ -105126,21 +105489,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *452 - - *453 - - *407 - - *408 + - *454 + - *455 - *409 - *410 + - *411 + - *412 - *104 - *19 - *17 - - *714 - - *715 - - *411 - - *412 + - *716 + - *717 - *413 - *414 + - *415 + - *416 responses: '200': description: Response @@ -105148,7 +105511,7 @@ paths: application/json: schema: type: array - items: &719 + items: &721 type: object properties: number: *119 @@ -105164,8 +105527,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *716 - resolution: *717 + state: *718 + resolution: *719 resolved_at: type: - string @@ -105259,7 +105622,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *718 + - *720 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -105404,16 +105767,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *452 - - *453 - - *537 - - *414 + - *454 + - *455 + - *539 + - *416 responses: '200': description: Response content: application/json: - schema: *719 + schema: *721 examples: default: value: @@ -105465,9 +105828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 requestBody: required: true content: @@ -105475,8 +105838,8 @@ paths: schema: type: object properties: - state: *716 - resolution: *717 + state: *718 + resolution: *719 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -105496,7 +105859,7 @@ paths: description: Response content: application/json: - schema: *719 + schema: *721 examples: default: value: @@ -105571,9 +105934,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 - *19 - *17 responses: @@ -105584,7 +105947,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &894 + items: &896 type: object properties: type: @@ -105611,8 +105974,6 @@ paths: - commit details: oneOf: - - *720 - - *721 - *722 - *723 - *724 @@ -105624,6 +105985,8 @@ paths: - *730 - *731 - *732 + - *733 + - *734 examples: default: value: @@ -105709,8 +106072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -105718,14 +106081,14 @@ paths: schema: type: object properties: - reason: &734 + reason: &736 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *733 + placeholder_id: *735 required: - reason - placeholder_id @@ -105742,7 +106105,7 @@ paths: schema: type: object properties: - reason: *734 + reason: *736 expire_at: type: - string @@ -105789,8 +106152,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -105805,7 +106168,7 @@ paths: properties: incremental_scans: type: array - items: &735 + items: &737 description: Information on a single scan performed by secret scanning on the repository type: object @@ -105833,15 +106196,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *735 + items: *737 backfill_scans: type: array - items: *735 + items: *737 custom_pattern_backfill_scans: type: array items: allOf: - - *735 + - *737 - type: object properties: pattern_name: @@ -105911,8 +106274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *452 - - *453 + - *454 + - *455 - *104 - name: sort description: The property to sort the results by. @@ -105956,9 +106319,9 @@ paths: application/json: schema: type: array - items: *736 + items: *738 examples: - default: *737 + default: *739 '400': *14 '404': *6 x-github: @@ -105981,8 +106344,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -106062,7 +106425,7 @@ paths: login: type: string description: The username of the user credited. - type: *419 + type: *421 required: - login - type @@ -106152,9 +106515,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *738 examples: - default: &739 + default: &741 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -106387,8 +106750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -106501,7 +106864,7 @@ paths: description: Response content: application/json: - schema: *736 + schema: *738 examples: default: value: @@ -106648,17 +107011,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *452 - - *453 - - *738 + - *454 + - *455 + - *740 responses: '200': description: Response content: application/json: - schema: *736 + schema: *738 examples: - default: *739 + default: *741 '403': *27 '404': *6 x-github: @@ -106682,9 +107045,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *452 - - *453 - - *738 + - *454 + - *455 + - *740 requestBody: required: true content: @@ -106764,7 +107127,7 @@ paths: login: type: string description: The username of the user credited. - type: *419 + type: *421 required: - login - type @@ -106855,10 +107218,10 @@ paths: description: Response content: application/json: - schema: *736 + schema: *738 examples: - default: *739 - add_credit: *739 + default: *741 + add_credit: *741 '403': *27 '404': *6 '422': @@ -106896,9 +107259,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *452 - - *453 - - *738 + - *454 + - *455 + - *740 responses: '202': *37 '400': *14 @@ -106925,17 +107288,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *452 - - *453 - - *738 + - *454 + - *455 + - *740 responses: '202': description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *465 + default: *467 '400': *14 '422': *15 '403': *27 @@ -106961,8 +107324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -107058,8 +107421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -107068,7 +107431,7 @@ paths: application/json: schema: type: array - items: &740 + items: &742 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -107101,8 +107464,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -107180,8 +107543,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -107275,8 +107638,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -107430,8 +107793,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -107441,7 +107804,7 @@ paths: application/json: schema: type: array - items: *740 + items: *742 examples: default: value: @@ -107474,8 +107837,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *452 - - *453 + - *454 + - *455 - name: sha in: path required: true @@ -107531,7 +107894,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *743 examples: default: value: @@ -107585,8 +107948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -107618,14 +107981,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &742 + schema: &744 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -107698,8 +108061,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -107725,7 +108088,7 @@ paths: description: Response content: application/json: - schema: *742 + schema: *744 examples: default: value: @@ -107752,8 +108115,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -107773,8 +108136,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -107856,8 +108219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -107865,7 +108228,7 @@ paths: application/json: schema: type: array - items: &743 + items: &745 title: Tag protection description: Tag protection type: object @@ -107922,8 +108285,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -107946,7 +108309,7 @@ paths: description: Response content: application/json: - schema: *743 + schema: *745 examples: default: value: @@ -107977,8 +108340,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -108015,8 +108378,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *452 - - *453 + - *454 + - *455 - name: ref in: path required: true @@ -108052,8 +108415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -108063,9 +108426,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 headers: Link: *41 '404': *6 @@ -108085,8 +108448,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *452 - - *453 + - *454 + - *455 - *19 - *17 responses: @@ -108094,7 +108457,7 @@ paths: description: Response content: application/json: - schema: &744 + schema: &746 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -108106,7 +108469,7 @@ paths: required: - names examples: - default: &745 + default: &747 value: names: - octocat @@ -108129,8 +108492,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -108161,9 +108524,9 @@ paths: description: Response content: application/json: - schema: *744 + schema: *746 examples: - default: *745 + default: *747 '404': *6 '422': *7 x-github: @@ -108184,9 +108547,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *452 - - *453 - - &746 + - *454 + - *455 + - &748 name: per description: The time frame to display results for. in: query @@ -108217,7 +108580,7 @@ paths: - 128 clones: type: array - items: &747 + items: &749 title: Traffic type: object properties: @@ -108304,8 +108667,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -108399,8 +108762,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -108463,9 +108826,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *452 - - *453 - - *746 + - *454 + - *455 + - *748 responses: '200': description: Response @@ -108486,7 +108849,7 @@ paths: - 3782 views: type: array - items: *747 + items: *749 required: - uniques - count @@ -108563,8 +108926,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -108838,8 +109201,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -108862,8 +109225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -108885,8 +109248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -108912,8 +109275,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *452 - - *453 + - *454 + - *455 - name: ref in: path required: true @@ -109005,9 +109368,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *465 + default: *467 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109158,7 +109521,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &755 + - &757 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -109168,7 +109531,7 @@ paths: type: string examples: - members - - &760 + - &762 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -109180,7 +109543,7 @@ paths: format: int32 examples: - 1 - - &761 + - &763 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -109224,7 +109587,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &750 + items: &752 allOf: - type: object required: @@ -109306,7 +109669,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: &762 + meta: &764 type: object description: The metadata associated with the creation/updates to the user. @@ -109371,30 +109734,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &751 + '400': &753 description: Bad request content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 - '401': *749 - '403': &752 + schema: *750 + '401': *751 + '403': &754 description: Permission denied - '429': &753 + '429': &755 description: Too many requests content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 - '500': &754 + schema: *750 + '500': &756 description: Internal server error content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 + schema: *750 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109418,7 +109781,7 @@ paths: required: true content: application/json: - schema: &758 + schema: &760 type: object required: - schemas @@ -109482,9 +109845,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *750 + schema: *752 examples: - group: &756 + group: &758 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -109503,13 +109866,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': *751 - '401': *749 - '403': *752 - '409': &759 + '400': *753 + '401': *751 + '403': *754 + '409': &761 description: Duplicate record detected - '429': *753 - '500': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109526,7 +109889,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: - - &757 + - &759 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -109535,22 +109898,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *755 + - *757 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *750 + schema: *752 examples: - default: *756 - '400': *751 - '401': *749 - '403': *752 + default: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *753 - '500': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109569,13 +109932,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: - - *757 + - *759 - *39 requestBody: required: true content: application/json: - schema: *758 + schema: *760 examples: group: summary: Group @@ -109601,17 +109964,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *750 + schema: *752 examples: - group: *756 - groupWithMembers: *756 - '400': *751 - '401': *749 - '403': *752 + group: *758 + groupWithMembers: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *759 - '429': *753 - '500': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109635,13 +109998,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: - - *757 + - *759 - *39 requestBody: required: true content: application/json: - schema: &769 + schema: &771 type: object required: - Operations @@ -109701,17 +110064,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *750 + schema: *752 examples: - updateGroup: *756 - addMembers: *756 - '400': *751 - '401': *749 - '403': *752 + updateGroup: *758 + addMembers: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *759 - '429': *753 - '500': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109727,17 +110090,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: - - *757 + - *759 - *39 responses: '204': description: Group was deleted, no content - '400': *751 - '401': *749 - '403': *752 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *753 - '500': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109771,8 +110134,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *760 - - *761 + - *762 + - *763 - *39 responses: '200': @@ -109806,7 +110169,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &764 + items: &766 allOf: - type: object required: @@ -109898,7 +110261,7 @@ paths: address. examples: - true - roles: &763 + roles: &765 type: array description: The roles assigned to the user. items: @@ -109957,7 +110320,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *762 + meta: *764 startIndex: type: integer description: A starting index for the returned page @@ -109996,11 +110359,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *751 - '401': *749 - '403': *752 - '429': *753 - '500': *754 + '400': *753 + '401': *751 + '403': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110024,7 +110387,7 @@ paths: required: true content: application/json: - schema: &767 + schema: &769 type: object required: - schemas @@ -110117,9 +110480,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *763 + roles: *765 examples: - user: &768 + user: &770 summary: User value: schemas: @@ -110166,9 +110529,9 @@ paths: description: User has been created content: application/scim+json: - schema: *764 + schema: *766 examples: - user: &765 + user: &767 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110194,13 +110557,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: *765 - '400': *751 - '401': *749 - '403': *752 - '409': *759 - '429': *753 - '500': *754 + enterpriseOwner: *767 + '400': *753 + '401': *751 + '403': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110217,7 +110580,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: - - &766 + - &768 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -110230,15 +110593,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *764 + schema: *766 examples: - default: *765 - '400': *751 - '401': *749 - '403': *752 + default: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *753 - '500': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110260,30 +110623,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: - - *766 + - *768 - *39 requestBody: required: true content: application/json: - schema: *767 + schema: *769 examples: - user: *768 + user: *770 responses: '200': description: User was updated content: application/scim+json: - schema: *764 + schema: *766 examples: - user: *765 - '400': *751 - '401': *749 - '403': *752 + user: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *759 - '429': *753 - '500': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110318,13 +110681,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: - - *766 + - *768 - *39 requestBody: required: true content: application/json: - schema: *769 + schema: *771 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -110364,18 +110727,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *764 + schema: *766 examples: - userMultiValuedProperties: *765 - userSingleValuedProperties: *765 - disableUser: *765 - '400': *751 - '401': *749 - '403': *752 + userMultiValuedProperties: *767 + userSingleValuedProperties: *767 + disableUser: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *759 - '429': *753 - '500': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110395,17 +110758,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: - - *766 + - *768 - *39 responses: '204': description: User was deleted, no content - '400': *751 - '401': *749 - '403': *752 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *753 - '500': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110496,7 +110859,7 @@ paths: - 1 Resources: type: array - items: &770 + items: &772 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -110743,22 +111106,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &771 + '404': &773 description: Resource not found content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 - '403': &772 + schema: *750 + '403': &774 description: Forbidden content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 - '400': *751 - '429': *753 + schema: *750 + '400': *753 + '429': *755 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -110784,9 +111147,9 @@ paths: description: Response content: application/scim+json: - schema: *770 + schema: *772 examples: - default: &773 + default: &775 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110809,17 +111172,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *771 - '403': *772 - '500': *754 + '404': *773 + '403': *774 + '500': *756 '409': description: Conflict content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 - '400': *751 + schema: *750 + '400': *753 requestBody: required: true content: @@ -110919,17 +111282,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *81 - - *766 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *770 + schema: *772 examples: - default: *773 - '404': *771 - '403': *772 + default: *775 + '404': *773 + '403': *774 '304': *35 x-github: githubCloudOnly: true @@ -110953,18 +111316,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *81 - - *766 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *770 + schema: *772 examples: - default: *773 + default: *775 '304': *35 - '404': *771 - '403': *772 + '404': *773 + '403': *774 requestBody: required: true content: @@ -111079,19 +111442,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *81 - - *766 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *770 + schema: *772 examples: - default: *773 + default: *775 '304': *35 - '404': *771 - '403': *772 - '400': *751 + '404': *773 + '403': *774 + '400': *753 '429': description: Response content: @@ -111187,12 +111550,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *81 - - *766 + - *768 responses: '204': description: Response - '404': *771 - '403': *772 + '404': *773 + '403': *774 '304': *35 x-github: githubCloudOnly: true @@ -111326,7 +111689,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &774 + text_matches: &776 title: Search Result Text Matches type: array items: @@ -111490,7 +111853,7 @@ paths: enum: - author-date - committer-date - - &775 + - &777 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 @@ -111559,7 +111922,7 @@ paths: committer: anyOf: - type: 'null' - - *507 + - *509 comment_count: type: integer message: @@ -111578,7 +111941,7 @@ paths: url: type: string format: uri - verification: *624 + verification: *626 required: - author - committer @@ -111593,7 +111956,7 @@ paths: committer: anyOf: - type: 'null' - - *507 + - *509 parents: type: array items: @@ -111610,7 +111973,7 @@ paths: type: number node_id: type: string - text_matches: *774 + text_matches: *776 required: - sha - node_id @@ -111803,7 +112166,7 @@ paths: - interactions - created - updated - - *775 + - *777 - *17 - *19 - name: advanced_search @@ -111900,11 +112263,11 @@ paths: type: - string - 'null' - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: type: string state_reason: @@ -111918,7 +112281,7 @@ paths: milestone: anyOf: - type: 'null' - - *389 + - *391 comments: type: integer created_at: @@ -111932,7 +112295,7 @@ paths: - string - 'null' format: date-time - text_matches: *774 + text_matches: *776 pull_request: type: object properties: @@ -111981,7 +112344,7 @@ paths: timeline_url: type: string format: uri - type: *355 + type: *357 performed_via_github_app: anyOf: - type: 'null' @@ -112155,7 +112518,7 @@ paths: enum: - created - updated - - *775 + - *777 - *17 - *19 responses: @@ -112200,7 +112563,7 @@ paths: - 'null' score: type: number - text_matches: *774 + text_matches: *776 required: - id - node_id @@ -112286,7 +112649,7 @@ paths: - forks - help-wanted-issues - updated - - *775 + - *777 - *17 - *19 responses: @@ -112523,7 +112886,7 @@ paths: - admin - pull - push - text_matches: *774 + text_matches: *776 temp_clone_token: type: string allow_merge_commit: @@ -112832,7 +113195,7 @@ paths: - string - 'null' format: uri - text_matches: *774 + text_matches: *776 related: type: - array @@ -113027,7 +113390,7 @@ paths: - followers - repositories - joined - - *775 + - *777 - *17 - *19 responses: @@ -113137,7 +113500,7 @@ paths: type: - boolean - 'null' - text_matches: *774 + text_matches: *776 blog: type: - string @@ -113219,7 +113582,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &779 + - &781 name: team_id description: The unique identifier of the team. in: path @@ -113231,9 +113594,9 @@ paths: description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '404': *6 x-github: githubCloudOnly: false @@ -113260,7 +113623,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *779 + - *781 requestBody: required: true content: @@ -113324,16 +113687,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '201': description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '404': *6 '422': *15 '403': *27 @@ -113361,7 +113724,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *779 + - *781 responses: '204': description: Response @@ -113392,7 +113755,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *779 + - *781 - *104 - *17 - *19 @@ -113403,9 +113766,9 @@ paths: application/json: schema: type: array - items: *435 + items: *437 examples: - default: *780 + default: *782 headers: Link: *41 x-github: @@ -113434,7 +113797,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *779 + - *781 requestBody: required: true content: @@ -113468,9 +113831,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: *436 + default: *438 x-github: triggersNotification: true githubCloudOnly: false @@ -113497,16 +113860,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *779 - - *437 + - *781 + - *439 responses: '200': description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: *436 + default: *438 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113531,8 +113894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *779 - - *437 + - *781 + - *439 requestBody: required: false content: @@ -113555,9 +113918,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: *781 + default: *783 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113582,8 +113945,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *779 - - *437 + - *781 + - *439 responses: '204': description: Response @@ -113612,8 +113975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *779 - - *437 + - *781 + - *439 - *104 - *17 - *19 @@ -113624,9 +113987,9 @@ paths: application/json: schema: type: array - items: *438 + items: *440 examples: - default: *782 + default: *784 headers: Link: *41 x-github: @@ -113655,8 +114018,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *779 - - *437 + - *781 + - *439 requestBody: required: true content: @@ -113678,9 +114041,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: *439 + default: *441 x-github: triggersNotification: true githubCloudOnly: false @@ -113707,17 +114070,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *779 - - *437 - - *440 + - *781 + - *439 + - *442 responses: '200': description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: *439 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113742,9 +114105,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *779 - - *437 - - *440 + - *781 + - *439 + - *442 requestBody: required: true content: @@ -113766,9 +114129,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: *783 + default: *785 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113793,9 +114156,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *779 - - *437 - - *440 + - *781 + - *439 + - *442 responses: '204': description: Response @@ -113824,9 +114187,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *779 - - *437 - - *440 + - *781 + - *439 + - *442 - 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 team discussion comment. @@ -113852,9 +114215,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 x-github: @@ -113883,9 +114246,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *779 - - *437 - - *440 + - *781 + - *439 + - *442 requestBody: required: true content: @@ -113917,9 +114280,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113945,8 +114308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *779 - - *437 + - *781 + - *439 - 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 team discussion. @@ -113972,9 +114335,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 x-github: @@ -114003,8 +114366,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *779 - - *437 + - *781 + - *439 requestBody: required: true content: @@ -114036,9 +114399,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -114062,7 +114425,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *779 + - *781 - *17 - *19 responses: @@ -114072,9 +114435,9 @@ paths: application/json: schema: type: array - items: *352 + items: *354 examples: - default: *353 + default: *355 headers: Link: *41 x-github: @@ -114100,7 +114463,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *779 + - *781 - name: role description: Filters members returned by their role in the team. in: query @@ -114151,7 +114514,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *779 + - *781 - *132 responses: '204': @@ -114188,7 +114551,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *779 + - *781 - *132 responses: '204': @@ -114228,7 +114591,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *779 + - *781 - *132 responses: '204': @@ -114265,16 +114628,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *779 + - *781 - *132 responses: '200': description: Response content: application/json: - schema: *449 + schema: *451 examples: - response-if-user-is-a-team-maintainer: *784 + response-if-user-is-a-team-maintainer: *786 '404': *6 x-github: githubCloudOnly: false @@ -114307,7 +114670,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: - - *779 + - *781 - *132 requestBody: required: false @@ -114333,9 +114696,9 @@ paths: description: Response content: application/json: - schema: *449 + schema: *451 examples: - response-if-users-membership-with-team-is-now-pending: *785 + response-if-users-membership-with-team-is-now-pending: *787 '403': description: Forbidden if team synchronization is set up '422': @@ -114369,7 +114732,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: - - *779 + - *781 - *132 responses: '204': @@ -114398,7 +114761,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *779 + - *781 - *17 - *19 responses: @@ -114408,9 +114771,9 @@ paths: application/json: schema: type: array - items: *450 + items: *452 examples: - default: *786 + default: *788 headers: Link: *41 '404': *6 @@ -114436,16 +114799,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *779 - - *451 + - *781 + - *453 responses: '200': description: Response content: application/json: - schema: *450 + schema: *452 examples: - default: *787 + default: *789 '404': description: Not Found if project is not managed by this team x-github: @@ -114469,8 +114832,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *779 - - *451 + - *781 + - *453 requestBody: required: false content: @@ -114537,8 +114900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *779 - - *451 + - *781 + - *453 responses: '204': description: Response @@ -114565,7 +114928,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *779 + - *781 - *17 - *19 responses: @@ -114577,7 +114940,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 '404': *6 @@ -114607,15 +114970,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *779 - - *452 - - *453 + - *781 + - *454 + - *455 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *788 + schema: *790 examples: alternative-response-with-extra-repository-information: value: @@ -114766,9 +115129,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *779 - - *452 - - *453 + - *781 + - *454 + - *455 requestBody: required: false content: @@ -114818,9 +115181,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *779 - - *452 - - *453 + - *781 + - *454 + - *455 responses: '204': description: Response @@ -114849,15 +115212,15 @@ 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: - - *779 + - *781 responses: '200': description: Response content: application/json: - schema: *454 + schema: *456 examples: - default: *455 + default: *457 '403': *27 '404': *6 x-github: @@ -114884,7 +115247,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: - - *779 + - *781 requestBody: required: true content: @@ -114945,7 +115308,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *456 examples: default: value: @@ -114976,7 +115339,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *779 + - *781 - *17 - *19 responses: @@ -114986,9 +115349,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - response-if-child-teams-exist: *789 + response-if-child-teams-exist: *791 headers: Link: *41 '404': *6 @@ -115021,7 +115384,7 @@ paths: application/json: schema: oneOf: - - &791 + - &793 title: Private User description: Private User type: object @@ -115271,7 +115634,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *790 + - *792 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -115431,7 +115794,7 @@ paths: description: Response content: application/json: - schema: *791 + schema: *793 examples: default: value: @@ -115634,9 +115997,9 @@ paths: type: integer codespaces: type: array - items: *360 + items: *362 examples: - default: *361 + default: *363 '304': *35 '500': *38 '401': *23 @@ -115775,17 +116138,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '401': *23 '403': *27 '404': *6 @@ -115829,7 +116192,7 @@ paths: type: integer secrets: type: array - items: &792 + items: &794 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -115871,7 +116234,7 @@ paths: - visibility - selected_repositories_url examples: - default: *559 + default: *561 headers: Link: *41 x-github: @@ -115949,7 +116312,7 @@ paths: description: Response content: application/json: - schema: *792 + schema: *794 examples: default: value: @@ -116095,7 +116458,7 @@ paths: type: array items: *273 examples: - default: *793 + default: *795 '401': *23 '403': *27 '404': *6 @@ -116239,15 +116602,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '304': *35 '500': *38 '401': *23 @@ -116273,7 +116636,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 requestBody: required: false content: @@ -116303,9 +116666,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '401': *23 '403': *27 '404': *6 @@ -116327,7 +116690,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 responses: '202': *37 '304': *35 @@ -116356,13 +116719,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 responses: '202': description: Response content: application/json: - schema: &794 + schema: &796 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -116415,7 +116778,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &795 + default: &797 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -116447,7 +116810,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *362 + - *364 - name: export_id in: path required: true @@ -116460,9 +116823,9 @@ paths: description: Response content: application/json: - schema: *794 + schema: *796 examples: - default: *795 + default: *797 '404': *6 x-github: githubCloudOnly: false @@ -116483,7 +116846,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *362 + - *364 responses: '200': description: Response @@ -116499,9 +116862,9 @@ paths: type: integer machines: type: array - items: *558 + items: *560 examples: - default: *796 + default: *798 '304': *35 '500': *38 '401': *23 @@ -116530,7 +116893,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *362 + - *364 requestBody: required: true content: @@ -116586,11 +116949,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *463 + repository: *465 machine: anyOf: - type: 'null' - - *558 + - *560 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -117387,15 +117750,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '304': *35 '500': *38 '400': *14 @@ -117427,15 +117790,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '500': *38 '401': *23 '403': *27 @@ -117465,9 +117828,9 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: &807 + default: &809 value: - id: 197 name: hello_docker @@ -117568,7 +117931,7 @@ paths: application/json: schema: type: array - items: &797 + items: &799 title: Email description: Email type: object @@ -117638,9 +118001,9 @@ paths: application/json: schema: type: array - items: *797 + items: *799 examples: - default: &809 + default: &811 value: - email: octocat@github.com verified: true @@ -117717,7 +118080,7 @@ paths: application/json: schema: type: array - items: *797 + items: *799 examples: default: value: @@ -117975,7 +118338,7 @@ paths: application/json: schema: type: array - items: &798 + items: &800 title: GPG Key description: A unique encryption key type: object @@ -118120,7 +118483,7 @@ paths: - subkeys - revoked examples: - default: &823 + default: &825 value: - id: 3 name: Octocat's GPG Key @@ -118205,9 +118568,9 @@ paths: description: Response content: application/json: - schema: *798 + schema: *800 examples: - default: &799 + default: &801 value: id: 3 name: Octocat's GPG Key @@ -118264,7 +118627,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: - - &800 + - &802 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -118276,9 +118639,9 @@ paths: description: Response content: application/json: - schema: *798 + schema: *800 examples: - default: *799 + default: *801 '404': *6 '304': *35 '403': *27 @@ -118301,7 +118664,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: - - *800 + - *802 responses: '204': description: Response @@ -118577,12 +118940,12 @@ paths: application/json: schema: anyOf: - - *350 + - *352 - type: object properties: {} additionalProperties: false examples: - default: *351 + default: *353 '204': description: Response when there are no restrictions x-github: @@ -118606,7 +118969,7 @@ paths: required: true content: application/json: - schema: *635 + schema: *637 examples: default: value: @@ -118617,7 +118980,7 @@ paths: description: Response content: application/json: - schema: *350 + schema: *352 examples: default: value: @@ -118698,7 +119061,7 @@ paths: - closed - all default: open - - *358 + - *360 - name: sort description: What to sort results by. in: query @@ -118723,7 +119086,7 @@ paths: type: array items: *219 examples: - default: *359 + default: *361 headers: Link: *41 '404': *6 @@ -118756,7 +119119,7 @@ paths: application/json: schema: type: array - items: &801 + items: &803 title: Key description: Key type: object @@ -118859,9 +119222,9 @@ paths: description: Response content: application/json: - schema: *801 + schema: *803 examples: - default: &802 + default: &804 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -118894,15 +119257,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: - - *663 + - *665 responses: '200': description: Response content: application/json: - schema: *801 + schema: *803 examples: - default: *802 + default: *804 '404': *6 '304': *35 '403': *27 @@ -118925,7 +119288,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: - - *663 + - *665 responses: '204': description: Response @@ -118958,7 +119321,7 @@ paths: application/json: schema: type: array - items: &803 + items: &805 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -119037,7 +119400,7 @@ paths: - account - plan examples: - default: &804 + default: &806 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -119099,9 +119462,9 @@ paths: application/json: schema: type: array - items: *803 + items: *805 examples: - default: *804 + default: *806 headers: Link: *41 '304': *35 @@ -119141,7 +119504,7 @@ paths: application/json: schema: type: array - items: *363 + items: *365 examples: default: value: @@ -119249,7 +119612,7 @@ paths: description: Response content: application/json: - schema: *363 + schema: *365 examples: default: value: @@ -119332,7 +119695,7 @@ paths: description: Response content: application/json: - schema: *363 + schema: *365 examples: default: value: @@ -119400,7 +119763,7 @@ paths: application/json: schema: type: array - items: *365 + items: *367 examples: default: value: @@ -119662,7 +120025,7 @@ paths: description: Response content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -119842,7 +120205,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *366 + - *368 - name: exclude in: query required: false @@ -119855,7 +120218,7 @@ paths: description: Response content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -120049,7 +120412,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *366 + - *368 responses: '302': description: Response @@ -120075,7 +120438,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *366 + - *368 responses: '204': description: Response @@ -120104,8 +120467,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *366 - - *805 + - *368 + - *807 responses: '204': description: Response @@ -120129,7 +120492,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *366 + - *368 - *17 - *19 responses: @@ -120141,7 +120504,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 '404': *6 @@ -120220,7 +120583,7 @@ paths: - docker - nuget - container - - *806 + - *808 - *19 - *17 responses: @@ -120230,10 +120593,10 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: *807 - '400': *808 + default: *809 + '400': *810 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120253,16 +120616,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 + - *375 responses: '200': description: Response content: application/json: - schema: *370 + schema: *372 examples: - default: &824 + default: &826 value: id: 40201 name: octo-name @@ -120375,8 +120738,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 + - *375 responses: '204': description: Response @@ -120406,8 +120769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 + - *375 - name: token description: package token schema: @@ -120439,8 +120802,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *372 - - *373 + - *374 + - *375 - *19 - *17 - name: state @@ -120460,7 +120823,7 @@ paths: application/json: schema: type: array - items: *374 + items: *376 examples: default: value: @@ -120509,15 +120872,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 - *375 + - *377 responses: '200': description: Response content: application/json: - schema: *374 + schema: *376 examples: default: value: @@ -120553,9 +120916,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 - *375 + - *377 responses: '204': description: Response @@ -120585,9 +120948,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 - *375 + - *377 responses: '204': description: Response @@ -120624,9 +120987,9 @@ paths: application/json: schema: type: array - items: *797 + items: *799 examples: - default: *809 + default: *811 headers: Link: *41 '304': *35 @@ -120739,7 +121102,7 @@ paths: type: array items: *72 examples: - default: &816 + default: &818 summary: Default response value: - id: 1296269 @@ -121057,9 +121420,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *465 + default: *467 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -121097,9 +121460,9 @@ paths: application/json: schema: type: array - items: *637 + items: *639 examples: - default: *810 + default: *812 headers: Link: *41 '304': *35 @@ -121122,7 +121485,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *354 + - *356 responses: '204': description: Response @@ -121145,7 +121508,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *354 + - *356 responses: '204': description: Response @@ -121178,7 +121541,7 @@ paths: application/json: schema: type: array - items: &811 + items: &813 title: Social account description: Social media account type: object @@ -121195,7 +121558,7 @@ paths: - provider - url examples: - default: &812 + default: &814 value: - provider: twitter url: https://twitter.com/github @@ -121258,9 +121621,9 @@ paths: application/json: schema: type: array - items: *811 + items: *813 examples: - default: *812 + default: *814 '422': *15 '304': *35 '404': *6 @@ -121348,7 +121711,7 @@ paths: application/json: schema: type: array - items: &813 + items: &815 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -121368,16 +121731,14 @@ paths: - title - created_at examples: - default: &828 + default: &830 value: - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 - id: 2 - url: https://api.github.com/user/keys/2 + - id: 2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 - id: 3 - url: https://api.github.com/user/keys/3 + - id: 3 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: @@ -121435,13 +121796,12 @@ paths: description: Response content: application/json: - schema: *813 + schema: *815 examples: - default: &814 + default: &816 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 - url: https://api.github.com/user/keys/2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' '422': *15 @@ -121468,7 +121828,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: - - &815 + - &817 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -121480,9 +121840,9 @@ paths: description: Response content: application/json: - schema: *813 + schema: *815 examples: - default: *814 + default: *816 '404': *6 '304': *35 '403': *27 @@ -121505,7 +121865,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: - - *815 + - *817 responses: '204': description: Response @@ -121534,7 +121894,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: - - &829 + - &831 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 @@ -121559,11 +121919,11 @@ paths: type: array items: *72 examples: - default-response: *816 + default-response: *818 application/vnd.github.v3.star+json: schema: type: array - items: &830 + items: &832 title: Starred Repository description: Starred Repository type: object @@ -121719,8 +122079,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response if this repository is starred by you @@ -121748,8 +122108,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -121773,8 +122133,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -121809,7 +122169,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 '304': *35 @@ -121846,7 +122206,7 @@ paths: application/json: schema: type: array - items: *433 + items: *435 examples: default: value: @@ -121932,10 +122292,10 @@ paths: application/json: schema: oneOf: - - *791 - - *790 + - *793 + - *792 examples: - default-response: &818 + default-response: &820 summary: Default response value: login: octocat @@ -121970,7 +122330,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &819 + response-with-git-hub-plan-information: &821 summary: Response with GitHub plan information value: login: octocat @@ -122033,7 +122393,7 @@ paths: required: true schema: type: string - - *388 + - *390 requestBody: required: true description: Details of the draft item to create in the project. @@ -122067,9 +122427,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - draft_issue: *394 + draft_issue: *396 '304': *35 '403': *27 '401': *23 @@ -122092,7 +122452,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *817 + - *819 - *17 responses: '200': @@ -122141,11 +122501,11 @@ paths: application/json: schema: oneOf: - - *791 - - *790 + - *793 + - *792 examples: - default-response: *818 - response-with-git-hub-plan-information: *819 + default-response: *820 + response-with-git-hub-plan-information: *821 '404': *6 x-github: githubCloudOnly: false @@ -122195,8 +122555,8 @@ paths: required: - subject_digests examples: - default: *820 - withPredicateType: *821 + default: *822 + withPredicateType: *823 responses: '200': description: Response @@ -122250,7 +122610,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *822 + default: *824 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -122455,7 +122815,7 @@ paths: initiator: type: string examples: - default: *503 + default: *505 '201': description: Response content: @@ -122494,9 +122854,9 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: *807 + default: *809 '403': *27 '401': *23 x-github: @@ -122880,9 +123240,9 @@ paths: application/json: schema: type: array - items: *798 + items: *800 examples: - default: *823 + default: *825 headers: Link: *41 x-github: @@ -122986,7 +123346,7 @@ paths: application/json: schema: *20 examples: - default: *634 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123111,7 +123471,7 @@ paths: - docker - nuget - container - - *806 + - *808 - *132 - *19 - *17 @@ -123122,12 +123482,12 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: *807 + default: *809 '403': *27 '401': *23 - '400': *808 + '400': *810 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123147,17 +123507,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *372 - - *373 + - *374 + - *375 - *132 responses: '200': description: Response content: application/json: - schema: *370 + schema: *372 examples: - default: *824 + default: *826 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123178,8 +123538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *372 - - *373 + - *374 + - *375 - *132 responses: '204': @@ -123212,8 +123572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *372 - - *373 + - *374 + - *375 - *132 - name: token description: package token @@ -123246,8 +123606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *372 - - *373 + - *374 + - *375 - *132 responses: '200': @@ -123256,7 +123616,7 @@ paths: application/json: schema: type: array - items: *374 + items: *376 examples: default: value: @@ -123314,16 +123674,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *372 - - *373 + - *374 - *375 + - *377 - *132 responses: '200': description: Response content: application/json: - schema: *374 + schema: *376 examples: default: value: @@ -123358,10 +123718,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *372 - - *373 - - *132 + - *374 - *375 + - *132 + - *377 responses: '204': description: Response @@ -123393,10 +123753,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *372 - - *373 - - *132 + - *374 - *375 + - *132 + - *377 responses: '204': description: Response @@ -123437,9 +123797,9 @@ paths: application/json: schema: type: array - items: *386 + items: *388 examples: - default: *387 + default: *389 headers: Link: *41 '304': *35 @@ -123461,16 +123821,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *388 + - *390 - *132 responses: '200': description: Response content: application/json: - schema: *386 + schema: *388 examples: - default: *387 + default: *389 headers: Link: *41 '304': *35 @@ -123492,7 +123852,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *388 + - *390 - *132 - *17 - *102 @@ -123504,9 +123864,9 @@ paths: application/json: schema: type: array - items: *391 + items: *393 examples: - default: *825 + default: *827 headers: Link: *41 '304': *35 @@ -123528,17 +123888,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *388 - - *826 + - *390 + - *828 - *132 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: *827 + default: *829 headers: Link: *41 '304': *35 @@ -123561,7 +123921,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-owned-project parameters: - - *388 + - *390 - *132 - *102 - *103 @@ -123594,9 +123954,9 @@ paths: application/json: schema: type: array - items: *395 + items: *397 examples: - default: *396 + default: *398 headers: Link: *41 '304': *35 @@ -123618,7 +123978,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - *132 - - *388 + - *390 requestBody: required: true description: Details of the item to add to the project. @@ -123655,10 +124015,10 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - issue: *394 - pull_request: *394 + issue: *396 + pull_request: *396 '304': *35 '403': *27 '401': *23 @@ -123678,9 +124038,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *388 + - *390 - *132 - - *397 + - *399 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -123700,9 +124060,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: *396 + default: *398 headers: Link: *41 '304': *35 @@ -123723,9 +124083,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *388 + - *390 - *132 - - *397 + - *399 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -123798,13 +124158,13 @@ paths: description: Response content: application/json: - schema: *395 + schema: *397 examples: - text_field: *396 - number_field: *396 - date_field: *396 - single_select_field: *396 - iteration_field: *396 + text_field: *398 + number_field: *398 + date_field: *398 + single_select_field: *398 + iteration_field: *398 '401': *23 '403': *27 '404': *6 @@ -123824,9 +124184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *388 + - *390 - *132 - - *397 + - *399 responses: '204': description: Response @@ -124046,7 +124406,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -124076,9 +124436,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: - default: *421 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124106,9 +124466,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124269,9 +124629,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124528,9 +124888,9 @@ paths: application/json: schema: type: array - items: *811 + items: *813 examples: - default: *812 + default: *814 headers: Link: *41 x-github: @@ -124560,9 +124920,9 @@ paths: application/json: schema: type: array - items: *813 + items: *815 examples: - default: *828 + default: *830 headers: Link: *41 x-github: @@ -124587,7 +124947,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *132 - - *829 + - *831 - *104 - *17 - *19 @@ -124599,11 +124959,11 @@ paths: schema: anyOf: - type: array - items: *830 + items: *832 - type: array items: *72 examples: - default-response: *816 + default-response: *818 headers: Link: *41 x-github: @@ -124634,7 +124994,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -124763,7 +125123,7 @@ webhooks: type: string enum: - disabled - enterprise: &831 + enterprise: &833 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -124832,7 +125192,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &832 + installation: &834 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -124853,7 +125213,7 @@ webhooks: required: - id - node_id - organization: &833 + organization: &835 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -124926,7 +125286,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &834 + repository: &836 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -125839,10 +126199,10 @@ webhooks: type: string enum: - enabled - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -125918,11 +126278,11 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - rule: &835 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + rule: &837 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) @@ -126145,11 +126505,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - rule: *835 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + rule: *837 sender: *4 required: - action @@ -126337,11 +126697,11 @@ webhooks: - everyone required: - from - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - rule: *835 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + rule: *837 sender: *4 required: - action @@ -126414,7 +126774,7 @@ webhooks: required: true content: application/json: - schema: &855 + schema: &857 title: Exemption request cancellation event type: object properties: @@ -126422,11 +126782,11 @@ webhooks: type: string enum: - cancelled - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - exemption_request: &836 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + exemption_request: &838 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -126664,7 +127024,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &837 + items: &839 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -126776,7 +127136,7 @@ webhooks: required: true content: application/json: - schema: &856 + schema: &858 title: Exemption request completed event type: object properties: @@ -126784,11 +127144,11 @@ webhooks: type: string enum: - completed - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - exemption_request: *836 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + exemption_request: *838 sender: *4 required: - action @@ -126860,7 +127220,7 @@ webhooks: required: true content: application/json: - schema: &853 + schema: &855 title: Exemption request created event type: object properties: @@ -126868,11 +127228,11 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - exemption_request: *836 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + exemption_request: *838 sender: *4 required: - action @@ -126944,7 +127304,7 @@ webhooks: required: true content: application/json: - schema: &857 + schema: &859 title: Exemption response dismissed event type: object properties: @@ -126952,12 +127312,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - exemption_request: *836 - exemption_response: *837 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + exemption_request: *838 + exemption_response: *839 sender: *4 required: - action @@ -127031,7 +127391,7 @@ webhooks: required: true content: application/json: - schema: &854 + schema: &856 title: Exemption response submitted event type: object properties: @@ -127039,12 +127399,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - exemption_request: *836 - exemption_response: *837 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + exemption_request: *838 + exemption_response: *839 sender: *4 required: - action @@ -127128,7 +127488,7 @@ webhooks: type: string enum: - completed - check_run: &839 + check_run: &841 title: CheckRun description: A check performed on the code of a given code change type: object @@ -127193,7 +127553,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *520 + items: *522 repository: *273 status: type: string @@ -127238,7 +127598,7 @@ webhooks: - examples: - neutral - deployment: *838 + deployment: *840 details_url: type: string examples: @@ -127298,7 +127658,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *520 + items: *522 started_at: type: string format: date-time @@ -127336,10 +127696,10 @@ webhooks: - output - app - pull_requests - installation: *832 - enterprise: *831 - organization: *833 - repository: *834 + installation: *834 + enterprise: *833 + organization: *835 + repository: *836 sender: *4 required: - check_run @@ -127732,11 +128092,11 @@ webhooks: type: string enum: - created - check_run: *839 - installation: *832 - enterprise: *831 - organization: *833 - repository: *834 + check_run: *841 + installation: *834 + enterprise: *833 + organization: *835 + repository: *836 sender: *4 required: - check_run @@ -128132,11 +128492,11 @@ webhooks: type: string enum: - requested_action - check_run: *839 - installation: *832 - enterprise: *831 - organization: *833 - repository: *834 + check_run: *841 + installation: *834 + enterprise: *833 + organization: *835 + repository: *836 requested_action: description: The action requested by the user. type: object @@ -128541,11 +128901,11 @@ webhooks: type: string enum: - rerequested - check_run: *839 - installation: *832 - enterprise: *831 - organization: *833 - repository: *834 + check_run: *841 + installation: *834 + enterprise: *833 + organization: *835 + repository: *836 sender: *4 required: - check_run @@ -129537,10 +129897,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -130240,10 +130600,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -130937,10 +131297,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -131109,7 +131469,7 @@ webhooks: required: - login - id - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131261,20 +131621,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &840 + commit_oid: &842 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: *831 - installation: *832 - organization: *833 - ref: &841 + enterprise: *833 + installation: *834 + organization: *835 + ref: &843 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: *834 + repository: *836 sender: *4 required: - action @@ -131441,7 +131801,7 @@ webhooks: required: - login - id - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131682,12 +132042,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *840 - enterprise: *831 - installation: *832 - organization: *833 - ref: *841 - repository: *834 + commit_oid: *842 + enterprise: *833 + installation: *834 + organization: *835 + ref: *843 + repository: *836 sender: *4 required: - action @@ -131785,7 +132145,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131970,12 +132330,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *840 - enterprise: *831 - installation: *832 - organization: *833 - ref: *841 - repository: *834 + commit_oid: *842 + enterprise: *833 + installation: *834 + organization: *835 + ref: *843 + repository: *836 sender: *4 required: - action @@ -132144,7 +132504,7 @@ webhooks: required: - login - id - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132321,12 +132681,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *840 - enterprise: *831 - installation: *832 - organization: *833 - ref: *841 - repository: *834 + commit_oid: *842 + enterprise: *833 + installation: *834 + organization: *835 + ref: *843 + repository: *836 sender: *4 required: - action @@ -132429,7 +132789,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132609,9 +132969,9 @@ webhooks: type: - string - 'null' - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -132619,7 +132979,7 @@ webhooks: type: - string - 'null' - repository: *834 + repository: *836 sender: *4 required: - action @@ -132718,7 +133078,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132865,12 +133225,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *840 - enterprise: *831 - installation: *832 - organization: *833 - ref: *841 - repository: *834 + commit_oid: *842 + enterprise: *833 + installation: *834 + organization: *835 + ref: *843 + repository: *836 sender: *4 required: - action @@ -133132,10 +133492,10 @@ webhooks: - updated_at - author_association - body - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -133216,18 +133576,18 @@ webhooks: type: - string - 'null' - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *833 - pusher_type: &842 + organization: *835 + pusher_type: &844 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &843 + ref: &845 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -133237,7 +133597,7 @@ webhooks: enum: - tag - branch - repository: *834 + repository: *836 sender: *4 required: - ref @@ -133320,9 +133680,9 @@ webhooks: enum: - created definition: *146 - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 required: - action @@ -133407,9 +133767,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 required: - action @@ -133487,9 +133847,9 @@ webhooks: enum: - promote_to_enterprise definition: *146 - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 required: - action @@ -133567,9 +133927,9 @@ webhooks: enum: - updated definition: *146 - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 required: - action @@ -133646,10 +134006,10 @@ webhooks: type: string enum: - updated - enterprise: *831 - installation: *832 - repository: *834 - organization: *833 + enterprise: *833 + installation: *834 + repository: *836 + organization: *835 sender: *4 new_property_values: type: array @@ -133734,18 +134094,18 @@ webhooks: title: delete event type: object properties: - enterprise: *831 - installation: *832 - organization: *833 - pusher_type: *842 - ref: *843 + enterprise: *833 + installation: *834 + organization: *835 + pusher_type: *844 + ref: *845 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *834 + repository: *836 sender: *4 required: - ref @@ -133829,11 +134189,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -133917,11 +134277,11 @@ webhooks: type: string enum: - auto_reopened - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134005,11 +134365,11 @@ webhooks: type: string enum: - created - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134091,11 +134451,11 @@ webhooks: type: string enum: - dismissed - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134177,11 +134537,11 @@ webhooks: type: string enum: - fixed - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134264,11 +134624,11 @@ webhooks: type: string enum: - reintroduced - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134350,11 +134710,11 @@ webhooks: type: string enum: - reopened - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134431,9 +134791,9 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - key: &844 + enterprise: *833 + installation: *834 + key: &846 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -134471,8 +134831,8 @@ webhooks: - verified - created_at - read_only - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -134549,11 +134909,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - key: *844 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + key: *846 + organization: *835 + repository: *836 sender: *4 required: - action @@ -135125,12 +135485,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - workflow: &848 + workflow: &850 title: Workflow type: - object @@ -135868,13 +136228,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *590 + deployment: *592 pull_requests: type: array - items: *683 - repository: *834 - organization: *833 - installation: *832 + items: *685 + repository: *836 + organization: *835 + installation: *834 sender: *4 responses: '200': @@ -135945,7 +136305,7 @@ webhooks: type: string enum: - approved - approver: &845 + approver: &847 type: object properties: avatar_url: @@ -135988,11 +136348,11 @@ webhooks: type: string comment: type: string - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - reviewers: &846 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + reviewers: &848 type: array items: type: object @@ -136073,7 +136433,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &847 + workflow_job_run: &849 type: object properties: conclusion: @@ -136819,18 +137179,18 @@ webhooks: type: string enum: - rejected - approver: *845 + approver: *847 comment: type: string - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - reviewers: *846 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + reviewers: *848 sender: *4 since: type: string - workflow_job_run: *847 + workflow_job_run: *849 workflow_job_runs: type: array items: @@ -137547,13 +137907,13 @@ webhooks: type: string enum: - requested - enterprise: *831 + enterprise: *833 environment: type: string - installation: *832 - organization: *833 - repository: *834 - requestor: &858 + installation: *834 + organization: *835 + repository: *836 + requestor: &860 title: User type: - object @@ -139496,12 +139856,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - workflow: *848 + workflow: *850 workflow_run: title: Deployment Workflow Run type: @@ -140192,7 +140552,7 @@ webhooks: type: string enum: - answered - answer: &851 + answer: &853 type: object properties: author_association: @@ -140352,7 +140712,7 @@ webhooks: - created_at - updated_at - body - discussion: &849 + discussion: &851 title: Discussion description: A Discussion in a repository. type: object @@ -140648,7 +141008,7 @@ webhooks: - id labels: type: array - items: *646 + items: *648 required: - repository_url - category @@ -140670,10 +141030,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -140800,11 +141160,11 @@ webhooks: - from required: - category - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -140887,11 +141247,11 @@ webhooks: type: string enum: - closed - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -140973,7 +141333,7 @@ webhooks: type: string enum: - created - comment: &850 + comment: &852 type: object properties: author_association: @@ -141133,11 +141493,11 @@ webhooks: - updated_at - body - reactions - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141220,12 +141580,12 @@ webhooks: type: string enum: - deleted - comment: *850 - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + comment: *852 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141320,12 +141680,12 @@ webhooks: - from required: - body - comment: *850 - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + comment: *852 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141409,11 +141769,11 @@ webhooks: type: string enum: - created - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141495,11 +141855,11 @@ webhooks: type: string enum: - deleted - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141599,11 +141959,11 @@ webhooks: type: string required: - from - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141685,10 +142045,10 @@ webhooks: type: string enum: - labeled - discussion: *849 - enterprise: *831 - installation: *832 - label: &852 + discussion: *851 + enterprise: *833 + installation: *834 + label: &854 title: Label type: object properties: @@ -141721,8 +142081,8 @@ webhooks: - color - default - description - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141805,11 +142165,11 @@ webhooks: type: string enum: - locked - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141891,11 +142251,11 @@ webhooks: type: string enum: - pinned - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141977,11 +142337,11 @@ webhooks: type: string enum: - reopened - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142066,16 +142426,16 @@ webhooks: changes: type: object properties: - new_discussion: *849 - new_repository: *834 + new_discussion: *851 + new_repository: *836 required: - new_discussion - new_repository - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142158,10 +142518,10 @@ webhooks: type: string enum: - unanswered - discussion: *849 - old_answer: *851 - organization: *833 - repository: *834 + discussion: *851 + old_answer: *853 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142243,12 +142603,12 @@ webhooks: type: string enum: - unlabeled - discussion: *849 - enterprise: *831 - installation: *832 - label: *852 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142331,11 +142691,11 @@ webhooks: type: string enum: - unlocked - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142417,11 +142777,11 @@ webhooks: type: string enum: - unpinned - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142490,7 +142850,7 @@ webhooks: required: true content: application/json: - schema: *853 + schema: *855 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142553,7 +142913,7 @@ webhooks: required: true content: application/json: - schema: *854 + schema: *856 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142619,7 +142979,7 @@ webhooks: required: true content: application/json: - schema: *855 + schema: *857 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142685,7 +143045,7 @@ webhooks: required: true content: application/json: - schema: *856 + schema: *858 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142751,7 +143111,7 @@ webhooks: required: true content: application/json: - schema: *853 + schema: *855 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142817,7 +143177,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *859 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142883,7 +143243,7 @@ webhooks: required: true content: application/json: - schema: *854 + schema: *856 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142948,7 +143308,7 @@ webhooks: required: true content: application/json: - schema: *855 + schema: *857 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143013,7 +143373,7 @@ webhooks: required: true content: application/json: - schema: *856 + schema: *858 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143078,7 +143438,7 @@ webhooks: required: true content: application/json: - schema: *853 + schema: *855 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143143,7 +143503,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *859 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143209,7 +143569,7 @@ webhooks: required: true content: application/json: - schema: *854 + schema: *856 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143276,7 +143636,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *831 + enterprise: *833 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -143954,9 +144314,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - forkee @@ -144102,9 +144462,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pages: description: The pages that were updated. type: array @@ -144142,7 +144502,7 @@ webhooks: - action - sha - html_url - repository: *834 + repository: *836 sender: *4 required: - pages @@ -144218,10 +144578,10 @@ webhooks: type: string enum: - created - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories: &859 + organization: *835 + repositories: &861 description: An array of repository objects that the installation can access. type: array @@ -144247,8 +144607,8 @@ webhooks: - name - full_name - private - repository: *834 - requester: *858 + repository: *836 + requester: *860 sender: *4 required: - action @@ -144323,11 +144683,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories: *859 - repository: *834 + organization: *835 + repositories: *861 + repository: *836 requester: type: - 'null' @@ -144404,11 +144764,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories: *859 - repository: *834 + organization: *835 + repositories: *861 + repository: *836 requester: type: - 'null' @@ -144485,10 +144845,10 @@ webhooks: type: string enum: - added - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories_added: &860 + organization: *835 + repositories_added: &862 description: An array of repository objects, which were added to the installation. type: array @@ -144534,15 +144894,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *834 - repository_selection: &861 + repository: *836 + repository_selection: &863 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *858 + requester: *860 sender: *4 required: - action @@ -144621,10 +144981,10 @@ webhooks: type: string enum: - removed - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories_added: *860 + organization: *835 + repositories_added: *862 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -144651,9 +145011,9 @@ webhooks: - name - full_name - private - repository: *834 - repository_selection: *861 - requester: *858 + repository: *836 + repository_selection: *863 + requester: *860 sender: *4 required: - action @@ -144732,11 +145092,11 @@ webhooks: type: string enum: - suspend - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories: *859 - repository: *834 + organization: *835 + repositories: *861 + repository: *836 requester: type: - 'null' @@ -144919,10 +145279,10 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 target_type: type: string @@ -145001,11 +145361,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories: *859 - repository: *834 + organization: *835 + repositories: *861 + repository: *836 requester: type: - 'null' @@ -145253,8 +145613,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -146071,8 +146431,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146089,7 +146449,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -146433,8 +146793,8 @@ webhooks: - state - locked - assignee - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -146514,7 +146874,7 @@ webhooks: type: string enum: - deleted - comment: &862 + comment: &864 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -146681,8 +147041,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147495,8 +147855,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147513,7 +147873,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -147859,8 +148219,8 @@ webhooks: - state - locked - assignee - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -147940,7 +148300,7 @@ webhooks: type: string enum: - edited - changes: &886 + changes: &888 description: The changes to the comment. type: object properties: @@ -147952,9 +148312,9 @@ webhooks: type: string required: - from - comment: *862 - enterprise: *831 - installation: *832 + comment: *864 + enterprise: *833 + installation: *834 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148770,8 +149130,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148788,7 +149148,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -149132,8 +149492,8 @@ webhooks: - state - locked - assignee - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -149223,9 +149583,9 @@ webhooks: type: number blocking_issue: *219 blocking_issue_repo: *72 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -149319,9 +149679,9 @@ webhooks: type: number blocking_issue: *219 blocking_issue_repo: *72 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -149414,9 +149774,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -149510,9 +149870,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -149597,10 +149957,10 @@ webhooks: type: string enum: - assigned - assignee: *858 - enterprise: *831 - installation: *832 - issue: &865 + assignee: *860 + enterprise: *833 + installation: *834 + issue: &867 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -150412,11 +150772,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150433,7 +150793,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -150536,8 +150896,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -150617,8 +150977,8 @@ webhooks: type: string enum: - closed - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -151435,11 +151795,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151456,7 +151816,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -151702,8 +152062,8 @@ webhooks: required: - state - closed_at - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -151782,8 +152142,8 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152591,11 +152951,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152612,7 +152972,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -152714,8 +153074,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -152794,8 +153154,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153626,11 +153986,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153647,7 +154007,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -153728,7 +154088,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &863 + milestone: &865 title: Milestone description: A collection of related issues and pull requests. type: object @@ -153871,8 +154231,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -153971,8 +154331,8 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154784,11 +155144,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154802,7 +155162,7 @@ webhooks: timeline_url: type: string format: uri - type: *355 + type: *357 title: description: Title of the issue type: string @@ -154908,9 +155268,9 @@ webhooks: - active_lock_reason - body - reactions - label: *852 - organization: *833 - repository: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -154990,8 +155350,8 @@ webhooks: type: string enum: - labeled - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155802,11 +156162,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155820,7 +156180,7 @@ webhooks: timeline_url: type: string format: uri - type: *355 + type: *357 title: description: Title of the issue type: string @@ -155926,9 +156286,9 @@ webhooks: - active_lock_reason - body - reactions - label: *852 - organization: *833 - repository: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -156008,8 +156368,8 @@ webhooks: type: string enum: - locked - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156845,11 +157205,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156863,7 +157223,7 @@ webhooks: timeline_url: type: string format: uri - type: *355 + type: *357 title: description: Title of the issue type: string @@ -156946,8 +157306,8 @@ webhooks: format: uri user_view_type: type: string - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -157026,8 +157386,8 @@ webhooks: type: string enum: - milestoned - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157857,11 +158217,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157878,7 +158238,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -157958,9 +158318,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *863 - organization: *833 - repository: *834 + milestone: *865 + organization: *835 + repository: *836 sender: *4 required: - action @@ -158852,11 +159212,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158952,7 +159312,7 @@ webhooks: required: - login - id - type: *355 + type: *357 required: - id - number @@ -159433,8 +159793,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160246,11 +160606,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160267,7 +160627,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -160369,8 +160729,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -160450,9 +160810,9 @@ webhooks: type: string enum: - pinned - enterprise: *831 - installation: *832 - issue: &864 + enterprise: *833 + installation: *834 + issue: &866 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -161258,11 +161618,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161279,7 +161639,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -161381,8 +161741,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -161461,8 +161821,8 @@ webhooks: type: string enum: - reopened - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162296,11 +162656,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162397,9 +162757,9 @@ webhooks: format: uri user_view_type: type: string - type: *355 - organization: *833 - repository: *834 + type: *357 + organization: *835 + repository: *836 sender: *4 required: - action @@ -163288,11 +163648,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163309,7 +163669,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -163891,11 +164251,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *831 - installation: *832 - issue: *864 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *866 + organization: *835 + repository: *836 sender: *4 required: - action @@ -163975,12 +164335,12 @@ webhooks: type: string enum: - typed - enterprise: *831 - installation: *832 - issue: *865 - type: *355 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *867 + type: *357 + organization: *835 + repository: *836 sender: *4 required: - action @@ -164061,7 +164421,7 @@ webhooks: type: string enum: - unassigned - assignee: &889 + assignee: &891 title: User type: - object @@ -164133,11 +164493,11 @@ webhooks: required: - login - id - enterprise: *831 - installation: *832 - issue: *865 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *867 + organization: *835 + repository: *836 sender: *4 required: - action @@ -164216,12 +164576,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *831 - installation: *832 - issue: *865 - label: *852 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *867 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -164301,8 +164661,8 @@ webhooks: type: string enum: - unlocked - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -165136,11 +165496,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165157,7 +165517,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -165237,8 +165597,8 @@ webhooks: format: uri user_view_type: type: string - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165318,11 +165678,11 @@ webhooks: type: string enum: - unpinned - enterprise: *831 - installation: *832 - issue: *864 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *866 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165401,12 +165761,12 @@ webhooks: type: string enum: - untyped - enterprise: *831 - installation: *832 - issue: *865 - type: *355 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *867 + type: *357 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165486,11 +165846,11 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - label: *852 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165568,11 +165928,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - label: *852 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165682,11 +166042,11 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - label: *852 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165768,9 +166128,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *831 - installation: *832 - marketplace_purchase: &866 + enterprise: *833 + installation: *834 + marketplace_purchase: &868 title: Marketplace Purchase type: object required: @@ -165858,8 +166218,8 @@ webhooks: type: integer unit_count: type: integer - organization: *833 - previous_marketplace_purchase: &867 + organization: *835 + previous_marketplace_purchase: &869 title: Marketplace Purchase type: object properties: @@ -165943,7 +166303,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *834 + repository: *836 sender: *4 required: - action @@ -166023,10 +166383,10 @@ webhooks: - changed effective_date: type: string - enterprise: *831 - installation: *832 - marketplace_purchase: *866 - organization: *833 + enterprise: *833 + installation: *834 + marketplace_purchase: *868 + organization: *835 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -166114,7 +166474,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *834 + repository: *836 sender: *4 required: - action @@ -166196,10 +166556,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *831 - installation: *832 - marketplace_purchase: *866 - organization: *833 + enterprise: *833 + installation: *834 + marketplace_purchase: *868 + organization: *835 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -166285,7 +166645,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *834 + repository: *836 sender: *4 required: - action @@ -166366,8 +166726,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 marketplace_purchase: title: Marketplace Purchase type: object @@ -166453,9 +166813,9 @@ webhooks: type: integer unit_count: type: integer - organization: *833 - previous_marketplace_purchase: *867 - repository: *834 + organization: *835 + previous_marketplace_purchase: *869 + repository: *836 sender: *4 required: - action @@ -166535,12 +166895,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *831 - installation: *832 - marketplace_purchase: *866 - organization: *833 - previous_marketplace_purchase: *867 - repository: *834 + enterprise: *833 + installation: *834 + marketplace_purchase: *868 + organization: *835 + previous_marketplace_purchase: *869 + repository: *836 sender: *4 required: - action @@ -166642,11 +167002,11 @@ webhooks: type: string required: - to - enterprise: *831 - installation: *832 - member: *858 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + member: *860 + organization: *835 + repository: *836 sender: *4 required: - action @@ -166748,11 +167108,11 @@ webhooks: type: - string - 'null' - enterprise: *831 - installation: *832 - member: *858 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + member: *860 + organization: *835 + repository: *836 sender: *4 required: - action @@ -166831,11 +167191,11 @@ webhooks: type: string enum: - removed - enterprise: *831 - installation: *832 - member: *858 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + member: *860 + organization: *835 + repository: *836 sender: *4 required: - action @@ -166913,11 +167273,11 @@ webhooks: type: string enum: - added - enterprise: *831 - installation: *832 - member: *858 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + member: *860 + organization: *835 + repository: *836 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166995,7 +167355,7 @@ webhooks: required: - login - id - team: &868 + team: &870 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -167225,11 +167585,11 @@ webhooks: type: string enum: - removed - enterprise: *831 - installation: *832 - member: *858 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + member: *860 + organization: *835 + repository: *836 scope: description: The scope of the membership. Currently, can only be `team`. @@ -167308,7 +167668,7 @@ webhooks: required: - login - id - team: *868 + team: *870 required: - action - scope @@ -167390,8 +167750,8 @@ webhooks: type: string enum: - checks_requested - installation: *832 - merge_group: &869 + installation: *834 + merge_group: &871 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -167410,15 +167770,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *524 + head_commit: *526 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -167504,10 +167864,10 @@ webhooks: - merged - invalidated - dequeued - installation: *832 - merge_group: *869 - organization: *833 - repository: *834 + installation: *834 + merge_group: *871 + organization: *835 + repository: *836 sender: *4 required: - action @@ -167580,7 +167940,7 @@ webhooks: type: string enum: - deleted - enterprise: *831 + enterprise: *833 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -167689,12 +168049,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *832 - organization: *833 + installation: *834 + organization: *835 repository: anyOf: - type: 'null' - - *834 + - *836 sender: *4 required: - action @@ -167774,11 +168134,11 @@ webhooks: type: string enum: - closed - enterprise: *831 - installation: *832 - milestone: *863 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + milestone: *865 + organization: *835 + repository: *836 sender: *4 required: - action @@ -167857,9 +168217,9 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - milestone: &870 + enterprise: *833 + installation: *834 + milestone: &872 title: Milestone description: A collection of related issues and pull requests. type: object @@ -168001,8 +168361,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168081,11 +168441,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - milestone: *863 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + milestone: *865 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168195,11 +168555,11 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - milestone: *863 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + milestone: *865 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168279,11 +168639,11 @@ webhooks: type: string enum: - opened - enterprise: *831 - installation: *832 - milestone: *870 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + milestone: *872 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168362,11 +168722,11 @@ webhooks: type: string enum: - blocked - blocked_user: *858 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + blocked_user: *860 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168445,11 +168805,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *858 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + blocked_user: *860 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168525,7 +168885,7 @@ webhooks: enum: - created definition: *140 - enterprise: *831 + enterprise: *833 sender: *4 required: - action @@ -168605,8 +168965,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 sender: *4 required: - action @@ -168679,8 +169039,8 @@ webhooks: enum: - updated definition: *140 - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 sender: *4 required: - action @@ -168752,9 +169112,9 @@ webhooks: type: string enum: - updated - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 new_property_values: type: array @@ -168842,9 +169202,9 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - membership: &871 + enterprise: *833 + installation: *834 + membership: &873 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -168954,8 +169314,8 @@ webhooks: - role - organization_url - user - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -169033,11 +169393,11 @@ webhooks: type: string enum: - member_added - enterprise: *831 - installation: *832 - membership: *871 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + membership: *873 + organization: *835 + repository: *836 sender: *4 required: - action @@ -169116,8 +169476,8 @@ webhooks: type: string enum: - member_invited - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -169239,10 +169599,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 - user: *858 + user: *860 required: - action - invitation @@ -169320,11 +169680,11 @@ webhooks: type: string enum: - member_removed - enterprise: *831 - installation: *832 - membership: *871 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + membership: *873 + organization: *835 + repository: *836 sender: *4 required: - action @@ -169411,11 +169771,11 @@ webhooks: properties: from: type: string - enterprise: *831 - installation: *832 - membership: *871 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + membership: *873 + organization: *835 + repository: *836 sender: *4 required: - action @@ -169491,9 +169851,9 @@ webhooks: type: string enum: - published - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 package: description: Information about the package. type: object @@ -170016,7 +170376,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &872 + items: &874 title: Ruby Gems metadata type: object properties: @@ -170113,7 +170473,7 @@ webhooks: - owner - package_version - registry - repository: *834 + repository: *836 sender: *4 required: - action @@ -170189,9 +170549,9 @@ webhooks: type: string enum: - updated - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 package: description: Information about the package. type: object @@ -170553,7 +170913,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *872 + items: *874 source_url: type: string format: uri @@ -170624,7 +170984,7 @@ webhooks: - owner - package_version - registry - repository: *834 + repository: *836 sender: *4 required: - action @@ -170805,12 +171165,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *831 + enterprise: *833 id: type: integer - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - id @@ -170887,7 +171247,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &873 + personal_access_token_request: &875 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -171037,10 +171397,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *831 - organization: *833 + enterprise: *833 + organization: *835 sender: *4 - installation: *832 + installation: *834 required: - action - personal_access_token_request @@ -171117,11 +171477,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *873 - enterprise: *831 - organization: *833 + personal_access_token_request: *875 + enterprise: *833 + organization: *835 sender: *4 - installation: *832 + installation: *834 required: - action - personal_access_token_request @@ -171197,11 +171557,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *873 - enterprise: *831 - organization: *833 + personal_access_token_request: *875 + enterprise: *833 + organization: *835 sender: *4 - installation: *832 + installation: *834 required: - action - personal_access_token_request @@ -171276,11 +171636,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *873 - organization: *833 - enterprise: *831 + personal_access_token_request: *875 + organization: *835 + enterprise: *833 sender: *4 - installation: *832 + installation: *834 required: - action - personal_access_token_request @@ -171385,7 +171745,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *874 + last_response: *876 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -171417,8 +171777,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 zen: description: Random string of GitHub zen. @@ -171663,10 +172023,10 @@ webhooks: - from required: - note - enterprise: *831 - installation: *832 - organization: *833 - project_card: &875 + enterprise: *833 + installation: *834 + organization: *835 + project_card: &877 title: Project Card type: object properties: @@ -171789,7 +172149,7 @@ webhooks: - creator - created_at - updated_at - repository: *834 + repository: *836 sender: *4 required: - action @@ -171870,11 +172230,11 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - project_card: *875 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project_card: *877 + repository: *836 sender: *4 required: - action @@ -171954,9 +172314,9 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 project_card: title: Project Card type: object @@ -172086,7 +172446,7 @@ webhooks: repository: anyOf: - type: 'null' - - *834 + - *836 sender: *4 required: - action @@ -172180,11 +172540,11 @@ webhooks: - from required: - note - enterprise: *831 - installation: *832 - organization: *833 - project_card: *875 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project_card: *877 + repository: *836 sender: *4 required: - action @@ -172278,9 +172638,9 @@ webhooks: - from required: - column_id - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 project_card: allOf: - title: Project Card @@ -172477,7 +172837,7 @@ webhooks: type: string required: - after_id - repository: *834 + repository: *836 sender: *4 required: - action @@ -172557,10 +172917,10 @@ webhooks: type: string enum: - closed - enterprise: *831 - installation: *832 - organization: *833 - project: &877 + enterprise: *833 + installation: *834 + organization: *835 + project: &879 title: Project type: object properties: @@ -172687,7 +173047,7 @@ webhooks: - creator - created_at - updated_at - repository: *834 + repository: *836 sender: *4 required: - action @@ -172767,10 +173127,10 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - project_column: &876 + enterprise: *833 + installation: *834 + organization: *835 + project_column: &878 title: Project Column type: object properties: @@ -172810,7 +173170,7 @@ webhooks: - name - created_at - updated_at - repository: *834 + repository: *836 sender: *4 required: - action @@ -172889,14 +173249,14 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - project_column: *876 + enterprise: *833 + installation: *834 + organization: *835 + project_column: *878 repository: anyOf: - type: 'null' - - *834 + - *836 sender: *4 required: - action @@ -172985,11 +173345,11 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - organization: *833 - project_column: *876 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project_column: *878 + repository: *836 sender: *4 required: - action @@ -173069,11 +173429,11 @@ webhooks: type: string enum: - moved - enterprise: *831 - installation: *832 - organization: *833 - project_column: *876 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project_column: *878 + repository: *836 sender: *4 required: - action @@ -173153,11 +173513,11 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - project: *877 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project: *879 + repository: *836 sender: *4 required: - action @@ -173237,14 +173597,14 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - project: *877 + enterprise: *833 + installation: *834 + organization: *835 + project: *879 repository: anyOf: - type: 'null' - - *834 + - *836 sender: *4 required: - action @@ -173345,11 +173705,11 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - organization: *833 - project: *877 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project: *879 + repository: *836 sender: *4 required: - action @@ -173428,11 +173788,11 @@ webhooks: type: string enum: - reopened - enterprise: *831 - installation: *832 - organization: *833 - project: *877 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project: *879 + repository: *836 sender: *4 required: - action @@ -173513,9 +173873,9 @@ webhooks: type: string enum: - closed - installation: *832 - organization: *833 - projects_v2: *386 + installation: *834 + organization: *835 + projects_v2: *388 sender: *4 required: - action @@ -173596,9 +173956,9 @@ webhooks: type: string enum: - created - installation: *832 - organization: *833 - projects_v2: *386 + installation: *834 + organization: *835 + projects_v2: *388 sender: *4 required: - action @@ -173679,9 +174039,9 @@ webhooks: type: string enum: - deleted - installation: *832 - organization: *833 - projects_v2: *386 + installation: *834 + organization: *835 + projects_v2: *388 sender: *4 required: - action @@ -173802,9 +174162,9 @@ webhooks: type: string to: type: string - installation: *832 - organization: *833 - projects_v2: *386 + installation: *834 + organization: *835 + projects_v2: *388 sender: *4 required: - action @@ -173887,7 +174247,7 @@ webhooks: type: string enum: - archived - changes: &881 + changes: &883 type: object properties: archived_at: @@ -173903,9 +174263,9 @@ webhooks: - string - 'null' format: date-time - installation: *832 - organization: *833 - projects_v2_item: &878 + installation: *834 + organization: *835 + projects_v2_item: &880 title: Projects v2 Item description: An item belonging to a project type: object @@ -173923,7 +174283,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *392 + content_type: *394 creator: *4 created_at: type: string @@ -174045,9 +174405,9 @@ webhooks: - 'null' to: type: string - installation: *832 - organization: *833 - projects_v2_item: *878 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174129,9 +174489,9 @@ webhooks: type: string enum: - created - installation: *832 - organization: *833 - projects_v2_item: *878 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174212,9 +174572,9 @@ webhooks: type: string enum: - deleted - installation: *832 - organization: *833 - projects_v2_item: *878 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174319,7 +174679,7 @@ webhooks: oneOf: - type: string - type: integer - - &879 + - &881 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -174343,7 +174703,7 @@ webhooks: required: - id - name - - &880 + - &882 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -174383,8 +174743,8 @@ webhooks: oneOf: - type: string - type: integer - - *879 - - *880 + - *881 + - *882 type: - 'null' - string @@ -174407,9 +174767,9 @@ webhooks: - 'null' required: - body - installation: *832 - organization: *833 - projects_v2_item: *878 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174506,9 +174866,9 @@ webhooks: type: - string - 'null' - installation: *832 - organization: *833 - projects_v2_item: *878 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174591,10 +174951,10 @@ webhooks: type: string enum: - restored - changes: *881 - installation: *832 - organization: *833 - projects_v2_item: *878 + changes: *883 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174676,9 +175036,9 @@ webhooks: type: string enum: - reopened - installation: *832 - organization: *833 - projects_v2: *386 + installation: *834 + organization: *835 + projects_v2: *388 sender: *4 required: - action @@ -174759,9 +175119,9 @@ webhooks: type: string enum: - created - installation: *832 - organization: *833 - projects_v2_status_update: *882 + installation: *834 + organization: *835 + projects_v2_status_update: *884 sender: *4 required: - action @@ -174842,9 +175202,9 @@ webhooks: type: string enum: - deleted - installation: *832 - organization: *833 - projects_v2_status_update: *882 + installation: *834 + organization: *835 + projects_v2_status_update: *884 sender: *4 required: - action @@ -174990,9 +175350,9 @@ webhooks: - string - 'null' format: date - installation: *832 - organization: *833 - projects_v2_status_update: *882 + installation: *834 + organization: *835 + projects_v2_status_update: *884 sender: *4 required: - action @@ -175063,10 +175423,10 @@ webhooks: title: public event type: object properties: - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - repository @@ -175143,13 +175503,13 @@ webhooks: type: string enum: - assigned - assignee: *858 - enterprise: *831 - installation: *832 - number: &883 + assignee: *860 + enterprise: *833 + installation: *834 + number: &885 description: The pull request number. type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -177498,7 +177858,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -177580,11 +177940,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -179926,7 +180286,7 @@ webhooks: - draft reason: type: string - repository: *834 + repository: *836 sender: *4 required: - action @@ -180008,11 +180368,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -182354,7 +182714,7 @@ webhooks: - draft reason: type: string - repository: *834 + repository: *836 sender: *4 required: - action @@ -182436,13 +182796,13 @@ webhooks: type: string enum: - closed - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: &884 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: &886 allOf: - - *683 + - *685 - type: object properties: allow_auto_merge: @@ -182504,7 +182864,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *834 + repository: *836 sender: *4 required: - action @@ -182585,12 +182945,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: *884 - repository: *834 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: *886 + repository: *836 sender: *4 required: - action @@ -182670,11 +183030,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *831 - milestone: *389 - number: *883 - organization: *833 - pull_request: &885 + enterprise: *833 + milestone: *391 + number: *885 + organization: *835 + pull_request: &887 title: Pull Request type: object properties: @@ -185001,7 +185361,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -185080,11 +185440,11 @@ webhooks: type: string enum: - dequeued - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -187430,7 +187790,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *834 + repository: *836 sender: *4 required: - action @@ -187554,12 +187914,12 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: *884 - repository: *834 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: *886 + repository: *836 sender: *4 required: - action @@ -187639,11 +187999,11 @@ webhooks: type: string enum: - enqueued - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -189974,7 +190334,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -190054,11 +190414,11 @@ webhooks: type: string enum: - labeled - enterprise: *831 - installation: *832 - label: *852 - number: *883 - organization: *833 + enterprise: *833 + installation: *834 + label: *854 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -192406,7 +192766,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -192487,10 +192847,10 @@ webhooks: type: string enum: - locked - enterprise: *831 - installation: *832 - number: *883 - organization: *833 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -194836,7 +195196,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -194916,12 +195276,12 @@ webhooks: type: string enum: - milestoned - enterprise: *831 - milestone: *389 - number: *883 - organization: *833 - pull_request: *885 - repository: *834 + enterprise: *833 + milestone: *391 + number: *885 + organization: *835 + pull_request: *887 + repository: *836 sender: *4 required: - action @@ -195000,12 +195360,12 @@ webhooks: type: string enum: - opened - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: *884 - repository: *834 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: *886 + repository: *836 sender: *4 required: - action @@ -195086,12 +195446,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: *884 - repository: *834 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: *886 + repository: *836 sender: *4 required: - action @@ -195171,12 +195531,12 @@ webhooks: type: string enum: - reopened - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: *884 - repository: *834 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: *886 + repository: *836 sender: *4 required: - action @@ -195551,9 +195911,9 @@ webhooks: - start_side - side - reactions - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: type: object properties: @@ -197783,7 +198143,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *834 + repository: *836 sender: *4 required: - action @@ -197863,7 +198223,7 @@ webhooks: type: string enum: - deleted - comment: &887 + comment: &889 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. @@ -198156,9 +198516,9 @@ webhooks: - start_side - side - reactions - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: type: object properties: @@ -200376,7 +200736,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *834 + repository: *836 sender: *4 required: - action @@ -200456,11 +200816,11 @@ webhooks: type: string enum: - edited - changes: *886 - comment: *887 - enterprise: *831 - installation: *832 - organization: *833 + changes: *888 + comment: *889 + enterprise: *833 + installation: *834 + organization: *835 pull_request: type: object properties: @@ -202681,7 +203041,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *834 + repository: *836 sender: *4 required: - action @@ -202762,9 +203122,9 @@ webhooks: type: string enum: - dismissed - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: title: Simple Pull Request type: object @@ -204997,7 +205357,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *834 + repository: *836 review: description: The review that was affected. type: object @@ -205248,9 +205608,9 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: title: Simple Pull Request type: object @@ -207364,8 +207724,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *834 - review: &888 + repository: *836 + review: &890 description: The review that was affected. type: object properties: @@ -207603,12 +207963,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: description: The pull request number. type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -209955,7 +210315,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 requested_reviewer: title: User type: @@ -210041,12 +210401,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: description: The pull request number. type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -212400,7 +212760,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 requested_team: title: Team description: Groups of organization members that gives permissions @@ -212595,12 +212955,12 @@ webhooks: type: string enum: - review_requested - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: description: The pull request number. type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -214949,7 +215309,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 requested_reviewer: title: User type: @@ -215036,12 +215396,12 @@ webhooks: type: string enum: - review_requested - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: description: The pull request number. type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -217381,7 +217741,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 requested_team: title: Team description: Groups of organization members that gives permissions @@ -217565,9 +217925,9 @@ webhooks: type: string enum: - submitted - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: title: Simple Pull Request type: object @@ -219803,8 +220163,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *834 - review: *888 + repository: *836 + review: *890 sender: *4 required: - action @@ -219884,9 +220244,9 @@ webhooks: type: string enum: - resolved - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: title: Simple Pull Request type: object @@ -222017,7 +222377,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *834 + repository: *836 sender: *4 thread: type: object @@ -222414,9 +222774,9 @@ webhooks: type: string enum: - unresolved - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: title: Simple Pull Request type: object @@ -224530,7 +224890,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *834 + repository: *836 sender: *4 thread: type: object @@ -224929,10 +225289,10 @@ webhooks: type: string before: type: string - enterprise: *831 - installation: *832 - number: *883 - organization: *833 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -227267,7 +227627,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -227349,11 +227709,11 @@ webhooks: type: string enum: - unassigned - assignee: *889 - enterprise: *831 - installation: *832 - number: *883 - organization: *833 + assignee: *891 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -229703,7 +230063,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -229782,11 +230142,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *831 - installation: *832 - label: *852 - number: *883 - organization: *833 + enterprise: *833 + installation: *834 + label: *854 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -232125,7 +232485,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -232206,10 +232566,10 @@ webhooks: type: string enum: - unlocked - enterprise: *831 - installation: *832 - number: *883 - organization: *833 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -234538,7 +234898,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -234741,7 +235101,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *831 + enterprise: *833 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -234836,8 +235196,8 @@ webhooks: - url - author - committer - installation: *832 - organization: *833 + installation: *834 + organization: *835 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -235425,9 +235785,9 @@ webhooks: type: string enum: - published - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 registry_package: type: object properties: @@ -235904,7 +236264,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *872 + items: *874 summary: type: string tag_name: @@ -235960,7 +236320,7 @@ webhooks: - owner - package_version - registry - repository: *834 + repository: *836 sender: *4 required: - action @@ -236038,9 +236398,9 @@ webhooks: type: string enum: - updated - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 registry_package: type: object properties: @@ -236352,7 +236712,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *872 + items: *874 summary: type: string tag_name: @@ -236402,7 +236762,7 @@ webhooks: - owner - package_version - registry - repository: *834 + repository: *836 sender: *4 required: - action @@ -236479,10 +236839,10 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - release: &890 + enterprise: *833 + installation: *834 + organization: *835 + release: &892 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -236813,7 +237173,7 @@ webhooks: - updated_at - zipball_url - body - repository: *834 + repository: *836 sender: *4 required: - action @@ -236890,11 +237250,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - release: *890 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + release: *892 + repository: *836 sender: *4 required: - action @@ -237011,11 +237371,11 @@ webhooks: type: boolean required: - to - enterprise: *831 - installation: *832 - organization: *833 - release: *890 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + release: *892 + repository: *836 sender: *4 required: - action @@ -237093,9 +237453,9 @@ webhooks: type: string enum: - prereleased - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -237431,7 +237791,7 @@ webhooks: - string - 'null' format: uri - repository: *834 + repository: *836 sender: *4 required: - action @@ -237507,10 +237867,10 @@ webhooks: type: string enum: - published - enterprise: *831 - installation: *832 - organization: *833 - release: &891 + enterprise: *833 + installation: *834 + organization: *835 + release: &893 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -237843,7 +238203,7 @@ webhooks: - string - 'null' format: uri - repository: *834 + repository: *836 sender: *4 required: - action @@ -237919,11 +238279,11 @@ webhooks: type: string enum: - released - enterprise: *831 - installation: *832 - organization: *833 - release: *890 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + release: *892 + repository: *836 sender: *4 required: - action @@ -237999,11 +238359,11 @@ webhooks: type: string enum: - unpublished - enterprise: *831 - installation: *832 - organization: *833 - release: *891 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + release: *893 + repository: *836 sender: *4 required: - action @@ -238079,11 +238439,11 @@ webhooks: type: string enum: - published - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - repository_advisory: *736 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + repository_advisory: *738 sender: *4 required: - action @@ -238159,11 +238519,11 @@ webhooks: type: string enum: - reported - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - repository_advisory: *736 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + repository_advisory: *738 sender: *4 required: - action @@ -238239,10 +238599,10 @@ webhooks: type: string enum: - archived - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238319,10 +238679,10 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238400,10 +238760,10 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238488,10 +238848,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238606,10 +238966,10 @@ webhooks: - 'null' items: type: string - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238681,10 +239041,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 status: type: string @@ -238765,10 +239125,10 @@ webhooks: type: string enum: - privatized - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238845,10 +239205,10 @@ webhooks: type: string enum: - publicized - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238942,10 +239302,10 @@ webhooks: - name required: - repository - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -239025,10 +239385,10 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 repository_ruleset: *179 sender: *4 required: @@ -239107,10 +239467,10 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 repository_ruleset: *179 sender: *4 required: @@ -239189,10 +239549,10 @@ webhooks: type: string enum: - edited - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 repository_ruleset: *179 changes: type: object @@ -239254,16 +239614,16 @@ webhooks: properties: added: type: array - items: *704 + items: *706 deleted: type: array - items: *704 + items: *706 updated: type: array items: type: object properties: - rule: *704 + rule: *706 changes: type: object properties: @@ -239500,10 +239860,10 @@ webhooks: - from required: - owner - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -239581,10 +239941,10 @@ webhooks: type: string enum: - unarchived - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -239662,7 +240022,7 @@ webhooks: type: string enum: - create - alert: &892 + alert: &894 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -239786,10 +240146,10 @@ webhooks: type: string enum: - open - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -239999,10 +240359,10 @@ webhooks: type: string enum: - dismissed - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240080,11 +240440,11 @@ webhooks: type: string enum: - reopen - alert: *892 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + alert: *894 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240286,10 +240646,10 @@ webhooks: enum: - fixed - open - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240367,7 +240727,7 @@ webhooks: type: string enum: - created - alert: &893 + alert: &895 type: object properties: number: *119 @@ -240481,10 +240841,10 @@ webhooks: anyOf: - type: 'null' - *4 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240565,11 +240925,11 @@ webhooks: type: string enum: - created - alert: *893 - installation: *832 - location: *894 - organization: *833 - repository: *834 + alert: *895 + installation: *834 + location: *896 + organization: *835 + repository: *836 sender: *4 required: - location @@ -240807,11 +241167,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *893 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + alert: *895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240889,11 +241249,11 @@ webhooks: type: string enum: - reopened - alert: *893 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + alert: *895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240971,11 +241331,11 @@ webhooks: type: string enum: - resolved - alert: *893 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + alert: *895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -241053,11 +241413,11 @@ webhooks: type: string enum: - validated - alert: *893 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + alert: *895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -241187,10 +241547,10 @@ webhooks: - organization - enterprise - - repository: *834 - enterprise: *831 - installation: *832 - organization: *833 + repository: *836 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 required: - action @@ -241268,11 +241628,11 @@ webhooks: type: string enum: - published - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - security_advisory: &895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + security_advisory: &897 description: The details of the security advisory, including summary, description, and severity. type: object @@ -241458,11 +241818,11 @@ webhooks: type: string enum: - updated - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - security_advisory: *895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + security_advisory: *897 sender: *4 required: - action @@ -241535,10 +241895,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -241724,11 +242084,11 @@ webhooks: from: type: object properties: - security_and_analysis: *399 - enterprise: *831 - installation: *832 - organization: *833 - repository: *463 + security_and_analysis: *401 + enterprise: *833 + installation: *834 + organization: *835 + repository: *465 sender: *4 required: - changes @@ -241806,12 +242166,12 @@ webhooks: type: string enum: - cancelled - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: &896 + sponsorship: &898 type: object properties: created_at: @@ -242116,12 +242476,12 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: *896 + sponsorship: *898 required: - action - sponsorship @@ -242209,12 +242569,12 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: *896 + sponsorship: *898 required: - action - changes @@ -242291,17 +242651,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &897 + effective_date: &899 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: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: *896 + sponsorship: *898 required: - action - sponsorship @@ -242375,7 +242735,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &898 + changes: &900 type: object properties: tier: @@ -242419,13 +242779,13 @@ webhooks: - from required: - tier - effective_date: *897 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + effective_date: *899 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: *896 + sponsorship: *898 required: - action - changes @@ -242502,13 +242862,13 @@ webhooks: type: string enum: - tier_changed - changes: *898 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + changes: *900 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: *896 + sponsorship: *898 required: - action - changes @@ -242582,10 +242942,10 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242669,10 +243029,10 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -243106,15 +243466,15 @@ webhooks: type: - string - 'null' - enterprise: *831 + enterprise: *833 id: description: The unique identifier of the status. type: integer - installation: *832 + installation: *834 name: type: string - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 sha: description: The Commit SHA. @@ -243230,9 +243590,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -243322,9 +243682,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -243414,9 +243774,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -243506,9 +243866,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -243585,12 +243945,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - team: &899 + team: &901 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -243820,9 +244180,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 repository: title: Repository description: A git repository @@ -244292,7 +244652,7 @@ webhooks: - topics - visibility sender: *4 - team: *899 + team: *901 required: - action - team @@ -244368,9 +244728,9 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 repository: title: Repository description: A git repository @@ -244840,7 +245200,7 @@ webhooks: - topics - visibility sender: *4 - team: *899 + team: *901 required: - action - team @@ -244917,9 +245277,9 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 repository: title: Repository description: A git repository @@ -245389,7 +245749,7 @@ webhooks: - topics - visibility sender: *4 - team: *899 + team: *901 required: - action - team @@ -245533,9 +245893,9 @@ webhooks: - from required: - permissions - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 repository: title: Repository description: A git repository @@ -246005,7 +246365,7 @@ webhooks: - topics - visibility sender: *4 - team: *899 + team: *901 required: - action - changes @@ -246083,9 +246443,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 repository: title: Repository description: A git repository @@ -246555,7 +246915,7 @@ webhooks: - topics - visibility sender: *4 - team: *899 + team: *901 required: - action - team @@ -246631,10 +246991,10 @@ webhooks: type: string enum: - started - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -246707,17 +247067,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *831 + enterprise: *833 inputs: type: - object - 'null' additionalProperties: true - installation: *832 - organization: *833 + installation: *834 + organization: *835 ref: type: string - repository: *834 + repository: *836 sender: *4 workflow: type: string @@ -246799,10 +247159,10 @@ webhooks: type: string enum: - completed - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 workflow_job: allOf: @@ -247058,7 +247418,7 @@ webhooks: type: string required: - conclusion - deployment: *590 + deployment: *592 required: - action - repository @@ -247137,10 +247497,10 @@ webhooks: type: string enum: - in_progress - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 workflow_job: allOf: @@ -247422,7 +247782,7 @@ webhooks: required: - status - steps - deployment: *590 + deployment: *592 required: - action - repository @@ -247501,10 +247861,10 @@ webhooks: type: string enum: - queued - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 workflow_job: type: object @@ -247650,7 +248010,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *590 + deployment: *592 required: - action - repository @@ -247729,10 +248089,10 @@ webhooks: type: string enum: - waiting - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 workflow_job: type: object @@ -247879,7 +248239,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *590 + deployment: *592 required: - action - repository @@ -247959,12 +248319,12 @@ webhooks: type: string enum: - completed - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - workflow: *848 + workflow: *850 workflow_run: title: Workflow Run type: object @@ -248983,12 +249343,12 @@ webhooks: type: string enum: - in_progress - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - workflow: *848 + workflow: *850 workflow_run: title: Workflow Run type: object @@ -249992,12 +250352,12 @@ webhooks: type: string enum: - requested - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - workflow: *848 + workflow: *850 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.json b/descriptions-next/ghec/dereferenced/ghec.deref.json index 715ac919b..413f06000 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -52805,10 +52805,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -53046,10 +53044,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -53209,10 +53205,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -53486,10 +53480,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -53690,10 +53682,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -53814,10 +53804,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -54644,10 +54632,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -54874,10 +54860,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -55022,10 +55006,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -55267,10 +55249,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -55486,10 +55466,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -55682,10 +55660,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -55804,10 +55780,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -133258,6 +133232,519 @@ } } }, + "/orgs/{org}/artifacts/metadata/deployment-record": { + "post": { + "summary": "Create an artifact deployment record", + "description": "Create or update deployment records for an artifact associated with an organization.\nThis endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment.", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-artifact-deployment-record", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-an-artifact-deployment-record" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "examples": [ + "libfoo" + ] + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The status of the artifact. Can be either deployed or decommissioned.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "cluster": { + "type": "string", + "description": "The deployment cluster." + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment." + }, + "tags": { + "type": "object", + "description": "The tags associated with the deployment.", + "additionalProperties": { + "type": "string" + }, + "maxProperties": 5 + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + } + }, + "required": [ + "name", + "digest", + "status", + "logical_environment", + "deployment_name" + ] + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "data-access": "sensitive" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": { + "post": { + "summary": "Set cluster deployment records", + "description": "Set deployment records for a given cluster.", + "tags": [ + "orgs" + ], + "operationId": "orgs/set-cluster-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#set-cluster-deployment-records" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "cluster", + "in": "path", + "description": "The cluster name.", + "required": true, + "schema": { + "type": "string", + "minLength": 1, + "maxLength": 64, + "pattern": "^[a-zA-Z0-9._-]+$" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "deployments": { + "type": "array", + "description": "The list of deployments to record.", + "items": { + "type": "object", + "maxLength": 100, + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "maxLength": 255 + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The deployment status of the artifact.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment.", + "minLength": 1, + "maxLength": 128 + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + }, + "tags": { + "type": "object", + "description": "Key-value pairs to tag the deployment record.", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "version": "2.1.0", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "runtime-risk": "sensitive-data" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/metadata/storage-record": { "post": { "summary": "Create artifact metadata storage record", @@ -133484,6 +133971,155 @@ } } }, + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": { + "get": { + "summary": "List artifact deployment records", + "description": "List deployment records for an artifact metadata associated with an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-artifact-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-deployment-records" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "subject_digest", + "description": "The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`.", + "in": "path", + "required": true, + "schema": { + "type": "string", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + } + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records for this digest and organization", + "type": "integer", + "examples": [ + 3 + ] + }, + "deployment_records": { + "type": "array", + "items": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": { "get": { "summary": "List artifact storage records", @@ -230894,10 +231530,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -231124,10 +231758,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -231272,10 +231904,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -231508,10 +232138,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -231704,10 +232332,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -231826,10 +232452,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -365444,6 +366068,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -366278,6 +366903,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -368113,6 +368739,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -742326,16 +742953,14 @@ "default": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -742524,9 +743149,8 @@ "examples": { "default": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -742757,9 +743381,8 @@ "examples": { "default": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -806197,16 +806820,14 @@ "default": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -879298,10 +879919,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -880387,10 +881006,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -880976,10 +881593,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -1201997,10 +1202612,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -1202870,10 +1203483,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index 5de251e72..41507805b 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.deref.yaml @@ -915,7 +915,7 @@ paths: - subscriptions_url - type - url - type: &419 + type: &421 type: string description: The type of credit the user is receiving. enum: @@ -1081,7 +1081,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &738 + - &740 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1666,7 +1666,7 @@ paths: schema: type: integer default: 30 - - &333 + - &335 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1682,7 +1682,7 @@ paths: application/json: schema: type: array - items: &334 + items: &336 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1778,7 +1778,7 @@ paths: - installation_id - repository_id examples: - default: &335 + default: &337 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1810,7 +1810,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &748 + schema: &750 title: Scim Error description: Scim Error type: object @@ -1913,7 +1913,7 @@ paths: description: Response content: application/json: - schema: &336 + schema: &338 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2048,7 +2048,7 @@ paths: - request - response examples: - default: &337 + default: &339 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -9101,7 +9101,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &749 + '401': &751 description: Authorization failure '404': *6 x-github: @@ -11939,7 +11939,7 @@ paths: required: false schema: type: string - - &289 + - &291 name: include description: |- The event types to include: @@ -11957,7 +11957,7 @@ paths: - web - git - all - - &290 + - &292 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. @@ -11965,7 +11965,7 @@ paths: required: false schema: type: string - - &291 + - &293 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. @@ -11973,7 +11973,7 @@ paths: required: false schema: type: string - - &292 + - &294 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -11995,7 +11995,7 @@ paths: application/json: schema: type: array - items: &293 + items: &295 type: object properties: "@timestamp": @@ -12117,7 +12117,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &294 + default: &296 value: - "@timestamp": 1606929874512 action: team.add_member @@ -12785,7 +12785,7 @@ paths: application/json: schema: type: array - items: &295 + items: &297 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -12957,7 +12957,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &296 + default: &298 value: - id: 21 number: 42 @@ -13062,7 +13062,7 @@ paths: application/json: schema: type: array - items: &298 + items: &300 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -13193,7 +13193,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &299 + default: &301 value: - id: 21 number: 42 @@ -13278,7 +13278,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *39 - - &304 + - &306 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -13288,7 +13288,7 @@ paths: schema: &105 type: string description: The name of the tool used to generate the code scanning analysis. - - &305 + - &307 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -13312,7 +13312,7 @@ paths: be returned. in: query required: false - schema: &306 + schema: &308 type: string description: State of a code scanning alert. enum: @@ -13337,7 +13337,7 @@ paths: application/json: schema: type: array - items: &307 + items: &309 type: object properties: number: &119 @@ -13366,7 +13366,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &530 + instances_url: &532 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -13402,7 +13402,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &531 + dismissed_reason: &533 type: - string - 'null' @@ -13413,14 +13413,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &532 + dismissed_comment: &534 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &533 + rule: &535 type: object properties: id: @@ -13481,7 +13481,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &534 + tool: &536 type: object properties: name: *105 @@ -13492,15 +13492,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *106 - most_recent_instance: &535 + most_recent_instance: &537 type: object properties: - ref: &528 + ref: &530 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &545 + analysis_key: &547 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -13511,7 +13511,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &546 + category: &548 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -13902,7 +13902,7 @@ paths: - most_recent_instance - repository examples: - default: &308 + default: &310 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -14561,7 +14561,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &309 + code_scanning_options: &311 type: - object - 'null' @@ -14759,7 +14759,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &313 type: array description: A list of default code security configurations items: @@ -14775,7 +14775,7 @@ paths: default configuration: *108 examples: - default: &312 + default: &314 value: - default_for_new_repos: public configuration: @@ -15229,7 +15229,7 @@ paths: default: value: default_for_new_repos: all - configuration: &310 + configuration: &312 value: id: 1325 target_type: organization @@ -15314,7 +15314,7 @@ paths: application/json: schema: type: array - items: &313 + items: &315 type: object description: Repositories associated with a code security configuration and attachment status @@ -15338,7 +15338,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &314 + repository: &316 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -15839,7 +15839,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &300 + - &302 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -15916,7 +15916,7 @@ paths: parent: anyOf: - type: 'null' - - &368 + - &370 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -17263,7 +17263,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *39 - - &320 + - &322 name: state in: query description: |- @@ -17272,7 +17272,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &321 + - &323 name: severity in: query description: |- @@ -17281,7 +17281,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &322 + - &324 name: ecosystem in: query description: |- @@ -17290,14 +17290,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &323 + - &325 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &324 + - &326 name: epss_percentage in: query description: |- @@ -17309,7 +17309,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &581 + - &583 name: has in: query description: |- @@ -17323,7 +17323,7 @@ paths: type: string enum: - patch - - &325 + - &327 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -17333,7 +17333,7 @@ paths: enum: - development - runtime - - &326 + - &328 name: sort in: query description: |- @@ -17359,7 +17359,7 @@ paths: application/json: schema: type: array - items: &327 + items: &329 type: object description: A Dependabot alert. properties: @@ -17426,7 +17426,7 @@ paths: - direct - transitive - - security_advisory: &582 + security_advisory: &584 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17662,7 +17662,7 @@ paths: dismissal. maxLength: 280 fixed_at: *129 - auto_dismissed_at: &583 + auto_dismissed_at: &585 type: - string - 'null' @@ -17689,7 +17689,7 @@ paths: - repository additionalProperties: false examples: - default: &328 + default: &330 value: - number: 2 state: dismissed @@ -18807,7 +18807,7 @@ paths: - name - created_on examples: - default: &429 + default: &431 value: total_count: 2 network_configurations: @@ -19030,7 +19030,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *39 - - &430 + - &432 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -19042,7 +19042,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &433 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -19081,7 +19081,7 @@ paths: - subnet_id - region examples: - default: &432 + default: &434 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -19177,8 +19177,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -19400,8 +19398,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -19706,8 +19702,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -19915,7 +19909,7 @@ paths: required: true content: application/json: - schema: &398 + schema: &400 title: Custom Property Set Payload description: Custom property set payload type: object @@ -19955,8 +19949,6 @@ paths: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -21092,7 +21084,7 @@ paths: conditions: anyOf: - *151 - - &402 + - &404 title: Organization ruleset conditions type: object description: |- @@ -21142,7 +21134,7 @@ paths: - object rules: type: array - items: &704 + items: &706 title: Repository Rule type: object description: A repository rule. @@ -21151,7 +21143,7 @@ paths: - *160 - *161 - *162 - - &701 + - &703 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -21245,7 +21237,7 @@ paths: - *176 - *177 - *178 - - &702 + - &704 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. @@ -21501,7 +21493,7 @@ paths: type: string format: date-time examples: - default: &405 + default: &407 value: - version_id: 3 actor: @@ -21554,7 +21546,7 @@ paths: description: Response content: application/json: - schema: &406 + schema: &408 allOf: - *183 - type: object @@ -21609,7 +21601,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &407 + - &409 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -21620,7 +21612,7 @@ paths: enum: - open - resolved - - &408 + - &410 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -21630,7 +21622,7 @@ paths: required: false schema: type: string - - &409 + - &411 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -21639,7 +21631,7 @@ paths: required: false schema: type: string - - &410 + - &412 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. @@ -21655,7 +21647,7 @@ paths: - *17 - *102 - *103 - - &411 + - &413 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -21664,7 +21656,7 @@ paths: required: false schema: type: string - - &412 + - &414 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -21673,7 +21665,7 @@ paths: schema: type: boolean default: false - - &413 + - &415 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -21682,7 +21674,7 @@ paths: schema: type: boolean default: false - - &414 + - &416 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -21698,7 +21690,7 @@ paths: application/json: schema: type: array - items: &415 + items: &417 type: object properties: number: *119 @@ -21714,14 +21706,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &716 + state: &718 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: &717 + resolution: &719 type: - string - 'null' @@ -21828,14 +21820,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &718 + - &720 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &720 + - &722 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -21892,7 +21884,7 @@ paths: - blob_url - commit_sha - commit_url - - &721 + - &723 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. @@ -21953,7 +21945,7 @@ paths: - page_url - commit_sha - commit_url - - &722 + - &724 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -21968,7 +21960,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &723 + - &725 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -21983,7 +21975,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &724 + - &726 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -21998,7 +21990,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &725 + - &727 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22013,7 +22005,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &726 + - &728 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22028,7 +22020,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &727 + - &729 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22043,7 +22035,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &728 + - &730 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. @@ -22058,7 +22050,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &729 + - &731 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. @@ -22073,7 +22065,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &730 + - &732 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. @@ -22088,7 +22080,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &731 + - &733 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. @@ -22103,7 +22095,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &732 + - &734 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 @@ -22128,7 +22120,7 @@ paths: - type: 'null' - *4 examples: - default: &416 + default: &418 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -22337,7 +22329,7 @@ paths: description: Response content: application/json: - schema: &417 + schema: &419 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -22424,7 +22416,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *185 examples: - default: &418 + default: &420 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -22568,7 +22560,7 @@ paths: description: Response content: application/json: - schema: &420 + schema: &422 type: object properties: total_minutes_used: @@ -22638,7 +22630,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &421 + default: &423 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -22669,7 +22661,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &422 + - &424 name: advanced_security_product in: query description: | @@ -22689,7 +22681,7 @@ paths: description: Success content: application/json: - schema: &423 + schema: &425 type: object properties: total_advanced_security_committers: @@ -22752,7 +22744,7 @@ paths: required: - repositories examples: - default: &424 + default: &426 value: total_advanced_security_committers: 2 total_count: 2 @@ -24094,7 +24086,7 @@ paths: description: Response content: application/json: - schema: &425 + schema: &427 type: object properties: total_gigabytes_bandwidth_used: @@ -24112,7 +24104,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &426 + default: &428 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -24356,7 +24348,7 @@ paths: description: Response content: application/json: - schema: &427 + schema: &429 type: object properties: days_left_in_billing_cycle: @@ -24374,7 +24366,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &428 + default: &430 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -25729,7 +25721,7 @@ paths: milestone: anyOf: - type: 'null' - - &389 + - &391 title: Milestone description: A collection of related issues and pull requests. @@ -25901,7 +25893,7 @@ paths: timeline_url: type: string format: uri - type: &355 + type: &357 title: Issue Type description: The type of issue. type: @@ -26010,7 +26002,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &776 + sub_issues_summary: &778 title: Sub-issues Summary type: object properties: @@ -26031,7 +26023,7 @@ paths: - string - 'null' format: uri - issue_dependencies_summary: &777 + issue_dependencies_summary: &779 title: Issue Dependencies Summary type: object properties: @@ -26050,7 +26042,7 @@ paths: - total_blocking issue_field_values: type: array - items: &778 + items: &780 title: Issue Field Value description: A value assigned to an issue field type: object @@ -26145,7 +26137,7 @@ paths: - user - created_at - updated_at - comment: &639 + comment: &641 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -26711,7 +26703,7 @@ paths: url: type: string format: uri - user: &790 + user: &792 title: Public User description: Public User type: object @@ -28606,7 +28598,7 @@ paths: - closed - all default: open - - &358 + - &360 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -28657,7 +28649,7 @@ paths: type: array items: *219 examples: - default: &359 + default: &361 value: - id: 1 node_id: MDU6SXNzdWUx @@ -30068,14 +30060,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &452 + - &454 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &453 + - &455 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -30137,7 +30129,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &464 + '301': &466 description: Moved permanently content: application/json: @@ -30159,7 +30151,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &668 + - &670 name: all description: If `true`, show notifications marked as read. in: query @@ -30167,7 +30159,7 @@ paths: schema: type: boolean default: false - - &669 + - &671 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -30177,7 +30169,7 @@ paths: type: boolean default: false - *209 - - &670 + - &672 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: @@ -30548,7 +30540,7 @@ paths: type: boolean examples: - false - security_and_analysis: &399 + security_and_analysis: &401 type: - object - 'null' @@ -30721,7 +30713,7 @@ paths: - url - subscription_url examples: - default: &671 + default: &673 value: - id: '1' repository: @@ -31326,7 +31318,7 @@ paths: - 3 custom_roles: type: array - items: &316 + items: &318 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -31375,7 +31367,7 @@ paths: - created_at - updated_at examples: - default: &317 + default: &319 value: id: 8030 name: Security Engineer @@ -31702,7 +31694,7 @@ paths: type: array items: *145 examples: - default: &677 + default: &679 value: - property_name: environment value: production @@ -31752,7 +31744,7 @@ paths: required: - properties examples: - default: &678 + default: &680 value: properties: - property_name: environment @@ -33207,7 +33199,7 @@ paths: type: integer repository_cache_usages: type: array - items: &469 + items: &471 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -35330,7 +35322,7 @@ paths: type: array items: *273 examples: - default: &793 + default: &795 value: total_count: 1 repositories: @@ -36374,7 +36366,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &491 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -36409,7 +36401,7 @@ paths: - key_id - key examples: - default: &490 + default: &492 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -36822,7 +36814,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *81 - - &474 + - &476 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -37370,6 +37362,330 @@ paths: enabledForGitHubApps: true category: announcement-banners subcategory: organizations + "/orgs/{org}/artifacts/metadata/deployment-record": + post: + summary: Create an artifact deployment record + description: |- + Create or update deployment records for an artifact associated with an organization. + This endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment. + tags: + - orgs + operationId: orgs/create-artifact-deployment-record + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-an-artifact-deployment-record + parameters: + - *81 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + examples: + - libfoo + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The status of the artifact. Can be either deployed + or decommissioned. + enum: + - deployed + - decommissioned + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + cluster: + type: string + description: The deployment cluster. + deployment_name: + type: string + description: The name of the deployment. + tags: + type: object + description: The tags associated with the deployment. + additionalProperties: + type: string + maxProperties: 5 + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + required: + - name + - digest + - status + - logical_environment + - deployment_name + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + data-access: sensitive + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: &289 + title: Artifact Deployment Record + description: Artifact Metadata Deployment Record + type: object + properties: + id: + type: integer + digest: + type: string + logical_environment: + type: string + physical_environment: + type: string + cluster: + type: string + deployment_name: + type: string + tags: + type: object + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the + deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + created_at: + type: string + updated_at: + type: string + attestation_id: + type: + - integer + - 'null' + description: The ID of the provenance attestation associated + with the deployment record. + examples: + default: &290 + value: + total_count: 1 + deployment_records: + - id: 123 + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: prod-deployment + tags: + data: sensitive + created: '2011-01-26T19:14:43Z' + updated_at: '2011-01-26T19:14:43Z' + attestation_id: 456 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": + post: + summary: Set cluster deployment records + description: Set deployment records for a given cluster. + tags: + - orgs + operationId: orgs/set-cluster-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#set-cluster-deployment-records + parameters: + - *81 + - name: cluster + in: path + description: The cluster name. + required: true + schema: + type: string + minLength: 1 + maxLength: 64 + pattern: "^[a-zA-Z0-9._-]+$" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + deployments: + type: array + description: The list of deployments to record. + items: + type: object + maxLength: 100 + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + maxLength: 255 + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The deployment status of the artifact. + enum: + - deployed + - decommissioned + deployment_name: + type: string + description: The name of the deployment. + minLength: 1 + maxLength: 128 + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + tags: + type: object + description: Key-value pairs to tag the deployment record. + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + version: 2.1.0 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + runtime-risk: sensitive-data + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: *289 + examples: + default: *290 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/metadata/storage-record": post: summary: Create artifact metadata storage record @@ -37535,6 +37851,52 @@ paths: enabledForGitHubApps: true category: orgs subcategory: artifact-metadata + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": + get: + summary: List artifact deployment records + description: List deployment records for an artifact metadata associated with + an organization. + tags: + - orgs + operationId: orgs/list-artifact-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-deployment-records + parameters: + - *81 + - name: subject_digest + description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. + in: path + required: true + schema: + type: string + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + responses: + '200': + description: Successful response + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records for this digest + and organization + type: integer + examples: + - 3 + deployment_records: + type: array + items: *289 + examples: + default: *290 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": get: summary: List artifact storage records @@ -37659,12 +38021,12 @@ paths: required: - subject_digests examples: - default: &820 + default: &822 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &821 + withPredicateType: &823 value: subject_digests: - sha256:abc123 @@ -37723,7 +38085,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &822 + default: &824 value: attestations_subject_digests: - sha256:abc: @@ -38072,7 +38434,7 @@ paths: initiator: type: string examples: - default: &503 + default: &505 value: attestations: - bundle: @@ -38198,10 +38560,10 @@ paths: required: false schema: type: string - - *289 - - *290 - *291 - *292 + - *293 + - *294 - *17 responses: '200': @@ -38210,9 +38572,9 @@ paths: application/json: schema: type: array - items: *293 + items: *295 examples: - default: *294 + default: *296 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -38335,7 +38697,7 @@ paths: subcategory: bypass-requests parameters: - *81 - - &297 + - &299 name: repository_name description: The name of the repository to filter on. in: query @@ -38354,9 +38716,9 @@ paths: application/json: schema: type: array - items: *295 + items: *297 examples: - default: *296 + default: *298 '404': *6 '500': *38 "/orgs/{org}/bypass-requests/secret-scanning": @@ -38380,7 +38742,7 @@ paths: subcategory: delegated-bypass parameters: - *81 - - *297 + - *299 - *97 - *98 - *99 @@ -38394,9 +38756,9 @@ paths: application/json: schema: type: array - items: *298 + items: *300 examples: - default: *299 + default: *301 '404': *6 '500': *38 "/orgs/{org}/campaigns": @@ -38423,7 +38785,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &301 + schema: &303 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -38449,7 +38811,7 @@ paths: application/json: schema: type: array - items: &302 + items: &304 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -38480,7 +38842,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *300 + items: *302 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -38499,7 +38861,7 @@ paths: - string - 'null' format: date-time - state: *301 + state: *303 contact_link: description: The contact link of the campaign. type: @@ -38722,9 +39084,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: &303 + default: &305 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -38807,9 +39169,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '404': *6 '422': description: Unprocessable Entity @@ -38887,7 +39249,7 @@ paths: - string - 'null' format: uri - state: *301 + state: *303 examples: default: value: @@ -38897,9 +39259,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *304 examples: - default: *303 + default: *305 '400': description: Bad Request content: @@ -38966,8 +39328,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *81 - - *304 - - *305 + - *306 + - *307 - *102 - *103 - *19 @@ -38978,7 +39340,7 @@ paths: be returned. in: query required: false - schema: *306 + schema: *308 - name: sort description: The property by which to sort the results. in: query @@ -38994,7 +39356,7 @@ paths: be returned. in: query required: false - schema: &529 + schema: &531 type: string description: Severity of a code scanning alert. enum: @@ -39012,9 +39374,9 @@ paths: application/json: schema: type: array - items: *307 + items: *309 examples: - default: *308 + default: *310 headers: Link: *41 '404': *6 @@ -39229,7 +39591,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *309 + code_scanning_options: *311 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -39372,7 +39734,7 @@ paths: application/json: schema: *108 examples: - default: *310 + default: *312 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39400,9 +39762,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *313 examples: - default: *312 + default: *314 '304': *35 '403': *27 '404': *6 @@ -39489,7 +39851,7 @@ paths: application/json: schema: *108 examples: - default: *310 + default: *312 '304': *35 '403': *27 '404': *6 @@ -39911,7 +40273,7 @@ paths: default: value: default_for_new_repos: all - configuration: *310 + configuration: *312 '403': *27 '404': *6 x-github: @@ -39964,13 +40326,13 @@ paths: application/json: schema: type: array - items: *313 + items: *315 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *314 + repository: *316 '403': *27 '404': *6 x-github: @@ -40010,7 +40372,7 @@ paths: type: integer codespaces: type: array - items: &360 + items: &362 type: object title: Codespace description: A codespace. @@ -40045,7 +40407,7 @@ paths: machine: anyOf: - type: 'null' - - &558 + - &560 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -40332,7 +40694,7 @@ paths: - pulls_url - recent_folders examples: - default: &361 + default: &363 value: total_count: 3 codespaces: @@ -40956,7 +41318,7 @@ paths: type: integer secrets: type: array - items: &315 + items: &317 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -40997,7 +41359,7 @@ paths: - updated_at - visibility examples: - default: &559 + default: &561 value: total_count: 2 secrets: @@ -41035,7 +41397,7 @@ paths: description: Response content: application/json: - schema: &560 + schema: &562 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -41070,7 +41432,7 @@ paths: - key_id - key examples: - default: &561 + default: &563 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -41100,9 +41462,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: &563 + default: &565 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -42189,7 +42551,7 @@ paths: - 3 custom_roles: type: array - items: *316 + items: *318 examples: default: value: @@ -42281,7 +42643,7 @@ paths: required: true content: application/json: - schema: &318 + schema: &320 type: object properties: name: @@ -42323,9 +42685,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '422': *15 '404': *6 x-github: @@ -42356,9 +42718,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '404': *6 x-github: githubCloudOnly: true @@ -42386,7 +42748,7 @@ paths: required: true content: application/json: - schema: &319 + schema: &321 type: object properties: name: @@ -42425,9 +42787,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '422': *15 '404': *6 x-github: @@ -42485,7 +42847,7 @@ paths: required: true content: application/json: - schema: *318 + schema: *320 examples: default: value: @@ -42499,9 +42861,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '422': *15 '404': *6 x-github: @@ -42538,9 +42900,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '404': *6 x-github: githubCloudOnly: true @@ -42574,7 +42936,7 @@ paths: required: true content: application/json: - schema: *319 + schema: *321 examples: default: value: @@ -42589,9 +42951,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *318 examples: - default: *317 + default: *319 '422': *15 '404': *6 x-github: @@ -42651,11 +43013,11 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *81 - - *320 - - *321 - *322 - *323 - *324 + - *325 + - *326 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -42693,8 +43055,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *325 - - *326 + - *327 + - *328 - *104 - *102 - *103 @@ -42706,9 +43068,9 @@ paths: application/json: schema: type: array - items: *327 + items: *329 examples: - default: *328 + default: *330 '304': *35 '400': *14 '403': *27 @@ -42752,7 +43114,7 @@ paths: type: integer secrets: type: array - items: &329 + items: &331 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -42831,7 +43193,7 @@ paths: description: Response content: application/json: - schema: &586 + schema: &588 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -42850,7 +43212,7 @@ paths: - key_id - key examples: - default: &587 + default: &589 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -42880,7 +43242,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *331 examples: default: value: @@ -43180,7 +43542,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *81 - - &595 + - &597 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -43188,7 +43550,7 @@ paths: required: false schema: type: string - - &596 + - &598 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -43196,7 +43558,7 @@ paths: required: false schema: type: string - - &597 + - &599 name: time_period description: |- The time period to filter by. @@ -43212,7 +43574,7 @@ paths: - week - month default: month - - &598 + - &600 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -43227,7 +43589,7 @@ paths: - denied - all default: all - - *297 + - *299 - *17 - *19 responses: @@ -43237,7 +43599,7 @@ paths: application/json: schema: type: array - items: &599 + items: &601 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -43400,7 +43762,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &600 + default: &602 value: - id: 21 number: 42 @@ -43487,11 +43849,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *81 - - *297 + - *299 - *97 - *98 - *99 - - &601 + - &603 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -43517,7 +43879,7 @@ paths: application/json: schema: type: array - items: &602 + items: &604 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -43644,7 +44006,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &603 + default: &605 value: - id: 21 number: 42 @@ -43732,7 +44094,7 @@ paths: application/json: schema: type: array - items: &370 + items: &372 title: Package description: A software package type: object @@ -43803,7 +44165,7 @@ paths: - created_at - updated_at examples: - default: &371 + default: &373 value: - id: 197 name: hello_docker @@ -43990,7 +44352,7 @@ paths: description: Response content: application/json: - schema: &447 + schema: &449 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -44080,7 +44442,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &448 + default: &450 value: group_id: '123' group_name: Octocat admins @@ -44135,7 +44497,7 @@ paths: description: Response content: application/json: - schema: &445 + schema: &447 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -44175,7 +44537,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &446 + default: &448 value: groups: - group_id: '123' @@ -44219,7 +44581,7 @@ paths: application/json: schema: type: array - items: &352 + items: &354 title: Organization Invitation description: Organization Invitation type: object @@ -44273,7 +44635,7 @@ paths: - invitation_teams_url - node_id examples: - default: &353 + default: &355 value: - id: 1 login: monalisa @@ -44340,7 +44702,7 @@ paths: application/json: schema: type: array - items: &400 + items: &402 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -44354,7 +44716,7 @@ paths: - name - description examples: - default: &401 + default: &403 value: - name: add_assignee description: Assign or remove a user @@ -44395,7 +44757,7 @@ paths: application/json: schema: type: array - items: &330 + items: &332 title: Org Hook description: Org Hook type: object @@ -44578,9 +44940,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *332 examples: - default: &331 + default: &333 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -44625,7 +44987,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *81 - - &332 + - &334 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -44638,9 +45000,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *332 examples: - default: *331 + default: *333 '404': *6 x-github: githubCloudOnly: false @@ -44662,7 +45024,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *81 - - *332 + - *334 requestBody: required: false content: @@ -44708,7 +45070,7 @@ paths: description: Response content: application/json: - schema: *330 + schema: *332 examples: default: value: @@ -44748,7 +45110,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *81 - - *332 + - *334 responses: '204': description: Response @@ -44774,7 +45136,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *81 - - *332 + - *334 responses: '200': description: Response @@ -44803,7 +45165,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *81 - - *332 + - *334 requestBody: required: false content: @@ -44852,9 +45214,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *81 - - *332 + - *334 - *17 - - *333 + - *335 responses: '200': description: Response @@ -44862,9 +45224,9 @@ paths: application/json: schema: type: array - items: *334 + items: *336 examples: - default: *335 + default: *337 '400': *14 '422': *15 x-github: @@ -44888,16 +45250,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *81 - - *332 + - *334 - *16 responses: '200': description: Response content: application/json: - schema: *336 + schema: *338 examples: - default: *337 + default: *339 '400': *14 '422': *15 x-github: @@ -44921,7 +45283,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *81 - - *332 + - *334 - *16 responses: '202': *37 @@ -44948,7 +45310,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *81 - - *332 + - *334 responses: '204': description: Response @@ -44971,7 +45333,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *81 - - &342 + - &344 name: actor_type in: path description: The type of the actor @@ -44984,14 +45346,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &343 + - &345 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &338 + - &340 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -44999,7 +45361,7 @@ paths: required: true schema: type: string - - &339 + - &341 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -45094,12 +45456,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *81 - - *338 - - *339 + - *340 + - *341 - *19 - *17 - *104 - - &348 + - &350 name: sort description: The property to sort the results by. in: query @@ -45179,14 +45541,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *81 - - *338 - - *339 + - *340 + - *341 responses: '200': description: Response content: application/json: - schema: &340 + schema: &342 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -45202,7 +45564,7 @@ paths: type: integer format: int64 examples: - default: &341 + default: &343 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -45223,23 +45585,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *81 - - &344 + - &346 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *338 - - *339 + - *340 + - *341 responses: '200': description: Response content: application/json: - schema: *340 + schema: *342 examples: - default: *341 + default: *343 x-github: enabledForGitHubApps: true category: orgs @@ -45258,18 +45620,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *81 - - *338 - - *339 - - *342 - - *343 + - *340 + - *341 + - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *340 + schema: *342 examples: - default: *341 + default: *343 x-github: enabledForGitHubApps: true category: orgs @@ -45287,9 +45649,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *81 - - *338 - - *339 - - &345 + - *340 + - *341 + - &347 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -45302,7 +45664,7 @@ paths: description: Response content: application/json: - schema: &346 + schema: &348 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -45318,7 +45680,7 @@ paths: type: integer format: int64 examples: - default: &347 + default: &349 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -45355,18 +45717,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *81 - - *344 - - *338 - - *339 - - *345 + - *346 + - *340 + - *341 + - *347 responses: '200': description: Response content: application/json: - schema: *346 + schema: *348 examples: - default: *347 + default: *349 x-github: enabledForGitHubApps: true category: orgs @@ -45384,19 +45746,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *81 - - *342 - - *343 - - *338 - - *339 + - *344 - *345 + - *340 + - *341 + - *347 responses: '200': description: Response content: application/json: - schema: *346 + schema: *348 examples: - default: *347 + default: *349 x-github: enabledForGitHubApps: true category: orgs @@ -45414,13 +45776,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *81 - - *344 - - *338 - - *339 + - *346 + - *340 + - *341 - *19 - *17 - *104 - - *348 + - *350 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -45504,7 +45866,7 @@ paths: application/json: schema: *20 examples: - default: &634 + default: &636 value: id: 1 account: @@ -45670,12 +46032,12 @@ paths: application/json: schema: anyOf: - - &350 + - &352 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &349 + limit: &351 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -45703,7 +46065,7 @@ paths: properties: {} additionalProperties: false examples: - default: &351 + default: &353 value: limit: collaborators_only origin: organization @@ -45732,13 +46094,13 @@ paths: required: true content: application/json: - schema: &635 + schema: &637 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *349 + limit: *351 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -45763,9 +46125,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *352 examples: - default: *351 + default: *353 '422': *15 x-github: githubCloudOnly: false @@ -45843,9 +46205,9 @@ paths: application/json: schema: type: array - items: *352 + items: *354 examples: - default: *353 + default: *355 headers: Link: *41 '404': *6 @@ -45923,7 +46285,7 @@ paths: description: Response content: application/json: - schema: *352 + schema: *354 examples: default: value: @@ -45980,7 +46342,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *81 - - &354 + - &356 name: invitation_id description: The unique identifier of the invitation. in: path @@ -46014,7 +46376,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *81 - - *354 + - *356 - *17 - *19 responses: @@ -46024,9 +46386,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: &369 + default: &371 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -46069,7 +46431,7 @@ paths: application/json: schema: type: array - items: *355 + items: *357 examples: default: value: @@ -46157,9 +46519,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *357 examples: - default: &356 + default: &358 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -46192,7 +46554,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *81 - - &357 + - &359 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -46248,9 +46610,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *357 examples: - default: *356 + default: *358 '404': *6 '422': *7 x-github: @@ -46275,7 +46637,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *81 - - *357 + - *359 responses: '204': description: Response @@ -46338,7 +46700,7 @@ paths: - closed - all default: open - - *358 + - *360 - name: type description: Can be the name of an issue type. in: query @@ -46369,7 +46731,7 @@ paths: type: array items: *219 examples: - default: *359 + default: *361 headers: Link: *41 '404': *6 @@ -46528,9 +46890,9 @@ paths: type: integer codespaces: type: array - items: *360 + items: *362 examples: - default: *361 + default: *363 '304': *35 '500': *38 '401': *23 @@ -46557,7 +46919,7 @@ paths: parameters: - *81 - *132 - - &362 + - &364 name: codespace_name in: path required: true @@ -46592,15 +46954,15 @@ paths: parameters: - *81 - *132 - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: &557 + default: &559 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -46856,7 +47218,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &365 title: Org Membership description: Org Membership type: object @@ -46925,7 +47287,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &364 + response-if-user-has-an-active-admin-membership-with-organization: &366 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -47022,9 +47384,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *365 examples: - response-if-user-already-had-membership-with-organization: *364 + response-if-user-already-had-membership-with-organization: *366 '422': *15 '403': *27 x-github: @@ -47096,7 +47458,7 @@ paths: application/json: schema: type: array - items: &365 + items: &367 title: Migration description: A migration. type: object @@ -47434,7 +47796,7 @@ paths: description: Response content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -47613,7 +47975,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *81 - - &366 + - &368 name: migration_id description: The unique identifier of the migration. in: path @@ -47641,7 +48003,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -47811,7 +48173,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *81 - - *366 + - *368 responses: '302': description: Response @@ -47833,7 +48195,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *81 - - *366 + - *368 responses: '204': description: Response @@ -47857,8 +48219,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *81 - - *366 - - &805 + - *368 + - &807 name: repo_name description: repo_name parameter in: path @@ -47886,7 +48248,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *81 - - *366 + - *368 - *17 - *19 responses: @@ -47898,7 +48260,7 @@ paths: type: array items: *273 examples: - default: &376 + default: &378 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -48107,7 +48469,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &367 + items: &369 title: Organization Role description: Organization roles type: object @@ -48316,7 +48678,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *369 examples: default: value: @@ -48546,7 +48908,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *369 examples: default: value: @@ -48643,7 +49005,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *369 examples: default: value: @@ -48802,7 +49164,7 @@ paths: parent: anyOf: - type: 'null' - - *368 + - *370 type: description: The ownership type of the team type: string @@ -48835,7 +49197,7 @@ paths: - type - parent examples: - default: *369 + default: *371 headers: Link: *41 '404': @@ -48894,7 +49256,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *368 + items: *370 name: type: - string @@ -49204,7 +49566,7 @@ paths: - nuget - container - *81 - - &806 + - &808 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -49240,12 +49602,12 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: *371 + default: *373 '403': *27 '401': *23 - '400': &808 + '400': &810 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -49267,7 +49629,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &372 + - &374 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -49285,7 +49647,7 @@ paths: - docker - nuget - container - - &373 + - &375 name: package_name description: The name of the package. in: path @@ -49298,7 +49660,7 @@ paths: description: Response content: application/json: - schema: *370 + schema: *372 examples: default: value: @@ -49350,8 +49712,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *372 - - *373 + - *374 + - *375 - *81 responses: '204': @@ -49384,8 +49746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *372 - - *373 + - *374 + - *375 - *81 - name: token description: package token @@ -49418,8 +49780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *372 - - *373 + - *374 + - *375 - *81 - *19 - *17 @@ -49440,7 +49802,7 @@ paths: application/json: schema: type: array - items: &374 + items: &376 title: Package Version description: A version of a software package type: object @@ -49575,10 +49937,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *372 - - *373 + - *374 + - *375 - *81 - - &375 + - &377 name: package_version_id description: Unique identifier of the package version. in: path @@ -49590,7 +49952,7 @@ paths: description: Response content: application/json: - schema: *374 + schema: *376 examples: default: value: @@ -49626,10 +49988,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *372 - - *373 - - *81 + - *374 - *375 + - *81 + - *377 responses: '204': description: Response @@ -49661,10 +50023,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *372 - - *373 - - *81 + - *374 - *375 + - *81 + - *377 responses: '204': description: Response @@ -49694,7 +50056,7 @@ paths: - *81 - *17 - *19 - - &377 + - &379 name: sort description: The property by which to sort the results. in: query @@ -49705,7 +50067,7 @@ paths: - created_at default: created_at - *104 - - &378 + - &380 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -49717,7 +50079,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &379 + - &381 name: repository description: The name of the repository to use to filter the results. in: query @@ -49726,7 +50088,7 @@ paths: type: string examples: - Hello-World - - &380 + - &382 name: permission description: The permission to use to filter the results. in: query @@ -49735,7 +50097,7 @@ paths: type: string examples: - issues_read - - &381 + - &383 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -49745,7 +50107,7 @@ paths: schema: type: string format: date-time - - &382 + - &384 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -49755,7 +50117,7 @@ paths: schema: type: string format: date-time - - &383 + - &385 name: token_id description: The ID of the token in: query @@ -50074,7 +50436,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -50100,14 +50462,14 @@ paths: - *81 - *17 - *19 - - *377 - - *104 - - *378 - *379 + - *104 - *380 - *381 - *382 - *383 + - *384 + - *385 responses: '500': *38 '422': *15 @@ -50391,7 +50753,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -50433,7 +50795,7 @@ paths: type: integer configurations: type: array - items: &384 + items: &386 title: Organization private registry description: Private registry configuration for an organization type: object @@ -50729,7 +51091,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &385 + org-private-registry-with-selected-visibility: &387 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -50827,9 +51189,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *384 + schema: *386 examples: - default: *385 + default: *387 '404': *6 x-github: githubCloudOnly: false @@ -50997,7 +51359,7 @@ paths: application/json: schema: type: array - items: &386 + items: &388 title: Projects v2 Project description: A projects v2 project type: object @@ -51071,7 +51433,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &882 + - &884 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -51156,7 +51518,7 @@ paths: - deleted_at - deleted_by examples: - default: &387 + default: &389 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -51259,7 +51621,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &388 + - &390 name: project_number description: The project's number. in: path @@ -51272,9 +51634,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *388 examples: - default: *387 + default: *389 headers: Link: *41 '304': *35 @@ -51297,7 +51659,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *81 - - *388 + - *390 requestBody: required: true description: Details of the draft item to create in the project. @@ -51331,7 +51693,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &395 title: Projects v2 Item description: An item belonging to a project type: object @@ -51345,7 +51707,7 @@ paths: content: oneOf: - *219 - - &570 + - &572 title: Pull Request Simple description: Pull Request Simple type: object @@ -51465,7 +51827,7 @@ paths: milestone: anyOf: - type: 'null' - - *389 + - *391 active_lock_reason: type: - string @@ -51520,7 +51882,7 @@ paths: type: - array - 'null' - items: *300 + items: *302 head: type: object properties: @@ -51564,7 +51926,7 @@ paths: _links: type: object properties: - comments: &390 + comments: &392 title: Link description: Hypermedia Link type: object @@ -51573,13 +51935,13 @@ paths: type: string required: - href - commits: *390 - statuses: *390 - html: *390 - issue: *390 - review_comments: *390 - review_comment: *390 - self: *390 + commits: *392 + statuses: *392 + html: *392 + issue: *392 + review_comments: *392 + review_comment: *392 + self: *392 required: - comments - commits @@ -51590,7 +51952,7 @@ paths: - review_comment - self author_association: *206 - auto_merge: &680 + auto_merge: &682 title: Auto merge description: The status of auto merging a pull request. type: @@ -51692,7 +52054,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &392 + content_type: &394 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -51736,7 +52098,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &394 + draft_issue: &396 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -51810,7 +52172,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *388 + - *390 - *81 - *17 - *102 @@ -51822,7 +52184,7 @@ paths: application/json: schema: type: array - items: &391 + items: &393 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -51972,7 +52334,7 @@ paths: - updated_at - project_url examples: - default: &825 + default: &827 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -52103,8 +52465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *388 - - &826 + - *390 + - &828 name: field_id description: The unique identifier of the field. in: path @@ -52117,9 +52479,9 @@ paths: description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: &827 + default: &829 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -52163,7 +52525,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *388 + - *390 - *81 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -52196,7 +52558,7 @@ paths: application/json: schema: type: array - items: &395 + items: &397 title: Projects v2 Item description: An item belonging to a project type: object @@ -52213,7 +52575,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *392 + content_type: *394 content: type: - object @@ -52263,7 +52625,7 @@ paths: - updated_at - archived_at examples: - default: &396 + default: &398 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -52960,7 +53322,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - *81 - - *388 + - *390 requestBody: required: true description: Details of the item to add to the project. @@ -52997,10 +53359,10 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - issue: *394 - pull_request: *394 + issue: *396 + pull_request: *396 '304': *35 '403': *27 '401': *23 @@ -53020,9 +53382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *388 + - *390 - *81 - - &397 + - &399 name: item_id description: The unique identifier of the project item. in: path @@ -53048,9 +53410,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: *396 + default: *398 headers: Link: *41 '304': *35 @@ -53071,9 +53433,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *388 + - *390 - *81 - - *397 + - *399 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -53146,13 +53508,13 @@ paths: description: Response content: application/json: - schema: *395 + schema: *397 examples: - text_field: *396 - number_field: *396 - date_field: *396 - single_select_field: *396 - iteration_field: *396 + text_field: *398 + number_field: *398 + date_field: *398 + single_select_field: *398 + iteration_field: *398 '401': *23 '403': *27 '404': *6 @@ -53172,9 +53534,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *388 + - *390 - *81 - - *397 + - *399 responses: '204': description: Response @@ -53337,7 +53699,7 @@ paths: required: true content: application/json: - schema: *398 + schema: *400 examples: default: value: @@ -53705,7 +54067,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -53909,7 +54271,7 @@ paths: description: Response content: application/json: - schema: &463 + schema: &465 title: Full Repository description: Full Repository type: object @@ -54374,7 +54736,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &575 + code_of_conduct: &577 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -54404,7 +54766,7 @@ paths: - key - name - html_url - security_and_analysis: *399 + security_and_analysis: *401 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -54488,7 +54850,7 @@ paths: - network_count - subscribers_count examples: - default: &465 + default: &467 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -55014,9 +55376,9 @@ paths: application/json: schema: type: array - items: *400 + items: *402 examples: - default: *401 + default: *403 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -55041,7 +55403,7 @@ paths: - *81 - *17 - *19 - - &703 + - &705 name: targets description: | A comma-separated list of rule targets to filter by. @@ -55133,11 +55495,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *158 - conditions: *402 + conditions: *404 rules: type: array description: An array of rules within the ruleset. - items: &404 + items: &406 title: Repository Rule type: object description: A repository rule. @@ -55201,7 +55563,7 @@ paths: application/json: schema: *179 examples: - default: &403 + default: &405 value: id: 21 name: super cool ruleset @@ -55256,7 +55618,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *81 - - &705 + - &707 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 @@ -55266,16 +55628,16 @@ paths: schema: type: string x-multi-segment: true - - *297 + - *299 - *99 - - &706 + - &708 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 - - &707 + - &709 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -55295,7 +55657,7 @@ paths: description: Response content: application/json: - schema: &708 + schema: &710 title: Rule Suites description: Response type: array @@ -55351,7 +55713,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &709 + default: &711 value: - id: 21 actor_id: 12 @@ -55395,7 +55757,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *81 - - &710 + - &712 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -55411,7 +55773,7 @@ paths: description: Response content: application/json: - schema: &711 + schema: &713 title: Rule Suite description: Response type: object @@ -55518,7 +55880,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &712 + default: &714 value: id: 21 actor_id: 12 @@ -55593,7 +55955,7 @@ paths: application/json: schema: *179 examples: - default: *403 + default: *405 '404': *6 '500': *38 put: @@ -55642,11 +56004,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *158 - conditions: *402 + conditions: *404 rules: description: An array of rules within the ruleset. type: array - items: *404 + items: *406 examples: default: value: @@ -55683,7 +56045,7 @@ paths: application/json: schema: *179 examples: - default: *403 + default: *405 '404': *6 '500': *38 delete: @@ -55742,7 +56104,7 @@ paths: type: array items: *183 examples: - default: *405 + default: *407 '404': *6 '500': *38 x-github: @@ -55779,7 +56141,7 @@ paths: description: Response content: application/json: - schema: *406 + schema: *408 examples: default: value: @@ -55842,14 +56204,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *81 - - *407 - - *408 - *409 - *410 + - *411 + - *412 - *104 - *19 - *17 - - &714 + - &716 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 @@ -55859,7 +56221,7 @@ paths: required: false schema: type: string - - &715 + - &717 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 @@ -55869,10 +56231,10 @@ paths: required: false schema: type: string - - *411 - - *412 - *413 - *414 + - *415 + - *416 responses: '200': description: Response @@ -55880,9 +56242,9 @@ paths: application/json: schema: type: array - items: *415 + items: *417 examples: - default: *416 + default: *418 headers: Link: *41 '404': *6 @@ -55917,9 +56279,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *419 examples: - default: *418 + default: *420 '403': *27 '404': *6 patch: @@ -56072,7 +56434,7 @@ paths: application/json: schema: type: array - items: &736 + items: &738 description: A repository security advisory. type: object properties: @@ -56316,7 +56678,7 @@ paths: login: type: string description: The username of the user credited. - type: *419 + type: *421 credits_detailed: type: - array @@ -56327,7 +56689,7 @@ paths: type: object properties: user: *4 - type: *419 + type: *421 state: type: string description: The state of the user's acceptance of the @@ -56353,7 +56715,7 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *300 + items: *302 private_fork: readOnly: true description: A temporary private fork of the advisory's repository @@ -56391,7 +56753,7 @@ paths: - private_fork additionalProperties: false examples: - default: &737 + default: &739 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -56778,9 +57140,9 @@ paths: application/json: schema: type: array - items: *368 + items: *370 examples: - default: *369 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56865,9 +57227,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: - default: *421 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -56892,7 +57254,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *81 - - *422 + - *424 - *17 - *19 responses: @@ -56900,9 +57262,9 @@ paths: description: Success content: application/json: - schema: *423 + schema: *425 examples: - default: *424 + default: *426 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -56930,9 +57292,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -56960,9 +57322,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -57245,7 +57607,7 @@ paths: type: array items: *137 examples: - default: *429 + default: *431 headers: Link: *41 x-github: @@ -57446,15 +57808,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *81 - - *430 + - *432 responses: '200': description: Response content: application/json: - schema: *431 + schema: *433 examples: - default: *432 + default: *434 headers: Link: *41 x-github: @@ -57492,7 +57854,7 @@ paths: description: Response content: application/json: - schema: &454 + schema: &456 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -57544,7 +57906,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &455 + default: &457 value: groups: - group_id: '123' @@ -57656,9 +58018,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 headers: Link: *41 '403': *27 @@ -57752,7 +58114,7 @@ paths: description: Response content: application/json: - schema: &433 + schema: &435 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -57826,7 +58188,7 @@ paths: parent: anyOf: - type: 'null' - - *368 + - *370 members_count: type: integer examples: @@ -58151,7 +58513,7 @@ paths: - repos_count - organization examples: - default: &434 + default: &436 value: id: 1 node_id: MDQ6VGVhbTE= @@ -58228,9 +58590,9 @@ paths: description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '404': *6 x-github: githubCloudOnly: false @@ -58315,16 +58677,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '201': description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '404': *6 '422': *15 '403': *27 @@ -58394,7 +58756,7 @@ paths: application/json: schema: type: array - items: &435 + items: &437 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -58505,7 +58867,7 @@ paths: - updated_at - url examples: - default: &780 + default: &782 value: - author: login: octocat @@ -58614,9 +58976,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: &436 + default: &438 value: author: login: octocat @@ -58690,7 +59052,7 @@ paths: parameters: - *81 - *204 - - &437 + - &439 name: discussion_number description: The number that identifies the discussion. in: path @@ -58702,9 +59064,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: *436 + default: *438 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58728,7 +59090,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 requestBody: required: false content: @@ -58751,9 +59113,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: &781 + default: &783 value: author: login: octocat @@ -58825,7 +59187,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 responses: '204': description: Response @@ -58853,7 +59215,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 - *104 - *17 - *19 @@ -58864,7 +59226,7 @@ paths: application/json: schema: type: array - items: &438 + items: &440 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -58944,7 +59306,7 @@ paths: - updated_at - url examples: - default: &782 + default: &784 value: - author: login: octocat @@ -59014,7 +59376,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 requestBody: required: true content: @@ -59036,9 +59398,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: &439 + default: &441 value: author: login: octocat @@ -59106,8 +59468,8 @@ paths: parameters: - *81 - *204 - - *437 - - &440 + - *439 + - &442 name: comment_number description: The number that identifies the comment. in: path @@ -59119,9 +59481,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: *439 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59145,8 +59507,8 @@ paths: parameters: - *81 - *204 - - *437 - - *440 + - *439 + - *442 requestBody: required: true content: @@ -59168,9 +59530,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: &783 + default: &785 value: author: login: octocat @@ -59236,8 +59598,8 @@ paths: parameters: - *81 - *204 - - *437 - - *440 + - *439 + - *442 responses: '204': description: Response @@ -59265,8 +59627,8 @@ paths: parameters: - *81 - *204 - - *437 - - *440 + - *439 + - *442 - 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 team discussion comment. @@ -59292,7 +59654,7 @@ paths: application/json: schema: type: array - items: &441 + items: &443 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -59336,7 +59698,7 @@ paths: - content - created_at examples: - default: &443 + default: &445 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -59388,8 +59750,8 @@ paths: parameters: - *81 - *204 - - *437 - - *440 + - *439 + - *442 requestBody: required: true content: @@ -59422,9 +59784,9 @@ paths: team discussion comment content: application/json: - schema: *441 + schema: *443 examples: - default: &442 + default: &444 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -59453,9 +59815,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59480,9 +59842,9 @@ paths: parameters: - *81 - *204 - - *437 - - *440 - - &444 + - *439 + - *442 + - &446 name: reaction_id description: The unique identifier of the reaction. in: path @@ -59516,7 +59878,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 - 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 team discussion. @@ -59542,9 +59904,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 x-github: @@ -59572,7 +59934,7 @@ paths: parameters: - *81 - *204 - - *437 + - *439 requestBody: required: true content: @@ -59604,16 +59966,16 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -59638,8 +60000,8 @@ paths: parameters: - *81 - *204 - - *437 - - *444 + - *439 + - *446 responses: '204': description: Response @@ -59669,9 +60031,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: - default: *446 + default: *448 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -59715,9 +60077,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *449 examples: - default: *448 + default: *450 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -59772,9 +60134,9 @@ paths: application/json: schema: type: array - items: *352 + items: *354 examples: - default: *353 + default: *355 headers: Link: *41 x-github: @@ -59858,7 +60220,7 @@ paths: description: Response content: application/json: - schema: &449 + schema: &451 title: Team Membership description: Team Membership type: object @@ -59886,7 +60248,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &784 + response-if-user-is-a-team-maintainer: &786 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -59949,9 +60311,9 @@ paths: description: Response content: application/json: - schema: *449 + schema: *451 examples: - response-if-users-membership-with-team-is-now-pending: &785 + response-if-users-membership-with-team-is-now-pending: &787 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -60024,7 +60386,7 @@ paths: application/json: schema: type: array - items: &450 + items: &452 title: Team Project description: A team's access to a project. type: object @@ -60093,7 +60455,7 @@ paths: - updated_at - permissions examples: - default: &786 + default: &788 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -60158,7 +60520,7 @@ paths: parameters: - *81 - *204 - - &451 + - &453 name: project_id description: The unique identifier of the project. in: path @@ -60170,9 +60532,9 @@ paths: description: Response content: application/json: - schema: *450 + schema: *452 examples: - default: &787 + default: &789 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -60236,7 +60598,7 @@ paths: parameters: - *81 - *204 - - *451 + - *453 requestBody: required: false content: @@ -60305,7 +60667,7 @@ paths: parameters: - *81 - *204 - - *451 + - *453 responses: '204': description: Response @@ -60345,7 +60707,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -60376,14 +60738,14 @@ paths: parameters: - *81 - *204 - - *452 - - *453 + - *454 + - *455 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &788 + schema: &790 title: Team Repository description: A team's access to a repository. type: object @@ -61026,8 +61388,8 @@ paths: parameters: - *81 - *204 - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -61074,8 +61436,8 @@ paths: parameters: - *81 - *204 - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -61108,9 +61470,9 @@ paths: description: Response content: application/json: - schema: *454 + schema: *456 examples: - default: *455 + default: *457 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -61176,7 +61538,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *456 examples: default: value: @@ -61219,9 +61581,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - response-if-child-teams-exist: &789 + response-if-child-teams-exist: &791 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -61348,7 +61710,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#get-a-project-card parameters: - - &456 + - &458 name: card_id description: The unique identifier of the card. in: path @@ -61360,7 +61722,7 @@ paths: description: Response content: application/json: - schema: &457 + schema: &459 title: Project Card description: Project cards represent a scope of work. type: object @@ -61435,7 +61797,7 @@ paths: - created_at - updated_at examples: - default: &458 + default: &460 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -61491,7 +61853,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#update-an-existing-project-card parameters: - - *456 + - *458 requestBody: required: false content: @@ -61521,9 +61883,9 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: - default: *458 + default: *460 '304': *35 '403': *27 '401': *23 @@ -61550,7 +61912,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#delete-a-project-card parameters: - - *456 + - *458 responses: '204': description: Response @@ -61594,7 +61956,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#move-a-project-card parameters: - - *456 + - *458 requestBody: required: true content: @@ -61707,7 +62069,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#get-a-project-column parameters: - - &459 + - &461 name: column_id description: The unique identifier of the column. in: path @@ -61719,7 +62081,7 @@ paths: description: Response content: application/json: - schema: &460 + schema: &462 title: Project Column description: Project columns contain cards of work. type: object @@ -61773,7 +62135,7 @@ paths: - created_at - updated_at examples: - default: &461 + default: &463 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -61808,7 +62170,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#update-an-existing-project-column parameters: - - *459 + - *461 requestBody: required: true content: @@ -61833,9 +62195,9 @@ paths: description: Response content: application/json: - schema: *460 + schema: *462 examples: - default: *461 + default: *463 '304': *35 '403': *27 '401': *23 @@ -61860,7 +62222,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#delete-a-project-column parameters: - - *459 + - *461 responses: '204': description: Response @@ -61889,7 +62251,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#list-project-cards parameters: - - *459 + - *461 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -61910,7 +62272,7 @@ paths: application/json: schema: type: array - items: *457 + items: *459 examples: default: value: @@ -61969,7 +62331,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#create-a-project-card parameters: - - *459 + - *461 requestBody: required: true content: @@ -62013,9 +62375,9 @@ paths: description: Response content: application/json: - schema: *457 + schema: *459 examples: - default: *458 + default: *460 '304': *35 '403': *27 '401': *23 @@ -62071,7 +62433,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#move-a-project-column parameters: - - *459 + - *461 requestBody: required: true content: @@ -62132,7 +62494,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#list-project-collaborators parameters: - - *451 + - *453 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -62189,7 +62551,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#add-project-collaborator parameters: - - *451 + - *453 - *132 requestBody: required: false @@ -62244,7 +62606,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *451 + - *453 - *132 responses: '204': @@ -62276,7 +62638,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *451 + - *453 - *132 responses: '200': @@ -62374,7 +62736,7 @@ paths: resources: type: object properties: - core: &462 + core: &464 title: Rate Limit type: object properties: @@ -62391,21 +62753,21 @@ paths: - remaining - reset - used - graphql: *462 - search: *462 - code_search: *462 - source_import: *462 - integration_manifest: *462 - code_scanning_upload: *462 - actions_runner_registration: *462 - scim: *462 - dependency_snapshots: *462 - dependency_sbom: *462 - code_scanning_autofix: *462 + graphql: *464 + search: *464 + code_search: *464 + source_import: *464 + integration_manifest: *464 + code_scanning_upload: *464 + actions_runner_registration: *464 + scim: *464 + dependency_snapshots: *464 + dependency_sbom: *464 + code_scanning_autofix: *464 required: - core - search - rate: *462 + rate: *464 required: - rate - resources @@ -62510,14 +62872,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *463 + schema: *465 examples: default-response: summary: Default response @@ -63022,7 +63384,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *464 + '301': *466 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63040,8 +63402,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -63299,10 +63661,10 @@ paths: description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *465 - '307': &466 + default: *467 + '307': &468 description: Temporary Redirect content: application/json: @@ -63331,8 +63693,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -63354,7 +63716,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *466 + '307': *468 '404': *6 '409': *112 x-github: @@ -63378,11 +63740,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 - - &481 + - &483 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -63405,7 +63767,7 @@ paths: type: integer artifacts: type: array - items: &467 + items: &469 title: Artifact description: An artifact type: object @@ -63500,7 +63862,7 @@ paths: - expires_at - updated_at examples: - default: &482 + default: &484 value: total_count: 2 artifacts: @@ -63561,9 +63923,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *452 - - *453 - - &468 + - *454 + - *455 + - &470 name: artifact_id description: The unique identifier of the artifact. in: path @@ -63575,7 +63937,7 @@ paths: description: Response content: application/json: - schema: *467 + schema: *469 examples: default: value: @@ -63613,9 +63975,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *452 - - *453 - - *468 + - *454 + - *455 + - *470 responses: '204': description: Response @@ -63639,9 +64001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *452 - - *453 - - *468 + - *454 + - *455 + - *470 - name: archive_format in: path required: true @@ -63655,7 +64017,7 @@ paths: 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': &638 + '410': &640 description: Gone content: application/json: @@ -63682,14 +64044,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *469 + schema: *471 examples: default: value: @@ -63715,11 +64077,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 - - &470 + - &472 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -63753,7 +64115,7 @@ paths: description: Response content: application/json: - schema: &471 + schema: &473 title: Repository actions caches description: Repository actions caches type: object @@ -63803,7 +64165,7 @@ paths: - total_count - actions_caches examples: - default: &472 + default: &474 value: total_count: 1 actions_caches: @@ -63835,23 +64197,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *452 - - *453 + - *454 + - *455 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *470 + - *472 responses: '200': description: Response content: application/json: - schema: *471 + schema: *473 examples: - default: *472 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63871,8 +64233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *452 - - *453 + - *454 + - *455 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -63903,9 +64265,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *452 - - *453 - - &473 + - *454 + - *455 + - &475 name: job_id description: The unique identifier of the job. in: path @@ -63917,7 +64279,7 @@ paths: description: Response content: application/json: - schema: &485 + schema: &487 title: Job description: Information of a job execution in a workflow run type: object @@ -64264,9 +64626,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *452 - - *453 - - *473 + - *454 + - *455 + - *475 responses: '302': description: Response @@ -64294,9 +64656,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *452 - - *453 - - *473 + - *454 + - *455 + - *475 requestBody: required: false content: @@ -64342,8 +64704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Status response @@ -64393,8 +64755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -64457,8 +64819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -64476,7 +64838,7 @@ paths: type: integer secrets: type: array - items: &487 + items: &489 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -64497,7 +64859,7 @@ paths: - created_at - updated_at examples: - default: &488 + default: &490 value: total_count: 2 secrets: @@ -64530,9 +64892,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *452 - - *453 - - *474 + - *454 + - *455 + - *476 - *19 responses: '200': @@ -64549,7 +64911,7 @@ paths: type: integer variables: type: array - items: &491 + items: &493 title: Actions Variable type: object properties: @@ -64583,7 +64945,7 @@ paths: - created_at - updated_at examples: - default: &492 + default: &494 value: total_count: 2 variables: @@ -64616,8 +64978,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -64626,7 +64988,7 @@ paths: schema: type: object properties: - enabled: &475 + enabled: &477 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *54 @@ -64661,8 +65023,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -64673,7 +65035,7 @@ paths: schema: type: object properties: - enabled: *475 + enabled: *477 allowed_actions: *54 sha_pinning_required: *55 required: @@ -64706,14 +65068,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: &476 + schema: &478 type: object properties: access_level: @@ -64731,7 +65093,7 @@ paths: required: - access_level examples: - default: &477 + default: &479 value: access_level: organization x-github: @@ -64756,15 +65118,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: application/json: - schema: *476 + schema: *478 examples: - default: *477 + default: *479 responses: '204': description: Response @@ -64788,8 +65150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -64819,8 +65181,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Empty response for successful settings update @@ -64854,8 +65216,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -64882,8 +65244,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -64917,8 +65279,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -64946,8 +65308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -64978,8 +65340,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -65010,8 +65372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -65043,8 +65405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -65073,8 +65435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Success response @@ -65114,8 +65476,8 @@ paths: in: query schema: type: string - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -65159,8 +65521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -65192,8 +65554,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -65267,8 +65629,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '201': description: Response @@ -65304,8 +65666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '201': description: Response @@ -65335,8 +65697,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 responses: '200': @@ -65366,8 +65728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 responses: '204': @@ -65394,8 +65756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 responses: '200': *75 @@ -65420,8 +65782,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 requestBody: required: true @@ -65470,8 +65832,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 requestBody: required: true @@ -65521,8 +65883,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 responses: '200': *280 @@ -65552,8 +65914,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *69 - *281 responses: @@ -65583,9 +65945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *452 - - *453 - - &495 + - *454 + - *455 + - &497 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -65593,7 +65955,7 @@ paths: required: false schema: type: string - - &496 + - &498 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -65601,7 +65963,7 @@ paths: required: false schema: type: string - - &497 + - &499 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -65610,7 +65972,7 @@ paths: required: false schema: type: string - - &498 + - &500 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -65637,7 +65999,7 @@ paths: - pending - *17 - *19 - - &499 + - &501 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -65646,7 +66008,7 @@ paths: schema: type: string format: date-time - - &478 + - &480 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -65655,13 +66017,13 @@ paths: schema: type: boolean default: false - - &500 + - &502 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &501 + - &503 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -65684,7 +66046,7 @@ paths: type: integer workflow_runs: type: array - items: &479 + items: &481 title: Workflow Run description: An invocation of a workflow type: object @@ -65801,7 +66163,7 @@ paths: type: - array - 'null' - items: &520 + items: &522 title: Pull Request Minimal type: object properties: @@ -65928,7 +66290,7 @@ paths: head_commit: anyOf: - type: 'null' - - &524 + - &526 title: Simple Commit description: A commit. type: object @@ -66043,7 +66405,7 @@ paths: - workflow_url - pull_requests examples: - default: &502 + default: &504 value: total_count: 1 workflow_runs: @@ -66279,24 +66641,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *452 - - *453 - - &480 + - *454 + - *455 + - &482 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *478 + - *480 responses: '200': description: Response content: application/json: - schema: *479 + schema: *481 examples: - default: &483 + default: &485 value: id: 30433642 name: Build @@ -66537,9 +66899,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '204': description: Response @@ -66562,9 +66924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '200': description: Response @@ -66692,9 +67054,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '201': description: Response @@ -66727,12 +67089,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 - *17 - *19 - - *481 + - *483 responses: '200': description: Response @@ -66748,9 +67110,9 @@ paths: type: integer artifacts: type: array - items: *467 + items: *469 examples: - default: *482 + default: *484 headers: Link: *41 x-github: @@ -66774,25 +67136,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *452 - - *453 - - *480 - - &484 + - *454 + - *455 + - *482 + - &486 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *478 + - *480 responses: '200': description: Response content: application/json: - schema: *479 + schema: *481 examples: - default: *483 + default: *485 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66815,10 +67177,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *452 - - *453 - - *480 - - *484 + - *454 + - *455 + - *482 + - *486 - *17 - *19 responses: @@ -66836,9 +67198,9 @@ paths: type: integer jobs: type: array - items: *485 + items: *487 examples: - default: &486 + default: &488 value: total_count: 1 jobs: @@ -66951,10 +67313,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *452 - - *453 - - *480 - - *484 + - *454 + - *455 + - *482 + - *486 responses: '302': description: Response @@ -66982,9 +67344,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '202': description: Response @@ -67017,9 +67379,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 requestBody: required: true content: @@ -67086,9 +67448,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '202': description: Response @@ -67121,9 +67483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -67153,9 +67515,9 @@ paths: type: integer jobs: type: array - items: *485 + items: *487 examples: - default: *486 + default: *488 headers: Link: *41 x-github: @@ -67180,9 +67542,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '302': description: Response @@ -67209,9 +67571,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '204': description: Response @@ -67238,9 +67600,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '200': description: Response @@ -67309,7 +67671,7 @@ paths: items: type: object properties: - type: &604 + type: &606 type: string description: The type of reviewer. enum: @@ -67320,7 +67682,7 @@ paths: reviewer: anyOf: - *4 - - *300 + - *302 required: - environment - wait_timer @@ -67395,9 +67757,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 requestBody: required: true content: @@ -67447,7 +67809,7 @@ paths: application/json: schema: type: array - items: &590 + items: &592 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -67559,7 +67921,7 @@ paths: - created_at - updated_at examples: - default: &591 + default: &593 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -67615,9 +67977,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 requestBody: required: false content: @@ -67662,9 +68024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 requestBody: required: false content: @@ -67719,9 +68081,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *452 - - *453 - - *480 + - *454 + - *455 + - *482 responses: '200': description: Response @@ -67858,8 +68220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -67877,9 +68239,9 @@ paths: type: integer secrets: type: array - items: *487 + items: *489 examples: - default: *488 + default: *490 headers: Link: *41 x-github: @@ -67904,16 +68266,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *489 + schema: *491 examples: - default: *490 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67935,17 +68297,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '200': description: Response content: application/json: - schema: *487 + schema: *489 examples: - default: &617 + default: &619 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -67971,8 +68333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 requestBody: required: true @@ -68030,8 +68392,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '204': @@ -68057,9 +68419,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *452 - - *453 - - *474 + - *454 + - *455 + - *476 - *19 responses: '200': @@ -68076,9 +68438,9 @@ paths: type: integer variables: type: array - items: *491 + items: *493 examples: - default: *492 + default: *494 headers: Link: *41 x-github: @@ -68101,8 +68463,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -68154,17 +68516,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *452 - - *453 + - *454 + - *455 - *286 responses: '200': description: Response content: application/json: - schema: *491 + schema: *493 examples: - default: &618 + default: &620 value: name: USERNAME value: octocat @@ -68190,8 +68552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *452 - - *453 + - *454 + - *455 - *286 requestBody: required: true @@ -68234,8 +68596,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *452 - - *453 + - *454 + - *455 - *286 responses: '204': @@ -68261,8 +68623,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -68280,7 +68642,7 @@ paths: type: integer workflows: type: array - items: &493 + items: &495 title: Workflow description: A GitHub Actions workflow type: object @@ -68398,9 +68760,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *452 - - *453 - - &494 + - *454 + - *455 + - &496 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -68415,7 +68777,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *495 examples: default: value: @@ -68448,9 +68810,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *452 - - *453 - - *494 + - *454 + - *455 + - *496 responses: '204': description: Response @@ -68475,9 +68837,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *452 - - *453 - - *494 + - *454 + - *455 + - *496 responses: '204': description: Response @@ -68528,9 +68890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *452 - - *453 - - *494 + - *454 + - *455 + - *496 responses: '204': description: Response @@ -68557,19 +68919,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *452 - - *453 - - *494 - - *495 + - *454 + - *455 - *496 - *497 - *498 - - *17 - - *19 - *499 - - *478 - *500 + - *17 + - *19 - *501 + - *480 + - *502 + - *503 responses: '200': description: Response @@ -68585,9 +68947,9 @@ paths: type: integer workflow_runs: type: array - items: *479 + items: *481 examples: - default: *502 + default: *504 headers: Link: *41 x-github: @@ -68620,9 +68982,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *452 - - *453 - - *494 + - *454 + - *455 + - *496 responses: '200': description: Response @@ -68683,8 +69045,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *452 - - *453 + - *454 + - *455 - *104 - *17 - *102 @@ -68852,8 +69214,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -68890,8 +69252,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *452 - - *453 + - *454 + - *455 - name: assignee in: path required: true @@ -68927,8 +69289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -69040,8 +69402,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *102 - *103 @@ -69098,7 +69460,7 @@ paths: initiator: type: string examples: - default: *503 + default: *505 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69118,8 +69480,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -69127,7 +69489,7 @@ paths: application/json: schema: type: array - items: &504 + items: &506 title: Autolink reference description: An autolink reference. type: object @@ -69186,8 +69548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -69226,9 +69588,9 @@ paths: description: response content: application/json: - schema: *504 + schema: *506 examples: - default: &505 + default: &507 value: id: 1 key_prefix: TICKET- @@ -69259,9 +69621,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *452 - - *453 - - &506 + - *454 + - *455 + - &508 name: autolink_id description: The unique identifier of the autolink. in: path @@ -69273,9 +69635,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *506 examples: - default: *505 + default: *507 '404': *6 x-github: githubCloudOnly: false @@ -69295,9 +69657,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *452 - - *453 - - *506 + - *454 + - *455 + - *508 responses: '204': description: Response @@ -69321,8 +69683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response if Dependabot is enabled @@ -69372,8 +69734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -69394,8 +69756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -69415,8 +69777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *452 - - *453 + - *454 + - *455 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -69454,7 +69816,7 @@ paths: - url protected: type: boolean - protection: &508 + protection: &510 title: Branch Protection description: Branch Protection type: object @@ -69497,7 +69859,7 @@ paths: required: - contexts - checks - enforce_admins: &511 + enforce_admins: &513 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -69514,7 +69876,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &513 + required_pull_request_reviews: &515 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -69536,7 +69898,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *300 + items: *302 apps: description: The list of apps with review dismissal access. @@ -69568,7 +69930,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *300 + items: *302 apps: description: The list of apps allowed to bypass pull request requirements. @@ -69598,7 +69960,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &510 + restrictions: &512 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -69661,7 +70023,7 @@ paths: type: string teams: type: array - items: *300 + items: *302 apps: type: array items: @@ -69891,9 +70253,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *452 - - *453 - - &509 + - *454 + - *455 + - &511 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -69907,14 +70269,14 @@ paths: description: Response content: application/json: - schema: &519 + schema: &521 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &566 + commit: &568 title: Commit description: Commit type: object @@ -69953,7 +70315,7 @@ paths: author: anyOf: - type: 'null' - - &507 + - &509 title: Git User description: Metaproperties for Git author/committer information. @@ -69974,7 +70336,7 @@ paths: committer: anyOf: - type: 'null' - - *507 + - *509 message: type: string examples: @@ -69998,7 +70360,7 @@ paths: required: - sha - url - verification: &624 + verification: &626 title: Verification type: object properties: @@ -70078,7 +70440,7 @@ paths: type: integer files: type: array - items: &577 + items: &579 title: Diff Entry description: Diff Entry type: object @@ -70174,7 +70536,7 @@ paths: - self protected: type: boolean - protection: *508 + protection: *510 protection_url: type: string format: uri @@ -70283,7 +70645,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *464 + '301': *466 '404': *6 x-github: githubCloudOnly: false @@ -70305,15 +70667,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *508 + schema: *510 examples: default: value: @@ -70507,9 +70869,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -70769,7 +71131,7 @@ paths: url: type: string format: uri - required_status_checks: &516 + required_status_checks: &518 title: Status Check Policy description: Status Check Policy type: object @@ -70850,7 +71212,7 @@ paths: items: *4 teams: type: array - items: *300 + items: *302 apps: type: array items: *5 @@ -70868,7 +71230,7 @@ paths: items: *4 teams: type: array - items: *300 + items: *302 apps: type: array items: *5 @@ -70928,7 +71290,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *510 + restrictions: *512 required_conversation_resolution: type: object properties: @@ -71040,9 +71402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -71067,17 +71429,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: &512 + default: &514 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -71099,17 +71461,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *512 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71128,9 +71490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -71155,17 +71517,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *513 + schema: *515 examples: - default: &514 + default: &516 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -71261,9 +71623,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -71361,9 +71723,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *515 examples: - default: *514 + default: *516 '422': *15 x-github: githubCloudOnly: false @@ -71384,9 +71746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -71413,17 +71775,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: &515 + default: &517 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -71446,17 +71808,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *515 + default: *517 '404': *6 x-github: githubCloudOnly: false @@ -71476,9 +71838,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -71503,17 +71865,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *516 + schema: *518 examples: - default: &517 + default: &519 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -71539,9 +71901,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -71593,9 +71955,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *518 examples: - default: *517 + default: *519 '404': *6 '422': *15 x-github: @@ -71617,9 +71979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -71643,9 +72005,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response @@ -71679,9 +72041,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -71748,9 +72110,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -71814,9 +72176,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: content: application/json: @@ -71882,15 +72244,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response content: application/json: - schema: *510 + schema: *512 examples: default: value: @@ -71981,9 +72343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '204': description: Response @@ -72006,9 +72368,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response @@ -72018,7 +72380,7 @@ paths: type: array items: *5 examples: - default: &518 + default: &520 value: - id: 1 slug: octoapp @@ -72075,9 +72437,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72111,7 +72473,7 @@ paths: type: array items: *5 examples: - default: *518 + default: *520 '422': *15 x-github: githubCloudOnly: false @@ -72132,9 +72494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72168,7 +72530,7 @@ paths: type: array items: *5 examples: - default: *518 + default: *520 '422': *15 x-github: githubCloudOnly: false @@ -72189,9 +72551,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72225,7 +72587,7 @@ paths: type: array items: *5 examples: - default: *518 + default: *520 '422': *15 x-github: githubCloudOnly: false @@ -72247,9 +72609,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response @@ -72257,9 +72619,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 '404': *6 x-github: githubCloudOnly: false @@ -72279,9 +72641,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -72317,9 +72679,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 '422': *15 x-github: githubCloudOnly: false @@ -72340,9 +72702,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: false content: @@ -72378,9 +72740,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 '422': *15 x-github: githubCloudOnly: false @@ -72401,9 +72763,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: content: application/json: @@ -72438,9 +72800,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 '422': *15 x-github: githubCloudOnly: false @@ -72462,9 +72824,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 responses: '200': description: Response @@ -72498,9 +72860,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72558,9 +72920,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72618,9 +72980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72680,9 +73042,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 requestBody: required: true content: @@ -72704,7 +73066,7 @@ paths: description: Response content: application/json: - schema: *519 + schema: *521 examples: default: value: @@ -72818,8 +73180,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *452 - - *453 + - *454 + - *455 - *97 - *98 - *99 @@ -72833,9 +73195,9 @@ paths: application/json: schema: type: array - items: *295 + items: *297 examples: - default: *296 + default: *298 '404': *6 '500': *38 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -72855,8 +73217,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: bypass_request_number in: path required: true @@ -72870,7 +73232,7 @@ paths: description: Response content: application/json: - schema: *295 + schema: *297 examples: default: value: @@ -72929,8 +73291,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *452 - - *453 + - *454 + - *455 - *97 - *98 - *99 @@ -72944,9 +73306,9 @@ paths: application/json: schema: type: array - items: *298 + items: *300 examples: - default: *299 + default: *301 '404': *6 '403': *27 '500': *38 @@ -72970,8 +73332,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *452 - - *453 + - *454 + - *455 - name: bypass_request_number in: path required: true @@ -72983,7 +73345,7 @@ paths: description: A single bypass request. content: application/json: - schema: *298 + schema: *300 examples: default: value: @@ -73041,8 +73403,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *452 - - *453 + - *454 + - *455 - name: bypass_request_number in: path required: true @@ -73113,8 +73475,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *452 - - *453 + - *454 + - *455 - name: bypass_response_id in: path required: true @@ -73147,8 +73509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -73427,7 +73789,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &523 title: CheckRun description: A check performed on the code of a given code change type: object @@ -73562,8 +73924,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *520 - deployment: &838 + items: *522 + deployment: &840 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -73850,9 +74212,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *452 - - *453 - - &522 + - *454 + - *455 + - &524 name: check_run_id description: The unique identifier of the check run. in: path @@ -73864,9 +74226,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *523 examples: - default: &523 + default: &525 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -73966,9 +74328,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *452 - - *453 - - *522 + - *454 + - *455 + - *524 requestBody: required: true content: @@ -74208,9 +74570,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *523 examples: - default: *523 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74230,9 +74592,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *452 - - *453 - - *522 + - *454 + - *455 + - *524 - *17 - *19 responses: @@ -74342,9 +74704,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *452 - - *453 - - *522 + - *454 + - *455 + - *524 responses: '201': description: Response @@ -74388,8 +74750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -74411,7 +74773,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &525 + schema: &527 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -74493,7 +74855,7 @@ paths: type: - array - 'null' - items: *520 + items: *522 app: anyOf: - type: 'null' @@ -74509,7 +74871,7 @@ paths: - string - 'null' format: date-time - head_commit: *524 + head_commit: *526 latest_check_runs_count: type: integer check_runs_url: @@ -74537,7 +74899,7 @@ paths: - check_runs_url - pull_requests examples: - default: &526 + default: &528 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -74828,9 +75190,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *525 + schema: *527 examples: - default: *526 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74849,8 +75211,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -75159,9 +75521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *452 - - *453 - - &527 + - *454 + - *455 + - &529 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -75173,9 +75535,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *527 examples: - default: *526 + default: *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75198,17 +75560,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *452 - - *453 - - *527 - - &572 + - *454 + - *455 + - *529 + - &574 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &573 + - &575 name: status description: Returns check runs with the specified `status`. in: query @@ -75247,9 +75609,9 @@ paths: type: integer check_runs: type: array - items: *521 + items: *523 examples: - default: &574 + default: &576 value: total_count: 1 check_runs: @@ -75351,9 +75713,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *452 - - *453 - - *527 + - *454 + - *455 + - *529 responses: '201': description: Response @@ -75386,21 +75748,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *452 - - *453 - - *304 - - *305 + - *454 + - *455 + - *306 + - *307 - *19 - *17 - - &543 + - &545 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *528 - - &544 + schema: *530 + - &546 name: pr description: The number of the pull request for the results you want to list. in: query @@ -75425,13 +75787,13 @@ paths: be returned. in: query required: false - schema: *306 + schema: *308 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *529 + schema: *531 responses: '200': description: Response @@ -75447,7 +75809,7 @@ paths: updated_at: *127 url: *124 html_url: *125 - instances_url: *530 + instances_url: *532 state: *107 fixed_at: *129 dismissed_by: @@ -75455,11 +75817,11 @@ paths: - type: 'null' - *4 dismissed_at: *128 - dismissed_reason: *531 - dismissed_comment: *532 - rule: *533 - tool: *534 - most_recent_instance: *535 + dismissed_reason: *533 + dismissed_comment: *534 + rule: *535 + tool: *536 + most_recent_instance: *537 dismissal_approved_by: anyOf: - type: 'null' @@ -75582,7 +75944,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &536 + '403': &538 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -75609,9 +75971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *452 - - *453 - - &537 + - *454 + - *455 + - &539 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -75625,7 +75987,7 @@ paths: description: Response content: application/json: - schema: &538 + schema: &540 type: object properties: number: *119 @@ -75633,7 +75995,7 @@ paths: updated_at: *127 url: *124 html_url: *125 - instances_url: *530 + instances_url: *532 state: *107 fixed_at: *129 dismissed_by: @@ -75641,8 +76003,8 @@ paths: - type: 'null' - *4 dismissed_at: *128 - dismissed_reason: *531 - dismissed_comment: *532 + dismissed_reason: *533 + dismissed_comment: *534 rule: type: object properties: @@ -75704,8 +76066,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *534 - most_recent_instance: *535 + tool: *536 + most_recent_instance: *537 dismissal_approved_by: anyOf: - type: 'null' @@ -75801,7 +76163,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -75821,9 +76183,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 requestBody: required: true content: @@ -75838,8 +76200,8 @@ paths: enum: - open - dismissed - dismissed_reason: *531 - dismissed_comment: *532 + dismissed_reason: *533 + dismissed_comment: *534 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -75858,7 +76220,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *540 examples: default: value: @@ -75934,7 +76296,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &542 + '403': &544 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -75961,15 +76323,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 responses: '200': description: Response content: application/json: - schema: &539 + schema: &541 type: object properties: status: @@ -75996,13 +76358,13 @@ paths: - description - started_at examples: - default: &540 + default: &542 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &541 + '400': &543 description: Bad Request content: application/json: @@ -76013,7 +76375,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -76038,29 +76400,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 responses: '200': description: OK content: application/json: - schema: *539 + schema: *541 examples: - default: *540 + default: *542 '202': description: Accepted content: application/json: - schema: *539 + schema: *541 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *541 + '400': *543 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -76092,9 +76454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 requestBody: required: false content: @@ -76140,8 +76502,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *541 - '403': *542 + '400': *543 + '403': *544 '404': *6 '422': description: Unprocessable Entity @@ -76165,13 +76527,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 - *19 - *17 - - *543 - - *544 + - *545 + - *546 responses: '200': description: Response @@ -76179,7 +76541,7 @@ paths: application/json: schema: type: array - items: *535 + items: *537 examples: default: value: @@ -76218,7 +76580,7 @@ paths: end_column: 50 classifications: - source - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -76252,25 +76614,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *452 - - *453 - - *304 - - *305 + - *454 + - *455 + - *306 + - *307 - *19 - *17 - - *544 + - *546 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *528 + schema: *530 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &547 + schema: &549 type: string description: An identifier for the upload. examples: @@ -76292,23 +76654,23 @@ paths: application/json: schema: type: array - items: &548 + items: &550 type: object properties: - ref: *528 - commit_sha: &556 + ref: *530 + commit_sha: &558 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *545 + analysis_key: *547 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *546 + category: *548 error: type: string examples: @@ -76333,8 +76695,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *547 - tool: *534 + sarif_id: *549 + tool: *536 deletable: type: boolean warning: @@ -76396,7 +76758,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -76432,8 +76794,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76446,7 +76808,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *550 examples: response: summary: application/json response @@ -76500,7 +76862,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *536 + '403': *538 '404': *6 '422': description: Response if analysis could not be processed @@ -76587,8 +76949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76644,7 +77006,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *542 + '403': *544 '404': *6 '503': *184 x-github: @@ -76666,8 +77028,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -76675,7 +77037,7 @@ paths: application/json: schema: type: array - items: &549 + items: &551 title: CodeQL Database description: A CodeQL database. type: object @@ -76787,7 +77149,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -76816,8 +77178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: language in: path description: The language of the CodeQL database. @@ -76829,7 +77191,7 @@ paths: description: Response content: application/json: - schema: *549 + schema: *551 examples: default: value: @@ -76861,9 +77223,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &579 + '302': &581 description: Found - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -76885,8 +77247,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *452 - - *453 + - *454 + - *455 - name: language in: path description: The language of the CodeQL database. @@ -76896,7 +77258,7 @@ paths: responses: '204': description: Response - '403': *542 + '403': *544 '404': *6 '503': *184 x-github: @@ -76924,8 +77286,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -76934,10 +77296,11 @@ paths: type: object additionalProperties: false properties: - language: &550 + language: &552 type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -77013,7 +77376,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &554 + schema: &556 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -77023,7 +77386,7 @@ paths: description: The ID of the variant analysis. controller_repo: *113 actor: *4 - query_language: *550 + query_language: *552 query_pack_url: type: string description: The download url for the query pack. @@ -77071,7 +77434,7 @@ paths: items: type: object properties: - repository: &551 + repository: &553 title: Repository Identifier description: Repository Identifier type: object @@ -77113,7 +77476,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &555 + analysis_status: &557 type: string description: The new status of the CodeQL variant analysis repository task. @@ -77145,7 +77508,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &552 + access_mismatch_repos: &554 type: object properties: repository_count: @@ -77160,7 +77523,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *551 + items: *553 required: - repository_count - repositories @@ -77183,8 +77546,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *552 - over_limit_repos: *552 + no_codeql_db_repos: *554 + over_limit_repos: *554 required: - access_mismatch_repos - not_found_repos @@ -77200,7 +77563,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &553 + value: &555 summary: Default response value: id: 1 @@ -77352,10 +77715,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *553 + value: *555 repository_lists: summary: Response for a successful variant analysis submission - value: *553 + value: *555 '404': *6 '422': description: Unable to process variant analysis submission @@ -77383,8 +77746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *452 - - *453 + - *454 + - *455 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -77396,9 +77759,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *556 examples: - default: *553 + default: *555 '404': *6 '503': *184 x-github: @@ -77421,7 +77784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *452 + - *454 - name: repo in: path description: The name of the controller repository. @@ -77456,7 +77819,7 @@ paths: type: object properties: repository: *113 - analysis_status: *555 + analysis_status: *557 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -77581,8 +77944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -77675,7 +78038,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *536 + '403': *538 '404': *6 '503': *184 x-github: @@ -77696,8 +78059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -77791,7 +78154,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *542 + '403': *544 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -77862,8 +78225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -77871,7 +78234,7 @@ paths: schema: type: object properties: - commit_sha: *556 + commit_sha: *558 ref: type: string description: |- @@ -77931,7 +78294,7 @@ paths: schema: type: object properties: - id: *547 + id: *549 url: type: string description: The REST API URL for checking the status of the upload. @@ -77945,7 +78308,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *542 + '403': *544 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -77968,8 +78331,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *452 - - *453 + - *454 + - *455 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -78017,7 +78380,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *536 + '403': *538 '404': description: Not Found if the sarif id does not match any upload '503': *184 @@ -78042,8 +78405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -78124,8 +78487,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *452 - - *453 + - *454 + - *455 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -78253,8 +78616,8 @@ paths: parameters: - *17 - *19 - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -78270,7 +78633,7 @@ paths: type: integer codespaces: type: array - items: *360 + items: *362 examples: default: value: @@ -78568,8 +78931,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -78633,17 +78996,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '400': *14 '401': *23 '403': *27 @@ -78672,8 +79035,8 @@ paths: parameters: - *17 - *19 - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -78737,8 +79100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -78775,9 +79138,9 @@ paths: type: integer machines: type: array - items: *558 + items: *560 examples: - default: &796 + default: &798 value: total_count: 2 machines: @@ -78817,8 +79180,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *452 - - *453 + - *454 + - *455 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -78905,8 +79268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *452 - - *453 + - *454 + - *455 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -78975,8 +79338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -78994,7 +79357,7 @@ paths: type: integer secrets: type: array - items: &562 + items: &564 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -79015,7 +79378,7 @@ paths: - created_at - updated_at examples: - default: *559 + default: *561 headers: Link: *41 x-github: @@ -79038,16 +79401,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *560 + schema: *562 examples: - default: *561 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -79067,17 +79430,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '200': description: Response content: application/json: - schema: *562 + schema: *564 examples: - default: *563 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79097,8 +79460,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 requestBody: required: true @@ -79151,8 +79514,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '204': @@ -79181,8 +79544,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *452 - - *453 + - *454 + - *455 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -79220,7 +79583,7 @@ paths: application/json: schema: type: array - items: &564 + items: &566 title: Collaborator description: Collaborator type: object @@ -79413,8 +79776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *452 - - *453 + - *454 + - *455 - *132 responses: '204': @@ -79461,8 +79824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *452 - - *453 + - *454 + - *455 - *132 requestBody: required: false @@ -79489,7 +79852,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &637 + schema: &639 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -79717,8 +80080,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *452 - - *453 + - *454 + - *455 - *132 responses: '204': @@ -79750,8 +80113,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *452 - - *453 + - *454 + - *455 - *132 responses: '200': @@ -79772,7 +80135,7 @@ paths: user: anyOf: - type: 'null' - - *564 + - *566 required: - permission - role_name @@ -79826,8 +80189,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -79837,7 +80200,7 @@ paths: application/json: schema: type: array - items: &565 + items: &567 title: Commit Comment description: Commit Comment type: object @@ -79895,7 +80258,7 @@ paths: - created_at - updated_at examples: - default: &568 + default: &570 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -79954,17 +80317,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '200': description: Response content: application/json: - schema: *565 + schema: *567 examples: - default: &569 + default: &571 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80021,8 +80384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -80045,7 +80408,7 @@ paths: description: Response content: application/json: - schema: *565 + schema: *567 examples: default: value: @@ -80096,8 +80459,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '204': @@ -80119,8 +80482,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -80147,9 +80510,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 '404': *6 @@ -80170,8 +80533,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -80204,16 +80567,16 @@ paths: description: Reaction exists content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Reaction created content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '422': *15 x-github: githubCloudOnly: false @@ -80235,10 +80598,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *452 - - *453 + - *454 + - *455 - *218 - - *444 + - *446 responses: '204': description: Response @@ -80287,8 +80650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *452 - - *453 + - *454 + - *455 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -80344,9 +80707,9 @@ paths: application/json: schema: type: array - items: *566 + items: *568 examples: - default: &687 + default: &689 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -80440,9 +80803,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *452 - - *453 - - &567 + - *454 + - *455 + - &569 name: commit_sha description: The SHA of the commit. in: path @@ -80514,9 +80877,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *452 - - *453 - - *567 + - *454 + - *455 + - *569 - *17 - *19 responses: @@ -80526,9 +80889,9 @@ paths: application/json: schema: type: array - items: *565 + items: *567 examples: - default: *568 + default: *570 headers: Link: *41 x-github: @@ -80556,9 +80919,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *452 - - *453 - - *567 + - *454 + - *455 + - *569 requestBody: required: true content: @@ -80593,9 +80956,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *567 examples: - default: *569 + default: *571 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80623,9 +80986,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *452 - - *453 - - *567 + - *454 + - *455 + - *569 - *17 - *19 responses: @@ -80635,9 +80998,9 @@ paths: application/json: schema: type: array - items: *570 + items: *572 examples: - default: &679 + default: &681 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -81174,11 +81537,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *452 - - *453 + - *454 + - *455 - *19 - *17 - - &571 + - &573 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -81193,9 +81556,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *568 examples: - default: &665 + default: &667 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -81308,11 +81671,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *452 - - *453 - - *571 - - *572 + - *454 + - *455 - *573 + - *574 + - *575 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -81346,9 +81709,9 @@ paths: type: integer check_runs: type: array - items: *521 + items: *523 examples: - default: *574 + default: *576 headers: Link: *41 x-github: @@ -81373,9 +81736,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *452 - - *453 - - *571 + - *454 + - *455 + - *573 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -81383,7 +81746,7 @@ paths: schema: type: integer example: 1 - - *572 + - *574 - *17 - *19 responses: @@ -81401,7 +81764,7 @@ paths: type: integer check_suites: type: array - items: *525 + items: *527 examples: default: value: @@ -81601,9 +81964,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *452 - - *453 - - *571 + - *454 + - *455 + - *573 - *17 - *19 responses: @@ -81805,9 +82168,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *452 - - *453 - - *571 + - *454 + - *455 + - *573 - *17 - *19 responses: @@ -81817,7 +82180,7 @@ paths: application/json: schema: type: array - items: &741 + items: &743 title: Status description: The status of a commit. type: object @@ -81898,7 +82261,7 @@ paths: site_admin: false headers: Link: *41 - '301': *464 + '301': *466 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81926,8 +82289,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -81960,11 +82323,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *575 + - *577 code_of_conduct_file: anyOf: - type: 'null' - - &576 + - &578 title: Community Health File type: object properties: @@ -81984,19 +82347,19 @@ paths: contributing: anyOf: - type: 'null' - - *576 + - *578 readme: anyOf: - type: 'null' - - *576 + - *578 issue_template: anyOf: - type: 'null' - - *576 + - *578 pull_request_template: anyOf: - type: 'null' - - *576 + - *578 required: - code_of_conduct - code_of_conduct_file @@ -82125,8 +82488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *452 - - *453 + - *454 + - *455 - *19 - *17 - name: basehead @@ -82174,8 +82537,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *566 - merge_base_commit: *566 + base_commit: *568 + merge_base_commit: *568 status: type: string enum: @@ -82199,10 +82562,10 @@ paths: - 6 commits: type: array - items: *566 + items: *568 files: type: array - items: *577 + items: *579 required: - url - html_url @@ -82488,8 +82851,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *452 - - *453 + - *454 + - *455 - name: path description: path parameter in: path @@ -82642,7 +83005,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &578 + response-if-content-is-a-file: &580 summary: Response if content is a file value: type: file @@ -82779,7 +83142,7 @@ paths: - size - type - url - - &692 + - &694 title: Content File description: Content File type: object @@ -82997,7 +83360,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *578 + response-if-content-is-a-file: *580 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -83066,7 +83429,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *579 + '302': *581 '304': *35 x-github: githubCloudOnly: false @@ -83089,8 +83452,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *452 - - *453 + - *454 + - *455 - name: path description: path parameter in: path @@ -83185,7 +83548,7 @@ paths: description: Response content: application/json: - schema: &580 + schema: &582 title: File Commit description: File Commit type: object @@ -83341,7 +83704,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: example-for-creating-a-file: value: @@ -83395,7 +83758,7 @@ paths: schema: oneOf: - *3 - - &619 + - &621 description: Repository rule violation was detected type: object properties: @@ -83416,7 +83779,7 @@ paths: items: type: object properties: - placeholder_id: &733 + placeholder_id: &735 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -83448,8 +83811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *452 - - *453 + - *454 + - *455 - name: path description: path parameter in: path @@ -83510,7 +83873,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: default: value: @@ -83565,8 +83928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *452 - - *453 + - *454 + - *455 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -83690,22 +84053,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *452 - - *453 - - *320 - - *321 + - *454 + - *455 - *322 - *323 + - *324 + - *325 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *324 - - *581 - - *325 - *326 + - *583 + - *327 + - *328 - *104 - name: per_page description: The number of results per page (max 100). For more information, @@ -83724,7 +84087,7 @@ paths: application/json: schema: type: array - items: &584 + items: &586 type: object description: A Dependabot alert. properties: @@ -83774,7 +84137,7 @@ paths: - direct - transitive - - security_advisory: *582 + security_advisory: *584 security_vulnerability: *123 url: *124 html_url: *125 @@ -83805,7 +84168,7 @@ paths: dismissal. maxLength: 280 fixed_at: *129 - auto_dismissed_at: *583 + auto_dismissed_at: *585 required: - number - state @@ -84035,9 +84398,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *452 - - *453 - - &585 + - *454 + - *455 + - &587 name: alert_number in: path description: |- @@ -84052,7 +84415,7 @@ paths: description: Response content: application/json: - schema: *584 + schema: *586 examples: default: value: @@ -84165,9 +84528,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *452 - - *453 - - *585 + - *454 + - *455 + - *587 requestBody: required: true content: @@ -84212,7 +84575,7 @@ paths: description: Response content: application/json: - schema: *584 + schema: *586 examples: default: value: @@ -84341,8 +84704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -84360,7 +84723,7 @@ paths: type: integer secrets: type: array - items: &588 + items: &590 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -84414,16 +84777,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *586 + schema: *588 examples: - default: *587 + default: *589 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84443,15 +84806,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '200': description: Response content: application/json: - schema: *588 + schema: *590 examples: default: value: @@ -84477,8 +84840,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 requestBody: required: true @@ -84531,8 +84894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *452 - - *453 + - *454 + - *455 - *283 responses: '204': @@ -84555,8 +84918,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *452 - - *453 + - *454 + - *455 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -84730,8 +85093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -84991,8 +85354,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -85075,7 +85438,7 @@ paths: - version - url additionalProperties: false - metadata: &589 + metadata: &591 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -85114,7 +85477,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *589 + metadata: *591 resolved: type: object description: A collection of resolved package dependencies. @@ -85128,7 +85491,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *589 + metadata: *591 relationship: type: string description: A notation of whether a dependency is requested @@ -85261,8 +85624,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *452 - - *453 + - *454 + - *455 - name: sha description: The SHA recorded at creation time. in: query @@ -85303,9 +85666,9 @@ paths: application/json: schema: type: array - items: *590 + items: *592 examples: - default: *591 + default: *593 headers: Link: *41 x-github: @@ -85371,8 +85734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -85454,7 +85817,7 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: simple-example: summary: Simple example @@ -85527,9 +85890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *452 - - *453 - - &592 + - *454 + - *455 + - &594 name: deployment_id description: deployment_id parameter in: path @@ -85541,7 +85904,7 @@ paths: description: Response content: application/json: - schema: *590 + schema: *592 examples: default: value: @@ -85606,9 +85969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *452 - - *453 - - *592 + - *454 + - *455 + - *594 responses: '204': description: Response @@ -85630,9 +85993,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *452 - - *453 - - *592 + - *454 + - *455 + - *594 - *17 - *19 responses: @@ -85642,7 +86005,7 @@ paths: application/json: schema: type: array - items: &593 + items: &595 title: Deployment Status description: The status of a deployment. type: object @@ -85806,9 +86169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *452 - - *453 - - *592 + - *454 + - *455 + - *594 requestBody: required: true content: @@ -85883,9 +86246,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *595 examples: - default: &594 + default: &596 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -85941,9 +86304,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *452 - - *453 - - *592 + - *454 + - *455 + - *594 - name: status_id in: path required: true @@ -85954,9 +86317,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *595 examples: - default: *594 + default: *596 '404': *6 x-github: githubCloudOnly: false @@ -85983,12 +86346,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 - - *595 - - *596 + - *454 + - *455 - *597 - *598 + - *599 + - *600 - *17 - *19 responses: @@ -85998,9 +86361,9 @@ paths: application/json: schema: type: array - items: *599 + items: *601 examples: - default: *600 + default: *602 '404': *6 '403': *27 '500': *38 @@ -86024,8 +86387,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: alert_number in: path required: true @@ -86037,7 +86400,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *599 + schema: *601 examples: default: value: @@ -86093,8 +86456,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: alert_number in: path required: true @@ -86153,12 +86516,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 + - *454 + - *455 - *97 - *98 - *99 - - *601 + - *603 - *17 - *19 responses: @@ -86168,9 +86531,9 @@ paths: application/json: schema: type: array - items: *602 + items: *604 examples: - default: *603 + default: *605 '404': *6 '403': *27 '500': *38 @@ -86195,8 +86558,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: alert_number in: path required: true @@ -86208,7 +86571,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *602 + schema: *604 examples: default: value: @@ -86266,8 +86629,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: alert_number in: path required: true @@ -86336,8 +86699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -86394,8 +86757,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -86413,7 +86776,7 @@ paths: - 5 environments: type: array - items: &605 + items: &607 title: Environment description: Details of a deployment environment type: object @@ -86475,7 +86838,7 @@ paths: type: string examples: - wait_timer - wait_timer: &607 + wait_timer: &609 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -86517,11 +86880,11 @@ paths: items: type: object properties: - type: *604 + type: *606 reviewer: anyOf: - *4 - - *300 + - *302 required: - id - node_id @@ -86544,7 +86907,7 @@ paths: - id - node_id - type - deployment_branch_policy: &608 + deployment_branch_policy: &610 type: - object - 'null' @@ -86661,9 +87024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *452 - - *453 - - &606 + - *454 + - *455 + - &608 name: environment_name in: path required: true @@ -86676,9 +87039,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: - default: &609 + default: &611 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -86762,9 +87125,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 requestBody: required: false content: @@ -86774,7 +87137,7 @@ paths: - object - 'null' properties: - wait_timer: *607 + wait_timer: *609 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -86793,14 +87156,14 @@ paths: items: type: object properties: - type: *604 + type: *606 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *608 + deployment_branch_policy: *610 additionalProperties: false examples: default: @@ -86820,9 +87183,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: - default: *609 + default: *611 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -86846,9 +87209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 responses: '204': description: Default response @@ -86873,9 +87236,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *17 - *19 responses: @@ -86894,7 +87257,7 @@ paths: - 2 branch_policies: type: array - items: &610 + items: &612 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -86955,9 +87318,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 requestBody: required: true content: @@ -87005,9 +87368,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *612 examples: - example-wildcard: &611 + example-wildcard: &613 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -87049,10 +87412,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *452 - - *453 - - *606 - - &612 + - *454 + - *455 + - *608 + - &614 name: branch_policy_id in: path required: true @@ -87064,9 +87427,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *612 examples: - default: *611 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87085,10 +87448,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *452 - - *453 - - *606 - - *612 + - *454 + - *455 + - *608 + - *614 requestBody: required: true content: @@ -87117,9 +87480,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *612 examples: - default: *611 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87138,10 +87501,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *452 - - *453 - - *606 - - *612 + - *454 + - *455 + - *608 + - *614 responses: '204': description: Response @@ -87166,9 +87529,9 @@ 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: - - *606 - - *453 - - *452 + - *608 + - *455 + - *454 responses: '200': description: List of deployment protection rules @@ -87185,7 +87548,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &613 + items: &615 title: Deployment protection rule description: Deployment protection rule type: object @@ -87207,7 +87570,7 @@ paths: for the environment. examples: - true - app: &614 + app: &616 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -87310,9 +87673,9 @@ 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: - - *606 - - *453 - - *452 + - *608 + - *455 + - *454 requestBody: content: application/json: @@ -87333,9 +87696,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *613 + schema: *615 examples: - default: &615 + default: &617 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -87370,9 +87733,9 @@ 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: - - *606 - - *453 - - *452 + - *608 + - *455 + - *454 - *19 - *17 responses: @@ -87392,7 +87755,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *614 + items: *616 examples: default: value: @@ -87427,10 +87790,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *452 - - *453 - - *606 - - &616 + - *454 + - *455 + - *608 + - &618 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -87442,9 +87805,9 @@ paths: description: Response content: application/json: - schema: *613 + schema: *615 examples: - default: *615 + default: *617 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87465,10 +87828,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: - - *606 - - *453 - - *452 - - *616 + - *608 + - *455 + - *454 + - *618 responses: '204': description: Response @@ -87494,9 +87857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *17 - *19 responses: @@ -87514,9 +87877,9 @@ paths: type: integer secrets: type: array - items: *487 + items: *489 examples: - default: *488 + default: *490 headers: Link: *41 x-github: @@ -87541,17 +87904,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 responses: '200': description: Response content: application/json: - schema: *489 + schema: *491 examples: - default: *490 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87573,18 +87936,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *283 responses: '200': description: Response content: application/json: - schema: *487 + schema: *489 examples: - default: *617 + default: *619 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87606,9 +87969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *283 requestBody: required: true @@ -87666,9 +88029,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *283 responses: '204': @@ -87694,10 +88057,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *452 - - *453 - - *606 - - *474 + - *454 + - *455 + - *608 + - *476 - *19 responses: '200': @@ -87714,9 +88077,9 @@ paths: type: integer variables: type: array - items: *491 + items: *493 examples: - default: *492 + default: *494 headers: Link: *41 x-github: @@ -87739,9 +88102,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 requestBody: required: true content: @@ -87793,18 +88156,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *452 - - *453 - - *606 + - *454 + - *455 + - *608 - *286 responses: '200': description: Response content: application/json: - schema: *491 + schema: *493 examples: - default: *618 + default: *620 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87825,10 +88188,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *452 - - *453 + - *454 + - *455 - *286 - - *606 + - *608 requestBody: required: true content: @@ -87870,10 +88233,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *452 - - *453 + - *454 + - *455 - *286 - - *606 + - *608 responses: '204': description: Response @@ -87895,8 +88258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -87964,8 +88327,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *452 - - *453 + - *454 + - *455 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -88124,8 +88487,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -88158,9 +88521,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *465 + default: *467 '400': *14 '422': *15 '403': *27 @@ -88181,8 +88544,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -88242,7 +88605,7 @@ paths: schema: oneOf: - *248 - - *619 + - *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88267,8 +88630,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *452 - - *453 + - *454 + - *455 - name: file_sha in: path required: true @@ -88368,8 +88731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -88478,7 +88841,7 @@ paths: description: Response content: application/json: - schema: &620 + schema: &622 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -88705,15 +89068,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *452 - - *453 - - *567 + - *454 + - *455 + - *569 responses: '200': description: Response content: application/json: - schema: *620 + schema: *622 examples: default: value: @@ -88769,9 +89132,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *452 - - *453 - - &621 + - *454 + - *455 + - &623 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. @@ -88788,7 +89151,7 @@ paths: application/json: schema: type: array - items: &622 + items: &624 title: Git Reference description: Git references within a repository type: object @@ -88864,17 +89227,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *452 - - *453 - - *621 + - *454 + - *455 + - *623 responses: '200': description: Response content: application/json: - schema: *622 + schema: *624 examples: - default: &623 + default: &625 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -88903,8 +89266,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -88933,9 +89296,9 @@ paths: description: Response content: application/json: - schema: *622 + schema: *624 examples: - default: *623 + default: *625 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -88961,9 +89324,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *452 - - *453 - - *621 + - *454 + - *455 + - *623 requestBody: required: true content: @@ -88992,9 +89355,9 @@ paths: description: Response content: application/json: - schema: *622 + schema: *624 examples: - default: *623 + default: *625 '422': *15 '409': *112 x-github: @@ -89012,9 +89375,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *452 - - *453 - - *621 + - *454 + - *455 + - *623 responses: '204': description: Response @@ -89069,8 +89432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -89137,7 +89500,7 @@ paths: description: Response content: application/json: - schema: &625 + schema: &627 title: Git Tag description: Metadata for a Git tag type: object @@ -89193,7 +89556,7 @@ paths: - sha - type - url - verification: *624 + verification: *626 required: - sha - url @@ -89203,7 +89566,7 @@ paths: - tag - message examples: - default: &626 + default: &628 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -89276,8 +89639,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *452 - - *453 + - *454 + - *455 - name: tag_sha in: path required: true @@ -89288,9 +89651,9 @@ paths: description: Response content: application/json: - schema: *625 + schema: *627 examples: - default: *626 + default: *628 '404': *6 '409': *112 x-github: @@ -89314,8 +89677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -89389,7 +89752,7 @@ paths: description: Response content: application/json: - schema: &627 + schema: &629 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -89491,8 +89854,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *452 - - *453 + - *454 + - *455 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -89515,7 +89878,7 @@ paths: description: Response content: application/json: - schema: *627 + schema: *629 examples: default-response: summary: Default response @@ -89574,8 +89937,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -89585,7 +89948,7 @@ paths: application/json: schema: type: array - items: &628 + items: &630 title: Webhook description: Webhooks for repositories. type: object @@ -89648,7 +90011,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &874 + last_response: &876 title: Hook Response type: object properties: @@ -89725,8 +90088,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -89779,9 +90142,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *630 examples: - default: &629 + default: &631 value: type: Repository id: 12345678 @@ -89829,17 +90192,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 responses: '200': description: Response content: application/json: - schema: *628 + schema: *630 examples: - default: *629 + default: *631 '404': *6 x-github: githubCloudOnly: false @@ -89859,9 +90222,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 requestBody: required: true content: @@ -89906,9 +90269,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *630 examples: - default: *629 + default: *631 '422': *15 '404': *6 x-github: @@ -89929,9 +90292,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 responses: '204': description: Response @@ -89955,9 +90318,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 responses: '200': description: Response @@ -89984,9 +90347,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 requestBody: required: false content: @@ -90030,11 +90393,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 - *17 - - *333 + - *335 responses: '200': description: Response @@ -90042,9 +90405,9 @@ paths: application/json: schema: type: array - items: *334 + items: *336 examples: - default: *335 + default: *337 '400': *14 '422': *15 x-github: @@ -90063,18 +90426,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 - *16 responses: '200': description: Response content: application/json: - schema: *336 + schema: *338 examples: - default: *337 + default: *339 '400': *14 '422': *15 x-github: @@ -90093,9 +90456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 - *16 responses: '202': *37 @@ -90118,9 +90481,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 responses: '204': description: Response @@ -90145,9 +90508,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *452 - - *453 - - *332 + - *454 + - *455 + - *334 responses: '204': description: Response @@ -90170,8 +90533,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response if immutable releases are enabled @@ -90219,8 +90582,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': *144 '409': *112 @@ -90240,8 +90603,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': *144 '409': *112 @@ -90298,14 +90661,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: &630 + schema: &632 title: Import description: A repository import from an external source. type: object @@ -90412,7 +90775,7 @@ paths: - html_url - authors_url examples: - default: &633 + default: &635 value: vcs: subversion use_lfs: true @@ -90428,7 +90791,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': &631 + '503': &633 description: Unavailable due to service under maintenance. content: application/json: @@ -90457,8 +90820,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -90506,7 +90869,7 @@ paths: description: Response content: application/json: - schema: *630 + schema: *632 examples: default: value: @@ -90531,7 +90894,7 @@ paths: type: string '422': *15 '404': *6 - '503': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90559,8 +90922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -90612,7 +90975,7 @@ paths: description: Response content: application/json: - schema: *630 + schema: *632 examples: example-1: summary: Example 1 @@ -90660,7 +91023,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': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90683,12 +91046,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response - '503': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90714,9 +91077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *452 - - *453 - - &817 + - *454 + - *455 + - &819 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -90730,7 +91093,7 @@ paths: application/json: schema: type: array - items: &632 + items: &634 title: Porter Author description: Porter Author type: object @@ -90784,7 +91147,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': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90809,8 +91172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *452 - - *453 + - *454 + - *455 - name: author_id in: path required: true @@ -90840,7 +91203,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *634 examples: default: value: @@ -90853,7 +91216,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90877,8 +91240,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -90919,7 +91282,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90947,8 +91310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -90975,11 +91338,11 @@ paths: description: Response content: application/json: - schema: *630 + schema: *632 examples: - default: *633 + default: *635 '422': *15 - '503': *631 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91002,8 +91365,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -91011,8 +91374,8 @@ paths: application/json: schema: *20 examples: - default: *634 - '301': *464 + default: *636 + '301': *466 '404': *6 x-github: githubCloudOnly: false @@ -91032,8 +91395,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -91041,12 +91404,12 @@ paths: application/json: schema: anyOf: - - *350 + - *352 - type: object properties: {} additionalProperties: false examples: - default: &636 + default: &638 value: limit: collaborators_only origin: repository @@ -91071,13 +91434,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: application/json: - schema: *635 + schema: *637 examples: default: summary: Example request body @@ -91089,9 +91452,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *352 examples: - default: *636 + default: *638 '409': description: Response x-github: @@ -91113,8 +91476,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -91137,8 +91500,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -91148,9 +91511,9 @@ paths: application/json: schema: type: array - items: *637 + items: *639 examples: - default: &810 + default: &812 value: - id: 1 repository: @@ -91281,9 +91644,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *452 - - *453 - - *354 + - *454 + - *455 + - *356 requestBody: required: false content: @@ -91312,7 +91675,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *639 examples: default: value: @@ -91443,9 +91806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *452 - - *453 - - *354 + - *454 + - *455 + - *356 responses: '204': description: Response @@ -91476,8 +91839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *452 - - *453 + - *454 + - *455 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -91525,7 +91888,7 @@ paths: required: false schema: type: string - - *358 + - *360 - name: sort description: What to sort results by. in: query @@ -91550,7 +91913,7 @@ paths: type: array items: *219 examples: - default: &645 + default: &647 value: - id: 1 node_id: MDU6SXNzdWUx @@ -91698,7 +92061,7 @@ paths: state_reason: completed headers: Link: *41 - '301': *464 + '301': *466 '422': *15 '404': *6 x-github: @@ -91727,8 +92090,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -91820,7 +92183,7 @@ paths: application/json: schema: *219 examples: - default: &642 + default: &644 value: id: 1 node_id: MDU6SXNzdWUx @@ -91976,7 +92339,7 @@ paths: '422': *15 '503': *184 '404': *6 - '410': *638 + '410': *640 x-github: triggersNotification: true githubCloudOnly: false @@ -92004,8 +92367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *228 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -92026,9 +92389,9 @@ paths: application/json: schema: type: array - items: *639 + items: *641 examples: - default: &644 + default: &646 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92086,17 +92449,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '200': description: Response content: application/json: - schema: *639 + schema: *641 examples: - default: &640 + default: &642 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92150,8 +92513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -92174,9 +92537,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: - default: *640 + default: *642 '422': *15 x-github: githubCloudOnly: false @@ -92194,8 +92557,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '204': @@ -92216,8 +92579,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -92244,9 +92607,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 '404': *6 @@ -92267,8 +92630,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -92301,16 +92664,16 @@ paths: description: Reaction exists content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Reaction created content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '422': *15 x-github: githubCloudOnly: false @@ -92332,10 +92695,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *452 - - *453 + - *454 + - *455 - *218 - - *444 + - *446 responses: '204': description: Response @@ -92355,8 +92718,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -92366,7 +92729,7 @@ paths: application/json: schema: type: array - items: &641 + items: &643 title: Issue Event description: Issue Event type: object @@ -92446,7 +92809,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *300 + requested_team: *302 dismissed_review: title: Issue Event Dismissed Review type: object @@ -92705,8 +93068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *452 - - *453 + - *454 + - *455 - name: event_id in: path required: true @@ -92717,7 +93080,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *643 examples: default: value: @@ -92910,7 +93273,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *638 + '410': *640 '403': *27 x-github: githubCloudOnly: false @@ -92944,9 +93307,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *452 - - *453 - - &643 + - *454 + - *455 + - &645 name: issue_number description: The number that identifies the issue. in: path @@ -92960,10 +93323,10 @@ paths: application/json: schema: *219 examples: - default: *642 - '301': *464 + default: *644 + '301': *466 '404': *6 - '410': *638 + '410': *640 '304': *35 x-github: githubCloudOnly: false @@ -92988,9 +93351,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: false content: @@ -93111,13 +93474,13 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 '422': *15 '503': *184 '403': *27 - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93135,9 +93498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: false content: @@ -93165,7 +93528,7 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93181,9 +93544,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: content: application/json: @@ -93210,7 +93573,7 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93232,9 +93595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - name: assignee in: path required: true @@ -93274,9 +93637,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *209 - *17 - *19 @@ -93287,13 +93650,13 @@ paths: application/json: schema: type: array - items: *639 + items: *641 examples: - default: *644 + default: *646 headers: Link: *41 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93322,9 +93685,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -93346,16 +93709,16 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: - default: *640 + default: *642 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *638 + '410': *640 '422': *15 '404': *6 x-github: @@ -93383,9 +93746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -93397,12 +93760,12 @@ paths: type: array items: *219 examples: - default: *645 + default: *647 headers: Link: *41 - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93430,9 +93793,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -93456,15 +93819,15 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *464 + '301': *466 '403': *27 - '410': *638 + '410': *640 '422': *15 '404': *6 x-github: @@ -93495,9 +93858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -93511,13 +93874,13 @@ paths: application/json: schema: *219 examples: - default: *642 - '301': *464 + default: *644 + '301': *466 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *638 + '410': *640 x-github: triggersNotification: true githubCloudOnly: false @@ -93543,9 +93906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -93557,12 +93920,12 @@ paths: type: array items: *219 examples: - default: *645 + default: *647 headers: Link: *41 - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93579,9 +93942,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -93595,7 +93958,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &648 + - &650 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -93644,7 +94007,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &649 + - &651 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -93772,7 +94135,7 @@ paths: - performed_via_github_app - assignee - assigner - - &650 + - &652 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -93818,7 +94181,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &651 + - &653 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -93864,7 +94227,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &652 + - &654 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -93913,7 +94276,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &653 + - &655 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -93942,7 +94305,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *300 + requested_team: *302 requested_reviewer: *4 required: - review_requester @@ -93955,7 +94318,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &654 + - &656 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -93984,7 +94347,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *300 + requested_team: *302 requested_reviewer: *4 required: - review_requester @@ -93997,7 +94360,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &655 + - &657 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -94053,7 +94416,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &656 + - &658 title: Locked Issue Event description: Locked Issue Event type: object @@ -94098,7 +94461,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &657 + - &659 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -94159,7 +94522,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &658 + - &660 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -94220,7 +94583,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &659 + - &661 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -94281,7 +94644,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &660 + - &662 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -94374,7 +94737,7 @@ paths: color: red headers: Link: *41 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94391,9 +94754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -94403,7 +94766,7 @@ paths: application/json: schema: type: array - items: &646 + items: &648 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -94458,7 +94821,7 @@ paths: - color - default examples: - default: &647 + default: &649 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94476,9 +94839,9 @@ paths: default: false headers: Link: *41 - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94495,9 +94858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: false content: @@ -94556,12 +94919,12 @@ paths: application/json: schema: type: array - items: *646 + items: *648 examples: - default: *647 - '301': *464 + default: *649 + '301': *466 '404': *6 - '410': *638 + '410': *640 '422': *15 x-github: githubCloudOnly: false @@ -94578,9 +94941,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: false content: @@ -94640,12 +95003,12 @@ paths: application/json: schema: type: array - items: *646 + items: *648 examples: - default: *647 - '301': *464 + default: *649 + '301': *466 '404': *6 - '410': *638 + '410': *640 '422': *15 x-github: githubCloudOnly: false @@ -94662,15 +95025,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 responses: '204': description: Response - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94689,9 +95052,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - name: name in: path required: true @@ -94704,7 +95067,7 @@ paths: application/json: schema: type: array - items: *646 + items: *648 examples: default: value: @@ -94715,9 +95078,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *464 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94737,9 +95100,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: false content: @@ -94768,7 +95131,7 @@ paths: '204': description: Response '403': *27 - '410': *638 + '410': *640 '404': *6 '422': *15 x-github: @@ -94786,9 +95149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 responses: '204': description: Response @@ -94818,9 +95181,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 responses: '200': description: Response @@ -94828,10 +95191,10 @@ paths: application/json: schema: *219 examples: - default: *642 - '301': *464 + default: *644 + '301': *466 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94848,9 +95211,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - 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. @@ -94876,13 +95239,13 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94900,9 +95263,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -94934,16 +95297,16 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '422': *15 x-github: githubCloudOnly: false @@ -94965,10 +95328,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *452 - - *453 - - *643 - - *444 + - *454 + - *455 + - *645 + - *446 responses: '204': description: Response @@ -94997,9 +95360,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -95023,7 +95386,7 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -95056,9 +95419,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -95070,11 +95433,11 @@ paths: type: array items: *219 examples: - default: *645 + default: *647 headers: Link: *41 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95102,9 +95465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -95133,14 +95496,14 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *638 + '410': *640 '422': *15 '404': *6 x-github: @@ -95160,9 +95523,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 requestBody: required: true content: @@ -95195,7 +95558,7 @@ paths: application/json: schema: *219 examples: - default: *642 + default: *644 '403': *27 '404': *6 '422': *7 @@ -95217,9 +95580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *452 - - *453 - - *643 + - *454 + - *455 + - *645 - *17 - *19 responses: @@ -95234,8 +95597,6 @@ paths: description: Timeline Event type: object anyOf: - - *648 - - *649 - *650 - *651 - *652 @@ -95247,6 +95608,8 @@ paths: - *658 - *659 - *660 + - *661 + - *662 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -95575,7 +95938,7 @@ paths: type: string comments: type: array - items: &681 + items: &683 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -95813,7 +96176,7 @@ paths: type: string comments: type: array - items: *565 + items: *567 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -96088,7 +96451,7 @@ paths: headers: Link: *41 '404': *6 - '410': *638 + '410': *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96105,8 +96468,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -96116,7 +96479,7 @@ paths: application/json: schema: type: array - items: &661 + items: &663 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -96184,8 +96547,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -96221,9 +96584,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *663 examples: - default: &662 + default: &664 value: id: 1 key: ssh-rsa AAA... @@ -96257,9 +96620,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *452 - - *453 - - &663 + - *454 + - *455 + - &665 name: key_id description: The unique identifier of the key. in: path @@ -96271,9 +96634,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *663 examples: - default: *662 + default: *664 '404': *6 x-github: githubCloudOnly: false @@ -96291,9 +96654,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *452 - - *453 - - *663 + - *454 + - *455 + - *665 responses: '204': description: Response @@ -96313,8 +96676,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -96324,9 +96687,9 @@ paths: application/json: schema: type: array - items: *646 + items: *648 examples: - default: *647 + default: *649 headers: Link: *41 '404': *6 @@ -96347,8 +96710,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -96384,9 +96747,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *648 examples: - default: &664 + default: &666 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96418,8 +96781,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *452 - - *453 + - *454 + - *455 - name: name in: path required: true @@ -96430,9 +96793,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *648 examples: - default: *664 + default: *666 '404': *6 x-github: githubCloudOnly: false @@ -96449,8 +96812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *452 - - *453 + - *454 + - *455 - name: name in: path required: true @@ -96489,7 +96852,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *648 examples: default: value: @@ -96515,8 +96878,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *452 - - *453 + - *454 + - *455 - name: name in: path required: true @@ -96542,8 +96905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -96579,8 +96942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '202': *37 '403': @@ -96608,8 +96971,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -96635,9 +96998,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *452 - - *453 - - *543 + - *454 + - *455 + - *545 responses: '200': description: Response @@ -96784,8 +97147,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -96850,8 +97213,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -96885,9 +97248,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *566 + schema: *568 examples: - default: *665 + default: *667 '204': description: Response when already merged '404': @@ -96912,8 +97275,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *452 - - *453 + - *454 + - *455 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -96954,7 +97317,7 @@ paths: application/json: schema: type: array - items: *389 + items: *391 examples: default: value: @@ -97010,8 +97373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -97051,9 +97414,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: &666 + default: &668 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -97112,9 +97475,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *452 - - *453 - - &667 + - *454 + - *455 + - &669 name: milestone_number description: The number that identifies the milestone. in: path @@ -97126,9 +97489,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *666 + default: *668 '404': *6 x-github: githubCloudOnly: false @@ -97145,9 +97508,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *452 - - *453 - - *667 + - *454 + - *455 + - *669 requestBody: required: false content: @@ -97185,9 +97548,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *391 examples: - default: *666 + default: *668 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97203,9 +97566,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *452 - - *453 - - *667 + - *454 + - *455 + - *669 responses: '204': description: Response @@ -97226,9 +97589,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *452 - - *453 - - *667 + - *454 + - *455 + - *669 - *17 - *19 responses: @@ -97238,9 +97601,9 @@ paths: application/json: schema: type: array - items: *646 + items: *648 examples: - default: *647 + default: *649 headers: Link: *41 x-github: @@ -97259,12 +97622,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *452 - - *453 - - *668 - - *669 - - *209 + - *454 + - *455 - *670 + - *671 + - *209 + - *672 - *17 - *19 responses: @@ -97276,7 +97639,7 @@ paths: type: array items: *231 examples: - default: *671 + default: *673 headers: Link: *41 x-github: @@ -97300,8 +97663,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -97359,14 +97722,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: &672 + schema: &674 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -97510,7 +97873,7 @@ paths: - custom_404 - public examples: - default: &673 + default: &675 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -97551,8 +97914,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -97607,9 +97970,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *674 examples: - default: *673 + default: *675 '422': *15 '409': *112 x-github: @@ -97632,8 +97995,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -97741,8 +98104,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -97768,8 +98131,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -97779,7 +98142,7 @@ paths: application/json: schema: type: array - items: &674 + items: &676 title: Page Build description: Page Build type: object @@ -97871,8 +98234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *452 - - *453 + - *454 + - *455 responses: '201': description: Response @@ -97919,16 +98282,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *674 + schema: *676 examples: - default: &675 + default: &677 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -97976,8 +98339,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *452 - - *453 + - *454 + - *455 - name: build_id in: path required: true @@ -97988,9 +98351,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *676 examples: - default: *675 + default: *677 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98010,8 +98373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -98119,9 +98482,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *452 - - *453 - - &676 + - *454 + - *455 + - &678 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -98179,9 +98542,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *452 - - *453 - - *676 + - *454 + - *455 + - *678 responses: '204': *144 '404': *6 @@ -98208,8 +98571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -98504,8 +98867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Private vulnerability reporting status @@ -98542,8 +98905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': *144 '422': *14 @@ -98564,8 +98927,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': *144 '422': *14 @@ -98587,8 +98950,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -98598,7 +98961,7 @@ paths: type: array items: *145 examples: - default: *677 + default: *679 '403': *27 '404': *6 x-github: @@ -98620,8 +98983,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -98637,7 +99000,7 @@ paths: required: - properties examples: - default: *678 + default: *680 responses: '204': description: No Content when custom property values are successfully created @@ -98675,8 +99038,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *452 - - *453 + - *454 + - *455 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -98736,9 +99099,9 @@ paths: application/json: schema: type: array - items: *570 + items: *572 examples: - default: *679 + default: *681 headers: Link: *41 '304': *35 @@ -98770,8 +99133,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -98838,7 +99201,7 @@ paths: description: Response content: application/json: - schema: &683 + schema: &685 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -98967,7 +99330,7 @@ paths: milestone: anyOf: - type: 'null' - - *389 + - *391 active_lock_reason: type: - string @@ -99022,7 +99385,7 @@ paths: type: - array - 'null' - items: *368 + items: *370 head: type: object properties: @@ -99060,14 +99423,14 @@ paths: _links: type: object properties: - comments: *390 - commits: *390 - statuses: *390 - html: *390 - issue: *390 - review_comments: *390 - review_comment: *390 - self: *390 + comments: *392 + commits: *392 + statuses: *392 + html: *392 + issue: *392 + review_comments: *392 + review_comment: *392 + self: *392 required: - comments - commits @@ -99078,7 +99441,7 @@ paths: - review_comment - self author_association: *206 - auto_merge: *680 + auto_merge: *682 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -99180,7 +99543,7 @@ paths: - merged_by - review_comments examples: - default: &684 + default: &686 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -99707,8 +100070,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: sort in: query required: false @@ -99737,9 +100100,9 @@ paths: application/json: schema: type: array - items: *681 + items: *683 examples: - default: &686 + default: &688 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -99816,17 +100179,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '200': description: Response content: application/json: - schema: *681 + schema: *683 examples: - default: &682 + default: &684 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -99901,8 +100264,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -99925,9 +100288,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *683 examples: - default: *682 + default: *684 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99943,8 +100306,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *452 - - *453 + - *454 + - *455 - *218 responses: '204': @@ -99966,8 +100329,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -99994,9 +100357,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 '404': *6 @@ -100017,8 +100380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *452 - - *453 + - *454 + - *455 - *218 requestBody: required: true @@ -100051,16 +100414,16 @@ paths: description: Reaction exists content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Reaction created content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '422': *15 x-github: githubCloudOnly: false @@ -100082,10 +100445,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *452 - - *453 + - *454 + - *455 - *218 - - *444 + - *446 responses: '204': description: Response @@ -100128,9 +100491,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *452 - - *453 - - &685 + - *454 + - *455 + - &687 name: pull_number description: The number that identifies the pull request. in: path @@ -100143,9 +100506,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *683 + schema: *685 examples: - default: *684 + default: *686 '304': *35 '404': *6 '406': @@ -100180,9 +100543,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: false content: @@ -100224,9 +100587,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *685 examples: - default: *684 + default: *686 '422': *15 '403': *27 x-github: @@ -100248,9 +100611,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: true content: @@ -100311,17 +100674,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '401': *23 '403': *27 '404': *6 @@ -100351,9 +100714,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 - *228 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -100374,9 +100737,9 @@ paths: application/json: schema: type: array - items: *681 + items: *683 examples: - default: *686 + default: *688 headers: Link: *41 x-github: @@ -100409,9 +100772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: true content: @@ -100517,7 +100880,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *683 examples: example-for-a-multi-line-comment: value: @@ -100605,9 +100968,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 - *218 requestBody: required: true @@ -100630,7 +100993,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *683 examples: default: value: @@ -100716,9 +101079,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 - *17 - *19 responses: @@ -100728,9 +101091,9 @@ paths: application/json: schema: type: array - items: *566 + items: *568 examples: - default: *687 + default: *689 headers: Link: *41 x-github: @@ -100760,9 +101123,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 - *17 - *19 responses: @@ -100772,7 +101135,7 @@ paths: application/json: schema: type: array - items: *577 + items: *579 examples: default: value: @@ -100810,9 +101173,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 responses: '204': description: Response if pull request has been merged @@ -100835,9 +101198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: false content: @@ -100949,9 +101312,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 responses: '200': description: Response @@ -100967,7 +101330,7 @@ paths: items: *4 teams: type: array - items: *300 + items: *302 required: - users - teams @@ -101026,9 +101389,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: false content: @@ -101065,7 +101428,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *572 examples: default: value: @@ -101601,9 +101964,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: true content: @@ -101637,7 +102000,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *572 examples: default: value: @@ -102142,9 +102505,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 - *17 - *19 responses: @@ -102154,7 +102517,7 @@ paths: application/json: schema: type: array - items: &688 + items: &690 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -102310,9 +102673,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: false content: @@ -102402,9 +102765,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: - default: &690 + default: &692 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102467,10 +102830,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 - - &689 + - *454 + - *455 + - *687 + - &691 name: review_id description: The unique identifier of the review. in: path @@ -102482,9 +102845,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: - default: &691 + default: &693 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102543,10 +102906,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 - - *689 + - *454 + - *455 + - *687 + - *691 requestBody: required: true content: @@ -102569,7 +102932,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: default: value: @@ -102631,18 +102994,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 - - *689 + - *454 + - *455 + - *687 + - *691 responses: '200': description: Response content: application/json: - schema: *688 + schema: *690 examples: - default: *690 + default: *692 '422': *7 '404': *6 x-github: @@ -102669,10 +103032,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *452 - - *453 - - *685 - - *689 + - *454 + - *455 + - *687 + - *691 - *17 - *19 responses: @@ -102770,9 +103133,9 @@ paths: _links: type: object properties: - self: *390 - html: *390 - pull_request: *390 + self: *392 + html: *392 + pull_request: *392 required: - self - html @@ -102930,10 +103293,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 - - *689 + - *454 + - *455 + - *687 + - *691 requestBody: required: true content: @@ -102962,7 +103325,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: default: value: @@ -103025,10 +103388,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *452 - - *453 - - *685 - - *689 + - *454 + - *455 + - *687 + - *691 requestBody: required: true content: @@ -103063,9 +103426,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *690 examples: - default: *691 + default: *693 '404': *6 '422': *7 '403': *27 @@ -103087,9 +103450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *452 - - *453 - - *685 + - *454 + - *455 + - *687 requestBody: required: false content: @@ -103153,8 +103516,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *452 - - *453 + - *454 + - *455 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -103167,9 +103530,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *694 examples: - default: &693 + default: &695 value: type: file encoding: base64 @@ -103211,8 +103574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *452 - - *453 + - *454 + - *455 - name: dir description: The alternate path to look for a README file in: path @@ -103232,9 +103595,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *694 examples: - default: *693 + default: *695 '404': *6 '422': *15 x-github: @@ -103256,8 +103619,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -103267,7 +103630,7 @@ paths: application/json: schema: type: array - items: &694 + items: &696 title: Release description: A release. type: object @@ -103349,7 +103712,7 @@ paths: author: *4 assets: type: array - items: &695 + items: &697 title: Release Asset description: Data related to a release. type: object @@ -103536,8 +103899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -103613,9 +103976,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: &698 + default: &700 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -103720,9 +104083,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *452 - - *453 - - &696 + - *454 + - *455 + - &698 name: asset_id description: The unique identifier of the asset. in: path @@ -103734,9 +104097,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *697 examples: - default: &697 + default: &699 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 @@ -103771,7 +104134,7 @@ paths: type: User site_admin: false '404': *6 - '302': *579 + '302': *581 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103787,9 +104150,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *452 - - *453 - - *696 + - *454 + - *455 + - *698 requestBody: required: false content: @@ -103818,9 +104181,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *697 examples: - default: *697 + default: *699 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103836,9 +104199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *452 - - *453 - - *696 + - *454 + - *455 + - *698 responses: '204': description: Response @@ -103862,8 +104225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -103949,16 +104312,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: *698 + default: *700 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103975,8 +104338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *452 - - *453 + - *454 + - *455 - name: tag description: tag parameter in: path @@ -103989,9 +104352,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: *698 + default: *700 '404': *6 x-github: githubCloudOnly: false @@ -104013,9 +104376,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *452 - - *453 - - &699 + - *454 + - *455 + - &701 name: release_id description: The unique identifier of the release. in: path @@ -104029,9 +104392,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: *694 + schema: *696 examples: - default: *698 + default: *700 '401': description: Unauthorized x-github: @@ -104049,9 +104412,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 requestBody: required: false content: @@ -104115,9 +104478,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *696 examples: - default: *698 + default: *700 '404': description: Not Found if the discussion category name is invalid content: @@ -104138,9 +104501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 responses: '204': description: Response @@ -104160,9 +104523,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 - *17 - *19 responses: @@ -104172,7 +104535,7 @@ paths: application/json: schema: type: array - items: *695 + items: *697 examples: default: value: @@ -104254,9 +104617,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 - name: name in: query required: true @@ -104282,7 +104645,7 @@ paths: description: Response for successful upload content: application/json: - schema: *695 + schema: *697 examples: response-for-successful-upload: value: @@ -104337,9 +104700,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 - 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. @@ -104363,9 +104726,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 '404': *6 @@ -104386,9 +104749,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *452 - - *453 - - *699 + - *454 + - *455 + - *701 requestBody: required: true content: @@ -104418,16 +104781,16 @@ paths: description: Reaction exists content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '201': description: Reaction created content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 '422': *15 x-github: githubCloudOnly: false @@ -104449,10 +104812,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *452 - - *453 - - *699 - - *444 + - *454 + - *455 + - *701 + - *446 responses: '204': description: Response @@ -104476,9 +104839,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *452 - - *453 - - *509 + - *454 + - *455 + - *511 - *17 - *19 responses: @@ -104495,7 +104858,7 @@ paths: oneOf: - allOf: - *159 - - &700 + - &702 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -104516,67 +104879,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *160 - - *700 + - *702 - allOf: - *161 - - *700 + - *702 - allOf: - *162 - - *700 + - *702 - allOf: - - *701 - - *700 + - *703 + - *702 - allOf: - *163 - - *700 + - *702 - allOf: - *164 - - *700 + - *702 - allOf: - *165 - - *700 + - *702 - allOf: - *166 - - *700 + - *702 - allOf: - *167 - - *700 + - *702 - allOf: - *168 - - *700 + - *702 - allOf: - *169 - - *700 + - *702 - allOf: - *170 - - *700 + - *702 - allOf: - *171 - - *700 + - *702 - allOf: - *172 - - *700 + - *702 - allOf: - *173 - - *700 + - *702 - allOf: - *174 - - *700 + - *702 - allOf: - *175 - - *700 + - *702 - allOf: - *176 - - *700 + - *702 - allOf: - *177 - - *700 + - *702 - allOf: - *178 - - *700 + - *702 - allOf: + - *704 - *702 - - *700 examples: default: value: @@ -104615,8 +104978,8 @@ paths: category: repos subcategory: rules parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 - name: includes_parents @@ -104627,7 +104990,7 @@ paths: schema: type: boolean default: true - - *703 + - *705 responses: '200': description: Response @@ -104682,8 +105045,8 @@ paths: category: repos subcategory: rules parameters: - - *452 - - *453 + - *454 + - *455 requestBody: description: Request body required: true @@ -104712,7 +105075,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *704 + items: *706 required: - name - enforcement @@ -104745,7 +105108,7 @@ paths: application/json: schema: *179 examples: - default: &713 + default: &715 value: id: 42 name: super cool ruleset @@ -104792,12 +105155,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *452 - - *453 - - *705 - - *99 - - *706 + - *454 + - *455 - *707 + - *99 + - *708 + - *709 - *17 - *19 responses: @@ -104805,9 +105168,9 @@ paths: description: Response content: application/json: - schema: *708 + schema: *710 examples: - default: *709 + default: *711 '404': *6 '500': *38 x-github: @@ -104828,17 +105191,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *452 - - *453 - - *710 + - *454 + - *455 + - *712 responses: '200': description: Response content: application/json: - schema: *711 + schema: *713 examples: - default: *712 + default: *714 '404': *6 '500': *38 x-github: @@ -104866,8 +105229,8 @@ paths: category: repos subcategory: rules parameters: - - *452 - - *453 + - *454 + - *455 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104889,7 +105252,7 @@ paths: application/json: schema: *179 examples: - default: *713 + default: *715 '404': *6 '500': *38 put: @@ -104907,8 +105270,8 @@ paths: category: repos subcategory: rules parameters: - - *452 - - *453 + - *454 + - *455 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104942,7 +105305,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *704 + items: *706 examples: default: value: @@ -104972,7 +105335,7 @@ paths: application/json: schema: *179 examples: - default: *713 + default: *715 '404': *6 '500': *38 delete: @@ -104990,8 +105353,8 @@ paths: category: repos subcategory: rules parameters: - - *452 - - *453 + - *454 + - *455 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105014,8 +105377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 - name: ruleset_id @@ -105033,7 +105396,7 @@ paths: type: array items: *183 examples: - default: *405 + default: *407 '404': *6 '500': *38 x-github: @@ -105052,8 +105415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *452 - - *453 + - *454 + - *455 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105071,7 +105434,7 @@ paths: description: Response content: application/json: - schema: *406 + schema: *408 examples: default: value: @@ -105126,21 +105489,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *452 - - *453 - - *407 - - *408 + - *454 + - *455 - *409 - *410 + - *411 + - *412 - *104 - *19 - *17 - - *714 - - *715 - - *411 - - *412 + - *716 + - *717 - *413 - *414 + - *415 + - *416 responses: '200': description: Response @@ -105148,7 +105511,7 @@ paths: application/json: schema: type: array - items: &719 + items: &721 type: object properties: number: *119 @@ -105164,8 +105527,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *716 - resolution: *717 + state: *718 + resolution: *719 resolved_at: type: - string @@ -105259,7 +105622,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *718 + - *720 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -105404,16 +105767,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *452 - - *453 - - *537 - - *414 + - *454 + - *455 + - *539 + - *416 responses: '200': description: Response content: application/json: - schema: *719 + schema: *721 examples: default: value: @@ -105465,9 +105828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 requestBody: required: true content: @@ -105475,8 +105838,8 @@ paths: schema: type: object properties: - state: *716 - resolution: *717 + state: *718 + resolution: *719 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -105496,7 +105859,7 @@ paths: description: Response content: application/json: - schema: *719 + schema: *721 examples: default: value: @@ -105571,9 +105934,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *452 - - *453 - - *537 + - *454 + - *455 + - *539 - *19 - *17 responses: @@ -105584,7 +105947,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &894 + items: &896 type: object properties: type: @@ -105611,8 +105974,6 @@ paths: - commit details: oneOf: - - *720 - - *721 - *722 - *723 - *724 @@ -105624,6 +105985,8 @@ paths: - *730 - *731 - *732 + - *733 + - *734 examples: default: value: @@ -105709,8 +106072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -105718,14 +106081,14 @@ paths: schema: type: object properties: - reason: &734 + reason: &736 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *733 + placeholder_id: *735 required: - reason - placeholder_id @@ -105742,7 +106105,7 @@ paths: schema: type: object properties: - reason: *734 + reason: *736 expire_at: type: - string @@ -105789,8 +106152,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -105805,7 +106168,7 @@ paths: properties: incremental_scans: type: array - items: &735 + items: &737 description: Information on a single scan performed by secret scanning on the repository type: object @@ -105833,15 +106196,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *735 + items: *737 backfill_scans: type: array - items: *735 + items: *737 custom_pattern_backfill_scans: type: array items: allOf: - - *735 + - *737 - type: object properties: pattern_name: @@ -105911,8 +106274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *452 - - *453 + - *454 + - *455 - *104 - name: sort description: The property to sort the results by. @@ -105956,9 +106319,9 @@ paths: application/json: schema: type: array - items: *736 + items: *738 examples: - default: *737 + default: *739 '400': *14 '404': *6 x-github: @@ -105981,8 +106344,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -106062,7 +106425,7 @@ paths: login: type: string description: The username of the user credited. - type: *419 + type: *421 required: - login - type @@ -106152,9 +106515,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *738 examples: - default: &739 + default: &741 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -106387,8 +106750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -106501,7 +106864,7 @@ paths: description: Response content: application/json: - schema: *736 + schema: *738 examples: default: value: @@ -106648,17 +107011,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *452 - - *453 - - *738 + - *454 + - *455 + - *740 responses: '200': description: Response content: application/json: - schema: *736 + schema: *738 examples: - default: *739 + default: *741 '403': *27 '404': *6 x-github: @@ -106682,9 +107045,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *452 - - *453 - - *738 + - *454 + - *455 + - *740 requestBody: required: true content: @@ -106764,7 +107127,7 @@ paths: login: type: string description: The username of the user credited. - type: *419 + type: *421 required: - login - type @@ -106855,10 +107218,10 @@ paths: description: Response content: application/json: - schema: *736 + schema: *738 examples: - default: *739 - add_credit: *739 + default: *741 + add_credit: *741 '403': *27 '404': *6 '422': @@ -106896,9 +107259,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *452 - - *453 - - *738 + - *454 + - *455 + - *740 responses: '202': *37 '400': *14 @@ -106925,17 +107288,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *452 - - *453 - - *738 + - *454 + - *455 + - *740 responses: '202': description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *465 + default: *467 '400': *14 '422': *15 '403': *27 @@ -106961,8 +107324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -107058,8 +107421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -107068,7 +107431,7 @@ paths: application/json: schema: type: array - items: &740 + items: &742 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -107101,8 +107464,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -107180,8 +107543,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -107275,8 +107638,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -107430,8 +107793,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -107441,7 +107804,7 @@ paths: application/json: schema: type: array - items: *740 + items: *742 examples: default: value: @@ -107474,8 +107837,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *452 - - *453 + - *454 + - *455 - name: sha in: path required: true @@ -107531,7 +107894,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *743 examples: default: value: @@ -107585,8 +107948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -107618,14 +107981,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &742 + schema: &744 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -107698,8 +108061,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: false content: @@ -107725,7 +108088,7 @@ paths: description: Response content: application/json: - schema: *742 + schema: *744 examples: default: value: @@ -107752,8 +108115,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -107773,8 +108136,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -107856,8 +108219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -107865,7 +108228,7 @@ paths: application/json: schema: type: array - items: &743 + items: &745 title: Tag protection description: Tag protection type: object @@ -107922,8 +108285,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -107946,7 +108309,7 @@ paths: description: Response content: application/json: - schema: *743 + schema: *745 examples: default: value: @@ -107977,8 +108340,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -108015,8 +108378,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *452 - - *453 + - *454 + - *455 - name: ref in: path required: true @@ -108052,8 +108415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *452 - - *453 + - *454 + - *455 - *17 - *19 responses: @@ -108063,9 +108426,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - default: *369 + default: *371 headers: Link: *41 '404': *6 @@ -108085,8 +108448,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *452 - - *453 + - *454 + - *455 - *19 - *17 responses: @@ -108094,7 +108457,7 @@ paths: description: Response content: application/json: - schema: &744 + schema: &746 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -108106,7 +108469,7 @@ paths: required: - names examples: - default: &745 + default: &747 value: names: - octocat @@ -108129,8 +108492,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -108161,9 +108524,9 @@ paths: description: Response content: application/json: - schema: *744 + schema: *746 examples: - default: *745 + default: *747 '404': *6 '422': *7 x-github: @@ -108184,9 +108547,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *452 - - *453 - - &746 + - *454 + - *455 + - &748 name: per description: The time frame to display results for. in: query @@ -108217,7 +108580,7 @@ paths: - 128 clones: type: array - items: &747 + items: &749 title: Traffic type: object properties: @@ -108304,8 +108667,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -108399,8 +108762,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *452 - - *453 + - *454 + - *455 responses: '200': description: Response @@ -108463,9 +108826,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *452 - - *453 - - *746 + - *454 + - *455 + - *748 responses: '200': description: Response @@ -108486,7 +108849,7 @@ paths: - 3782 views: type: array - items: *747 + items: *749 required: - uniques - count @@ -108563,8 +108926,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *452 - - *453 + - *454 + - *455 requestBody: required: true content: @@ -108838,8 +109201,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -108862,8 +109225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -108885,8 +109248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -108912,8 +109275,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *452 - - *453 + - *454 + - *455 - name: ref in: path required: true @@ -109005,9 +109368,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *465 + default: *467 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109158,7 +109521,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &755 + - &757 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -109168,7 +109531,7 @@ paths: type: string examples: - members - - &760 + - &762 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -109180,7 +109543,7 @@ paths: format: int32 examples: - 1 - - &761 + - &763 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -109224,7 +109587,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &750 + items: &752 allOf: - type: object required: @@ -109306,7 +109669,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: &762 + meta: &764 type: object description: The metadata associated with the creation/updates to the user. @@ -109371,30 +109734,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &751 + '400': &753 description: Bad request content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 - '401': *749 - '403': &752 + schema: *750 + '401': *751 + '403': &754 description: Permission denied - '429': &753 + '429': &755 description: Too many requests content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 - '500': &754 + schema: *750 + '500': &756 description: Internal server error content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 + schema: *750 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109418,7 +109781,7 @@ paths: required: true content: application/json: - schema: &758 + schema: &760 type: object required: - schemas @@ -109482,9 +109845,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *750 + schema: *752 examples: - group: &756 + group: &758 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -109503,13 +109866,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': *751 - '401': *749 - '403': *752 - '409': &759 + '400': *753 + '401': *751 + '403': *754 + '409': &761 description: Duplicate record detected - '429': *753 - '500': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109526,7 +109889,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: - - &757 + - &759 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -109535,22 +109898,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *755 + - *757 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *750 + schema: *752 examples: - default: *756 - '400': *751 - '401': *749 - '403': *752 + default: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *753 - '500': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109569,13 +109932,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: - - *757 + - *759 - *39 requestBody: required: true content: application/json: - schema: *758 + schema: *760 examples: group: summary: Group @@ -109601,17 +109964,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *750 + schema: *752 examples: - group: *756 - groupWithMembers: *756 - '400': *751 - '401': *749 - '403': *752 + group: *758 + groupWithMembers: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *759 - '429': *753 - '500': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109635,13 +109998,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: - - *757 + - *759 - *39 requestBody: required: true content: application/json: - schema: &769 + schema: &771 type: object required: - Operations @@ -109701,17 +110064,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *750 + schema: *752 examples: - updateGroup: *756 - addMembers: *756 - '400': *751 - '401': *749 - '403': *752 + updateGroup: *758 + addMembers: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *759 - '429': *753 - '500': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109727,17 +110090,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: - - *757 + - *759 - *39 responses: '204': description: Group was deleted, no content - '400': *751 - '401': *749 - '403': *752 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *753 - '500': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109771,8 +110134,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *760 - - *761 + - *762 + - *763 - *39 responses: '200': @@ -109806,7 +110169,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &764 + items: &766 allOf: - type: object required: @@ -109898,7 +110261,7 @@ paths: address. examples: - true - roles: &763 + roles: &765 type: array description: The roles assigned to the user. items: @@ -109957,7 +110320,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *762 + meta: *764 startIndex: type: integer description: A starting index for the returned page @@ -109996,11 +110359,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *751 - '401': *749 - '403': *752 - '429': *753 - '500': *754 + '400': *753 + '401': *751 + '403': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110024,7 +110387,7 @@ paths: required: true content: application/json: - schema: &767 + schema: &769 type: object required: - schemas @@ -110117,9 +110480,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *763 + roles: *765 examples: - user: &768 + user: &770 summary: User value: schemas: @@ -110166,9 +110529,9 @@ paths: description: User has been created content: application/scim+json: - schema: *764 + schema: *766 examples: - user: &765 + user: &767 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110194,13 +110557,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: *765 - '400': *751 - '401': *749 - '403': *752 - '409': *759 - '429': *753 - '500': *754 + enterpriseOwner: *767 + '400': *753 + '401': *751 + '403': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110217,7 +110580,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: - - &766 + - &768 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -110230,15 +110593,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *764 + schema: *766 examples: - default: *765 - '400': *751 - '401': *749 - '403': *752 + default: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *753 - '500': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110260,30 +110623,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: - - *766 + - *768 - *39 requestBody: required: true content: application/json: - schema: *767 + schema: *769 examples: - user: *768 + user: *770 responses: '200': description: User was updated content: application/scim+json: - schema: *764 + schema: *766 examples: - user: *765 - '400': *751 - '401': *749 - '403': *752 + user: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *759 - '429': *753 - '500': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110318,13 +110681,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: - - *766 + - *768 - *39 requestBody: required: true content: application/json: - schema: *769 + schema: *771 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -110364,18 +110727,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *764 + schema: *766 examples: - userMultiValuedProperties: *765 - userSingleValuedProperties: *765 - disableUser: *765 - '400': *751 - '401': *749 - '403': *752 + userMultiValuedProperties: *767 + userSingleValuedProperties: *767 + disableUser: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *759 - '429': *753 - '500': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110395,17 +110758,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: - - *766 + - *768 - *39 responses: '204': description: User was deleted, no content - '400': *751 - '401': *749 - '403': *752 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *753 - '500': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110496,7 +110859,7 @@ paths: - 1 Resources: type: array - items: &770 + items: &772 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -110743,22 +111106,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &771 + '404': &773 description: Resource not found content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 - '403': &772 + schema: *750 + '403': &774 description: Forbidden content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 - '400': *751 - '429': *753 + schema: *750 + '400': *753 + '429': *755 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -110784,9 +111147,9 @@ paths: description: Response content: application/scim+json: - schema: *770 + schema: *772 examples: - default: &773 + default: &775 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110809,17 +111172,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *771 - '403': *772 - '500': *754 + '404': *773 + '403': *774 + '500': *756 '409': description: Conflict content: application/json: - schema: *748 + schema: *750 application/scim+json: - schema: *748 - '400': *751 + schema: *750 + '400': *753 requestBody: required: true content: @@ -110919,17 +111282,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *81 - - *766 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *770 + schema: *772 examples: - default: *773 - '404': *771 - '403': *772 + default: *775 + '404': *773 + '403': *774 '304': *35 x-github: githubCloudOnly: true @@ -110953,18 +111316,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *81 - - *766 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *770 + schema: *772 examples: - default: *773 + default: *775 '304': *35 - '404': *771 - '403': *772 + '404': *773 + '403': *774 requestBody: required: true content: @@ -111079,19 +111442,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *81 - - *766 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *770 + schema: *772 examples: - default: *773 + default: *775 '304': *35 - '404': *771 - '403': *772 - '400': *751 + '404': *773 + '403': *774 + '400': *753 '429': description: Response content: @@ -111187,12 +111550,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *81 - - *766 + - *768 responses: '204': description: Response - '404': *771 - '403': *772 + '404': *773 + '403': *774 '304': *35 x-github: githubCloudOnly: true @@ -111326,7 +111689,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &774 + text_matches: &776 title: Search Result Text Matches type: array items: @@ -111490,7 +111853,7 @@ paths: enum: - author-date - committer-date - - &775 + - &777 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 @@ -111559,7 +111922,7 @@ paths: committer: anyOf: - type: 'null' - - *507 + - *509 comment_count: type: integer message: @@ -111578,7 +111941,7 @@ paths: url: type: string format: uri - verification: *624 + verification: *626 required: - author - committer @@ -111593,7 +111956,7 @@ paths: committer: anyOf: - type: 'null' - - *507 + - *509 parents: type: array items: @@ -111610,7 +111973,7 @@ paths: type: number node_id: type: string - text_matches: *774 + text_matches: *776 required: - sha - node_id @@ -111803,7 +112166,7 @@ paths: - interactions - created - updated - - *775 + - *777 - *17 - *19 - name: advanced_search @@ -111900,11 +112263,11 @@ paths: type: - string - 'null' - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: type: string state_reason: @@ -111918,7 +112281,7 @@ paths: milestone: anyOf: - type: 'null' - - *389 + - *391 comments: type: integer created_at: @@ -111932,7 +112295,7 @@ paths: - string - 'null' format: date-time - text_matches: *774 + text_matches: *776 pull_request: type: object properties: @@ -111981,7 +112344,7 @@ paths: timeline_url: type: string format: uri - type: *355 + type: *357 performed_via_github_app: anyOf: - type: 'null' @@ -112155,7 +112518,7 @@ paths: enum: - created - updated - - *775 + - *777 - *17 - *19 responses: @@ -112200,7 +112563,7 @@ paths: - 'null' score: type: number - text_matches: *774 + text_matches: *776 required: - id - node_id @@ -112286,7 +112649,7 @@ paths: - forks - help-wanted-issues - updated - - *775 + - *777 - *17 - *19 responses: @@ -112523,7 +112886,7 @@ paths: - admin - pull - push - text_matches: *774 + text_matches: *776 temp_clone_token: type: string allow_merge_commit: @@ -112832,7 +113195,7 @@ paths: - string - 'null' format: uri - text_matches: *774 + text_matches: *776 related: type: - array @@ -113027,7 +113390,7 @@ paths: - followers - repositories - joined - - *775 + - *777 - *17 - *19 responses: @@ -113137,7 +113500,7 @@ paths: type: - boolean - 'null' - text_matches: *774 + text_matches: *776 blog: type: - string @@ -113219,7 +113582,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &779 + - &781 name: team_id description: The unique identifier of the team. in: path @@ -113231,9 +113594,9 @@ paths: description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '404': *6 x-github: githubCloudOnly: false @@ -113260,7 +113623,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *779 + - *781 requestBody: required: true content: @@ -113324,16 +113687,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '201': description: Response content: application/json: - schema: *433 + schema: *435 examples: - default: *434 + default: *436 '404': *6 '422': *15 '403': *27 @@ -113361,7 +113724,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *779 + - *781 responses: '204': description: Response @@ -113392,7 +113755,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *779 + - *781 - *104 - *17 - *19 @@ -113403,9 +113766,9 @@ paths: application/json: schema: type: array - items: *435 + items: *437 examples: - default: *780 + default: *782 headers: Link: *41 x-github: @@ -113434,7 +113797,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *779 + - *781 requestBody: required: true content: @@ -113468,9 +113831,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: *436 + default: *438 x-github: triggersNotification: true githubCloudOnly: false @@ -113497,16 +113860,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *779 - - *437 + - *781 + - *439 responses: '200': description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: *436 + default: *438 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113531,8 +113894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *779 - - *437 + - *781 + - *439 requestBody: required: false content: @@ -113555,9 +113918,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *437 examples: - default: *781 + default: *783 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113582,8 +113945,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *779 - - *437 + - *781 + - *439 responses: '204': description: Response @@ -113612,8 +113975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *779 - - *437 + - *781 + - *439 - *104 - *17 - *19 @@ -113624,9 +113987,9 @@ paths: application/json: schema: type: array - items: *438 + items: *440 examples: - default: *782 + default: *784 headers: Link: *41 x-github: @@ -113655,8 +114018,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *779 - - *437 + - *781 + - *439 requestBody: required: true content: @@ -113678,9 +114041,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: *439 + default: *441 x-github: triggersNotification: true githubCloudOnly: false @@ -113707,17 +114070,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *779 - - *437 - - *440 + - *781 + - *439 + - *442 responses: '200': description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: *439 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113742,9 +114105,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *779 - - *437 - - *440 + - *781 + - *439 + - *442 requestBody: required: true content: @@ -113766,9 +114129,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: *783 + default: *785 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113793,9 +114156,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *779 - - *437 - - *440 + - *781 + - *439 + - *442 responses: '204': description: Response @@ -113824,9 +114187,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *779 - - *437 - - *440 + - *781 + - *439 + - *442 - 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 team discussion comment. @@ -113852,9 +114215,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 x-github: @@ -113883,9 +114246,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *779 - - *437 - - *440 + - *781 + - *439 + - *442 requestBody: required: true content: @@ -113917,9 +114280,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113945,8 +114308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *779 - - *437 + - *781 + - *439 - 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 team discussion. @@ -113972,9 +114335,9 @@ paths: application/json: schema: type: array - items: *441 + items: *443 examples: - default: *443 + default: *445 headers: Link: *41 x-github: @@ -114003,8 +114366,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *779 - - *437 + - *781 + - *439 requestBody: required: true content: @@ -114036,9 +114399,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -114062,7 +114425,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *779 + - *781 - *17 - *19 responses: @@ -114072,9 +114435,9 @@ paths: application/json: schema: type: array - items: *352 + items: *354 examples: - default: *353 + default: *355 headers: Link: *41 x-github: @@ -114100,7 +114463,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *779 + - *781 - name: role description: Filters members returned by their role in the team. in: query @@ -114151,7 +114514,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *779 + - *781 - *132 responses: '204': @@ -114188,7 +114551,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *779 + - *781 - *132 responses: '204': @@ -114228,7 +114591,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *779 + - *781 - *132 responses: '204': @@ -114265,16 +114628,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *779 + - *781 - *132 responses: '200': description: Response content: application/json: - schema: *449 + schema: *451 examples: - response-if-user-is-a-team-maintainer: *784 + response-if-user-is-a-team-maintainer: *786 '404': *6 x-github: githubCloudOnly: false @@ -114307,7 +114670,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: - - *779 + - *781 - *132 requestBody: required: false @@ -114333,9 +114696,9 @@ paths: description: Response content: application/json: - schema: *449 + schema: *451 examples: - response-if-users-membership-with-team-is-now-pending: *785 + response-if-users-membership-with-team-is-now-pending: *787 '403': description: Forbidden if team synchronization is set up '422': @@ -114369,7 +114732,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: - - *779 + - *781 - *132 responses: '204': @@ -114398,7 +114761,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *779 + - *781 - *17 - *19 responses: @@ -114408,9 +114771,9 @@ paths: application/json: schema: type: array - items: *450 + items: *452 examples: - default: *786 + default: *788 headers: Link: *41 '404': *6 @@ -114436,16 +114799,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *779 - - *451 + - *781 + - *453 responses: '200': description: Response content: application/json: - schema: *450 + schema: *452 examples: - default: *787 + default: *789 '404': description: Not Found if project is not managed by this team x-github: @@ -114469,8 +114832,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *779 - - *451 + - *781 + - *453 requestBody: required: false content: @@ -114537,8 +114900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *779 - - *451 + - *781 + - *453 responses: '204': description: Response @@ -114565,7 +114928,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *779 + - *781 - *17 - *19 responses: @@ -114577,7 +114940,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 '404': *6 @@ -114607,15 +114970,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *779 - - *452 - - *453 + - *781 + - *454 + - *455 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *788 + schema: *790 examples: alternative-response-with-extra-repository-information: value: @@ -114766,9 +115129,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *779 - - *452 - - *453 + - *781 + - *454 + - *455 requestBody: required: false content: @@ -114818,9 +115181,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *779 - - *452 - - *453 + - *781 + - *454 + - *455 responses: '204': description: Response @@ -114849,15 +115212,15 @@ 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: - - *779 + - *781 responses: '200': description: Response content: application/json: - schema: *454 + schema: *456 examples: - default: *455 + default: *457 '403': *27 '404': *6 x-github: @@ -114884,7 +115247,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: - - *779 + - *781 requestBody: required: true content: @@ -114945,7 +115308,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *456 examples: default: value: @@ -114976,7 +115339,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *779 + - *781 - *17 - *19 responses: @@ -114986,9 +115349,9 @@ paths: application/json: schema: type: array - items: *300 + items: *302 examples: - response-if-child-teams-exist: *789 + response-if-child-teams-exist: *791 headers: Link: *41 '404': *6 @@ -115021,7 +115384,7 @@ paths: application/json: schema: oneOf: - - &791 + - &793 title: Private User description: Private User type: object @@ -115271,7 +115634,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *790 + - *792 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -115431,7 +115794,7 @@ paths: description: Response content: application/json: - schema: *791 + schema: *793 examples: default: value: @@ -115634,9 +115997,9 @@ paths: type: integer codespaces: type: array - items: *360 + items: *362 examples: - default: *361 + default: *363 '304': *35 '500': *38 '401': *23 @@ -115775,17 +116138,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '401': *23 '403': *27 '404': *6 @@ -115829,7 +116192,7 @@ paths: type: integer secrets: type: array - items: &792 + items: &794 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -115871,7 +116234,7 @@ paths: - visibility - selected_repositories_url examples: - default: *559 + default: *561 headers: Link: *41 x-github: @@ -115949,7 +116312,7 @@ paths: description: Response content: application/json: - schema: *792 + schema: *794 examples: default: value: @@ -116095,7 +116458,7 @@ paths: type: array items: *273 examples: - default: *793 + default: *795 '401': *23 '403': *27 '404': *6 @@ -116239,15 +116602,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '304': *35 '500': *38 '401': *23 @@ -116273,7 +116636,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 requestBody: required: false content: @@ -116303,9 +116666,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '401': *23 '403': *27 '404': *6 @@ -116327,7 +116690,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 responses: '202': *37 '304': *35 @@ -116356,13 +116719,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 responses: '202': description: Response content: application/json: - schema: &794 + schema: &796 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -116415,7 +116778,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &795 + default: &797 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -116447,7 +116810,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *362 + - *364 - name: export_id in: path required: true @@ -116460,9 +116823,9 @@ paths: description: Response content: application/json: - schema: *794 + schema: *796 examples: - default: *795 + default: *797 '404': *6 x-github: githubCloudOnly: false @@ -116483,7 +116846,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *362 + - *364 responses: '200': description: Response @@ -116499,9 +116862,9 @@ paths: type: integer machines: type: array - items: *558 + items: *560 examples: - default: *796 + default: *798 '304': *35 '500': *38 '401': *23 @@ -116530,7 +116893,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *362 + - *364 requestBody: required: true content: @@ -116586,11 +116949,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *463 + repository: *465 machine: anyOf: - type: 'null' - - *558 + - *560 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -117387,15 +117750,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '304': *35 '500': *38 '400': *14 @@ -117427,15 +117790,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *360 + schema: *362 examples: - default: *557 + default: *559 '500': *38 '401': *23 '403': *27 @@ -117465,9 +117828,9 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: &807 + default: &809 value: - id: 197 name: hello_docker @@ -117568,7 +117931,7 @@ paths: application/json: schema: type: array - items: &797 + items: &799 title: Email description: Email type: object @@ -117638,9 +118001,9 @@ paths: application/json: schema: type: array - items: *797 + items: *799 examples: - default: &809 + default: &811 value: - email: octocat@github.com verified: true @@ -117717,7 +118080,7 @@ paths: application/json: schema: type: array - items: *797 + items: *799 examples: default: value: @@ -117975,7 +118338,7 @@ paths: application/json: schema: type: array - items: &798 + items: &800 title: GPG Key description: A unique encryption key type: object @@ -118120,7 +118483,7 @@ paths: - subkeys - revoked examples: - default: &823 + default: &825 value: - id: 3 name: Octocat's GPG Key @@ -118205,9 +118568,9 @@ paths: description: Response content: application/json: - schema: *798 + schema: *800 examples: - default: &799 + default: &801 value: id: 3 name: Octocat's GPG Key @@ -118264,7 +118627,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: - - &800 + - &802 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -118276,9 +118639,9 @@ paths: description: Response content: application/json: - schema: *798 + schema: *800 examples: - default: *799 + default: *801 '404': *6 '304': *35 '403': *27 @@ -118301,7 +118664,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: - - *800 + - *802 responses: '204': description: Response @@ -118577,12 +118940,12 @@ paths: application/json: schema: anyOf: - - *350 + - *352 - type: object properties: {} additionalProperties: false examples: - default: *351 + default: *353 '204': description: Response when there are no restrictions x-github: @@ -118606,7 +118969,7 @@ paths: required: true content: application/json: - schema: *635 + schema: *637 examples: default: value: @@ -118617,7 +118980,7 @@ paths: description: Response content: application/json: - schema: *350 + schema: *352 examples: default: value: @@ -118698,7 +119061,7 @@ paths: - closed - all default: open - - *358 + - *360 - name: sort description: What to sort results by. in: query @@ -118723,7 +119086,7 @@ paths: type: array items: *219 examples: - default: *359 + default: *361 headers: Link: *41 '404': *6 @@ -118756,7 +119119,7 @@ paths: application/json: schema: type: array - items: &801 + items: &803 title: Key description: Key type: object @@ -118859,9 +119222,9 @@ paths: description: Response content: application/json: - schema: *801 + schema: *803 examples: - default: &802 + default: &804 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -118894,15 +119257,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: - - *663 + - *665 responses: '200': description: Response content: application/json: - schema: *801 + schema: *803 examples: - default: *802 + default: *804 '404': *6 '304': *35 '403': *27 @@ -118925,7 +119288,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: - - *663 + - *665 responses: '204': description: Response @@ -118958,7 +119321,7 @@ paths: application/json: schema: type: array - items: &803 + items: &805 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -119037,7 +119400,7 @@ paths: - account - plan examples: - default: &804 + default: &806 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -119099,9 +119462,9 @@ paths: application/json: schema: type: array - items: *803 + items: *805 examples: - default: *804 + default: *806 headers: Link: *41 '304': *35 @@ -119141,7 +119504,7 @@ paths: application/json: schema: type: array - items: *363 + items: *365 examples: default: value: @@ -119249,7 +119612,7 @@ paths: description: Response content: application/json: - schema: *363 + schema: *365 examples: default: value: @@ -119332,7 +119695,7 @@ paths: description: Response content: application/json: - schema: *363 + schema: *365 examples: default: value: @@ -119400,7 +119763,7 @@ paths: application/json: schema: type: array - items: *365 + items: *367 examples: default: value: @@ -119662,7 +120025,7 @@ paths: description: Response content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -119842,7 +120205,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *366 + - *368 - name: exclude in: query required: false @@ -119855,7 +120218,7 @@ paths: description: Response content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -120049,7 +120412,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *366 + - *368 responses: '302': description: Response @@ -120075,7 +120438,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *366 + - *368 responses: '204': description: Response @@ -120104,8 +120467,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *366 - - *805 + - *368 + - *807 responses: '204': description: Response @@ -120129,7 +120492,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *366 + - *368 - *17 - *19 responses: @@ -120141,7 +120504,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 '404': *6 @@ -120220,7 +120583,7 @@ paths: - docker - nuget - container - - *806 + - *808 - *19 - *17 responses: @@ -120230,10 +120593,10 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: *807 - '400': *808 + default: *809 + '400': *810 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120253,16 +120616,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 + - *375 responses: '200': description: Response content: application/json: - schema: *370 + schema: *372 examples: - default: &824 + default: &826 value: id: 40201 name: octo-name @@ -120375,8 +120738,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 + - *375 responses: '204': description: Response @@ -120406,8 +120769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 + - *375 - name: token description: package token schema: @@ -120439,8 +120802,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *372 - - *373 + - *374 + - *375 - *19 - *17 - name: state @@ -120460,7 +120823,7 @@ paths: application/json: schema: type: array - items: *374 + items: *376 examples: default: value: @@ -120509,15 +120872,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 - *375 + - *377 responses: '200': description: Response content: application/json: - schema: *374 + schema: *376 examples: default: value: @@ -120553,9 +120916,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 - *375 + - *377 responses: '204': description: Response @@ -120585,9 +120948,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *372 - - *373 + - *374 - *375 + - *377 responses: '204': description: Response @@ -120624,9 +120987,9 @@ paths: application/json: schema: type: array - items: *797 + items: *799 examples: - default: *809 + default: *811 headers: Link: *41 '304': *35 @@ -120739,7 +121102,7 @@ paths: type: array items: *72 examples: - default: &816 + default: &818 summary: Default response value: - id: 1296269 @@ -121057,9 +121420,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *465 + default: *467 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -121097,9 +121460,9 @@ paths: application/json: schema: type: array - items: *637 + items: *639 examples: - default: *810 + default: *812 headers: Link: *41 '304': *35 @@ -121122,7 +121485,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *354 + - *356 responses: '204': description: Response @@ -121145,7 +121508,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *354 + - *356 responses: '204': description: Response @@ -121178,7 +121541,7 @@ paths: application/json: schema: type: array - items: &811 + items: &813 title: Social account description: Social media account type: object @@ -121195,7 +121558,7 @@ paths: - provider - url examples: - default: &812 + default: &814 value: - provider: twitter url: https://twitter.com/github @@ -121258,9 +121621,9 @@ paths: application/json: schema: type: array - items: *811 + items: *813 examples: - default: *812 + default: *814 '422': *15 '304': *35 '404': *6 @@ -121348,7 +121711,7 @@ paths: application/json: schema: type: array - items: &813 + items: &815 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -121368,16 +121731,14 @@ paths: - title - created_at examples: - default: &828 + default: &830 value: - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 - id: 2 - url: https://api.github.com/user/keys/2 + - id: 2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' - - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 - id: 3 - url: https://api.github.com/user/keys/3 + - id: 3 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234 title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: @@ -121435,13 +121796,12 @@ paths: description: Response content: application/json: - schema: *813 + schema: *815 examples: - default: &814 + default: &816 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 - url: https://api.github.com/user/keys/2 + key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 title: ssh-rsa AAAAB3NzaC1yc2EAAA created_at: '2020-06-11T21:31:57Z' '422': *15 @@ -121468,7 +121828,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: - - &815 + - &817 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -121480,9 +121840,9 @@ paths: description: Response content: application/json: - schema: *813 + schema: *815 examples: - default: *814 + default: *816 '404': *6 '304': *35 '403': *27 @@ -121505,7 +121865,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: - - *815 + - *817 responses: '204': description: Response @@ -121534,7 +121894,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: - - &829 + - &831 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 @@ -121559,11 +121919,11 @@ paths: type: array items: *72 examples: - default-response: *816 + default-response: *818 application/vnd.github.v3.star+json: schema: type: array - items: &830 + items: &832 title: Starred Repository description: Starred Repository type: object @@ -121719,8 +122079,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response if this repository is starred by you @@ -121748,8 +122108,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -121773,8 +122133,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *452 - - *453 + - *454 + - *455 responses: '204': description: Response @@ -121809,7 +122169,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 '304': *35 @@ -121846,7 +122206,7 @@ paths: application/json: schema: type: array - items: *433 + items: *435 examples: default: value: @@ -121932,10 +122292,10 @@ paths: application/json: schema: oneOf: - - *791 - - *790 + - *793 + - *792 examples: - default-response: &818 + default-response: &820 summary: Default response value: login: octocat @@ -121970,7 +122330,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &819 + response-with-git-hub-plan-information: &821 summary: Response with GitHub plan information value: login: octocat @@ -122033,7 +122393,7 @@ paths: required: true schema: type: string - - *388 + - *390 requestBody: required: true description: Details of the draft item to create in the project. @@ -122067,9 +122427,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - draft_issue: *394 + draft_issue: *396 '304': *35 '403': *27 '401': *23 @@ -122092,7 +122452,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *817 + - *819 - *17 responses: '200': @@ -122141,11 +122501,11 @@ paths: application/json: schema: oneOf: - - *791 - - *790 + - *793 + - *792 examples: - default-response: *818 - response-with-git-hub-plan-information: *819 + default-response: *820 + response-with-git-hub-plan-information: *821 '404': *6 x-github: githubCloudOnly: false @@ -122195,8 +122555,8 @@ paths: required: - subject_digests examples: - default: *820 - withPredicateType: *821 + default: *822 + withPredicateType: *823 responses: '200': description: Response @@ -122250,7 +122610,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *822 + default: *824 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -122455,7 +122815,7 @@ paths: initiator: type: string examples: - default: *503 + default: *505 '201': description: Response content: @@ -122494,9 +122854,9 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: *807 + default: *809 '403': *27 '401': *23 x-github: @@ -122880,9 +123240,9 @@ paths: application/json: schema: type: array - items: *798 + items: *800 examples: - default: *823 + default: *825 headers: Link: *41 x-github: @@ -122986,7 +123346,7 @@ paths: application/json: schema: *20 examples: - default: *634 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123111,7 +123471,7 @@ paths: - docker - nuget - container - - *806 + - *808 - *132 - *19 - *17 @@ -123122,12 +123482,12 @@ paths: application/json: schema: type: array - items: *370 + items: *372 examples: - default: *807 + default: *809 '403': *27 '401': *23 - '400': *808 + '400': *810 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123147,17 +123507,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *372 - - *373 + - *374 + - *375 - *132 responses: '200': description: Response content: application/json: - schema: *370 + schema: *372 examples: - default: *824 + default: *826 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123178,8 +123538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *372 - - *373 + - *374 + - *375 - *132 responses: '204': @@ -123212,8 +123572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *372 - - *373 + - *374 + - *375 - *132 - name: token description: package token @@ -123246,8 +123606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *372 - - *373 + - *374 + - *375 - *132 responses: '200': @@ -123256,7 +123616,7 @@ paths: application/json: schema: type: array - items: *374 + items: *376 examples: default: value: @@ -123314,16 +123674,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *372 - - *373 + - *374 - *375 + - *377 - *132 responses: '200': description: Response content: application/json: - schema: *374 + schema: *376 examples: default: value: @@ -123358,10 +123718,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *372 - - *373 - - *132 + - *374 - *375 + - *132 + - *377 responses: '204': description: Response @@ -123393,10 +123753,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *372 - - *373 - - *132 + - *374 - *375 + - *132 + - *377 responses: '204': description: Response @@ -123437,9 +123797,9 @@ paths: application/json: schema: type: array - items: *386 + items: *388 examples: - default: *387 + default: *389 headers: Link: *41 '304': *35 @@ -123461,16 +123821,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *388 + - *390 - *132 responses: '200': description: Response content: application/json: - schema: *386 + schema: *388 examples: - default: *387 + default: *389 headers: Link: *41 '304': *35 @@ -123492,7 +123852,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *388 + - *390 - *132 - *17 - *102 @@ -123504,9 +123864,9 @@ paths: application/json: schema: type: array - items: *391 + items: *393 examples: - default: *825 + default: *827 headers: Link: *41 '304': *35 @@ -123528,17 +123888,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *388 - - *826 + - *390 + - *828 - *132 responses: '200': description: Response content: application/json: - schema: *391 + schema: *393 examples: - default: *827 + default: *829 headers: Link: *41 '304': *35 @@ -123561,7 +123921,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-owned-project parameters: - - *388 + - *390 - *132 - *102 - *103 @@ -123594,9 +123954,9 @@ paths: application/json: schema: type: array - items: *395 + items: *397 examples: - default: *396 + default: *398 headers: Link: *41 '304': *35 @@ -123618,7 +123978,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - *132 - - *388 + - *390 requestBody: required: true description: Details of the item to add to the project. @@ -123655,10 +124015,10 @@ paths: description: Response content: application/json: - schema: *393 + schema: *395 examples: - issue: *394 - pull_request: *394 + issue: *396 + pull_request: *396 '304': *35 '403': *27 '401': *23 @@ -123678,9 +124038,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *388 + - *390 - *132 - - *397 + - *399 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -123700,9 +124060,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: *396 + default: *398 headers: Link: *41 '304': *35 @@ -123723,9 +124083,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *388 + - *390 - *132 - - *397 + - *399 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -123798,13 +124158,13 @@ paths: description: Response content: application/json: - schema: *395 + schema: *397 examples: - text_field: *396 - number_field: *396 - date_field: *396 - single_select_field: *396 - iteration_field: *396 + text_field: *398 + number_field: *398 + date_field: *398 + single_select_field: *398 + iteration_field: *398 '401': *23 '403': *27 '404': *6 @@ -123824,9 +124184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *388 + - *390 - *132 - - *397 + - *399 responses: '204': description: Response @@ -124046,7 +124406,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -124076,9 +124436,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *422 examples: - default: *421 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124106,9 +124466,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *427 examples: - default: *426 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124269,9 +124629,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124528,9 +124888,9 @@ paths: application/json: schema: type: array - items: *811 + items: *813 examples: - default: *812 + default: *814 headers: Link: *41 x-github: @@ -124560,9 +124920,9 @@ paths: application/json: schema: type: array - items: *813 + items: *815 examples: - default: *828 + default: *830 headers: Link: *41 x-github: @@ -124587,7 +124947,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *132 - - *829 + - *831 - *104 - *17 - *19 @@ -124599,11 +124959,11 @@ paths: schema: anyOf: - type: array - items: *830 + items: *832 - type: array items: *72 examples: - default-response: *816 + default-response: *818 headers: Link: *41 x-github: @@ -124634,7 +124994,7 @@ paths: type: array items: *273 examples: - default: *376 + default: *378 headers: Link: *41 x-github: @@ -124763,7 +125123,7 @@ webhooks: type: string enum: - disabled - enterprise: &831 + enterprise: &833 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -124832,7 +125192,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &832 + installation: &834 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -124853,7 +125213,7 @@ webhooks: required: - id - node_id - organization: &833 + organization: &835 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -124926,7 +125286,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &834 + repository: &836 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -125839,10 +126199,10 @@ webhooks: type: string enum: - enabled - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -125918,11 +126278,11 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - rule: &835 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + rule: &837 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) @@ -126145,11 +126505,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - rule: *835 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + rule: *837 sender: *4 required: - action @@ -126337,11 +126697,11 @@ webhooks: - everyone required: - from - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - rule: *835 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + rule: *837 sender: *4 required: - action @@ -126414,7 +126774,7 @@ webhooks: required: true content: application/json: - schema: &855 + schema: &857 title: Exemption request cancellation event type: object properties: @@ -126422,11 +126782,11 @@ webhooks: type: string enum: - cancelled - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - exemption_request: &836 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + exemption_request: &838 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -126664,7 +127024,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &837 + items: &839 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -126776,7 +127136,7 @@ webhooks: required: true content: application/json: - schema: &856 + schema: &858 title: Exemption request completed event type: object properties: @@ -126784,11 +127144,11 @@ webhooks: type: string enum: - completed - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - exemption_request: *836 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + exemption_request: *838 sender: *4 required: - action @@ -126860,7 +127220,7 @@ webhooks: required: true content: application/json: - schema: &853 + schema: &855 title: Exemption request created event type: object properties: @@ -126868,11 +127228,11 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - exemption_request: *836 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + exemption_request: *838 sender: *4 required: - action @@ -126944,7 +127304,7 @@ webhooks: required: true content: application/json: - schema: &857 + schema: &859 title: Exemption response dismissed event type: object properties: @@ -126952,12 +127312,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - exemption_request: *836 - exemption_response: *837 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + exemption_request: *838 + exemption_response: *839 sender: *4 required: - action @@ -127031,7 +127391,7 @@ webhooks: required: true content: application/json: - schema: &854 + schema: &856 title: Exemption response submitted event type: object properties: @@ -127039,12 +127399,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - exemption_request: *836 - exemption_response: *837 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + exemption_request: *838 + exemption_response: *839 sender: *4 required: - action @@ -127128,7 +127488,7 @@ webhooks: type: string enum: - completed - check_run: &839 + check_run: &841 title: CheckRun description: A check performed on the code of a given code change type: object @@ -127193,7 +127553,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *520 + items: *522 repository: *273 status: type: string @@ -127238,7 +127598,7 @@ webhooks: - examples: - neutral - deployment: *838 + deployment: *840 details_url: type: string examples: @@ -127298,7 +127658,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *520 + items: *522 started_at: type: string format: date-time @@ -127336,10 +127696,10 @@ webhooks: - output - app - pull_requests - installation: *832 - enterprise: *831 - organization: *833 - repository: *834 + installation: *834 + enterprise: *833 + organization: *835 + repository: *836 sender: *4 required: - check_run @@ -127732,11 +128092,11 @@ webhooks: type: string enum: - created - check_run: *839 - installation: *832 - enterprise: *831 - organization: *833 - repository: *834 + check_run: *841 + installation: *834 + enterprise: *833 + organization: *835 + repository: *836 sender: *4 required: - check_run @@ -128132,11 +128492,11 @@ webhooks: type: string enum: - requested_action - check_run: *839 - installation: *832 - enterprise: *831 - organization: *833 - repository: *834 + check_run: *841 + installation: *834 + enterprise: *833 + organization: *835 + repository: *836 requested_action: description: The action requested by the user. type: object @@ -128541,11 +128901,11 @@ webhooks: type: string enum: - rerequested - check_run: *839 - installation: *832 - enterprise: *831 - organization: *833 - repository: *834 + check_run: *841 + installation: *834 + enterprise: *833 + organization: *835 + repository: *836 sender: *4 required: - check_run @@ -129537,10 +129897,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -130240,10 +130600,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -130937,10 +131297,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -131109,7 +131469,7 @@ webhooks: required: - login - id - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131261,20 +131621,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &840 + commit_oid: &842 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: *831 - installation: *832 - organization: *833 - ref: &841 + enterprise: *833 + installation: *834 + organization: *835 + ref: &843 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: *834 + repository: *836 sender: *4 required: - action @@ -131441,7 +131801,7 @@ webhooks: required: - login - id - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131682,12 +132042,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *840 - enterprise: *831 - installation: *832 - organization: *833 - ref: *841 - repository: *834 + commit_oid: *842 + enterprise: *833 + installation: *834 + organization: *835 + ref: *843 + repository: *836 sender: *4 required: - action @@ -131785,7 +132145,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131970,12 +132330,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *840 - enterprise: *831 - installation: *832 - organization: *833 - ref: *841 - repository: *834 + commit_oid: *842 + enterprise: *833 + installation: *834 + organization: *835 + ref: *843 + repository: *836 sender: *4 required: - action @@ -132144,7 +132504,7 @@ webhooks: required: - login - id - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132321,12 +132681,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *840 - enterprise: *831 - installation: *832 - organization: *833 - ref: *841 - repository: *834 + commit_oid: *842 + enterprise: *833 + installation: *834 + organization: *835 + ref: *843 + repository: *836 sender: *4 required: - action @@ -132429,7 +132789,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132609,9 +132969,9 @@ webhooks: type: - string - 'null' - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -132619,7 +132979,7 @@ webhooks: type: - string - 'null' - repository: *834 + repository: *836 sender: *4 required: - action @@ -132718,7 +133078,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *532 + dismissed_comment: *534 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132865,12 +133225,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *840 - enterprise: *831 - installation: *832 - organization: *833 - ref: *841 - repository: *834 + commit_oid: *842 + enterprise: *833 + installation: *834 + organization: *835 + ref: *843 + repository: *836 sender: *4 required: - action @@ -133132,10 +133492,10 @@ webhooks: - updated_at - author_association - body - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -133216,18 +133576,18 @@ webhooks: type: - string - 'null' - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *833 - pusher_type: &842 + organization: *835 + pusher_type: &844 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &843 + ref: &845 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -133237,7 +133597,7 @@ webhooks: enum: - tag - branch - repository: *834 + repository: *836 sender: *4 required: - ref @@ -133320,9 +133680,9 @@ webhooks: enum: - created definition: *146 - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 required: - action @@ -133407,9 +133767,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 required: - action @@ -133487,9 +133847,9 @@ webhooks: enum: - promote_to_enterprise definition: *146 - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 required: - action @@ -133567,9 +133927,9 @@ webhooks: enum: - updated definition: *146 - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 required: - action @@ -133646,10 +134006,10 @@ webhooks: type: string enum: - updated - enterprise: *831 - installation: *832 - repository: *834 - organization: *833 + enterprise: *833 + installation: *834 + repository: *836 + organization: *835 sender: *4 new_property_values: type: array @@ -133734,18 +134094,18 @@ webhooks: title: delete event type: object properties: - enterprise: *831 - installation: *832 - organization: *833 - pusher_type: *842 - ref: *843 + enterprise: *833 + installation: *834 + organization: *835 + pusher_type: *844 + ref: *845 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *834 + repository: *836 sender: *4 required: - ref @@ -133829,11 +134189,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -133917,11 +134277,11 @@ webhooks: type: string enum: - auto_reopened - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134005,11 +134365,11 @@ webhooks: type: string enum: - created - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134091,11 +134451,11 @@ webhooks: type: string enum: - dismissed - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134177,11 +134537,11 @@ webhooks: type: string enum: - fixed - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134264,11 +134624,11 @@ webhooks: type: string enum: - reintroduced - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134350,11 +134710,11 @@ webhooks: type: string enum: - reopened - alert: *584 - installation: *832 - organization: *833 - enterprise: *831 - repository: *834 + alert: *586 + installation: *834 + organization: *835 + enterprise: *833 + repository: *836 sender: *4 required: - action @@ -134431,9 +134791,9 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - key: &844 + enterprise: *833 + installation: *834 + key: &846 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -134471,8 +134831,8 @@ webhooks: - verified - created_at - read_only - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -134549,11 +134909,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - key: *844 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + key: *846 + organization: *835 + repository: *836 sender: *4 required: - action @@ -135125,12 +135485,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - workflow: &848 + workflow: &850 title: Workflow type: - object @@ -135868,13 +136228,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *590 + deployment: *592 pull_requests: type: array - items: *683 - repository: *834 - organization: *833 - installation: *832 + items: *685 + repository: *836 + organization: *835 + installation: *834 sender: *4 responses: '200': @@ -135945,7 +136305,7 @@ webhooks: type: string enum: - approved - approver: &845 + approver: &847 type: object properties: avatar_url: @@ -135988,11 +136348,11 @@ webhooks: type: string comment: type: string - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - reviewers: &846 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + reviewers: &848 type: array items: type: object @@ -136073,7 +136433,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &847 + workflow_job_run: &849 type: object properties: conclusion: @@ -136819,18 +137179,18 @@ webhooks: type: string enum: - rejected - approver: *845 + approver: *847 comment: type: string - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - reviewers: *846 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + reviewers: *848 sender: *4 since: type: string - workflow_job_run: *847 + workflow_job_run: *849 workflow_job_runs: type: array items: @@ -137547,13 +137907,13 @@ webhooks: type: string enum: - requested - enterprise: *831 + enterprise: *833 environment: type: string - installation: *832 - organization: *833 - repository: *834 - requestor: &858 + installation: *834 + organization: *835 + repository: *836 + requestor: &860 title: User type: - object @@ -139496,12 +139856,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - workflow: *848 + workflow: *850 workflow_run: title: Deployment Workflow Run type: @@ -140192,7 +140552,7 @@ webhooks: type: string enum: - answered - answer: &851 + answer: &853 type: object properties: author_association: @@ -140352,7 +140712,7 @@ webhooks: - created_at - updated_at - body - discussion: &849 + discussion: &851 title: Discussion description: A Discussion in a repository. type: object @@ -140648,7 +141008,7 @@ webhooks: - id labels: type: array - items: *646 + items: *648 required: - repository_url - category @@ -140670,10 +141030,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -140800,11 +141160,11 @@ webhooks: - from required: - category - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -140887,11 +141247,11 @@ webhooks: type: string enum: - closed - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -140973,7 +141333,7 @@ webhooks: type: string enum: - created - comment: &850 + comment: &852 type: object properties: author_association: @@ -141133,11 +141493,11 @@ webhooks: - updated_at - body - reactions - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141220,12 +141580,12 @@ webhooks: type: string enum: - deleted - comment: *850 - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + comment: *852 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141320,12 +141680,12 @@ webhooks: - from required: - body - comment: *850 - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + comment: *852 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141409,11 +141769,11 @@ webhooks: type: string enum: - created - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141495,11 +141855,11 @@ webhooks: type: string enum: - deleted - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141599,11 +141959,11 @@ webhooks: type: string required: - from - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141685,10 +142045,10 @@ webhooks: type: string enum: - labeled - discussion: *849 - enterprise: *831 - installation: *832 - label: &852 + discussion: *851 + enterprise: *833 + installation: *834 + label: &854 title: Label type: object properties: @@ -141721,8 +142081,8 @@ webhooks: - color - default - description - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141805,11 +142165,11 @@ webhooks: type: string enum: - locked - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141891,11 +142251,11 @@ webhooks: type: string enum: - pinned - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -141977,11 +142337,11 @@ webhooks: type: string enum: - reopened - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142066,16 +142426,16 @@ webhooks: changes: type: object properties: - new_discussion: *849 - new_repository: *834 + new_discussion: *851 + new_repository: *836 required: - new_discussion - new_repository - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142158,10 +142518,10 @@ webhooks: type: string enum: - unanswered - discussion: *849 - old_answer: *851 - organization: *833 - repository: *834 + discussion: *851 + old_answer: *853 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142243,12 +142603,12 @@ webhooks: type: string enum: - unlabeled - discussion: *849 - enterprise: *831 - installation: *832 - label: *852 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142331,11 +142691,11 @@ webhooks: type: string enum: - unlocked - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142417,11 +142777,11 @@ webhooks: type: string enum: - unpinned - discussion: *849 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + discussion: *851 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -142490,7 +142850,7 @@ webhooks: required: true content: application/json: - schema: *853 + schema: *855 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142553,7 +142913,7 @@ webhooks: required: true content: application/json: - schema: *854 + schema: *856 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142619,7 +142979,7 @@ webhooks: required: true content: application/json: - schema: *855 + schema: *857 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142685,7 +143045,7 @@ webhooks: required: true content: application/json: - schema: *856 + schema: *858 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142751,7 +143111,7 @@ webhooks: required: true content: application/json: - schema: *853 + schema: *855 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142817,7 +143177,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *859 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142883,7 +143243,7 @@ webhooks: required: true content: application/json: - schema: *854 + schema: *856 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142948,7 +143308,7 @@ webhooks: required: true content: application/json: - schema: *855 + schema: *857 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143013,7 +143373,7 @@ webhooks: required: true content: application/json: - schema: *856 + schema: *858 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143078,7 +143438,7 @@ webhooks: required: true content: application/json: - schema: *853 + schema: *855 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143143,7 +143503,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *859 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143209,7 +143569,7 @@ webhooks: required: true content: application/json: - schema: *854 + schema: *856 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143276,7 +143636,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *831 + enterprise: *833 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -143954,9 +144314,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - forkee @@ -144102,9 +144462,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pages: description: The pages that were updated. type: array @@ -144142,7 +144502,7 @@ webhooks: - action - sha - html_url - repository: *834 + repository: *836 sender: *4 required: - pages @@ -144218,10 +144578,10 @@ webhooks: type: string enum: - created - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories: &859 + organization: *835 + repositories: &861 description: An array of repository objects that the installation can access. type: array @@ -144247,8 +144607,8 @@ webhooks: - name - full_name - private - repository: *834 - requester: *858 + repository: *836 + requester: *860 sender: *4 required: - action @@ -144323,11 +144683,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories: *859 - repository: *834 + organization: *835 + repositories: *861 + repository: *836 requester: type: - 'null' @@ -144404,11 +144764,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories: *859 - repository: *834 + organization: *835 + repositories: *861 + repository: *836 requester: type: - 'null' @@ -144485,10 +144845,10 @@ webhooks: type: string enum: - added - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories_added: &860 + organization: *835 + repositories_added: &862 description: An array of repository objects, which were added to the installation. type: array @@ -144534,15 +144894,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *834 - repository_selection: &861 + repository: *836 + repository_selection: &863 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *858 + requester: *860 sender: *4 required: - action @@ -144621,10 +144981,10 @@ webhooks: type: string enum: - removed - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories_added: *860 + organization: *835 + repositories_added: *862 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -144651,9 +145011,9 @@ webhooks: - name - full_name - private - repository: *834 - repository_selection: *861 - requester: *858 + repository: *836 + repository_selection: *863 + requester: *860 sender: *4 required: - action @@ -144732,11 +145092,11 @@ webhooks: type: string enum: - suspend - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories: *859 - repository: *834 + organization: *835 + repositories: *861 + repository: *836 requester: type: - 'null' @@ -144919,10 +145279,10 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 target_type: type: string @@ -145001,11 +145361,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *831 + enterprise: *833 installation: *20 - organization: *833 - repositories: *859 - repository: *834 + organization: *835 + repositories: *861 + repository: *836 requester: type: - 'null' @@ -145253,8 +145613,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -146071,8 +146431,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146089,7 +146449,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -146433,8 +146793,8 @@ webhooks: - state - locked - assignee - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -146514,7 +146874,7 @@ webhooks: type: string enum: - deleted - comment: &862 + comment: &864 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -146681,8 +147041,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147495,8 +147855,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147513,7 +147873,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -147859,8 +148219,8 @@ webhooks: - state - locked - assignee - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -147940,7 +148300,7 @@ webhooks: type: string enum: - edited - changes: &886 + changes: &888 description: The changes to the comment. type: object properties: @@ -147952,9 +148312,9 @@ webhooks: type: string required: - from - comment: *862 - enterprise: *831 - installation: *832 + comment: *864 + enterprise: *833 + installation: *834 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148770,8 +149130,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148788,7 +149148,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -149132,8 +149492,8 @@ webhooks: - state - locked - assignee - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -149223,9 +149583,9 @@ webhooks: type: number blocking_issue: *219 blocking_issue_repo: *72 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -149319,9 +149679,9 @@ webhooks: type: number blocking_issue: *219 blocking_issue_repo: *72 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -149414,9 +149774,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -149510,9 +149870,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -149597,10 +149957,10 @@ webhooks: type: string enum: - assigned - assignee: *858 - enterprise: *831 - installation: *832 - issue: &865 + assignee: *860 + enterprise: *833 + installation: *834 + issue: &867 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -150412,11 +150772,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150433,7 +150793,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -150536,8 +150896,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -150617,8 +150977,8 @@ webhooks: type: string enum: - closed - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -151435,11 +151795,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151456,7 +151816,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -151702,8 +152062,8 @@ webhooks: required: - state - closed_at - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -151782,8 +152142,8 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152591,11 +152951,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152612,7 +152972,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -152714,8 +153074,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -152794,8 +153154,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153626,11 +153986,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153647,7 +154007,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -153728,7 +154088,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &863 + milestone: &865 title: Milestone description: A collection of related issues and pull requests. type: object @@ -153871,8 +154231,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -153971,8 +154331,8 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154784,11 +155144,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154802,7 +155162,7 @@ webhooks: timeline_url: type: string format: uri - type: *355 + type: *357 title: description: Title of the issue type: string @@ -154908,9 +155268,9 @@ webhooks: - active_lock_reason - body - reactions - label: *852 - organization: *833 - repository: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -154990,8 +155350,8 @@ webhooks: type: string enum: - labeled - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155802,11 +156162,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155820,7 +156180,7 @@ webhooks: timeline_url: type: string format: uri - type: *355 + type: *357 title: description: Title of the issue type: string @@ -155926,9 +156286,9 @@ webhooks: - active_lock_reason - body - reactions - label: *852 - organization: *833 - repository: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -156008,8 +156368,8 @@ webhooks: type: string enum: - locked - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156845,11 +157205,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156863,7 +157223,7 @@ webhooks: timeline_url: type: string format: uri - type: *355 + type: *357 title: description: Title of the issue type: string @@ -156946,8 +157306,8 @@ webhooks: format: uri user_view_type: type: string - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -157026,8 +157386,8 @@ webhooks: type: string enum: - milestoned - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157857,11 +158217,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157878,7 +158238,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -157958,9 +158318,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *863 - organization: *833 - repository: *834 + milestone: *865 + organization: *835 + repository: *836 sender: *4 required: - action @@ -158852,11 +159212,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158952,7 +159312,7 @@ webhooks: required: - login - id - type: *355 + type: *357 required: - id - number @@ -159433,8 +159793,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160246,11 +160606,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160267,7 +160627,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -160369,8 +160729,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -160450,9 +160810,9 @@ webhooks: type: string enum: - pinned - enterprise: *831 - installation: *832 - issue: &864 + enterprise: *833 + installation: *834 + issue: &866 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -161258,11 +161618,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161279,7 +161639,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -161381,8 +161741,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -161461,8 +161821,8 @@ webhooks: type: string enum: - reopened - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162296,11 +162656,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162397,9 +162757,9 @@ webhooks: format: uri user_view_type: type: string - type: *355 - organization: *833 - repository: *834 + type: *357 + organization: *835 + repository: *836 sender: *4 required: - action @@ -163288,11 +163648,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163309,7 +163669,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -163891,11 +164251,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *831 - installation: *832 - issue: *864 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *866 + organization: *835 + repository: *836 sender: *4 required: - action @@ -163975,12 +164335,12 @@ webhooks: type: string enum: - typed - enterprise: *831 - installation: *832 - issue: *865 - type: *355 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *867 + type: *357 + organization: *835 + repository: *836 sender: *4 required: - action @@ -164061,7 +164421,7 @@ webhooks: type: string enum: - unassigned - assignee: &889 + assignee: &891 title: User type: - object @@ -164133,11 +164493,11 @@ webhooks: required: - login - id - enterprise: *831 - installation: *832 - issue: *865 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *867 + organization: *835 + repository: *836 sender: *4 required: - action @@ -164216,12 +164576,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *831 - installation: *832 - issue: *865 - label: *852 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *867 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -164301,8 +164661,8 @@ webhooks: type: string enum: - unlocked - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -165136,11 +165496,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *776 - issue_dependencies_summary: *777 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *778 + items: *780 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165157,7 +165517,7 @@ webhooks: title: description: Title of the issue type: string - type: *355 + type: *357 updated_at: type: string format: date-time @@ -165237,8 +165597,8 @@ webhooks: format: uri user_view_type: type: string - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165318,11 +165678,11 @@ webhooks: type: string enum: - unpinned - enterprise: *831 - installation: *832 - issue: *864 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *866 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165401,12 +165761,12 @@ webhooks: type: string enum: - untyped - enterprise: *831 - installation: *832 - issue: *865 - type: *355 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + issue: *867 + type: *357 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165486,11 +165846,11 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - label: *852 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165568,11 +165928,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - label: *852 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165682,11 +166042,11 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - label: *852 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + label: *854 + organization: *835 + repository: *836 sender: *4 required: - action @@ -165768,9 +166128,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *831 - installation: *832 - marketplace_purchase: &866 + enterprise: *833 + installation: *834 + marketplace_purchase: &868 title: Marketplace Purchase type: object required: @@ -165858,8 +166218,8 @@ webhooks: type: integer unit_count: type: integer - organization: *833 - previous_marketplace_purchase: &867 + organization: *835 + previous_marketplace_purchase: &869 title: Marketplace Purchase type: object properties: @@ -165943,7 +166303,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *834 + repository: *836 sender: *4 required: - action @@ -166023,10 +166383,10 @@ webhooks: - changed effective_date: type: string - enterprise: *831 - installation: *832 - marketplace_purchase: *866 - organization: *833 + enterprise: *833 + installation: *834 + marketplace_purchase: *868 + organization: *835 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -166114,7 +166474,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *834 + repository: *836 sender: *4 required: - action @@ -166196,10 +166556,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *831 - installation: *832 - marketplace_purchase: *866 - organization: *833 + enterprise: *833 + installation: *834 + marketplace_purchase: *868 + organization: *835 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -166285,7 +166645,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *834 + repository: *836 sender: *4 required: - action @@ -166366,8 +166726,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 marketplace_purchase: title: Marketplace Purchase type: object @@ -166453,9 +166813,9 @@ webhooks: type: integer unit_count: type: integer - organization: *833 - previous_marketplace_purchase: *867 - repository: *834 + organization: *835 + previous_marketplace_purchase: *869 + repository: *836 sender: *4 required: - action @@ -166535,12 +166895,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *831 - installation: *832 - marketplace_purchase: *866 - organization: *833 - previous_marketplace_purchase: *867 - repository: *834 + enterprise: *833 + installation: *834 + marketplace_purchase: *868 + organization: *835 + previous_marketplace_purchase: *869 + repository: *836 sender: *4 required: - action @@ -166642,11 +167002,11 @@ webhooks: type: string required: - to - enterprise: *831 - installation: *832 - member: *858 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + member: *860 + organization: *835 + repository: *836 sender: *4 required: - action @@ -166748,11 +167108,11 @@ webhooks: type: - string - 'null' - enterprise: *831 - installation: *832 - member: *858 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + member: *860 + organization: *835 + repository: *836 sender: *4 required: - action @@ -166831,11 +167191,11 @@ webhooks: type: string enum: - removed - enterprise: *831 - installation: *832 - member: *858 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + member: *860 + organization: *835 + repository: *836 sender: *4 required: - action @@ -166913,11 +167273,11 @@ webhooks: type: string enum: - added - enterprise: *831 - installation: *832 - member: *858 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + member: *860 + organization: *835 + repository: *836 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166995,7 +167355,7 @@ webhooks: required: - login - id - team: &868 + team: &870 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -167225,11 +167585,11 @@ webhooks: type: string enum: - removed - enterprise: *831 - installation: *832 - member: *858 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + member: *860 + organization: *835 + repository: *836 scope: description: The scope of the membership. Currently, can only be `team`. @@ -167308,7 +167668,7 @@ webhooks: required: - login - id - team: *868 + team: *870 required: - action - scope @@ -167390,8 +167750,8 @@ webhooks: type: string enum: - checks_requested - installation: *832 - merge_group: &869 + installation: *834 + merge_group: &871 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -167410,15 +167770,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *524 + head_commit: *526 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -167504,10 +167864,10 @@ webhooks: - merged - invalidated - dequeued - installation: *832 - merge_group: *869 - organization: *833 - repository: *834 + installation: *834 + merge_group: *871 + organization: *835 + repository: *836 sender: *4 required: - action @@ -167580,7 +167940,7 @@ webhooks: type: string enum: - deleted - enterprise: *831 + enterprise: *833 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -167689,12 +168049,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *832 - organization: *833 + installation: *834 + organization: *835 repository: anyOf: - type: 'null' - - *834 + - *836 sender: *4 required: - action @@ -167774,11 +168134,11 @@ webhooks: type: string enum: - closed - enterprise: *831 - installation: *832 - milestone: *863 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + milestone: *865 + organization: *835 + repository: *836 sender: *4 required: - action @@ -167857,9 +168217,9 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - milestone: &870 + enterprise: *833 + installation: *834 + milestone: &872 title: Milestone description: A collection of related issues and pull requests. type: object @@ -168001,8 +168361,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168081,11 +168441,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - milestone: *863 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + milestone: *865 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168195,11 +168555,11 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - milestone: *863 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + milestone: *865 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168279,11 +168639,11 @@ webhooks: type: string enum: - opened - enterprise: *831 - installation: *832 - milestone: *870 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + milestone: *872 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168362,11 +168722,11 @@ webhooks: type: string enum: - blocked - blocked_user: *858 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + blocked_user: *860 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168445,11 +168805,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *858 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + blocked_user: *860 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -168525,7 +168885,7 @@ webhooks: enum: - created definition: *140 - enterprise: *831 + enterprise: *833 sender: *4 required: - action @@ -168605,8 +168965,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 sender: *4 required: - action @@ -168679,8 +169039,8 @@ webhooks: enum: - updated definition: *140 - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 sender: *4 required: - action @@ -168752,9 +169112,9 @@ webhooks: type: string enum: - updated - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 new_property_values: type: array @@ -168842,9 +169202,9 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - membership: &871 + enterprise: *833 + installation: *834 + membership: &873 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -168954,8 +169314,8 @@ webhooks: - role - organization_url - user - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -169033,11 +169393,11 @@ webhooks: type: string enum: - member_added - enterprise: *831 - installation: *832 - membership: *871 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + membership: *873 + organization: *835 + repository: *836 sender: *4 required: - action @@ -169116,8 +169476,8 @@ webhooks: type: string enum: - member_invited - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -169239,10 +169599,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 - user: *858 + user: *860 required: - action - invitation @@ -169320,11 +169680,11 @@ webhooks: type: string enum: - member_removed - enterprise: *831 - installation: *832 - membership: *871 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + membership: *873 + organization: *835 + repository: *836 sender: *4 required: - action @@ -169411,11 +169771,11 @@ webhooks: properties: from: type: string - enterprise: *831 - installation: *832 - membership: *871 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + membership: *873 + organization: *835 + repository: *836 sender: *4 required: - action @@ -169491,9 +169851,9 @@ webhooks: type: string enum: - published - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 package: description: Information about the package. type: object @@ -170016,7 +170376,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &872 + items: &874 title: Ruby Gems metadata type: object properties: @@ -170113,7 +170473,7 @@ webhooks: - owner - package_version - registry - repository: *834 + repository: *836 sender: *4 required: - action @@ -170189,9 +170549,9 @@ webhooks: type: string enum: - updated - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 package: description: Information about the package. type: object @@ -170553,7 +170913,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *872 + items: *874 source_url: type: string format: uri @@ -170624,7 +170984,7 @@ webhooks: - owner - package_version - registry - repository: *834 + repository: *836 sender: *4 required: - action @@ -170805,12 +171165,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *831 + enterprise: *833 id: type: integer - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - id @@ -170887,7 +171247,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &873 + personal_access_token_request: &875 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -171037,10 +171397,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *831 - organization: *833 + enterprise: *833 + organization: *835 sender: *4 - installation: *832 + installation: *834 required: - action - personal_access_token_request @@ -171117,11 +171477,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *873 - enterprise: *831 - organization: *833 + personal_access_token_request: *875 + enterprise: *833 + organization: *835 sender: *4 - installation: *832 + installation: *834 required: - action - personal_access_token_request @@ -171197,11 +171557,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *873 - enterprise: *831 - organization: *833 + personal_access_token_request: *875 + enterprise: *833 + organization: *835 sender: *4 - installation: *832 + installation: *834 required: - action - personal_access_token_request @@ -171276,11 +171636,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *873 - organization: *833 - enterprise: *831 + personal_access_token_request: *875 + organization: *835 + enterprise: *833 sender: *4 - installation: *832 + installation: *834 required: - action - personal_access_token_request @@ -171385,7 +171745,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *874 + last_response: *876 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -171417,8 +171777,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 zen: description: Random string of GitHub zen. @@ -171663,10 +172023,10 @@ webhooks: - from required: - note - enterprise: *831 - installation: *832 - organization: *833 - project_card: &875 + enterprise: *833 + installation: *834 + organization: *835 + project_card: &877 title: Project Card type: object properties: @@ -171789,7 +172149,7 @@ webhooks: - creator - created_at - updated_at - repository: *834 + repository: *836 sender: *4 required: - action @@ -171870,11 +172230,11 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - project_card: *875 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project_card: *877 + repository: *836 sender: *4 required: - action @@ -171954,9 +172314,9 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 project_card: title: Project Card type: object @@ -172086,7 +172446,7 @@ webhooks: repository: anyOf: - type: 'null' - - *834 + - *836 sender: *4 required: - action @@ -172180,11 +172540,11 @@ webhooks: - from required: - note - enterprise: *831 - installation: *832 - organization: *833 - project_card: *875 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project_card: *877 + repository: *836 sender: *4 required: - action @@ -172278,9 +172638,9 @@ webhooks: - from required: - column_id - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 project_card: allOf: - title: Project Card @@ -172477,7 +172837,7 @@ webhooks: type: string required: - after_id - repository: *834 + repository: *836 sender: *4 required: - action @@ -172557,10 +172917,10 @@ webhooks: type: string enum: - closed - enterprise: *831 - installation: *832 - organization: *833 - project: &877 + enterprise: *833 + installation: *834 + organization: *835 + project: &879 title: Project type: object properties: @@ -172687,7 +173047,7 @@ webhooks: - creator - created_at - updated_at - repository: *834 + repository: *836 sender: *4 required: - action @@ -172767,10 +173127,10 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - project_column: &876 + enterprise: *833 + installation: *834 + organization: *835 + project_column: &878 title: Project Column type: object properties: @@ -172810,7 +173170,7 @@ webhooks: - name - created_at - updated_at - repository: *834 + repository: *836 sender: *4 required: - action @@ -172889,14 +173249,14 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - project_column: *876 + enterprise: *833 + installation: *834 + organization: *835 + project_column: *878 repository: anyOf: - type: 'null' - - *834 + - *836 sender: *4 required: - action @@ -172985,11 +173345,11 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - organization: *833 - project_column: *876 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project_column: *878 + repository: *836 sender: *4 required: - action @@ -173069,11 +173429,11 @@ webhooks: type: string enum: - moved - enterprise: *831 - installation: *832 - organization: *833 - project_column: *876 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project_column: *878 + repository: *836 sender: *4 required: - action @@ -173153,11 +173513,11 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - project: *877 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project: *879 + repository: *836 sender: *4 required: - action @@ -173237,14 +173597,14 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - project: *877 + enterprise: *833 + installation: *834 + organization: *835 + project: *879 repository: anyOf: - type: 'null' - - *834 + - *836 sender: *4 required: - action @@ -173345,11 +173705,11 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - organization: *833 - project: *877 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project: *879 + repository: *836 sender: *4 required: - action @@ -173428,11 +173788,11 @@ webhooks: type: string enum: - reopened - enterprise: *831 - installation: *832 - organization: *833 - project: *877 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + project: *879 + repository: *836 sender: *4 required: - action @@ -173513,9 +173873,9 @@ webhooks: type: string enum: - closed - installation: *832 - organization: *833 - projects_v2: *386 + installation: *834 + organization: *835 + projects_v2: *388 sender: *4 required: - action @@ -173596,9 +173956,9 @@ webhooks: type: string enum: - created - installation: *832 - organization: *833 - projects_v2: *386 + installation: *834 + organization: *835 + projects_v2: *388 sender: *4 required: - action @@ -173679,9 +174039,9 @@ webhooks: type: string enum: - deleted - installation: *832 - organization: *833 - projects_v2: *386 + installation: *834 + organization: *835 + projects_v2: *388 sender: *4 required: - action @@ -173802,9 +174162,9 @@ webhooks: type: string to: type: string - installation: *832 - organization: *833 - projects_v2: *386 + installation: *834 + organization: *835 + projects_v2: *388 sender: *4 required: - action @@ -173887,7 +174247,7 @@ webhooks: type: string enum: - archived - changes: &881 + changes: &883 type: object properties: archived_at: @@ -173903,9 +174263,9 @@ webhooks: - string - 'null' format: date-time - installation: *832 - organization: *833 - projects_v2_item: &878 + installation: *834 + organization: *835 + projects_v2_item: &880 title: Projects v2 Item description: An item belonging to a project type: object @@ -173923,7 +174283,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *392 + content_type: *394 creator: *4 created_at: type: string @@ -174045,9 +174405,9 @@ webhooks: - 'null' to: type: string - installation: *832 - organization: *833 - projects_v2_item: *878 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174129,9 +174489,9 @@ webhooks: type: string enum: - created - installation: *832 - organization: *833 - projects_v2_item: *878 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174212,9 +174572,9 @@ webhooks: type: string enum: - deleted - installation: *832 - organization: *833 - projects_v2_item: *878 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174319,7 +174679,7 @@ webhooks: oneOf: - type: string - type: integer - - &879 + - &881 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -174343,7 +174703,7 @@ webhooks: required: - id - name - - &880 + - &882 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -174383,8 +174743,8 @@ webhooks: oneOf: - type: string - type: integer - - *879 - - *880 + - *881 + - *882 type: - 'null' - string @@ -174407,9 +174767,9 @@ webhooks: - 'null' required: - body - installation: *832 - organization: *833 - projects_v2_item: *878 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174506,9 +174866,9 @@ webhooks: type: - string - 'null' - installation: *832 - organization: *833 - projects_v2_item: *878 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174591,10 +174951,10 @@ webhooks: type: string enum: - restored - changes: *881 - installation: *832 - organization: *833 - projects_v2_item: *878 + changes: *883 + installation: *834 + organization: *835 + projects_v2_item: *880 sender: *4 required: - action @@ -174676,9 +175036,9 @@ webhooks: type: string enum: - reopened - installation: *832 - organization: *833 - projects_v2: *386 + installation: *834 + organization: *835 + projects_v2: *388 sender: *4 required: - action @@ -174759,9 +175119,9 @@ webhooks: type: string enum: - created - installation: *832 - organization: *833 - projects_v2_status_update: *882 + installation: *834 + organization: *835 + projects_v2_status_update: *884 sender: *4 required: - action @@ -174842,9 +175202,9 @@ webhooks: type: string enum: - deleted - installation: *832 - organization: *833 - projects_v2_status_update: *882 + installation: *834 + organization: *835 + projects_v2_status_update: *884 sender: *4 required: - action @@ -174990,9 +175350,9 @@ webhooks: - string - 'null' format: date - installation: *832 - organization: *833 - projects_v2_status_update: *882 + installation: *834 + organization: *835 + projects_v2_status_update: *884 sender: *4 required: - action @@ -175063,10 +175423,10 @@ webhooks: title: public event type: object properties: - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - repository @@ -175143,13 +175503,13 @@ webhooks: type: string enum: - assigned - assignee: *858 - enterprise: *831 - installation: *832 - number: &883 + assignee: *860 + enterprise: *833 + installation: *834 + number: &885 description: The pull request number. type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -177498,7 +177858,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -177580,11 +177940,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -179926,7 +180286,7 @@ webhooks: - draft reason: type: string - repository: *834 + repository: *836 sender: *4 required: - action @@ -180008,11 +180368,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -182354,7 +182714,7 @@ webhooks: - draft reason: type: string - repository: *834 + repository: *836 sender: *4 required: - action @@ -182436,13 +182796,13 @@ webhooks: type: string enum: - closed - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: &884 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: &886 allOf: - - *683 + - *685 - type: object properties: allow_auto_merge: @@ -182504,7 +182864,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *834 + repository: *836 sender: *4 required: - action @@ -182585,12 +182945,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: *884 - repository: *834 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: *886 + repository: *836 sender: *4 required: - action @@ -182670,11 +183030,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *831 - milestone: *389 - number: *883 - organization: *833 - pull_request: &885 + enterprise: *833 + milestone: *391 + number: *885 + organization: *835 + pull_request: &887 title: Pull Request type: object properties: @@ -185001,7 +185361,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -185080,11 +185440,11 @@ webhooks: type: string enum: - dequeued - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -187430,7 +187790,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *834 + repository: *836 sender: *4 required: - action @@ -187554,12 +187914,12 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: *884 - repository: *834 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: *886 + repository: *836 sender: *4 required: - action @@ -187639,11 +187999,11 @@ webhooks: type: string enum: - enqueued - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -189974,7 +190334,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -190054,11 +190414,11 @@ webhooks: type: string enum: - labeled - enterprise: *831 - installation: *832 - label: *852 - number: *883 - organization: *833 + enterprise: *833 + installation: *834 + label: *854 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -192406,7 +192766,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -192487,10 +192847,10 @@ webhooks: type: string enum: - locked - enterprise: *831 - installation: *832 - number: *883 - organization: *833 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -194836,7 +195196,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -194916,12 +195276,12 @@ webhooks: type: string enum: - milestoned - enterprise: *831 - milestone: *389 - number: *883 - organization: *833 - pull_request: *885 - repository: *834 + enterprise: *833 + milestone: *391 + number: *885 + organization: *835 + pull_request: *887 + repository: *836 sender: *4 required: - action @@ -195000,12 +195360,12 @@ webhooks: type: string enum: - opened - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: *884 - repository: *834 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: *886 + repository: *836 sender: *4 required: - action @@ -195086,12 +195446,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: *884 - repository: *834 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: *886 + repository: *836 sender: *4 required: - action @@ -195171,12 +195531,12 @@ webhooks: type: string enum: - reopened - enterprise: *831 - installation: *832 - number: *883 - organization: *833 - pull_request: *884 - repository: *834 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 + pull_request: *886 + repository: *836 sender: *4 required: - action @@ -195551,9 +195911,9 @@ webhooks: - start_side - side - reactions - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: type: object properties: @@ -197783,7 +198143,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *834 + repository: *836 sender: *4 required: - action @@ -197863,7 +198223,7 @@ webhooks: type: string enum: - deleted - comment: &887 + comment: &889 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. @@ -198156,9 +198516,9 @@ webhooks: - start_side - side - reactions - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: type: object properties: @@ -200376,7 +200736,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *834 + repository: *836 sender: *4 required: - action @@ -200456,11 +200816,11 @@ webhooks: type: string enum: - edited - changes: *886 - comment: *887 - enterprise: *831 - installation: *832 - organization: *833 + changes: *888 + comment: *889 + enterprise: *833 + installation: *834 + organization: *835 pull_request: type: object properties: @@ -202681,7 +203041,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *834 + repository: *836 sender: *4 required: - action @@ -202762,9 +203122,9 @@ webhooks: type: string enum: - dismissed - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: title: Simple Pull Request type: object @@ -204997,7 +205357,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *834 + repository: *836 review: description: The review that was affected. type: object @@ -205248,9 +205608,9 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: title: Simple Pull Request type: object @@ -207364,8 +207724,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *834 - review: &888 + repository: *836 + review: &890 description: The review that was affected. type: object properties: @@ -207603,12 +207963,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: description: The pull request number. type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -209955,7 +210315,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 requested_reviewer: title: User type: @@ -210041,12 +210401,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: description: The pull request number. type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -212400,7 +212760,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 requested_team: title: Team description: Groups of organization members that gives permissions @@ -212595,12 +212955,12 @@ webhooks: type: string enum: - review_requested - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: description: The pull request number. type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -214949,7 +215309,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 requested_reviewer: title: User type: @@ -215036,12 +215396,12 @@ webhooks: type: string enum: - review_requested - enterprise: *831 - installation: *832 + enterprise: *833 + installation: *834 number: description: The pull request number. type: integer - organization: *833 + organization: *835 pull_request: title: Pull Request type: object @@ -217381,7 +217741,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 requested_team: title: Team description: Groups of organization members that gives permissions @@ -217565,9 +217925,9 @@ webhooks: type: string enum: - submitted - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: title: Simple Pull Request type: object @@ -219803,8 +220163,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *834 - review: *888 + repository: *836 + review: *890 sender: *4 required: - action @@ -219884,9 +220244,9 @@ webhooks: type: string enum: - resolved - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: title: Simple Pull Request type: object @@ -222017,7 +222377,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *834 + repository: *836 sender: *4 thread: type: object @@ -222414,9 +222774,9 @@ webhooks: type: string enum: - unresolved - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 pull_request: title: Simple Pull Request type: object @@ -224530,7 +224890,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *834 + repository: *836 sender: *4 thread: type: object @@ -224929,10 +225289,10 @@ webhooks: type: string before: type: string - enterprise: *831 - installation: *832 - number: *883 - organization: *833 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -227267,7 +227627,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -227349,11 +227709,11 @@ webhooks: type: string enum: - unassigned - assignee: *889 - enterprise: *831 - installation: *832 - number: *883 - organization: *833 + assignee: *891 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -229703,7 +230063,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -229782,11 +230142,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *831 - installation: *832 - label: *852 - number: *883 - organization: *833 + enterprise: *833 + installation: *834 + label: *854 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -232125,7 +232485,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -232206,10 +232566,10 @@ webhooks: type: string enum: - unlocked - enterprise: *831 - installation: *832 - number: *883 - organization: *833 + enterprise: *833 + installation: *834 + number: *885 + organization: *835 pull_request: title: Pull Request type: object @@ -234538,7 +234898,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *834 + repository: *836 sender: *4 required: - action @@ -234741,7 +235101,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *831 + enterprise: *833 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -234836,8 +235196,8 @@ webhooks: - url - author - committer - installation: *832 - organization: *833 + installation: *834 + organization: *835 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -235425,9 +235785,9 @@ webhooks: type: string enum: - published - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 registry_package: type: object properties: @@ -235904,7 +236264,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *872 + items: *874 summary: type: string tag_name: @@ -235960,7 +236320,7 @@ webhooks: - owner - package_version - registry - repository: *834 + repository: *836 sender: *4 required: - action @@ -236038,9 +236398,9 @@ webhooks: type: string enum: - updated - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 registry_package: type: object properties: @@ -236352,7 +236712,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *872 + items: *874 summary: type: string tag_name: @@ -236402,7 +236762,7 @@ webhooks: - owner - package_version - registry - repository: *834 + repository: *836 sender: *4 required: - action @@ -236479,10 +236839,10 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - release: &890 + enterprise: *833 + installation: *834 + organization: *835 + release: &892 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -236813,7 +237173,7 @@ webhooks: - updated_at - zipball_url - body - repository: *834 + repository: *836 sender: *4 required: - action @@ -236890,11 +237250,11 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - release: *890 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + release: *892 + repository: *836 sender: *4 required: - action @@ -237011,11 +237371,11 @@ webhooks: type: boolean required: - to - enterprise: *831 - installation: *832 - organization: *833 - release: *890 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + release: *892 + repository: *836 sender: *4 required: - action @@ -237093,9 +237453,9 @@ webhooks: type: string enum: - prereleased - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -237431,7 +237791,7 @@ webhooks: - string - 'null' format: uri - repository: *834 + repository: *836 sender: *4 required: - action @@ -237507,10 +237867,10 @@ webhooks: type: string enum: - published - enterprise: *831 - installation: *832 - organization: *833 - release: &891 + enterprise: *833 + installation: *834 + organization: *835 + release: &893 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -237843,7 +238203,7 @@ webhooks: - string - 'null' format: uri - repository: *834 + repository: *836 sender: *4 required: - action @@ -237919,11 +238279,11 @@ webhooks: type: string enum: - released - enterprise: *831 - installation: *832 - organization: *833 - release: *890 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + release: *892 + repository: *836 sender: *4 required: - action @@ -237999,11 +238359,11 @@ webhooks: type: string enum: - unpublished - enterprise: *831 - installation: *832 - organization: *833 - release: *891 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + release: *893 + repository: *836 sender: *4 required: - action @@ -238079,11 +238439,11 @@ webhooks: type: string enum: - published - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - repository_advisory: *736 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + repository_advisory: *738 sender: *4 required: - action @@ -238159,11 +238519,11 @@ webhooks: type: string enum: - reported - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - repository_advisory: *736 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + repository_advisory: *738 sender: *4 required: - action @@ -238239,10 +238599,10 @@ webhooks: type: string enum: - archived - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238319,10 +238679,10 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238400,10 +238760,10 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238488,10 +238848,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238606,10 +238966,10 @@ webhooks: - 'null' items: type: string - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238681,10 +239041,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 status: type: string @@ -238765,10 +239125,10 @@ webhooks: type: string enum: - privatized - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238845,10 +239205,10 @@ webhooks: type: string enum: - publicized - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -238942,10 +239302,10 @@ webhooks: - name required: - repository - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -239025,10 +239385,10 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 repository_ruleset: *179 sender: *4 required: @@ -239107,10 +239467,10 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 repository_ruleset: *179 sender: *4 required: @@ -239189,10 +239549,10 @@ webhooks: type: string enum: - edited - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 repository_ruleset: *179 changes: type: object @@ -239254,16 +239614,16 @@ webhooks: properties: added: type: array - items: *704 + items: *706 deleted: type: array - items: *704 + items: *706 updated: type: array items: type: object properties: - rule: *704 + rule: *706 changes: type: object properties: @@ -239500,10 +239860,10 @@ webhooks: - from required: - owner - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -239581,10 +239941,10 @@ webhooks: type: string enum: - unarchived - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -239662,7 +240022,7 @@ webhooks: type: string enum: - create - alert: &892 + alert: &894 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -239786,10 +240146,10 @@ webhooks: type: string enum: - open - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -239999,10 +240359,10 @@ webhooks: type: string enum: - dismissed - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240080,11 +240440,11 @@ webhooks: type: string enum: - reopen - alert: *892 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + alert: *894 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240286,10 +240646,10 @@ webhooks: enum: - fixed - open - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240367,7 +240727,7 @@ webhooks: type: string enum: - created - alert: &893 + alert: &895 type: object properties: number: *119 @@ -240481,10 +240841,10 @@ webhooks: anyOf: - type: 'null' - *4 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240565,11 +240925,11 @@ webhooks: type: string enum: - created - alert: *893 - installation: *832 - location: *894 - organization: *833 - repository: *834 + alert: *895 + installation: *834 + location: *896 + organization: *835 + repository: *836 sender: *4 required: - location @@ -240807,11 +241167,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *893 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + alert: *895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240889,11 +241249,11 @@ webhooks: type: string enum: - reopened - alert: *893 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + alert: *895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -240971,11 +241331,11 @@ webhooks: type: string enum: - resolved - alert: *893 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + alert: *895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -241053,11 +241413,11 @@ webhooks: type: string enum: - validated - alert: *893 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + alert: *895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -241187,10 +241547,10 @@ webhooks: - organization - enterprise - - repository: *834 - enterprise: *831 - installation: *832 - organization: *833 + repository: *836 + enterprise: *833 + installation: *834 + organization: *835 sender: *4 required: - action @@ -241268,11 +241628,11 @@ webhooks: type: string enum: - published - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - security_advisory: &895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + security_advisory: &897 description: The details of the security advisory, including summary, description, and severity. type: object @@ -241458,11 +241818,11 @@ webhooks: type: string enum: - updated - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 - security_advisory: *895 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 + security_advisory: *897 sender: *4 required: - action @@ -241535,10 +241895,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -241724,11 +242084,11 @@ webhooks: from: type: object properties: - security_and_analysis: *399 - enterprise: *831 - installation: *832 - organization: *833 - repository: *463 + security_and_analysis: *401 + enterprise: *833 + installation: *834 + organization: *835 + repository: *465 sender: *4 required: - changes @@ -241806,12 +242166,12 @@ webhooks: type: string enum: - cancelled - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: &896 + sponsorship: &898 type: object properties: created_at: @@ -242116,12 +242476,12 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: *896 + sponsorship: *898 required: - action - sponsorship @@ -242209,12 +242569,12 @@ webhooks: type: string required: - from - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: *896 + sponsorship: *898 required: - action - changes @@ -242291,17 +242651,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &897 + effective_date: &899 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: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: *896 + sponsorship: *898 required: - action - sponsorship @@ -242375,7 +242735,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &898 + changes: &900 type: object properties: tier: @@ -242419,13 +242779,13 @@ webhooks: - from required: - tier - effective_date: *897 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + effective_date: *899 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: *896 + sponsorship: *898 required: - action - changes @@ -242502,13 +242862,13 @@ webhooks: type: string enum: - tier_changed - changes: *898 - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + changes: *900 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - sponsorship: *896 + sponsorship: *898 required: - action - changes @@ -242582,10 +242942,10 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242669,10 +243029,10 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -243106,15 +243466,15 @@ webhooks: type: - string - 'null' - enterprise: *831 + enterprise: *833 id: description: The unique identifier of the status. type: integer - installation: *832 + installation: *834 name: type: string - organization: *833 - repository: *834 + organization: *835 + repository: *836 sender: *4 sha: description: The Commit SHA. @@ -243230,9 +243590,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -243322,9 +243682,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -243414,9 +243774,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -243506,9 +243866,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *219 - installation: *832 - organization: *833 - repository: *834 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -243585,12 +243945,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - team: &899 + team: &901 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -243820,9 +244180,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 repository: title: Repository description: A git repository @@ -244292,7 +244652,7 @@ webhooks: - topics - visibility sender: *4 - team: *899 + team: *901 required: - action - team @@ -244368,9 +244728,9 @@ webhooks: type: string enum: - created - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 repository: title: Repository description: A git repository @@ -244840,7 +245200,7 @@ webhooks: - topics - visibility sender: *4 - team: *899 + team: *901 required: - action - team @@ -244917,9 +245277,9 @@ webhooks: type: string enum: - deleted - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 repository: title: Repository description: A git repository @@ -245389,7 +245749,7 @@ webhooks: - topics - visibility sender: *4 - team: *899 + team: *901 required: - action - team @@ -245533,9 +245893,9 @@ webhooks: - from required: - permissions - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 repository: title: Repository description: A git repository @@ -246005,7 +246365,7 @@ webhooks: - topics - visibility sender: *4 - team: *899 + team: *901 required: - action - changes @@ -246083,9 +246443,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *831 - installation: *832 - organization: *833 + enterprise: *833 + installation: *834 + organization: *835 repository: title: Repository description: A git repository @@ -246555,7 +246915,7 @@ webhooks: - topics - visibility sender: *4 - team: *899 + team: *901 required: - action - team @@ -246631,10 +246991,10 @@ webhooks: type: string enum: - started - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 required: - action @@ -246707,17 +247067,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *831 + enterprise: *833 inputs: type: - object - 'null' additionalProperties: true - installation: *832 - organization: *833 + installation: *834 + organization: *835 ref: type: string - repository: *834 + repository: *836 sender: *4 workflow: type: string @@ -246799,10 +247159,10 @@ webhooks: type: string enum: - completed - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 workflow_job: allOf: @@ -247058,7 +247418,7 @@ webhooks: type: string required: - conclusion - deployment: *590 + deployment: *592 required: - action - repository @@ -247137,10 +247497,10 @@ webhooks: type: string enum: - in_progress - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 workflow_job: allOf: @@ -247422,7 +247782,7 @@ webhooks: required: - status - steps - deployment: *590 + deployment: *592 required: - action - repository @@ -247501,10 +247861,10 @@ webhooks: type: string enum: - queued - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 workflow_job: type: object @@ -247650,7 +248010,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *590 + deployment: *592 required: - action - repository @@ -247729,10 +248089,10 @@ webhooks: type: string enum: - waiting - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 workflow_job: type: object @@ -247879,7 +248239,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *590 + deployment: *592 required: - action - repository @@ -247959,12 +248319,12 @@ webhooks: type: string enum: - completed - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - workflow: *848 + workflow: *850 workflow_run: title: Workflow Run type: object @@ -248983,12 +249343,12 @@ webhooks: type: string enum: - in_progress - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - workflow: *848 + workflow: *850 workflow_run: title: Workflow Run type: object @@ -249992,12 +250352,12 @@ webhooks: type: string enum: - requested - enterprise: *831 - installation: *832 - organization: *833 - repository: *834 + enterprise: *833 + installation: *834 + organization: *835 + repository: *836 sender: *4 - workflow: *848 + workflow: *850 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/ghec.2022-11-28.json b/descriptions-next/ghec/ghec.2022-11-28.json index f6f26dad3..e40451a5c 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -23707,6 +23707,359 @@ } } }, + "/orgs/{org}/artifacts/metadata/deployment-record": { + "post": { + "summary": "Create an artifact deployment record", + "description": "Create or update deployment records for an artifact associated with an organization.\nThis endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment.", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-artifact-deployment-record", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-an-artifact-deployment-record" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "examples": [ + "libfoo" + ] + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The status of the artifact. Can be either deployed or decommissioned.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "cluster": { + "type": "string", + "description": "The deployment cluster." + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment." + }, + "tags": { + "type": "object", + "description": "The tags associated with the deployment.", + "additionalProperties": { + "type": "string" + }, + "maxProperties": 5 + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + } + }, + "required": [ + "name", + "digest", + "status", + "logical_environment", + "deployment_name" + ] + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "data-access": "sensitive" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/artifact-deployment-record" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/artifact-deployment-record-list" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": { + "post": { + "summary": "Set cluster deployment records", + "description": "Set deployment records for a given cluster.", + "tags": [ + "orgs" + ], + "operationId": "orgs/set-cluster-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#set-cluster-deployment-records" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "name": "cluster", + "in": "path", + "description": "The cluster name.", + "required": true, + "schema": { + "type": "string", + "minLength": 1, + "maxLength": 64, + "pattern": "^[a-zA-Z0-9._-]+$" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "logical_environment": { + "type": "string", + "description": "The stage of the deployment." + }, + "physical_environment": { + "type": "string", + "description": "The physical region of the deployment." + }, + "deployments": { + "type": "array", + "description": "The list of deployments to record.", + "items": { + "type": "object", + "maxLength": 100, + "properties": { + "name": { + "type": "string", + "description": "The name of the artifact.", + "minLength": 1, + "maxLength": 255 + }, + "digest": { + "type": "string", + "description": "The hex encoded digest of the artifact.", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + }, + "version": { + "type": "string", + "description": "The artifact version.", + "minLength": 1, + "maxLength": 100, + "x-multi-segment": true, + "examples": [ + "1.2.3" + ] + }, + "status": { + "type": "string", + "description": "The deployment status of the artifact.", + "enum": [ + "deployed", + "decommissioned" + ] + }, + "deployment_name": { + "type": "string", + "description": "The name of the deployment.", + "minLength": 1, + "maxLength": 128 + }, + "github_repository": { + "type": "string", + "description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.", + "minLength": 1, + "maxLength": 100, + "pattern": "^[A-Za-z0-9.\\-_]+$", + "examples": [ + "my-github-repo" + ] + }, + "tags": { + "type": "object", + "description": "Key-value pairs to tag the deployment record.", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + } + } + } + } + } + }, + "examples": { + "default": { + "value": { + "name": "awesome-image", + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "version": "2.1.0", + "status": "deployed", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "deployment-pod", + "tags": { + "runtime-risk": "sensitive-data" + } + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Artifact deployment record stored successfully.", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records created", + "type": "integer" + }, + "deployment_records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/artifact-deployment-record" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/artifact-deployment-record-list" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/metadata/storage-record": { "post": { "summary": "Create artifact metadata storage record", @@ -23927,6 +24280,66 @@ } } }, + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": { + "get": { + "summary": "List artifact deployment records", + "description": "List deployment records for an artifact metadata associated with an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-artifact-deployment-records", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-deployment-records" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/subject-digest" + } + ], + "responses": { + "200": { + "description": "Successful response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "total_count": { + "description": "The number of deployment records for this digest and organization", + "type": "integer", + "examples": [ + 3 + ] + }, + "deployment_records": { + "type": "array", + "items": { + "$ref": "#/components/schemas/artifact-deployment-record" + } + } + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/artifact-deployment-record-list" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "artifact-metadata" + } + } + }, "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": { "get": { "summary": "List artifact storage records", @@ -128170,10 +128583,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } } @@ -128265,10 +128676,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -128430,10 +128839,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -128511,10 +128918,8 @@ "null" ], "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, "values_editable_by": { @@ -136535,6 +136940,65 @@ "visibility" ] }, + "artifact-deployment-record": { + "title": "Artifact Deployment Record", + "description": "Artifact Metadata Deployment Record", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "digest": { + "type": "string" + }, + "logical_environment": { + "type": "string" + }, + "physical_environment": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "deployment_name": { + "type": "string" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "runtime_risks": { + "type": "array", + "description": "A list of runtime risks associated with the deployment.", + "maxItems": 4, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "critical-resource", + "internet-exposed", + "lateral-movement", + "sensitive-data" + ] + } + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "attestation_id": { + "type": [ + "integer", + "null" + ], + "description": "The ID of the provenance attestation associated with the deployment record." + } + } + }, "campaign-state": { "title": "Campaign state", "description": "Indicates whether a campaign is open or closed", @@ -149069,6 +149533,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -317456,6 +317921,27 @@ "selected_repositories_url": "https://api.github.com/orgs/octo-org/actions/variables/USERNAME/repositories" } }, + "artifact-deployment-record-list": { + "value": { + "total_count": 1, + "deployment_records": [ + { + "id": 123, + "digest": "sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72", + "logical_environment": "prod", + "physical_environment": "pacific-east", + "cluster": "moda-1", + "deployment_name": "prod-deployment", + "tags": { + "data": "sensitive" + }, + "created": "2011-01-26T19:14:43Z", + "updated_at": "2011-01-26T19:14:43Z", + "attestation_id": 456 + } + ] + } + }, "bulk-subject-digest-body": { "value": { "subject_digests": [ @@ -341332,16 +341818,14 @@ "ssh-signing-key-items": { "value": [ { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" }, { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "id": 3, - "url": "https://api.github.com/user/keys/3", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAB", "created_at": "2020-07-11T21:31:57Z" } @@ -341349,9 +341833,8 @@ }, "ssh-signing-key": { "value": { - "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "id": 2, - "url": "https://api.github.com/user/keys/2", + "key": "2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234", "title": "ssh-rsa AAAAB3NzaC1yc2EAAA", "created_at": "2020-06-11T21:31:57Z" } @@ -344664,6 +345147,18 @@ "type": "string" } }, + "subject-digest": { + "name": "subject_digest", + "description": "The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`.", + "in": "path", + "required": true, + "schema": { + "type": "string", + "minLength": 71, + "maxLength": 71, + "pattern": "^sha256:[a-f0-9]{64}$" + } + }, "audit-log-phrase": { "name": "phrase", "description": "A search phrase. For more information, see [Searching the audit log](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization#searching-the-audit-log).", diff --git a/descriptions-next/ghec/ghec.2022-11-28.yaml b/descriptions-next/ghec/ghec.2022-11-28.yaml index a1e6dda86..fef449a0f 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -17018,6 +17018,277 @@ paths: enabledForGitHubApps: true category: announcement-banners subcategory: organizations + "/orgs/{org}/artifacts/metadata/deployment-record": + post: + summary: Create an artifact deployment record + description: |- + Create or update deployment records for an artifact associated with an organization. + This endpoint allows you to record information about a specific artifact, such as its name, digest, environments, cluster, and deployment. + tags: + - orgs + operationId: orgs/create-artifact-deployment-record + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-an-artifact-deployment-record + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + examples: + - libfoo + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The status of the artifact. Can be either deployed + or decommissioned. + enum: + - deployed + - decommissioned + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + cluster: + type: string + description: The deployment cluster. + deployment_name: + type: string + description: The name of the deployment. + tags: + type: object + description: The tags associated with the deployment. + additionalProperties: + type: string + maxProperties: 5 + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + required: + - name + - digest + - status + - logical_environment + - deployment_name + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + data-access: sensitive + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: + "$ref": "#/components/schemas/artifact-deployment-record" + examples: + default: + "$ref": "#/components/examples/artifact-deployment-record-list" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata + "/orgs/{org}/artifacts/metadata/deployment-record/cluster/{cluster}": + post: + summary: Set cluster deployment records + description: Set deployment records for a given cluster. + tags: + - orgs + operationId: orgs/set-cluster-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#set-cluster-deployment-records + parameters: + - "$ref": "#/components/parameters/org" + - name: cluster + in: path + description: The cluster name. + required: true + schema: + type: string + minLength: 1 + maxLength: 64 + pattern: "^[a-zA-Z0-9._-]+$" + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + logical_environment: + type: string + description: The stage of the deployment. + physical_environment: + type: string + description: The physical region of the deployment. + deployments: + type: array + description: The list of deployments to record. + items: + type: object + maxLength: 100 + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + maxLength: 255 + digest: + type: string + description: The hex encoded digest of the artifact. + minLength: 71 + maxLength: 71 + pattern: "^sha256:[a-f0-9]{64}$" + version: + type: string + description: The artifact version. + minLength: 1 + maxLength: 100 + x-multi-segment: true + examples: + - 1.2.3 + status: + type: string + description: The deployment status of the artifact. + enum: + - deployed + - decommissioned + deployment_name: + type: string + description: The name of the deployment. + minLength: 1 + maxLength: 128 + github_repository: + type: string + description: |- + The name of the GitHub repository associated with the artifact. This should be used + when there are no provenance attestations available for the artifact. The repository + must belong to the organization specified in the path parameter. + + If a provenance attestation is available for the artifact, the API will use + the repository information from the attestation instead of this parameter. + minLength: 1 + maxLength: 100 + pattern: "^[A-Za-z0-9.\\-_]+$" + examples: + - my-github-repo + tags: + type: object + description: Key-value pairs to tag the deployment record. + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - sensitive-data + examples: + default: + value: + name: awesome-image + digest: sha256:1bb1e949e55dcefc6353e7b36c8897d2a107d8e8dca49d4e3c0ea8493fc0bc72 + version: 2.1.0 + status: deployed + logical_environment: prod + physical_environment: pacific-east + cluster: moda-1 + deployment_name: deployment-pod + tags: + runtime-risk: sensitive-data + responses: + '200': + description: Artifact deployment record stored successfully. + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records created + type: integer + deployment_records: + type: array + items: + "$ref": "#/components/schemas/artifact-deployment-record" + examples: + default: + "$ref": "#/components/examples/artifact-deployment-record-list" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/metadata/storage-record": post: summary: Create artifact metadata storage record @@ -17183,6 +17454,46 @@ paths: enabledForGitHubApps: true category: orgs subcategory: artifact-metadata + "/orgs/{org}/artifacts/{subject_digest}/metadata/deployment-records": + get: + summary: List artifact deployment records + description: List deployment records for an artifact metadata associated with + an organization. + tags: + - orgs + operationId: orgs/list-artifact-deployment-records + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-deployment-records + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/subject-digest" + responses: + '200': + description: Successful response + content: + application/json: + schema: + type: object + properties: + total_count: + description: The number of deployment records for this digest + and organization + type: integer + examples: + - 3 + deployment_records: + type: array + items: + "$ref": "#/components/schemas/artifact-deployment-record" + examples: + default: + "$ref": "#/components/examples/artifact-deployment-record-list" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/{subject_digest}/metadata/storage-records": get: summary: List artifact storage records @@ -92683,8 +92994,6 @@ components: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -92750,8 +93059,6 @@ components: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -92868,8 +93175,6 @@ components: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -92927,8 +93232,6 @@ components: - 'null' items: type: string - maxLength: 75 - maxItems: 200 description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. @@ -98781,6 +99084,49 @@ components: - created_at - updated_at - visibility + artifact-deployment-record: + title: Artifact Deployment Record + description: Artifact Metadata Deployment Record + type: object + properties: + id: + type: integer + digest: + type: string + logical_environment: + type: string + physical_environment: + type: string + cluster: + type: string + deployment_name: + type: string + tags: + type: object + additionalProperties: + type: string + runtime_risks: + type: array + description: A list of runtime risks associated with the deployment. + maxItems: 4 + uniqueItems: true + items: + type: string + enum: + - critical-resource + - internet-exposed + - lateral-movement + - s{"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}