diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 20bcb00fd..18a9b5e2e 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -13248,6 +13248,349 @@ } } }, + "/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, + "example": "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, + "example": "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.\\-_]+$", + "example": "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, + "example": "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.\\-_]+$", + "example": "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", @@ -13444,6 +13787,64 @@ } } }, + "/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", + "example": 3, + "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/{subject_digest}/metadata/storage-records": { "get": { "summary": "List artifact storage records", @@ -110600,6 +111001,63 @@ "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + }, "campaign-state": { "title": "Campaign state", "description": "Indicates whether a campaign is open or closed", @@ -115264,10 +115722,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -115330,10 +115786,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -124618,6 +125072,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -282950,6 +283405,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": [ @@ -306681,16 +307157,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" } @@ -306698,9 +307172,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" } @@ -309618,6 +310091,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/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index e27b1afa1..b890bac80 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -9558,6 +9558,272 @@ 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 + example: 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 + example: 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.\\-_]+$" + example: 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 + example: 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.\\-_]+$" + example: 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 @@ -9711,6 +9977,45 @@ 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 + example: 3 + 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/{subject_digest}/metadata/storage-records": get: summary: List artifact storage records @@ -80620,6 +80925,48 @@ 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 + description: The ID of the provenance attestation associated with the deployment + record. + nullable: true campaign-state: title: Campaign state description: Indicates whether a campaign is open or closed @@ -84375,8 +84722,6 @@ components: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -84425,8 +84770,6 @@ components: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -91647,6 +91990,7 @@ components: type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -212036,6 +212380,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: @@ -232451,21 +232810,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: @@ -235023,6 +235379,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/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 20bcb00fd..18a9b5e2e 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -13248,6 +13248,349 @@ } } }, + "/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, + "example": "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, + "example": "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.\\-_]+$", + "example": "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, + "example": "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.\\-_]+$", + "example": "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", @@ -13444,6 +13787,64 @@ } } }, + "/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", + "example": 3, + "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/{subject_digest}/metadata/storage-records": { "get": { "summary": "List artifact storage records", @@ -110600,6 +111001,63 @@ "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + }, "campaign-state": { "title": "Campaign state", "description": "Indicates whether a campaign is open or closed", @@ -115264,10 +115722,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -115330,10 +115786,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -124618,6 +125072,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -282950,6 +283405,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": [ @@ -306681,16 +307157,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" } @@ -306698,9 +307172,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" } @@ -309618,6 +310091,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/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index e27b1afa1..b890bac80 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -9558,6 +9558,272 @@ 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 + example: 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 + example: 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.\\-_]+$" + example: 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 + example: 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.\\-_]+$" + example: 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 @@ -9711,6 +9977,45 @@ 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 + example: 3 + 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/{subject_digest}/metadata/storage-records": get: summary: List artifact storage records @@ -80620,6 +80925,48 @@ 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 + description: The ID of the provenance attestation associated with the deployment + record. + nullable: true campaign-state: title: Campaign state description: Indicates whether a campaign is open or closed @@ -84375,8 +84722,6 @@ components: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -84425,8 +84770,6 @@ components: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -91647,6 +91990,7 @@ components: type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -212036,6 +212380,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: @@ -232451,21 +232810,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: @@ -235023,6 +235379,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/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 9d8b3fe89..46e15043c 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -73601,6 +73601,505 @@ } } }, + "/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, + "example": "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, + "example": "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.\\-_]+$", + "example": "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + } + } + } + }, + "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, + "example": "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.\\-_]+$", + "example": "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + } + } + } + }, + "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", @@ -73803,6 +74302,151 @@ } } }, + "/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", + "example": 3, + "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + } + } + } + }, + "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", @@ -151428,10 +152072,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -151641,10 +152283,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -151772,10 +152412,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -151991,10 +152629,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -152172,10 +152808,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -152277,10 +152911,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -262085,6 +262717,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -262743,6 +263376,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -264344,6 +264978,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -563799,16 +564434,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" } @@ -563995,9 +564628,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" } @@ -564222,9 +564854,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" } @@ -616710,16 +617341,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" } @@ -667271,10 +667900,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -668151,10 +668778,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -668627,10 +669252,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index e1d4a825f..6437679a1 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -857,7 +857,7 @@ paths: - subscriptions_url - type - url - type: &302 + type: &304 type: string description: The type of credit the user is receiving. enum: @@ -1023,7 +1023,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &635 + - &637 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1579,7 +1579,7 @@ paths: schema: type: integer default: 30 - - &195 + - &197 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 @@ -1595,7 +1595,7 @@ paths: application/json: schema: type: array - items: &196 + items: &198 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1675,7 +1675,7 @@ paths: - installation_id - repository_id examples: - default: &197 + default: &199 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1803,7 +1803,7 @@ paths: description: Response content: application/json: - schema: &198 + schema: &200 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1917,7 +1917,7 @@ paths: - request - response examples: - default: &199 + default: &201 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2886,7 +2886,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &268 + properties: &270 id: description: Unique identifier of the repository example: 42 @@ -3324,7 +3324,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &269 + required: &271 - archive_url - assignees_url - blobs_url @@ -7435,7 +7435,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &169 + code_scanning_options: &171 type: object description: Security Configuration feature options for code scanning nullable: true @@ -7629,7 +7629,7 @@ paths: description: Response content: application/json: - schema: &171 + schema: &173 type: array description: A list of default code security configurations items: @@ -7645,7 +7645,7 @@ paths: default configuration: *43 examples: - default: &172 + default: &174 value: - default_for_new_repos: public configuration: @@ -7976,7 +7976,7 @@ paths: - *42 - *45 responses: - '204': &173 + '204': &175 description: A header with no content is returned. '400': *14 '403': *29 @@ -8103,7 +8103,7 @@ paths: default: value: default_for_new_repos: all - configuration: &170 + configuration: &172 value: id: 1325 target_type: organization @@ -8188,7 +8188,7 @@ paths: application/json: schema: type: array - items: &174 + items: &176 type: object description: Repositories associated with a code security configuration and attachment status @@ -8489,7 +8489,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &175 + repository: &177 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8583,7 +8583,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *42 - - &180 + - &182 name: state in: query description: |- @@ -8592,7 +8592,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &181 + - &183 name: severity in: query description: |- @@ -8601,7 +8601,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &182 + - &184 name: ecosystem in: query description: |- @@ -8610,14 +8610,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &183 + - &185 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 - - &184 + - &186 name: epss_percentage in: query description: |- @@ -8629,7 +8629,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 - - &473 + - &475 name: has in: query description: |- @@ -8643,7 +8643,7 @@ paths: type: string enum: - patch - - &185 + - &187 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8653,7 +8653,7 @@ paths: enum: - development - runtime - - &186 + - &188 name: sort in: query description: |- @@ -8679,11 +8679,11 @@ paths: application/json: schema: type: array - items: &187 + items: &189 type: object description: A Dependabot alert. properties: - number: &159 + number: &161 type: integer description: The security alert number. readOnly: true @@ -8745,7 +8745,7 @@ paths: - unknown - direct - transitive - security_advisory: &474 + security_advisory: &476 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -8948,29 +8948,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *52 - url: &162 + url: &164 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &163 + html_url: &165 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &160 + created_at: &162 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: &161 + updated_at: &163 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: &165 + dismissed_at: &167 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9000,14 +9000,14 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &164 + fixed_at: &166 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - auto_dismissed_at: &475 + auto_dismissed_at: &477 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9033,7 +9033,7 @@ paths: - repository additionalProperties: false examples: - default: &188 + default: &190 value: - number: 2 state: dismissed @@ -9817,7 +9817,7 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: &177 + properties: &179 login: type: string example: github @@ -9858,7 +9858,7 @@ paths: type: string example: A great organization nullable: true - required: &178 + required: &180 - login - url - id @@ -10303,7 +10303,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &524 + properties: &526 id: type: integer format: int64 @@ -10415,7 +10415,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &254 + properties: &256 url: type: string format: uri @@ -10485,7 +10485,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &255 + required: &257 - closed_issues - creator - description @@ -10564,7 +10564,7 @@ paths: timeline_url: type: string format: uri - type: &217 + type: &219 title: Issue Type description: The type of issue. type: object @@ -10675,7 +10675,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &647 + sub_issues_summary: &649 title: Sub-issues Summary type: object properties: @@ -10695,7 +10695,7 @@ paths: type: string format: uri nullable: true - issue_dependencies_summary: &648 + issue_dependencies_summary: &650 title: Issue Dependencies Summary type: object properties: @@ -10714,7 +10714,7 @@ paths: - total_blocking issue_field_values: type: array - items: &649 + items: &651 title: Issue Field Value description: A value assigned to an issue field type: object @@ -10774,7 +10774,7 @@ paths: - node_id - data_type - value - required: &525 + required: &527 - assignee - closed_at - comments @@ -10795,7 +10795,7 @@ paths: - user - created_at - updated_at - comment: &522 + comment: &524 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11365,7 +11365,7 @@ paths: url: type: string format: uri - user: &661 + user: &663 title: Public User description: Public User type: object @@ -13235,7 +13235,7 @@ paths: - closed - all default: open - - &220 + - &222 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -13286,7 +13286,7 @@ paths: type: array items: *82 examples: - default: &221 + default: &223 value: - id: 1 node_id: MDU6SXNzdWUx @@ -14670,14 +14670,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &325 + - &327 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &326 + - &328 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14739,7 +14739,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &332 + '301': &334 description: Moved permanently content: application/json: @@ -14761,7 +14761,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &554 + - &556 name: all description: If `true`, show notifications marked as read. in: query @@ -14769,7 +14769,7 @@ paths: schema: type: boolean default: false - - &555 + - &557 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14779,7 +14779,7 @@ paths: type: boolean default: false - *72 - - &556 + - &558 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: @@ -14815,7 +14815,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &190 + properties: &192 id: type: integer format: int64 @@ -15091,7 +15091,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &270 + security_and_analysis: &272 nullable: true type: object properties: @@ -15165,7 +15165,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &191 + required: &193 - archive_url - assignees_url - blobs_url @@ -15253,7 +15253,7 @@ paths: - url - subscription_url examples: - default: &557 + default: &559 value: - id: '1' repository: @@ -16121,7 +16121,7 @@ paths: - property_name - value examples: - default: &563 + default: &565 value: - property_name: environment value: production @@ -16171,7 +16171,7 @@ paths: required: - properties examples: - default: &564 + default: &566 value: properties: - property_name: environment @@ -16716,7 +16716,7 @@ paths: required: false schema: type: string - - &704 + - &706 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -16862,7 +16862,7 @@ paths: parameters: - *63 - *106 - - &707 + - &709 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 @@ -16974,7 +16974,7 @@ paths: - *106 - *108 - *107 - - &708 + - &710 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -16982,7 +16982,7 @@ paths: schema: type: string - *109 - - &709 + - &711 name: sku description: The SKU to query for usage. in: query @@ -17884,7 +17884,7 @@ paths: type: integer repository_cache_usages: type: array - items: &337 + items: &339 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19076,7 +19076,7 @@ paths: - all - local_only - selected - selected_actions_url: &343 + selected_actions_url: &345 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` @@ -19159,7 +19159,7 @@ paths: description: Response content: application/json: - schema: &347 + schema: &349 type: object properties: days: @@ -19201,7 +19201,7 @@ paths: required: true content: application/json: - schema: &348 + schema: &350 type: object properties: days: @@ -19258,7 +19258,7 @@ paths: required: - approval_policy examples: - default: &349 + default: &351 value: approval_policy: first_time_contributors '404': *6 @@ -19317,7 +19317,7 @@ paths: description: Response content: application/json: - schema: &350 + schema: &352 type: object required: - run_workflows_from_fork_pull_requests @@ -19371,7 +19371,7 @@ paths: required: true content: application/json: - schema: &351 + schema: &353 type: object required: - run_workflows_from_fork_pull_requests @@ -20006,7 +20006,7 @@ paths: description: Response content: application/json: - schema: &352 + schema: &354 type: object properties: default_workflow_permissions: &136 @@ -20057,7 +20057,7 @@ paths: required: false content: application/json: - schema: &353 + schema: &355 type: object properties: default_workflow_permissions: *136 @@ -20546,7 +20546,7 @@ paths: type: array items: *143 examples: - default: &664 + default: &666 value: total_count: 1 repositories: @@ -21188,7 +21188,7 @@ paths: application/json: schema: type: array - items: &354 + items: &356 title: Runner Application description: Runner Application type: object @@ -21213,7 +21213,7 @@ paths: - download_url - filename examples: - default: &355 + default: &357 value: - os: osx architecture: x64 @@ -21299,7 +21299,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &356 + '201': &358 description: Response content: application/json: @@ -21410,7 +21410,7 @@ paths: - token - expires_at examples: - default: &357 + default: &359 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -21449,7 +21449,7 @@ paths: application/json: schema: *147 examples: - default: &358 + default: &360 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -21483,7 +21483,7 @@ paths: application/json: schema: *145 examples: - default: &359 + default: &361 value: id: 23 name: MBP @@ -21709,7 +21709,7 @@ paths: - *63 - *144 responses: - '200': &360 + '200': &362 description: Response content: application/json: @@ -21766,7 +21766,7 @@ paths: parameters: - *63 - *144 - - &361 + - &363 name: name description: The name of a self-hosted runner's custom label. in: path @@ -21896,7 +21896,7 @@ paths: description: Response content: application/json: - schema: &373 + schema: &375 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -21925,7 +21925,7 @@ paths: - key_id - key examples: - default: &374 + default: &376 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -22338,7 +22338,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *63 - - &342 + - &344 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)." @@ -22803,6 +22803,324 @@ 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: + - *63 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + example: 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 + example: 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.\\-_]+$" + example: 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: &156 + 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 + description: The ID of the provenance attestation associated + with the deployment record. + nullable: true + examples: + default: &157 + 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: + - *63 + - 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 + example: 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.\\-_]+$" + example: 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: *156 + examples: + default: *157 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/metadata/storage-record": post: summary: Create artifact metadata storage record @@ -22956,6 +23274,51 @@ 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: + - *63 + - 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 + example: 3 + type: integer + deployment_records: + type: array + items: *156 + examples: + default: *157 + 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 @@ -23079,12 +23442,12 @@ paths: required: - subject_digests examples: - default: &692 + default: &694 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &693 + withPredicateType: &695 value: subject_digests: - sha256:abc123 @@ -23142,7 +23505,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &694 + default: &696 value: attestations_subject_digests: - sha256:abc: @@ -23491,7 +23854,7 @@ paths: initiator: type: string examples: - default: &387 + default: &389 value: attestations: - bundle: @@ -23710,7 +24073,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &156 + schema: &158 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -23736,7 +24099,7 @@ paths: application/json: schema: type: array - items: &157 + items: &159 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -23767,7 +24130,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &179 + items: &181 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -23842,7 +24205,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &232 + properties: &234 id: description: Unique identifier of the team type: integer @@ -23914,7 +24277,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &233 + required: &235 - id - node_id - url @@ -23957,7 +24320,7 @@ paths: type: string format: date-time nullable: true - state: *156 + state: *158 contact_link: description: The contact link of the campaign. type: string @@ -24177,9 +24540,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: &158 + default: &160 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -24262,9 +24625,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *158 + default: *160 '404': *6 '422': description: Unprocessable Entity @@ -24341,7 +24704,7 @@ paths: type: string format: uri nullable: true - state: *156 + state: *158 examples: default: value: @@ -24351,9 +24714,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *158 + default: *160 '400': description: Bad Request content: @@ -24420,17 +24783,17 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *63 - - &413 + - &415 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: &166 + schema: &168 type: string description: The name of the tool used to generate the code scanning analysis. - - &414 + - &416 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 @@ -24438,7 +24801,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &167 + schema: &169 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, @@ -24453,7 +24816,7 @@ paths: be returned. in: query required: false - schema: &416 + schema: &418 type: string description: State of a code scanning alert. enum: @@ -24476,7 +24839,7 @@ paths: be returned. in: query required: false - schema: &417 + schema: &419 type: string description: Severity of a code scanning alert. enum: @@ -24497,18 +24860,18 @@ paths: items: type: object properties: - number: *159 - created_at: *160 - updated_at: *161 - url: *162 - html_url: *163 - instances_url: &418 + number: *161 + created_at: *162 + updated_at: *163 + url: *164 + html_url: *165 + instances_url: &420 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &168 + state: &170 type: string description: State of a code scanning alert. nullable: true @@ -24516,7 +24879,7 @@ paths: - open - dismissed - fixed - fixed_at: *164 + fixed_at: *166 dismissed_by: title: Simple User description: A GitHub user. @@ -24524,8 +24887,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *165 - dismissed_reason: &419 + dismissed_at: *167 + dismissed_reason: &421 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -24534,13 +24897,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &420 + dismissed_comment: &422 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &421 + rule: &423 type: object properties: id: @@ -24593,25 +24956,25 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &422 + tool: &424 type: object properties: - name: *166 + name: *168 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *167 - most_recent_instance: &423 + guid: *169 + most_recent_instance: &425 type: object properties: - ref: &415 + ref: &417 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &433 + analysis_key: &435 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -24622,13 +24985,13 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &434 + category: &436 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: *168 + state: *170 commit_sha: type: string message: @@ -25135,7 +25498,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *169 + code_scanning_options: *171 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -25278,7 +25641,7 @@ paths: application/json: schema: *43 examples: - default: *170 + default: *172 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25306,9 +25669,9 @@ paths: description: Response content: application/json: - schema: *171 + schema: *173 examples: - default: *172 + default: *174 '304': *37 '403': *29 '404': *6 @@ -25360,7 +25723,7 @@ paths: - 32 - 91 responses: - '204': *173 + '204': *175 '400': *14 '403': *29 '404': *6 @@ -25395,7 +25758,7 @@ paths: application/json: schema: *43 examples: - default: *170 + default: *172 '304': *37 '403': *29 '404': *6 @@ -25679,7 +26042,7 @@ paths: - *63 - *45 responses: - '204': *173 + '204': *175 '400': *14 '403': *29 '404': *6 @@ -25817,7 +26180,7 @@ paths: default: value: default_for_new_repos: all - configuration: *170 + configuration: *172 '403': *29 '404': *6 x-github: @@ -25870,13 +26233,13 @@ paths: application/json: schema: type: array - items: *174 + items: *176 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *175 + repository: *177 '403': *29 '404': *6 x-github: @@ -25916,7 +26279,7 @@ paths: type: integer codespaces: type: array - items: &222 + items: &224 type: object title: Codespace description: A codespace. @@ -25946,7 +26309,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &446 + properties: &448 name: type: string description: The name of the machine. @@ -25988,7 +26351,7 @@ paths: - ready - in_progress nullable: true - required: &447 + required: &449 - name - display_name - operating_system @@ -26193,7 +26556,7 @@ paths: - pulls_url - recent_folders examples: - default: &223 + default: &225 value: total_count: 3 codespaces: @@ -26817,7 +27180,7 @@ paths: type: integer secrets: type: array - items: &176 + items: &178 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -26856,7 +27219,7 @@ paths: - updated_at - visibility examples: - default: &448 + default: &450 value: total_count: 2 secrets: @@ -26894,7 +27257,7 @@ paths: description: Response content: application/json: - schema: &449 + schema: &451 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -26923,7 +27286,7 @@ paths: - key_id - key examples: - default: &450 + default: &452 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26953,9 +27316,9 @@ paths: description: Response content: application/json: - schema: *176 + schema: *178 examples: - default: &452 + default: &454 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -27422,7 +27785,7 @@ paths: currently being billed. seats: type: array - items: &225 + items: &227 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -27439,14 +27802,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *177 - required: *178 + properties: *179 + required: *180 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *179 + - *181 - *55 nullable: true pending_cancellation_date: @@ -27953,7 +28316,7 @@ paths: application/json: schema: type: array - items: &307 + items: &309 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -28260,7 +28623,7 @@ paths: - date additionalProperties: true examples: - default: &308 + default: &310 value: - date: '2024-06-24' total_active_users: 24 @@ -28362,7 +28725,7 @@ paths: '500': *103 '403': *29 '404': *6 - '422': &309 + '422': &311 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -28390,11 +28753,11 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *63 - - *180 - - *181 - *182 - *183 - *184 + - *185 + - *186 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -28432,8 +28795,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *185 - - *186 + - *187 + - *188 - *48 - *40 - *41 @@ -28445,9 +28808,9 @@ paths: application/json: schema: type: array - items: *187 + items: *189 examples: - default: *188 + default: *190 '304': *37 '400': *14 '403': *29 @@ -28491,7 +28854,7 @@ paths: type: integer secrets: type: array - items: &189 + items: &191 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -28568,7 +28931,7 @@ paths: description: Response content: application/json: - schema: &478 + schema: &480 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -28585,7 +28948,7 @@ paths: - key_id - key examples: - default: &479 + default: &481 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28615,7 +28978,7 @@ paths: description: Response content: application/json: - schema: *189 + schema: *191 examples: default: value: @@ -28916,7 +29279,7 @@ paths: application/json: schema: type: array - items: &235 + items: &237 title: Package description: A software package type: object @@ -28966,8 +29329,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *190 - required: *191 + properties: *192 + required: *193 nullable: true created_at: type: string @@ -28986,7 +29349,7 @@ paths: - created_at - updated_at examples: - default: &236 + default: &238 value: - id: 197 name: hello_docker @@ -29156,7 +29519,7 @@ paths: application/json: schema: type: array - items: &214 + items: &216 title: Organization Invitation description: Organization Invitation type: object @@ -29203,7 +29566,7 @@ paths: - invitation_teams_url - node_id examples: - default: &215 + default: &217 value: - id: 1 login: monalisa @@ -29270,7 +29633,7 @@ paths: application/json: schema: type: array - items: &192 + items: &194 title: Org Hook description: Org Hook type: object @@ -29441,9 +29804,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *194 examples: - default: &193 + default: &195 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -29491,7 +29854,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *63 - - &194 + - &196 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. @@ -29504,9 +29867,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *194 examples: - default: *193 + default: *195 '404': *6 x-github: githubCloudOnly: false @@ -29534,7 +29897,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *63 - - *194 + - *196 requestBody: required: false content: @@ -29579,7 +29942,7 @@ paths: description: Response content: application/json: - schema: *192 + schema: *194 examples: default: value: @@ -29621,7 +29984,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *63 - - *194 + - *196 responses: '204': description: Response @@ -29649,7 +30012,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *63 - - *194 + - *196 responses: '200': description: Response @@ -29680,7 +30043,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *63 - - *194 + - *196 requestBody: required: false content: @@ -29731,9 +30094,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *63 - - *194 + - *196 - *17 - - *195 + - *197 responses: '200': description: Response @@ -29741,9 +30104,9 @@ paths: application/json: schema: type: array - items: *196 + items: *198 examples: - default: *197 + default: *199 '400': *14 '422': *15 x-github: @@ -29769,16 +30132,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *63 - - *194 + - *196 - *16 responses: '200': description: Response content: application/json: - schema: *198 + schema: *200 examples: - default: *199 + default: *201 '400': *14 '422': *15 x-github: @@ -29804,7 +30167,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *63 - - *194 + - *196 - *16 responses: '202': *39 @@ -29834,7 +30197,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *63 - - *194 + - *196 responses: '204': description: Response @@ -29857,7 +30220,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *63 - - &204 + - &206 name: actor_type in: path description: The type of the actor @@ -29870,14 +30233,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &205 + - &207 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &200 + - &202 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`.' @@ -29885,7 +30248,7 @@ paths: required: true schema: type: string - - &201 + - &203 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) @@ -29979,12 +30342,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *63 - - *200 - - *201 + - *202 + - *203 - *19 - *17 - *48 - - &210 + - &212 name: sort description: The property to sort the results by. in: query @@ -30063,14 +30426,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *63 - - *200 - - *201 + - *202 + - *203 responses: '200': description: Response content: application/json: - schema: &202 + schema: &204 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -30086,7 +30449,7 @@ paths: type: integer format: int64 examples: - default: &203 + default: &205 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -30107,23 +30470,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *63 - - &206 + - &208 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *200 - - *201 + - *202 + - *203 responses: '200': description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *203 + default: *205 x-github: enabledForGitHubApps: true category: orgs @@ -30142,18 +30505,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *63 - - *200 - - *201 - - *204 - - *205 + - *202 + - *203 + - *206 + - *207 responses: '200': description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *203 + default: *205 x-github: enabledForGitHubApps: true category: orgs @@ -30171,9 +30534,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *63 - - *200 - - *201 - - &207 + - *202 + - *203 + - &209 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -30186,7 +30549,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &210 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -30202,7 +30565,7 @@ paths: type: integer format: int64 examples: - default: &209 + default: &211 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -30239,18 +30602,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *63 - - *206 - - *200 - - *201 - - *207 + - *208 + - *202 + - *203 + - *209 responses: '200': description: Response content: application/json: - schema: *208 + schema: *210 examples: - default: *209 + default: *211 x-github: enabledForGitHubApps: true category: orgs @@ -30268,19 +30631,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *63 - - *204 - - *205 - - *200 - - *201 + - *206 - *207 + - *202 + - *203 + - *209 responses: '200': description: Response content: application/json: - schema: *208 + schema: *210 examples: - default: *209 + default: *211 x-github: enabledForGitHubApps: true category: orgs @@ -30298,13 +30661,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *63 - - *206 - - *200 - - *201 + - *208 + - *202 + - *203 - *19 - *17 - *48 - - *210 + - *212 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -30385,7 +30748,7 @@ paths: application/json: schema: *22 examples: - default: &517 + default: &519 value: id: 1 account: @@ -30551,12 +30914,12 @@ paths: application/json: schema: anyOf: - - &212 + - &214 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &211 + limit: &213 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -30581,7 +30944,7 @@ paths: properties: {} additionalProperties: false examples: - default: &213 + default: &215 value: limit: collaborators_only origin: organization @@ -30610,13 +30973,13 @@ paths: required: true content: application/json: - schema: &518 + schema: &520 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *211 + limit: *213 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -30640,9 +31003,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *214 examples: - default: *213 + default: *215 '422': *15 x-github: githubCloudOnly: false @@ -30718,9 +31081,9 @@ paths: application/json: schema: type: array - items: *214 + items: *216 examples: - default: *215 + default: *217 headers: Link: *54 '404': *6 @@ -30797,7 +31160,7 @@ paths: description: Response content: application/json: - schema: *214 + schema: *216 examples: default: value: @@ -30852,7 +31215,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *63 - - &216 + - &218 name: invitation_id description: The unique identifier of the invitation. in: path @@ -30883,7 +31246,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *63 - - *216 + - *218 - *17 - *19 responses: @@ -30893,9 +31256,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: &234 + default: &236 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -30938,7 +31301,7 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: default: value: @@ -31023,9 +31386,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: &218 + default: &220 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -31058,7 +31421,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *63 - - &219 + - &221 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -31111,9 +31474,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *218 + default: *220 '404': *6 '422': *7 x-github: @@ -31138,7 +31501,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *63 - - *219 + - *221 responses: '204': description: Response @@ -31201,7 +31564,7 @@ paths: - closed - all default: open - - *220 + - *222 - name: type description: Can be the name of an issue type. in: query @@ -31232,7 +31595,7 @@ paths: type: array items: *82 examples: - default: *221 + default: *223 headers: Link: *54 '404': *6 @@ -31391,9 +31754,9 @@ paths: type: integer codespaces: type: array - items: *222 + items: *224 examples: - default: *223 + default: *225 '304': *37 '500': *103 '401': *25 @@ -31420,7 +31783,7 @@ paths: parameters: - *63 - *59 - - &224 + - &226 name: codespace_name in: path required: true @@ -31455,15 +31818,15 @@ paths: parameters: - *63 - *59 - - *224 + - *226 responses: '200': description: Response content: application/json: - schema: *222 + schema: *224 examples: - default: &445 + default: &447 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -31643,7 +32006,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *225 + schema: *227 examples: default: value: @@ -31719,7 +32082,7 @@ paths: description: Response content: application/json: - schema: &226 + schema: &228 title: Org Membership description: Org Membership type: object @@ -31786,7 +32149,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &227 + response-if-user-has-an-active-admin-membership-with-organization: &229 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -31883,9 +32246,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: - response-if-user-already-had-membership-with-organization: *227 + response-if-user-already-had-membership-with-organization: *229 '422': *15 '403': *29 x-github: @@ -31956,7 +32319,7 @@ paths: application/json: schema: type: array - items: &228 + items: &230 title: Migration description: A migration. type: object @@ -32285,7 +32648,7 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: default: value: @@ -32464,7 +32827,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *63 - - &229 + - &231 name: migration_id description: The unique identifier of the migration. in: path @@ -32491,7 +32854,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *228 + schema: *230 examples: default: value: @@ -32661,7 +33024,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *63 - - *229 + - *231 responses: '302': description: Response @@ -32683,7 +33046,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *63 - - *229 + - *231 responses: '204': description: Response @@ -32707,8 +33070,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *63 - - *229 - - &677 + - *231 + - &679 name: repo_name description: repo_name parameter in: path @@ -32736,7 +33099,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *63 - - *229 + - *231 - *17 - *19 responses: @@ -32748,7 +33111,7 @@ paths: type: array items: *143 examples: - default: &241 + default: &243 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -32901,7 +33264,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &231 + items: &233 title: Organization Role description: Organization roles type: object @@ -33076,7 +33439,7 @@ paths: parameters: - *63 - *64 - - &230 + - &232 name: role_id description: The unique identifier of the role. in: path @@ -33113,7 +33476,7 @@ paths: parameters: - *63 - *64 - - *230 + - *232 responses: '204': description: Response @@ -33166,7 +33529,7 @@ paths: parameters: - *63 - *59 - - *230 + - *232 responses: '204': description: Response @@ -33198,7 +33561,7 @@ paths: parameters: - *63 - *59 - - *230 + - *232 responses: '204': description: Response @@ -33227,13 +33590,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *63 - - *230 + - *232 responses: '200': description: Response content: application/json: - schema: *231 + schema: *233 examples: default: value: @@ -33284,7 +33647,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *63 - - *230 + - *232 - *17 - *19 responses: @@ -33362,8 +33725,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true type: description: The ownership type of the team @@ -33395,7 +33758,7 @@ paths: - type - parent examples: - default: *234 + default: *236 headers: Link: *54 '404': @@ -33425,7 +33788,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *63 - - *230 + - *232 - *17 - *19 responses: @@ -33453,13 +33816,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &303 + items: &305 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *232 - required: *233 + properties: *234 + required: *235 name: nullable: true type: string @@ -33747,7 +34110,7 @@ paths: - nuget - container - *63 - - &678 + - &680 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -33783,12 +34146,12 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *236 + default: *238 '403': *29 '401': *25 - '400': &680 + '400': &682 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -33810,7 +34173,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &237 + - &239 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 @@ -33828,7 +34191,7 @@ paths: - docker - nuget - container - - &238 + - &240 name: package_name description: The name of the package. in: path @@ -33841,7 +34204,7 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: default: value: @@ -33893,8 +34256,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *237 - - *238 + - *239 + - *240 - *63 responses: '204': @@ -33927,8 +34290,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *237 - - *238 + - *239 + - *240 - *63 - name: token description: package token @@ -33961,8 +34324,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: - - *237 - - *238 + - *239 + - *240 - *63 - *19 - *17 @@ -33983,7 +34346,7 @@ paths: application/json: schema: type: array - items: &239 + items: &241 title: Package Version description: A version of a software package type: object @@ -34108,10 +34471,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *237 - - *238 + - *239 + - *240 - *63 - - &240 + - &242 name: package_version_id description: Unique identifier of the package version. in: path @@ -34123,7 +34486,7 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: default: value: @@ -34159,10 +34522,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *237 - - *238 - - *63 + - *239 - *240 + - *63 + - *242 responses: '204': description: Response @@ -34194,10 +34557,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *237 - - *238 - - *63 + - *239 - *240 + - *63 + - *242 responses: '204': description: Response @@ -34227,7 +34590,7 @@ paths: - *63 - *17 - *19 - - &242 + - &244 name: sort description: The property by which to sort the results. in: query @@ -34238,7 +34601,7 @@ paths: - created_at default: created_at - *48 - - &243 + - &245 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -34249,7 +34612,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &244 + - &246 name: repository description: The name of the repository to use to filter the results. in: query @@ -34257,7 +34620,7 @@ paths: schema: type: string example: Hello-World - - &245 + - &247 name: permission description: The permission to use to filter the results. in: query @@ -34265,7 +34628,7 @@ paths: schema: type: string example: issues_read - - &246 + - &248 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) @@ -34275,7 +34638,7 @@ paths: schema: type: string format: date-time - - &247 + - &249 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) @@ -34285,7 +34648,7 @@ paths: schema: type: string format: date-time - - &248 + - &250 name: token_id description: The ID of the token in: query @@ -34555,7 +34918,7 @@ paths: '422': *15 '404': *6 '403': *29 - '204': *173 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34598,7 +34961,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -34624,14 +34987,14 @@ paths: - *63 - *17 - *19 - - *242 - - *48 - - *243 - *244 + - *48 - *245 - *246 - *247 - *248 + - *249 + - *250 responses: '500': *103 '422': *15 @@ -34870,7 +35233,7 @@ paths: responses: '500': *103 '404': *6 - '204': *173 + '204': *175 '403': *29 '422': *15 x-github: @@ -34913,7 +35276,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -34955,7 +35318,7 @@ paths: type: integer configurations: type: array - items: &249 + items: &251 title: Organization private registry description: Private registry configuration for an organization type: object @@ -35245,7 +35608,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &250 + org-private-registry-with-selected-visibility: &252 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -35341,9 +35704,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *249 + schema: *251 examples: - default: *250 + default: *252 '404': *6 x-github: githubCloudOnly: false @@ -35510,7 +35873,7 @@ paths: application/json: schema: type: array - items: &251 + items: &253 title: Projects v2 Project description: A projects v2 project type: object @@ -35580,7 +35943,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &760 + properties: &762 id: type: number description: The unique identifier of the status update. @@ -35628,7 +35991,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &761 + required: &763 - id - node_id - created_at @@ -35653,7 +36016,7 @@ paths: - deleted_at - deleted_by examples: - default: &252 + default: &254 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -35756,7 +36119,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &253 + - &255 name: project_number description: The project's number. in: path @@ -35769,9 +36132,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: *252 + default: *254 headers: Link: *54 '304': *37 @@ -35794,7 +36157,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *63 - - *253 + - *255 requestBody: required: true description: Details of the draft item to create in the project. @@ -35828,7 +36191,7 @@ paths: description: Response content: application/json: - schema: &259 + schema: &261 title: Projects v2 Item description: An item belonging to a project type: object @@ -35842,7 +36205,7 @@ paths: content: oneOf: - *82 - - &460 + - &462 title: Pull Request Simple description: Pull Request Simple type: object @@ -35948,8 +36311,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *254 - required: *255 + properties: *256 + required: *257 nullable: true active_lock_reason: type: string @@ -35994,7 +36357,7 @@ paths: nullable: true requested_teams: type: array - items: *179 + items: *181 nullable: true head: type: object @@ -36045,7 +36408,7 @@ paths: _links: type: object properties: - comments: &256 + comments: &258 title: Link description: Hypermedia Link type: object @@ -36054,13 +36417,13 @@ paths: type: string required: - href - commits: *256 - statuses: *256 - html: *256 - issue: *256 - review_comments: *256 - review_comment: *256 - self: *256 + commits: *258 + statuses: *258 + html: *258 + issue: *258 + review_comments: *258 + review_comment: *258 + self: *258 required: - comments - commits @@ -36071,7 +36434,7 @@ paths: - review_comment - self author_association: *69 - auto_merge: &566 + auto_merge: &568 title: Auto merge description: The status of auto merging a pull request. type: object @@ -36173,7 +36536,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &258 + content_type: &260 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -36213,7 +36576,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &260 + draft_issue: &262 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -36287,7 +36650,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *253 + - *255 - *63 - *17 - *40 @@ -36299,7 +36662,7 @@ paths: application/json: schema: type: array - items: &257 + items: &259 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -36446,7 +36809,7 @@ paths: - updated_at - project_url examples: - default: &697 + default: &699 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -36577,8 +36940,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *253 - - &698 + - *255 + - &700 name: field_id description: The unique identifier of the field. in: path @@ -36591,9 +36954,9 @@ paths: description: Response content: application/json: - schema: *257 + schema: *259 examples: - default: &699 + default: &701 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -36637,7 +37000,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *253 + - *255 - *63 - 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) @@ -36670,7 +37033,7 @@ paths: application/json: schema: type: array - items: &261 + items: &263 title: Projects v2 Item description: An item belonging to a project type: object @@ -36686,7 +37049,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *258 + content_type: *260 content: type: object additionalProperties: true @@ -36729,7 +37092,7 @@ paths: - updated_at - archived_at examples: - default: &262 + default: &264 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -37426,7 +37789,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *63 - - *253 + - *255 requestBody: required: true description: Details of the item to add to the project. @@ -37463,10 +37826,10 @@ paths: description: Response content: application/json: - schema: *259 + schema: *261 examples: - issue: *260 - pull_request: *260 + issue: *262 + pull_request: *262 '304': *37 '403': *29 '401': *25 @@ -37486,9 +37849,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *253 + - *255 - *63 - - &263 + - &265 name: item_id description: The unique identifier of the project item. in: path @@ -37514,9 +37877,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *262 + default: *264 headers: Link: *54 '304': *37 @@ -37537,9 +37900,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *253 + - *255 - *63 - - *263 + - *265 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -37609,13 +37972,13 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - text_field: *262 - number_field: *262 - date_field: *262 - single_select_field: *262 - iteration_field: *262 + text_field: *264 + number_field: *264 + date_field: *264 + single_select_field: *264 + iteration_field: *264 '401': *25 '403': *29 '404': *6 @@ -37635,9 +37998,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *253 + - *255 - *63 - - *263 + - *265 responses: '204': description: Response @@ -37669,7 +38032,7 @@ paths: application/json: schema: type: array - items: &264 + items: &266 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -37717,8 +38080,6 @@ paths: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -37735,7 +38096,7 @@ paths: - property_name - value_type examples: - default: &265 + default: &267 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -37794,7 +38155,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *264 + items: *266 minItems: 1 maxItems: 100 required: @@ -37824,9 +38185,9 @@ paths: application/json: schema: type: array - items: *264 + items: *266 examples: - default: *265 + default: *267 '403': *29 '404': *6 x-github: @@ -37848,7 +38209,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *63 - - &266 + - &268 name: custom_property_name description: The custom property name in: path @@ -37860,9 +38221,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: - default: &267 + default: &269 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -37897,7 +38258,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *63 - - *266 + - *268 requestBody: required: true content: @@ -37935,8 +38296,6 @@ paths: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -37966,9 +38325,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: - default: *267 + default: *269 '403': *29 '404': *6 x-github: @@ -37992,9 +38351,9 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *63 - - *266 + - *268 responses: - '204': *173 + '204': *175 '403': *29 '404': *6 x-github: @@ -38314,7 +38673,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -38516,7 +38875,7 @@ paths: description: Response content: application/json: - schema: &331 + schema: &333 title: Full Repository description: Full Repository type: object @@ -38793,8 +39152,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *268 - required: *269 + properties: *270 + required: *271 nullable: true temp_clone_token: type: string @@ -38909,7 +39268,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &465 + properties: &467 url: type: string format: uri @@ -38925,12 +39284,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &466 + required: &468 - url - key - name - html_url - security_and_analysis: *270 + security_and_analysis: *272 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -39014,7 +39373,7 @@ paths: - network_count - subscribers_count examples: - default: &333 + default: &335 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -39535,7 +39894,7 @@ paths: - *63 - *17 - *19 - - &589 + - &591 name: targets description: | A comma-separated list of rule targets to filter by. @@ -39553,7 +39912,7 @@ paths: application/json: schema: type: array - items: &296 + items: &298 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -39588,7 +39947,7 @@ paths: source: type: string description: The name of the source - enforcement: &273 + enforcement: &275 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -39601,7 +39960,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &274 + items: &276 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -39671,7 +40030,7 @@ paths: conditions: nullable: true anyOf: - - &271 + - &273 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -39695,7 +40054,7 @@ paths: match. items: type: string - - &275 + - &277 title: Organization ruleset conditions type: object description: |- @@ -39709,7 +40068,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *271 + - *273 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -39743,7 +40102,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *271 + - *273 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -39765,7 +40124,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *271 + - *273 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -39778,7 +40137,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &272 + items: &274 title: Repository ruleset property targeting definition type: object @@ -39811,17 +40170,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *272 + items: *274 required: - repository_property rules: type: array - items: &590 + items: &592 title: Repository Rule type: object description: A repository rule. oneOf: - - &276 + - &278 title: creation description: Only allow users with bypass permission to create matching refs. @@ -39833,7 +40192,7 @@ paths: type: string enum: - creation - - &277 + - &279 title: update description: Only allow users with bypass permission to update matching refs. @@ -39854,7 +40213,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &278 + - &280 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -39866,7 +40225,7 @@ paths: type: string enum: - deletion - - &279 + - &281 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -39878,7 +40237,7 @@ paths: type: string enum: - required_linear_history - - &587 + - &589 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -39956,7 +40315,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &280 + - &282 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -39980,7 +40339,7 @@ paths: type: string required: - required_deployment_environments - - &281 + - &283 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -39992,7 +40351,7 @@ paths: type: string enum: - required_signatures - - &282 + - &284 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -40103,7 +40462,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &283 + - &285 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -40151,7 +40510,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &284 + - &286 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -40163,7 +40522,7 @@ paths: type: string enum: - non_fast_forward - - &285 + - &287 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -40199,7 +40558,7 @@ paths: required: - operator - pattern - - &286 + - &288 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -40235,7 +40594,7 @@ paths: required: - operator - pattern - - &287 + - &289 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -40271,7 +40630,7 @@ paths: required: - operator - pattern - - &288 + - &290 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -40307,7 +40666,7 @@ paths: required: - operator - pattern - - &289 + - &291 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -40343,7 +40702,7 @@ paths: required: - operator - pattern - - &290 + - &292 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -40368,7 +40727,7 @@ paths: type: string required: - restricted_file_paths - - &291 + - &293 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -40392,7 +40751,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &292 + - &294 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -40415,7 +40774,7 @@ paths: type: string required: - restricted_file_extensions - - &293 + - &295 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -40440,7 +40799,7 @@ paths: maximum: 100 required: - max_file_size - - &294 + - &296 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -40490,7 +40849,7 @@ paths: - repository_id required: - workflows - - &295 + - &297 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -40551,7 +40910,7 @@ paths: - tool required: - code_scanning_tools - - &588 + - &590 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -40649,22 +41008,20 @@ paths: - push - repository default: branch - enforcement: *273 + enforcement: *275 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *274 - conditions: *275 + items: *276 + conditions: *277 rules: type: array description: An array of rules within the ruleset. - items: &298 + items: &300 title: Repository Rule type: object description: A repository rule. oneOf: - - *276 - - *277 - *278 - *279 - *280 @@ -40683,6 +41040,8 @@ paths: - *293 - *294 - *295 + - *296 + - *297 required: - name - enforcement @@ -40720,9 +41079,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: &297 + default: &299 value: id: 21 name: super cool ruleset @@ -40777,7 +41136,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *63 - - &591 + - &593 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 @@ -40792,7 +41151,7 @@ paths: in: query schema: type: string - - &592 + - &594 name: time_period description: |- The time period to filter by. @@ -40808,14 +41167,14 @@ paths: - week - month default: day - - &593 + - &595 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 - - &594 + - &596 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -40835,7 +41194,7 @@ paths: description: Response content: application/json: - schema: &595 + schema: &597 title: Rule Suites description: Response type: array @@ -40890,7 +41249,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &596 + default: &598 value: - id: 21 actor_id: 12 @@ -40934,7 +41293,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *63 - - &597 + - &599 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -40950,7 +41309,7 @@ paths: description: Response content: application/json: - schema: &598 + schema: &600 title: Rule Suite description: Response type: object @@ -41049,7 +41408,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &599 + default: &601 value: id: 21 actor_id: 12 @@ -41122,9 +41481,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *297 + default: *299 '404': *6 '500': *103 put: @@ -41168,16 +41527,16 @@ paths: - tag - push - repository - enforcement: *273 + enforcement: *275 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *274 - conditions: *275 + items: *276 + conditions: *277 rules: description: An array of rules within the ruleset. type: array - items: *298 + items: *300 examples: default: value: @@ -41212,9 +41571,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *297 + default: *299 '404': *6 '500': *103 delete: @@ -41271,7 +41630,7 @@ paths: application/json: schema: type: array - items: &299 + items: &301 title: Ruleset version type: object description: The historical version of a ruleset @@ -41295,7 +41654,7 @@ paths: type: string format: date-time examples: - default: &601 + default: &603 value: - version_id: 3 actor: @@ -41348,9 +41707,9 @@ paths: description: Response content: application/json: - schema: &602 + schema: &604 allOf: - - *299 + - *301 - type: object required: - state @@ -41420,7 +41779,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *63 - - &603 + - &605 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -41431,7 +41790,7 @@ paths: enum: - open - resolved - - &604 + - &606 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -41441,7 +41800,7 @@ paths: required: false schema: type: string - - &605 + - &607 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -41450,7 +41809,7 @@ paths: required: false schema: type: string - - &606 + - &608 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -41465,7 +41824,7 @@ paths: - *48 - *19 - *17 - - &607 + - &609 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -41475,7 +41834,7 @@ paths: required: false schema: type: string - - &608 + - &610 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -41485,7 +41844,7 @@ paths: required: false schema: type: string - - &609 + - &611 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -41494,7 +41853,7 @@ paths: required: false schema: type: string - - &610 + - &612 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -41503,7 +41862,7 @@ paths: schema: type: boolean default: false - - &611 + - &613 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -41512,7 +41871,7 @@ paths: schema: type: boolean default: false - - &612 + - &614 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -41531,8 +41890,8 @@ paths: items: type: object properties: - number: *159 - created_at: *160 + number: *161 + created_at: *162 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -41540,21 +41899,21 @@ paths: format: date-time readOnly: true nullable: true - url: *162 - html_url: *163 + url: *164 + html_url: *165 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &613 + state: &615 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &614 + resolution: &616 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -41661,8 +42020,8 @@ paths: pull request. ' - oneOf: &615 - - &617 + oneOf: &617 + - &619 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -41714,7 +42073,7 @@ paths: - blob_url - commit_sha - commit_url - - &618 + - &620 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -41769,7 +42128,7 @@ paths: - page_url - commit_sha - commit_url - - &619 + - &621 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -41783,7 +42142,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &620 + - &622 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -41797,7 +42156,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &621 + - &623 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -41811,7 +42170,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &622 + - &624 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -41825,7 +42184,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &623 + - &625 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -41839,7 +42198,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &624 + - &626 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -41853,7 +42212,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &625 + - &627 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -41867,7 +42226,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &626 + - &628 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -41881,7 +42240,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &627 + - &629 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -41895,7 +42254,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &628 + - &630 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -41909,7 +42268,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &629 + - &631 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -42151,7 +42510,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &301 + pattern_config_version: &303 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -42160,7 +42519,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &300 + items: &302 type: object properties: token_type: @@ -42226,7 +42585,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *300 + items: *302 examples: default: value: @@ -42283,7 +42642,7 @@ paths: schema: type: object properties: - pattern_config_version: *301 + pattern_config_version: *303 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -42309,7 +42668,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *301 + custom_pattern_version: *303 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -42407,7 +42766,7 @@ paths: application/json: schema: type: array - items: &633 + items: &635 description: A repository security advisory. type: object properties: @@ -42627,7 +42986,7 @@ paths: login: type: string description: The username of the user credited. - type: *302 + type: *304 credits_detailed: type: array nullable: true @@ -42637,7 +42996,7 @@ paths: type: object properties: user: *4 - type: *302 + type: *304 state: type: string description: The state of the user's acceptance of the @@ -42661,7 +43020,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *179 + items: *181 private_fork: readOnly: true nullable: true @@ -42698,7 +43057,7 @@ paths: - private_fork additionalProperties: false examples: - default: &634 + default: &636 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -43085,9 +43444,9 @@ paths: application/json: schema: type: array - items: *303 + items: *305 examples: - default: *234 + default: *236 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43172,7 +43531,7 @@ paths: description: Response content: application/json: - schema: &700 + schema: &702 type: object properties: total_minutes_used: @@ -43242,7 +43601,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &701 + default: &703 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -43278,7 +43637,7 @@ paths: description: Response content: application/json: - schema: &702 + schema: &704 type: object properties: total_gigabytes_bandwidth_used: @@ -43296,7 +43655,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &703 + default: &705 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -43328,7 +43687,7 @@ paths: description: Response content: application/json: - schema: &705 + schema: &707 type: object properties: days_left_in_billing_cycle: @@ -43346,7 +43705,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &706 + default: &708 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -43629,7 +43988,7 @@ paths: type: integer network_configurations: type: array - items: &304 + items: &306 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -43749,9 +44108,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *306 examples: - default: &305 + default: &307 value: id: 123456789ABCDEF name: My network configuration @@ -43780,7 +44139,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *63 - - &306 + - &308 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -43792,9 +44151,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *306 examples: - default: *305 + default: *307 headers: Link: *54 x-github: @@ -43816,7 +44175,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *63 - - *306 + - *308 requestBody: required: true content: @@ -43855,9 +44214,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *306 examples: - default: *305 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43877,7 +44236,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *63 - - *306 + - *308 responses: '204': description: Response @@ -44017,13 +44376,13 @@ paths: application/json: schema: type: array - items: *307 + items: *309 examples: - default: *308 + default: *310 '500': *103 '403': *29 '404': *6 - '422': *309 + '422': *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44051,9 +44410,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 headers: Link: *54 '403': *29 @@ -44147,7 +44506,7 @@ paths: description: Response content: application/json: - schema: &310 + schema: &312 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -44210,8 +44569,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true members_count: type: integer @@ -44474,7 +44833,7 @@ paths: - repos_count - organization examples: - default: &311 + default: &313 value: id: 1 node_id: MDQ6VGVhbTE= @@ -44551,9 +44910,9 @@ paths: description: Response content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '404': *6 x-github: githubCloudOnly: false @@ -44637,16 +44996,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '201': description: Response content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '404': *6 '422': *15 '403': *29 @@ -44716,7 +45075,7 @@ paths: application/json: schema: type: array - items: &312 + items: &314 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -44815,7 +45174,7 @@ paths: - updated_at - url examples: - default: &651 + default: &653 value: - author: login: octocat @@ -44924,9 +45283,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: &313 + default: &315 value: author: login: octocat @@ -45000,7 +45359,7 @@ paths: parameters: - *63 - *64 - - &314 + - &316 name: discussion_number description: The number that identifies the discussion. in: path @@ -45012,9 +45371,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: *313 + default: *315 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45038,7 +45397,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 requestBody: required: false content: @@ -45061,9 +45420,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: &652 + default: &654 value: author: login: octocat @@ -45135,7 +45494,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 responses: '204': description: Response @@ -45163,7 +45522,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 - *48 - *17 - *19 @@ -45174,7 +45533,7 @@ paths: application/json: schema: type: array - items: &315 + items: &317 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -45246,7 +45605,7 @@ paths: - updated_at - url examples: - default: &653 + default: &655 value: - author: login: octocat @@ -45316,7 +45675,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 requestBody: required: true content: @@ -45338,9 +45697,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: &316 + default: &318 value: author: login: octocat @@ -45408,8 +45767,8 @@ paths: parameters: - *63 - *64 - - *314 - - &317 + - *316 + - &319 name: comment_number description: The number that identifies the comment. in: path @@ -45421,9 +45780,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *316 + default: *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45447,8 +45806,8 @@ paths: parameters: - *63 - *64 - - *314 - - *317 + - *316 + - *319 requestBody: required: true content: @@ -45470,9 +45829,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: &654 + default: &656 value: author: login: octocat @@ -45538,8 +45897,8 @@ paths: parameters: - *63 - *64 - - *314 - - *317 + - *316 + - *319 responses: '204': description: Response @@ -45567,8 +45926,8 @@ paths: parameters: - *63 - *64 - - *314 - - *317 + - *316 + - *319 - 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. @@ -45594,7 +45953,7 @@ paths: application/json: schema: type: array - items: &318 + items: &320 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -45637,7 +45996,7 @@ paths: - content - created_at examples: - default: &320 + default: &322 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -45689,8 +46048,8 @@ paths: parameters: - *63 - *64 - - *314 - - *317 + - *316 + - *319 requestBody: required: true content: @@ -45723,9 +46082,9 @@ paths: team discussion comment content: application/json: - schema: *318 + schema: *320 examples: - default: &319 + default: &321 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -45754,9 +46113,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45781,9 +46140,9 @@ paths: parameters: - *63 - *64 - - *314 - - *317 - - &321 + - *316 + - *319 + - &323 name: reaction_id description: The unique identifier of the reaction. in: path @@ -45817,7 +46176,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 - 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. @@ -45843,9 +46202,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 x-github: @@ -45873,7 +46232,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 requestBody: required: true content: @@ -45905,16 +46264,16 @@ paths: description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45939,8 +46298,8 @@ paths: parameters: - *63 - *64 - - *314 - - *321 + - *316 + - *323 responses: '204': description: Response @@ -45975,9 +46334,9 @@ paths: application/json: schema: type: array - items: *214 + items: *216 examples: - default: *215 + default: *217 headers: Link: *54 x-github: @@ -46061,7 +46420,7 @@ paths: description: Response content: application/json: - schema: &322 + schema: &324 title: Team Membership description: Team Membership type: object @@ -46088,7 +46447,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &655 + response-if-user-is-a-team-maintainer: &657 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -46151,9 +46510,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: &656 + response-if-users-membership-with-team-is-now-pending: &658 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -46226,7 +46585,7 @@ paths: application/json: schema: type: array - items: &323 + items: &325 title: Team Project description: A team's access to a project. type: object @@ -46294,7 +46653,7 @@ paths: - updated_at - permissions examples: - default: &657 + default: &659 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -46359,7 +46718,7 @@ paths: parameters: - *63 - *64 - - &324 + - &326 name: project_id description: The unique identifier of the project. in: path @@ -46371,9 +46730,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *325 examples: - default: &658 + default: &660 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -46437,7 +46796,7 @@ paths: parameters: - *63 - *64 - - *324 + - *326 requestBody: required: false content: @@ -46505,7 +46864,7 @@ paths: parameters: - *63 - *64 - - *324 + - *326 responses: '204': description: Response @@ -46545,7 +46904,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -46576,14 +46935,14 @@ paths: parameters: - *63 - *64 - - *325 - - *326 + - *327 + - *328 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &659 + schema: &661 title: Team Repository description: A team's access to a repository. type: object @@ -47154,8 +47513,8 @@ paths: parameters: - *63 - *64 - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -47202,8 +47561,8 @@ paths: parameters: - *63 - *64 - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -47238,9 +47597,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - response-if-child-teams-exist: &660 + response-if-child-teams-exist: &662 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -47367,7 +47726,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#get-a-project-column parameters: - - &327 + - &329 name: column_id description: The unique identifier of the column. in: path @@ -47379,7 +47738,7 @@ paths: description: Response content: application/json: - schema: &328 + schema: &330 title: Project Column description: Project columns contain cards of work. type: object @@ -47425,7 +47784,7 @@ paths: - created_at - updated_at examples: - default: &329 + default: &331 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -47460,7 +47819,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#update-an-existing-project-column parameters: - - *327 + - *329 requestBody: required: true content: @@ -47484,9 +47843,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *330 examples: - default: *329 + default: *331 '304': *37 '403': *29 '401': *25 @@ -47511,7 +47870,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#delete-a-project-column parameters: - - *327 + - *329 responses: '204': description: Response @@ -47540,7 +47899,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#move-a-project-column parameters: - - *327 + - *329 requestBody: required: true content: @@ -47600,7 +47959,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#list-project-collaborators parameters: - - *324 + - *326 - 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 @@ -47657,7 +48016,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#add-project-collaborator parameters: - - *324 + - *326 - *59 requestBody: required: false @@ -47710,7 +48069,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *324 + - *326 - *59 responses: '204': @@ -47742,7 +48101,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *324 + - *326 - *59 responses: '200': @@ -47843,7 +48202,7 @@ paths: resources: type: object properties: - core: &330 + core: &332 title: Rate Limit type: object properties: @@ -47860,21 +48219,21 @@ paths: - remaining - reset - used - graphql: *330 - search: *330 - code_search: *330 - source_import: *330 - integration_manifest: *330 - code_scanning_upload: *330 - actions_runner_registration: *330 - scim: *330 - dependency_snapshots: *330 - dependency_sbom: *330 - code_scanning_autofix: *330 + graphql: *332 + search: *332 + code_search: *332 + source_import: *332 + integration_manifest: *332 + code_scanning_upload: *332 + actions_runner_registration: *332 + scim: *332 + dependency_snapshots: *332 + dependency_sbom: *332 + code_scanning_autofix: *332 required: - core - search - rate: *330 + rate: *332 required: - rate - resources @@ -47979,14 +48338,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *331 + schema: *333 examples: default-response: summary: Default response @@ -48487,7 +48846,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *332 + '301': *334 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48505,8 +48864,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -48753,10 +49112,10 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *333 - '307': &334 + default: *335 + '307': &336 description: Temporary Redirect content: application/json: @@ -48785,8 +49144,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -48808,7 +49167,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *334 + '307': *336 '404': *6 '409': *47 x-github: @@ -48832,11 +49191,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 - - &365 + - &367 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -48859,7 +49218,7 @@ paths: type: integer artifacts: type: array - items: &335 + items: &337 title: Artifact description: An artifact type: object @@ -48937,7 +49296,7 @@ paths: - expires_at - updated_at examples: - default: &366 + default: &368 value: total_count: 2 artifacts: @@ -48998,9 +49357,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *325 - - *326 - - &336 + - *327 + - *328 + - &338 name: artifact_id description: The unique identifier of the artifact. in: path @@ -49012,7 +49371,7 @@ paths: description: Response content: application/json: - schema: *335 + schema: *337 examples: default: value: @@ -49050,9 +49409,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *325 - - *326 - - *336 + - *327 + - *328 + - *338 responses: '204': description: Response @@ -49076,9 +49435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *325 - - *326 - - *336 + - *327 + - *328 + - *338 - name: archive_format in: path required: true @@ -49092,7 +49451,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': &521 + '410': &523 description: Gone content: application/json: @@ -49119,14 +49478,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *337 + schema: *339 examples: default: value: @@ -49152,11 +49511,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 - - &338 + - &340 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 @@ -49190,7 +49549,7 @@ paths: description: Response content: application/json: - schema: &339 + schema: &341 title: Repository actions caches description: Repository actions caches type: object @@ -49232,7 +49591,7 @@ paths: - total_count - actions_caches examples: - default: &340 + default: &342 value: total_count: 1 actions_caches: @@ -49264,23 +49623,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: - - *325 - - *326 + - *327 + - *328 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *338 + - *340 responses: '200': description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *340 + default: *342 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49300,8 +49659,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: - - *325 - - *326 + - *327 + - *328 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -49332,9 +49691,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *325 - - *326 - - &341 + - *327 + - *328 + - &343 name: job_id description: The unique identifier of the job. in: path @@ -49346,7 +49705,7 @@ paths: description: Response content: application/json: - schema: &369 + schema: &371 title: Job description: Information of a job execution in a workflow run type: object @@ -49653,9 +50012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *325 - - *326 - - *341 + - *327 + - *328 + - *343 responses: '302': description: Response @@ -49683,9 +50042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *325 - - *326 - - *341 + - *327 + - *328 + - *343 requestBody: required: false content: @@ -49730,8 +50089,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Status response @@ -49781,8 +50140,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -49845,8 +50204,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -49864,7 +50223,7 @@ paths: type: integer secrets: type: array - items: &371 + items: &373 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -49884,7 +50243,7 @@ paths: - created_at - updated_at examples: - default: &372 + default: &374 value: total_count: 2 secrets: @@ -49917,9 +50276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *325 - - *326 - - *342 + - *327 + - *328 + - *344 - *19 responses: '200': @@ -49936,7 +50295,7 @@ paths: type: integer variables: type: array - items: &375 + items: &377 title: Actions Variable type: object properties: @@ -49966,7 +50325,7 @@ paths: - created_at - updated_at examples: - default: &376 + default: &378 value: total_count: 2 variables: @@ -49999,8 +50358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -50009,11 +50368,11 @@ paths: schema: type: object properties: - enabled: &344 + enabled: &346 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *128 - selected_actions_url: *343 + selected_actions_url: *345 sha_pinning_required: *129 required: - enabled @@ -50042,8 +50401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -50054,7 +50413,7 @@ paths: schema: type: object properties: - enabled: *344 + enabled: *346 allowed_actions: *128 sha_pinning_required: *129 required: @@ -50086,14 +50445,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: &345 + schema: &347 type: object properties: access_level: @@ -50110,7 +50469,7 @@ paths: required: - access_level examples: - default: &346 + default: &348 value: access_level: organization x-github: @@ -50134,15 +50493,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 responses: '204': description: Response @@ -50166,14 +50525,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: default: value: @@ -50197,8 +50556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Empty response for successful settings update @@ -50208,7 +50567,7 @@ paths: required: true content: application/json: - schema: *348 + schema: *350 examples: default: summary: Set retention days @@ -50232,8 +50591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -50241,7 +50600,7 @@ paths: application/json: schema: *130 examples: - default: *349 + default: *351 '404': *6 x-github: enabledForGitHubApps: true @@ -50260,8 +50619,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -50295,14 +50654,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *350 + schema: *352 examples: default: *131 '403': *29 @@ -50324,13 +50683,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: application/json: - schema: *351 + schema: *353 examples: default: *131 responses: @@ -50356,8 +50715,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -50384,8 +50743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -50417,14 +50776,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *352 + schema: *354 examples: default: *138 x-github: @@ -50447,8 +50806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Success response @@ -50459,7 +50818,7 @@ paths: required: true content: application/json: - schema: *353 + schema: *355 examples: default: *138 x-github: @@ -50488,8 +50847,8 @@ paths: in: query schema: type: string - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -50533,8 +50892,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -50542,9 +50901,9 @@ paths: application/json: schema: type: array - items: *354 + items: *356 examples: - default: *355 + default: *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50566,8 +50925,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -50610,7 +50969,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *356 + '201': *358 '404': *6 '422': *7 '409': *47 @@ -50641,8 +51000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '201': description: Response @@ -50650,7 +51009,7 @@ paths: application/json: schema: *147 examples: - default: *357 + default: *359 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50678,8 +51037,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '201': description: Response @@ -50687,7 +51046,7 @@ paths: application/json: schema: *147 examples: - default: *358 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50709,8 +51068,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: - - *325 - - *326 + - *327 + - *328 - *144 responses: '200': @@ -50719,7 +51078,7 @@ paths: application/json: schema: *145 examples: - default: *359 + default: *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50740,8 +51099,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: - - *325 - - *326 + - *327 + - *328 - *144 responses: '204': @@ -50768,8 +51127,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: - - *325 - - *326 + - *327 + - *328 - *144 responses: '200': *149 @@ -50794,8 +51153,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: - - *325 - - *326 + - *327 + - *328 - *144 requestBody: required: true @@ -50844,8 +51203,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: - - *325 - - *326 + - *327 + - *328 - *144 requestBody: required: true @@ -50895,11 +51254,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: - - *325 - - *326 + - *327 + - *328 - *144 responses: - '200': *360 + '200': *362 '404': *6 x-github: githubCloudOnly: false @@ -50926,10 +51285,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: - - *325 - - *326 + - *327 + - *328 - *144 - - *361 + - *363 responses: '200': *149 '404': *6 @@ -50957,9 +51316,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *325 - - *326 - - &379 + - *327 + - *328 + - &381 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. @@ -50967,7 +51326,7 @@ paths: required: false schema: type: string - - &380 + - &382 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -50975,7 +51334,7 @@ paths: required: false schema: type: string - - &381 + - &383 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -50984,7 +51343,7 @@ paths: required: false schema: type: string - - &382 + - &384 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 @@ -51011,7 +51370,7 @@ paths: - pending - *17 - *19 - - &383 + - &385 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)." @@ -51020,7 +51379,7 @@ paths: schema: type: string format: date-time - - &362 + - &364 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -51029,13 +51388,13 @@ paths: schema: type: boolean default: false - - &384 + - &386 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &385 + - &387 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -51058,7 +51417,7 @@ paths: type: integer workflow_runs: type: array - items: &363 + items: &365 title: Workflow Run description: An invocation of a workflow type: object @@ -51153,7 +51512,7 @@ paths: that triggered the run. type: array nullable: true - items: &404 + items: &406 title: Pull Request Minimal type: object properties: @@ -51272,7 +51631,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &408 + properties: &410 id: type: string description: SHA for the commit @@ -51323,7 +51682,7 @@ paths: - name - email nullable: true - required: &409 + required: &411 - id - tree_id - message @@ -51370,7 +51729,7 @@ paths: - workflow_url - pull_requests examples: - default: &386 + default: &388 value: total_count: 1 workflow_runs: @@ -51606,24 +51965,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *325 - - *326 - - &364 + - *327 + - *328 + - &366 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *363 + schema: *365 examples: - default: &367 + default: &369 value: id: 30433642 name: Build @@ -51864,9 +52223,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '204': description: Response @@ -51889,9 +52248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '200': description: Response @@ -52010,9 +52369,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: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '201': description: Response @@ -52045,12 +52404,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 - *17 - *19 - - *365 + - *367 responses: '200': description: Response @@ -52066,9 +52425,9 @@ paths: type: integer artifacts: type: array - items: *335 + items: *337 examples: - default: *366 + default: *368 headers: Link: *54 x-github: @@ -52092,25 +52451,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *325 - - *326 - - *364 - - &368 + - *327 + - *328 + - *366 + - &370 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *363 + schema: *365 examples: - default: *367 + default: *369 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52133,10 +52492,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *325 - - *326 - - *364 - - *368 + - *327 + - *328 + - *366 + - *370 - *17 - *19 responses: @@ -52154,9 +52513,9 @@ paths: type: integer jobs: type: array - items: *369 + items: *371 examples: - default: &370 + default: &372 value: total_count: 1 jobs: @@ -52269,10 +52628,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *325 - - *326 - - *364 - - *368 + - *327 + - *328 + - *366 + - *370 responses: '302': description: Response @@ -52300,9 +52659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '202': description: Response @@ -52335,9 +52694,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: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 requestBody: required: true content: @@ -52404,9 +52763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '202': description: Response @@ -52439,9 +52798,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 - 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 @@ -52471,9 +52830,9 @@ paths: type: integer jobs: type: array - items: *369 + items: *371 examples: - default: *370 + default: *372 headers: Link: *54 x-github: @@ -52498,9 +52857,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '302': description: Response @@ -52527,9 +52886,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '204': description: Response @@ -52556,9 +52915,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '200': description: Response @@ -52618,7 +52977,7 @@ paths: items: type: object properties: - type: &487 + type: &489 type: string description: The type of reviewer. enum: @@ -52628,7 +52987,7 @@ paths: reviewer: anyOf: - *4 - - *179 + - *181 required: - environment - wait_timer @@ -52703,9 +53062,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 requestBody: required: true content: @@ -52752,7 +53111,7 @@ paths: application/json: schema: type: array - items: &482 + items: &484 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -52858,7 +53217,7 @@ paths: - created_at - updated_at examples: - default: &483 + default: &485 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -52914,9 +53273,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 requestBody: required: false content: @@ -52960,9 +53319,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 requestBody: required: false content: @@ -53015,9 +53374,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '200': description: Response @@ -53154,8 +53513,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -53173,9 +53532,9 @@ paths: type: integer secrets: type: array - items: *371 + items: *373 examples: - default: *372 + default: *374 headers: Link: *54 x-github: @@ -53200,16 +53559,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *373 + schema: *375 examples: - default: *374 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53231,17 +53590,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '200': description: Response content: application/json: - schema: *371 + schema: *373 examples: - default: &500 + default: &502 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -53267,8 +53626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 requestBody: required: true @@ -53326,8 +53685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '204': @@ -53353,9 +53712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *325 - - *326 - - *342 + - *327 + - *328 + - *344 - *19 responses: '200': @@ -53372,9 +53731,9 @@ paths: type: integer variables: type: array - items: *375 + items: *377 examples: - default: *376 + default: *378 headers: Link: *54 x-github: @@ -53397,8 +53756,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -53450,17 +53809,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *325 - - *326 + - *327 + - *328 - *154 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: - default: &501 + default: &503 value: name: USERNAME value: octocat @@ -53486,8 +53845,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *325 - - *326 + - *327 + - *328 - *154 requestBody: required: true @@ -53530,8 +53889,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *325 - - *326 + - *327 + - *328 - *154 responses: '204': @@ -53557,8 +53916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -53576,7 +53935,7 @@ paths: type: integer workflows: type: array - items: &377 + items: &379 title: Workflow description: A GitHub Actions workflow type: object @@ -53683,9 +54042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *325 - - *326 - - &378 + - *327 + - *328 + - &380 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -53700,7 +54059,7 @@ paths: description: Response content: application/json: - schema: *377 + schema: *379 examples: default: value: @@ -53733,9 +54092,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *325 - - *326 - - *378 + - *327 + - *328 + - *380 responses: '204': description: Response @@ -53760,9 +54119,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *325 - - *326 - - *378 + - *327 + - *328 + - *380 responses: '204': description: Response @@ -53813,9 +54172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *325 - - *326 - - *378 + - *327 + - *328 + - *380 responses: '204': description: Response @@ -53842,19 +54201,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *325 - - *326 - - *378 - - *379 + - *327 + - *328 - *380 - *381 - *382 - - *17 - - *19 - *383 - - *362 - *384 + - *17 + - *19 - *385 + - *364 + - *386 + - *387 responses: '200': description: Response @@ -53870,9 +54229,9 @@ paths: type: integer workflow_runs: type: array - items: *363 + items: *365 examples: - default: *386 + default: *388 headers: Link: *54 x-github: @@ -53904,9 +54263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *325 - - *326 - - *378 + - *327 + - *328 + - *380 responses: '200': description: Response @@ -53967,8 +54326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *325 - - *326 + - *327 + - *328 - *48 - *17 - *40 @@ -54132,8 +54491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -54170,8 +54529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *325 - - *326 + - *327 + - *328 - name: assignee in: path required: true @@ -54207,8 +54566,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -54320,8 +54679,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *40 - *41 @@ -54378,7 +54737,7 @@ paths: initiator: type: string examples: - default: *387 + default: *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54398,8 +54757,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -54407,7 +54766,7 @@ paths: application/json: schema: type: array - items: &388 + items: &390 title: Autolink reference description: An autolink reference. type: object @@ -54461,8 +54820,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -54501,9 +54860,9 @@ paths: description: response content: application/json: - schema: *388 + schema: *390 examples: - default: &389 + default: &391 value: id: 1 key_prefix: TICKET- @@ -54534,9 +54893,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *325 - - *326 - - &390 + - *327 + - *328 + - &392 name: autolink_id description: The unique identifier of the autolink. in: path @@ -54548,9 +54907,9 @@ paths: description: Response content: application/json: - schema: *388 + schema: *390 examples: - default: *389 + default: *391 '404': *6 x-github: githubCloudOnly: false @@ -54570,9 +54929,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *325 - - *326 - - *390 + - *327 + - *328 + - *392 responses: '204': description: Response @@ -54596,8 +54955,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response if Dependabot is enabled @@ -54645,8 +55004,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -54667,8 +55026,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -54688,8 +55047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *325 - - *326 + - *327 + - *328 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -54727,7 +55086,7 @@ paths: - url protected: type: boolean - protection: &392 + protection: &394 title: Branch Protection description: Branch Protection type: object @@ -54769,7 +55128,7 @@ paths: required: - contexts - checks - enforce_admins: &395 + enforce_admins: &397 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -54784,7 +55143,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &397 + required_pull_request_reviews: &399 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -54805,7 +55164,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *179 + items: *181 apps: description: The list of apps with review dismissal access. @@ -54834,7 +55193,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *179 + items: *181 apps: description: The list of apps allowed to bypass pull request requirements. @@ -54860,7 +55219,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &394 + restrictions: &396 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -54923,7 +55282,7 @@ paths: type: string teams: type: array - items: *179 + items: *181 apps: type: array items: @@ -55137,9 +55496,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *325 - - *326 - - &393 + - *327 + - *328 + - &395 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). @@ -55153,14 +55512,14 @@ paths: description: Response content: application/json: - schema: &403 + schema: &405 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &456 + commit: &458 title: Commit description: Commit type: object @@ -55194,7 +55553,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &391 + properties: &393 name: type: string example: '"Chris Wanstrath"' @@ -55209,7 +55568,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *391 + properties: *393 nullable: true message: type: string @@ -55230,7 +55589,7 @@ paths: required: - sha - url - verification: &507 + verification: &509 title: Verification type: object properties: @@ -55300,7 +55659,7 @@ paths: type: integer files: type: array - items: &469 + items: &471 title: Diff Entry description: Diff Entry type: object @@ -55384,7 +55743,7 @@ paths: - self protected: type: boolean - protection: *392 + protection: *394 protection_url: type: string format: uri @@ -55491,7 +55850,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *332 + '301': *334 '404': *6 x-github: githubCloudOnly: false @@ -55513,15 +55872,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *392 + schema: *394 examples: default: value: @@ -55715,9 +56074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -55972,7 +56331,7 @@ paths: url: type: string format: uri - required_status_checks: &400 + required_status_checks: &402 title: Status Check Policy description: Status Check Policy type: object @@ -56048,7 +56407,7 @@ paths: items: *4 teams: type: array - items: *179 + items: *181 apps: type: array items: *5 @@ -56066,7 +56425,7 @@ paths: items: *4 teams: type: array - items: *179 + items: *181 apps: type: array items: *5 @@ -56124,7 +56483,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *394 + restrictions: *396 required_conversation_resolution: type: object properties: @@ -56236,9 +56595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -56263,17 +56622,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: &396 + default: &398 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -56295,17 +56654,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: *396 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56324,9 +56683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -56351,17 +56710,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *397 + schema: *399 examples: - default: &398 + default: &400 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -56457,9 +56816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -56557,9 +56916,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *399 examples: - default: *398 + default: *400 '422': *15 x-github: githubCloudOnly: false @@ -56580,9 +56939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -56609,17 +56968,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: &399 + default: &401 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -56642,17 +57001,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: *399 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -56672,9 +57031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -56699,17 +57058,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *400 + schema: *402 examples: - default: &401 + default: &403 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -56735,9 +57094,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -56789,9 +57148,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *402 examples: - default: *401 + default: *403 '404': *6 '422': *15 x-github: @@ -56813,9 +57172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -56839,9 +57198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response @@ -56875,9 +57234,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -56944,9 +57303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -57010,9 +57369,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: content: application/json: @@ -57078,15 +57437,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *394 + schema: *396 examples: default: value: @@ -57177,9 +57536,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -57202,9 +57561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response @@ -57214,7 +57573,7 @@ paths: type: array items: *5 examples: - default: &402 + default: &404 value: - id: 1 slug: octoapp @@ -57271,9 +57630,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57307,7 +57666,7 @@ paths: type: array items: *5 examples: - default: *402 + default: *404 '422': *15 x-github: githubCloudOnly: false @@ -57328,9 +57687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57364,7 +57723,7 @@ paths: type: array items: *5 examples: - default: *402 + default: *404 '422': *15 x-github: githubCloudOnly: false @@ -57385,9 +57744,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57421,7 +57780,7 @@ paths: type: array items: *5 examples: - default: *402 + default: *404 '422': *15 x-github: githubCloudOnly: false @@ -57443,9 +57802,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response @@ -57453,9 +57812,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 '404': *6 x-github: githubCloudOnly: false @@ -57475,9 +57834,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -57513,9 +57872,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 '422': *15 x-github: githubCloudOnly: false @@ -57536,9 +57895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -57574,9 +57933,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 '422': *15 x-github: githubCloudOnly: false @@ -57597,9 +57956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: content: application/json: @@ -57634,9 +57993,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 '422': *15 x-github: githubCloudOnly: false @@ -57658,9 +58017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response @@ -57694,9 +58053,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57754,9 +58113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57814,9 +58173,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57876,9 +58235,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57900,7 +58259,7 @@ paths: description: Response content: application/json: - schema: *403 + schema: *405 examples: default: value: @@ -58016,8 +58375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -58296,7 +58655,7 @@ paths: description: Response content: application/json: - schema: &405 + schema: &407 title: CheckRun description: A check performed on the code of a given code change type: object @@ -58415,8 +58774,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *404 - deployment: &718 + items: *406 + deployment: &720 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -58696,9 +59055,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *325 - - *326 - - &406 + - *327 + - *328 + - &408 name: check_run_id description: The unique identifier of the check run. in: path @@ -58710,9 +59069,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *407 examples: - default: &407 + default: &409 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -58812,9 +59171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *325 - - *326 - - *406 + - *327 + - *328 + - *408 requestBody: required: true content: @@ -59054,9 +59413,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *407 examples: - default: *407 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59076,9 +59435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *325 - - *326 - - *406 + - *327 + - *328 + - *408 - *17 - *19 responses: @@ -59173,9 +59532,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *325 - - *326 - - *406 + - *327 + - *328 + - *408 responses: '201': description: Response @@ -59219,8 +59578,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -59242,7 +59601,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &410 + schema: &412 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -59306,7 +59665,7 @@ paths: nullable: true pull_requests: type: array - items: *404 + items: *406 nullable: true app: title: GitHub app @@ -59328,12 +59687,12 @@ paths: type: string format: date-time nullable: true - head_commit: &744 + head_commit: &746 title: Simple Commit description: A commit. type: object - properties: *408 - required: *409 + properties: *410 + required: *411 latest_check_runs_count: type: integer check_runs_url: @@ -59361,7 +59720,7 @@ paths: - check_runs_url - pull_requests examples: - default: &411 + default: &413 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -59652,9 +60011,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *410 + schema: *412 examples: - default: *411 + default: *413 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59673,8 +60032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -59983,9 +60342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *325 - - *326 - - &412 + - *327 + - *328 + - &414 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -59997,9 +60356,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *412 examples: - default: *411 + default: *413 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60022,17 +60381,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *325 - - *326 - - *412 - - &462 + - *327 + - *328 + - *414 + - &464 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &463 + - &465 name: status description: Returns check runs with the specified `status`. in: query @@ -60071,9 +60430,9 @@ paths: type: integer check_runs: type: array - items: *405 + items: *407 examples: - default: &464 + default: &466 value: total_count: 1 check_runs: @@ -60175,9 +60534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *325 - - *326 - - *412 + - *327 + - *328 + - *414 responses: '201': description: Response @@ -60210,21 +60569,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *325 - - *326 - - *413 - - *414 + - *327 + - *328 + - *415 + - *416 - *19 - *17 - - &431 + - &433 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: *415 - - &432 + schema: *417 + - &434 name: pr description: The number of the pull request for the results you want to list. in: query @@ -60249,13 +60608,13 @@ paths: be returned. in: query required: false - schema: *416 + schema: *418 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *417 + schema: *419 responses: '200': description: Response @@ -60266,14 +60625,14 @@ paths: items: type: object properties: - number: *159 - created_at: *160 - updated_at: *161 - url: *162 - html_url: *163 - instances_url: *418 - state: *168 - fixed_at: *164 + number: *161 + created_at: *162 + updated_at: *163 + url: *164 + html_url: *165 + instances_url: *420 + state: *170 + fixed_at: *166 dismissed_by: title: Simple User description: A GitHub user. @@ -60281,12 +60640,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *165 - dismissed_reason: *419 - dismissed_comment: *420 - rule: *421 - tool: *422 - most_recent_instance: *423 + dismissed_at: *167 + dismissed_reason: *421 + dismissed_comment: *422 + rule: *423 + tool: *424 + most_recent_instance: *425 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -60412,7 +60771,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &424 + '403': &426 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -60439,9 +60798,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *325 - - *326 - - &425 + - *327 + - *328 + - &427 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -60449,23 +60808,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *159 + schema: *161 responses: '200': description: Response content: application/json: - schema: &426 + schema: &428 type: object properties: - number: *159 - created_at: *160 - updated_at: *161 - url: *162 - html_url: *163 - instances_url: *418 - state: *168 - fixed_at: *164 + number: *161 + created_at: *162 + updated_at: *163 + url: *164 + html_url: *165 + instances_url: *420 + state: *170 + fixed_at: *166 dismissed_by: title: Simple User description: A GitHub user. @@ -60473,9 +60832,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *165 - dismissed_reason: *419 - dismissed_comment: *420 + dismissed_at: *167 + dismissed_reason: *421 + dismissed_comment: *422 rule: type: object properties: @@ -60529,8 +60888,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *422 - most_recent_instance: *423 + tool: *424 + most_recent_instance: *425 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -60629,7 +60988,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -60649,9 +61008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 requestBody: required: true content: @@ -60666,8 +61025,8 @@ paths: enum: - open - dismissed - dismissed_reason: *419 - dismissed_comment: *420 + dismissed_reason: *421 + dismissed_comment: *422 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -60686,7 +61045,7 @@ paths: description: Response content: application/json: - schema: *426 + schema: *428 examples: default: value: @@ -60762,7 +61121,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &430 + '403': &432 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -60789,15 +61148,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: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 responses: '200': description: Response content: application/json: - schema: &427 + schema: &429 type: object properties: status: @@ -60823,13 +61182,13 @@ paths: - description - started_at examples: - default: &428 + default: &430 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &429 + '400': &431 description: Bad Request content: application/json: @@ -60840,7 +61199,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': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -60865,29 +61224,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: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 responses: '200': description: OK content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 '202': description: Accepted content: application/json: - schema: *427 + schema: *429 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *429 + '400': *431 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -60919,9 +61278,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: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 requestBody: required: false content: @@ -60966,8 +61325,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *429 - '403': *430 + '400': *431 + '403': *432 '404': *6 '422': description: Unprocessable Entity @@ -60991,13 +61350,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 - *19 - *17 - - *431 - - *432 + - *433 + - *434 responses: '200': description: Response @@ -61005,7 +61364,7 @@ paths: application/json: schema: type: array - items: *423 + items: *425 examples: default: value: @@ -61044,7 +61403,7 @@ paths: end_column: 50 classifications: - source - '403': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -61078,25 +61437,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *325 - - *326 - - *413 - - *414 + - *327 + - *328 + - *415 + - *416 - *19 - *17 - - *432 + - *434 - 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: *415 + schema: *417 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &435 + schema: &437 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -61117,23 +61476,23 @@ paths: application/json: schema: type: array - items: &436 + items: &438 type: object properties: - ref: *415 - commit_sha: &444 + ref: *417 + commit_sha: &446 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: *433 + analysis_key: *435 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *434 + category: *436 error: type: string example: error reading field xyz @@ -61157,8 +61516,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *435 - tool: *422 + sarif_id: *437 + tool: *424 deletable: type: boolean warning: @@ -61219,7 +61578,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -61255,8 +61614,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: - - *325 - - *326 + - *327 + - *328 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -61269,7 +61628,7 @@ paths: description: Response content: application/json: - schema: *436 + schema: *438 examples: response: summary: application/json response @@ -61323,7 +61682,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *424 + '403': *426 '404': *6 '422': description: Response if analysis could not be processed @@ -61410,8 +61769,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: - - *325 - - *326 + - *327 + - *328 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -61464,7 +61823,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': *430 + '403': *432 '404': *6 '503': *104 x-github: @@ -61486,8 +61845,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -61495,7 +61854,7 @@ paths: application/json: schema: type: array - items: &437 + items: &439 title: CodeQL Database description: A CodeQL database. type: object @@ -61606,7 +61965,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': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -61635,8 +61994,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - name: language in: path description: The language of the CodeQL database. @@ -61648,7 +62007,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: default: value: @@ -61680,9 +62039,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': &471 + '302': &473 description: Found - '403': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -61704,8 +62063,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *325 - - *326 + - *327 + - *328 - name: language in: path description: The language of the CodeQL database. @@ -61715,7 +62074,7 @@ paths: responses: '204': description: Response - '403': *430 + '403': *432 '404': *6 '503': *104 x-github: @@ -61743,8 +62102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -61753,10 +62112,11 @@ paths: type: object additionalProperties: false properties: - language: &438 + language: &440 type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -61832,7 +62192,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &442 + schema: &444 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -61842,7 +62202,7 @@ paths: description: The ID of the variant analysis. controller_repo: *53 actor: *4 - query_language: *438 + query_language: *440 query_pack_url: type: string description: The download url for the query pack. @@ -61889,7 +62249,7 @@ paths: items: type: object properties: - repository: &439 + repository: &441 title: Repository Identifier description: Repository Identifier type: object @@ -61925,7 +62285,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &443 + analysis_status: &445 type: string description: The new status of the CodeQL variant analysis repository task. @@ -61957,7 +62317,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &440 + access_mismatch_repos: &442 type: object properties: repository_count: @@ -61971,7 +62331,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: *439 + items: *441 required: - repository_count - repositories @@ -61993,8 +62353,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *440 - over_limit_repos: *440 + no_codeql_db_repos: *442 + over_limit_repos: *442 required: - access_mismatch_repos - not_found_repos @@ -62010,7 +62370,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &441 + value: &443 summary: Default response value: id: 1 @@ -62162,10 +62522,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *441 + value: *443 repository_lists: summary: Response for a successful variant analysis submission - value: *441 + value: *443 '404': *6 '422': description: Unable to process variant analysis submission @@ -62193,8 +62553,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: - - *325 - - *326 + - *327 + - *328 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -62206,9 +62566,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *444 examples: - default: *441 + default: *443 '404': *6 '503': *104 x-github: @@ -62231,7 +62591,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: - - *325 + - *327 - name: repo in: path description: The name of the controller repository. @@ -62266,7 +62626,7 @@ paths: type: object properties: repository: *53 - analysis_status: *443 + analysis_status: *445 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -62391,8 +62751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -62477,7 +62837,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -62498,8 +62858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -62591,7 +62951,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *430 + '403': *432 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -62662,8 +63022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -62671,7 +63031,7 @@ paths: schema: type: object properties: - commit_sha: *444 + commit_sha: *446 ref: type: string description: |- @@ -62729,7 +63089,7 @@ paths: schema: type: object properties: - id: *435 + id: *437 url: type: string description: The REST API URL for checking the status of the upload. @@ -62743,7 +63103,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': *430 + '403': *432 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -62766,8 +63126,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *325 - - *326 + - *327 + - *328 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -62813,7 +63173,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': *424 + '403': *426 '404': description: Not Found if the sarif id does not match any upload '503': *104 @@ -62838,8 +63198,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -62895,7 +63255,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': *173 + '204': *175 '304': *37 '403': *29 '404': *6 @@ -62920,8 +63280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *325 - - *326 + - *327 + - *328 - 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 @@ -63041,8 +63401,8 @@ paths: parameters: - *17 - *19 - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -63058,7 +63418,7 @@ paths: type: integer codespaces: type: array - items: *222 + items: *224 examples: default: value: @@ -63356,8 +63716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -63420,17 +63780,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '400': *14 '401': *25 '403': *29 @@ -63459,8 +63819,8 @@ paths: parameters: - *17 - *19 - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -63524,8 +63884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -63560,14 +63920,14 @@ paths: type: integer machines: type: array - items: &667 + items: &669 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *446 - required: *447 + properties: *448 + required: *449 examples: - default: &668 + default: &670 value: total_count: 2 machines: @@ -63607,8 +63967,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *325 - - *326 + - *327 + - *328 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -63692,8 +64052,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: - - *325 - - *326 + - *327 + - *328 - 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 @@ -63759,8 +64119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -63778,7 +64138,7 @@ paths: type: integer secrets: type: array - items: &451 + items: &453 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -63798,7 +64158,7 @@ paths: - created_at - updated_at examples: - default: *448 + default: *450 headers: Link: *54 x-github: @@ -63821,16 +64181,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *449 + schema: *451 examples: - default: *450 + default: *452 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -63850,17 +64210,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '200': description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *452 + default: *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63880,8 +64240,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 requestBody: required: true @@ -63934,8 +64294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '204': @@ -63964,8 +64324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *325 - - *326 + - *327 + - *328 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -64007,7 +64367,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &453 + properties: &455 login: type: string example: octocat @@ -64100,7 +64460,7 @@ paths: user_view_type: type: string example: public - required: &454 + required: &456 - avatar_url - events_url - followers_url @@ -64174,8 +64534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *325 - - *326 + - *327 + - *328 - *59 responses: '204': @@ -64222,8 +64582,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *325 - - *326 + - *327 + - *328 - *59 requestBody: required: false @@ -64250,7 +64610,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &520 + schema: &522 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -64479,8 +64839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *325 - - *326 + - *327 + - *328 - *59 responses: '204': @@ -64512,8 +64872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *325 - - *326 + - *327 + - *328 - *59 responses: '200': @@ -64534,8 +64894,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *453 - required: *454 + properties: *455 + required: *456 nullable: true required: - permission @@ -64590,8 +64950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -64601,7 +64961,7 @@ paths: application/json: schema: type: array - items: &455 + items: &457 title: Commit Comment description: Commit Comment type: object @@ -64659,7 +65019,7 @@ paths: - created_at - updated_at examples: - default: &458 + default: &460 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -64718,17 +65078,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '200': description: Response content: application/json: - schema: *455 + schema: *457 examples: - default: &459 + default: &461 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -64785,8 +65145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -64809,7 +65169,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -64860,8 +65220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '204': @@ -64883,8 +65243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -64911,9 +65271,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 '404': *6 @@ -64934,8 +65294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -64968,16 +65328,16 @@ paths: description: Reaction exists content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Reaction created content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -64999,10 +65359,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *325 - - *326 + - *327 + - *328 - *81 - - *321 + - *323 responses: '204': description: Response @@ -65051,8 +65411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *325 - - *326 + - *327 + - *328 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -65108,9 +65468,9 @@ paths: application/json: schema: type: array - items: *456 + items: *458 examples: - default: &573 + default: &575 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -65204,9 +65564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *325 - - *326 - - &457 + - *327 + - *328 + - &459 name: commit_sha description: The SHA of the commit. in: path @@ -65278,9 +65638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *325 - - *326 - - *457 + - *327 + - *328 + - *459 - *17 - *19 responses: @@ -65290,9 +65650,9 @@ paths: application/json: schema: type: array - items: *455 + items: *457 examples: - default: *458 + default: *460 headers: Link: *54 x-github: @@ -65320,9 +65680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *325 - - *326 - - *457 + - *327 + - *328 + - *459 requestBody: required: true content: @@ -65357,9 +65717,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: - default: *459 + default: *461 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -65387,9 +65747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *325 - - *326 - - *457 + - *327 + - *328 + - *459 - *17 - *19 responses: @@ -65399,9 +65759,9 @@ paths: application/json: schema: type: array - items: *460 + items: *462 examples: - default: &565 + default: &567 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -65938,11 +66298,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *325 - - *326 + - *327 + - *328 - *19 - *17 - - &461 + - &463 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)" @@ -65957,9 +66317,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *458 examples: - default: &550 + default: &552 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66072,11 +66432,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *325 - - *326 - - *461 - - *462 + - *327 + - *328 - *463 + - *464 + - *465 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -66110,9 +66470,9 @@ paths: type: integer check_runs: type: array - items: *405 + items: *407 examples: - default: *464 + default: *466 headers: Link: *54 x-github: @@ -66137,9 +66497,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *325 - - *326 - - *461 + - *327 + - *328 + - *463 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -66147,7 +66507,7 @@ paths: schema: type: integer example: 1 - - *462 + - *464 - *17 - *19 responses: @@ -66165,7 +66525,7 @@ paths: type: integer check_suites: type: array - items: *410 + items: *412 examples: default: value: @@ -66365,9 +66725,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *325 - - *326 - - *461 + - *327 + - *328 + - *463 - *17 - *19 responses: @@ -66565,9 +66925,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *325 - - *326 - - *461 + - *327 + - *328 + - *463 - *17 - *19 responses: @@ -66577,7 +66937,7 @@ paths: application/json: schema: type: array - items: &638 + items: &640 title: Status description: The status of a commit. type: object @@ -66658,7 +67018,7 @@ paths: site_admin: false headers: Link: *54 - '301': *332 + '301': *334 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66686,8 +67046,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -66716,20 +67076,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *465 - required: *466 + properties: *467 + required: *468 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &467 + properties: &469 url: type: string format: uri html_url: type: string format: uri - required: &468 + required: &470 - url - html_url nullable: true @@ -66743,26 +67103,26 @@ paths: contributing: title: Community Health File type: object - properties: *467 - required: *468 + properties: *469 + required: *470 nullable: true readme: title: Community Health File type: object - properties: *467 - required: *468 + properties: *469 + required: *470 nullable: true issue_template: title: Community Health File type: object - properties: *467 - required: *468 + properties: *469 + required: *470 nullable: true pull_request_template: title: Community Health File type: object - properties: *467 - required: *468 + properties: *469 + required: *470 nullable: true required: - code_of_conduct @@ -66889,8 +67249,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *325 - - *326 + - *327 + - *328 - *19 - *17 - name: basehead @@ -66933,8 +67293,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *456 - merge_base_commit: *456 + base_commit: *458 + merge_base_commit: *458 status: type: string enum: @@ -66954,10 +67314,10 @@ paths: example: 6 commits: type: array - items: *456 + items: *458 files: type: array - items: *469 + items: *471 required: - url - html_url @@ -67243,8 +67603,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *325 - - *326 + - *327 + - *328 - name: path description: path parameter in: path @@ -67387,7 +67747,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &470 + response-if-content-is-a-file: &472 summary: Response if content is a file value: type: file @@ -67519,7 +67879,7 @@ paths: - size - type - url - - &578 + - &580 title: Content File description: Content File type: object @@ -67720,7 +68080,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *470 + response-if-content-is-a-file: *472 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -67789,7 +68149,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *471 + '302': *473 '304': *37 x-github: githubCloudOnly: false @@ -67812,8 +68172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *325 - - *326 + - *327 + - *328 - name: path description: path parameter in: path @@ -67906,7 +68266,7 @@ paths: description: Response content: application/json: - schema: &472 + schema: &474 title: File Commit description: File Commit type: object @@ -68058,7 +68418,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: example-for-creating-a-file: value: @@ -68112,7 +68472,7 @@ paths: schema: oneOf: - *3 - - &502 + - &504 description: Repository rule violation was detected type: object properties: @@ -68133,7 +68493,7 @@ paths: items: type: object properties: - placeholder_id: &630 + placeholder_id: &632 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -68165,8 +68525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *325 - - *326 + - *327 + - *328 - name: path description: path parameter in: path @@ -68227,7 +68587,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: default: value: @@ -68282,8 +68642,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *325 - - *326 + - *327 + - *328 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -68406,22 +68766,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *325 - - *326 - - *180 - - *181 + - *327 + - *328 - *182 - *183 + - *184 + - *185 - 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 - - *184 - - *473 - - *185 - *186 + - *475 + - *187 + - *188 - *48 - name: per_page description: The number of results per page (max 100). For more information, @@ -68440,11 +68800,11 @@ paths: application/json: schema: type: array - items: &476 + items: &478 type: object description: A Dependabot alert. properties: - number: *159 + number: *161 state: type: string description: The state of the Dependabot alert. @@ -68486,13 +68846,13 @@ paths: - unknown - direct - transitive - security_advisory: *474 + security_advisory: *476 security_vulnerability: *52 - url: *162 - html_url: *163 - created_at: *160 - updated_at: *161 - dismissed_at: *165 + url: *164 + html_url: *165 + created_at: *162 + updated_at: *163 + dismissed_at: *167 dismissed_by: title: Simple User description: A GitHub user. @@ -68516,8 +68876,8 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *164 - auto_dismissed_at: *475 + fixed_at: *166 + auto_dismissed_at: *477 required: - number - state @@ -68747,9 +69107,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *325 - - *326 - - &477 + - *327 + - *328 + - &479 name: alert_number in: path description: |- @@ -68758,13 +69118,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *159 + schema: *161 responses: '200': description: Response content: application/json: - schema: *476 + schema: *478 examples: default: value: @@ -68877,9 +69237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *325 - - *326 - - *477 + - *327 + - *328 + - *479 requestBody: required: true content: @@ -68924,7 +69284,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *478 examples: default: value: @@ -69053,8 +69413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -69072,7 +69432,7 @@ paths: type: integer secrets: type: array - items: &480 + items: &482 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -69125,16 +69485,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *478 + schema: *480 examples: - default: *479 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69154,15 +69514,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '200': description: Response content: application/json: - schema: *480 + schema: *482 examples: default: value: @@ -69188,8 +69548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 requestBody: required: true @@ -69242,8 +69602,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '204': @@ -69266,8 +69626,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: - - *325 - - *326 + - *327 + - *328 - 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 @@ -69427,8 +69787,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -69667,8 +70027,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -69743,7 +70103,7 @@ paths: - version - url additionalProperties: false - metadata: &481 + metadata: &483 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -69776,7 +70136,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *481 + metadata: *483 resolved: type: object description: A collection of resolved package dependencies. @@ -69789,7 +70149,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *481 + metadata: *483 relationship: type: string description: A notation of whether a dependency is requested @@ -69918,8 +70278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *325 - - *326 + - *327 + - *328 - name: sha description: The SHA recorded at creation time. in: query @@ -69959,9 +70319,9 @@ paths: application/json: schema: type: array - items: *482 + items: *484 examples: - default: *483 + default: *485 headers: Link: *54 x-github: @@ -70027,8 +70387,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -70109,7 +70469,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *484 examples: simple-example: summary: Simple example @@ -70182,9 +70542,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *325 - - *326 - - &484 + - *327 + - *328 + - &486 name: deployment_id description: deployment_id parameter in: path @@ -70196,7 +70556,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *484 examples: default: value: @@ -70261,9 +70621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *325 - - *326 - - *484 + - *327 + - *328 + - *486 responses: '204': description: Response @@ -70285,9 +70645,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *325 - - *326 - - *484 + - *327 + - *328 + - *486 - *17 - *19 responses: @@ -70297,7 +70657,7 @@ paths: application/json: schema: type: array - items: &485 + items: &487 title: Deployment Status description: The status of a deployment. type: object @@ -70458,9 +70818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *325 - - *326 - - *484 + - *327 + - *328 + - *486 requestBody: required: true content: @@ -70535,9 +70895,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *487 examples: - default: &486 + default: &488 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -70593,9 +70953,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *325 - - *326 - - *484 + - *327 + - *328 + - *486 - name: status_id in: path required: true @@ -70606,9 +70966,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *487 examples: - default: *486 + default: *488 '404': *6 x-github: githubCloudOnly: false @@ -70633,8 +70993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -70691,8 +71051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -70709,7 +71069,7 @@ paths: type: integer environments: type: array - items: &488 + items: &490 title: Environment description: Details of a deployment environment type: object @@ -70761,7 +71121,7 @@ paths: type: type: string example: wait_timer - wait_timer: &490 + wait_timer: &492 type: integer example: 30 description: The amount of time to delay a job after @@ -70798,11 +71158,11 @@ paths: items: type: object properties: - type: *487 + type: *489 reviewer: anyOf: - *4 - - *179 + - *181 required: - id - node_id @@ -70822,7 +71182,7 @@ paths: - id - node_id - type - deployment_branch_policy: &491 + deployment_branch_policy: &493 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -70938,9 +71298,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *325 - - *326 - - &489 + - *327 + - *328 + - &491 name: environment_name in: path required: true @@ -70953,9 +71313,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *490 examples: - default: &492 + default: &494 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -71039,9 +71399,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 requestBody: required: false content: @@ -71050,7 +71410,7 @@ paths: type: object nullable: true properties: - wait_timer: *490 + wait_timer: *492 prevent_self_review: type: boolean example: false @@ -71067,13 +71427,13 @@ paths: items: type: object properties: - type: *487 + type: *489 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *491 + deployment_branch_policy: *493 additionalProperties: false examples: default: @@ -71093,9 +71453,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *490 examples: - default: *492 + default: *494 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -71119,9 +71479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 responses: '204': description: Default response @@ -71146,9 +71506,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *17 - *19 responses: @@ -71166,7 +71526,7 @@ paths: example: 2 branch_policies: type: array - items: &493 + items: &495 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -71223,9 +71583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 requestBody: required: true content: @@ -71271,9 +71631,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *495 examples: - example-wildcard: &494 + example-wildcard: &496 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -71315,10 +71675,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *325 - - *326 - - *489 - - &495 + - *327 + - *328 + - *491 + - &497 name: branch_policy_id in: path required: true @@ -71330,9 +71690,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *495 examples: - default: *494 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71351,10 +71711,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *325 - - *326 - - *489 - - *495 + - *327 + - *328 + - *491 + - *497 requestBody: required: true content: @@ -71382,9 +71742,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *495 examples: - default: *494 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71403,10 +71763,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *325 - - *326 - - *489 - - *495 + - *327 + - *328 + - *491 + - *497 responses: '204': description: Response @@ -71431,9 +71791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *489 - - *326 - - *325 + - *491 + - *328 + - *327 responses: '200': description: List of deployment protection rules @@ -71449,7 +71809,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &496 + items: &498 title: Deployment protection rule description: Deployment protection rule type: object @@ -71468,7 +71828,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &497 + app: &499 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -71567,9 +71927,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: - - *489 - - *326 - - *325 + - *491 + - *328 + - *327 requestBody: content: application/json: @@ -71590,9 +71950,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *496 + schema: *498 examples: - default: &498 + default: &500 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -71627,9 +71987,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: - - *489 - - *326 - - *325 + - *491 + - *328 + - *327 - *19 - *17 responses: @@ -71648,7 +72008,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *497 + items: *499 examples: default: value: @@ -71683,10 +72043,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *325 - - *326 - - *489 - - &499 + - *327 + - *328 + - *491 + - &501 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -71698,9 +72058,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *498 examples: - default: *498 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71721,10 +72081,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *489 - - *326 - - *325 - - *499 + - *491 + - *328 + - *327 + - *501 responses: '204': description: Response @@ -71750,9 +72110,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *17 - *19 responses: @@ -71770,9 +72130,9 @@ paths: type: integer secrets: type: array - items: *371 + items: *373 examples: - default: *372 + default: *374 headers: Link: *54 x-github: @@ -71797,17 +72157,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 responses: '200': description: Response content: application/json: - schema: *373 + schema: *375 examples: - default: *374 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71829,18 +72189,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *151 responses: '200': description: Response content: application/json: - schema: *371 + schema: *373 examples: - default: *500 + default: *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71862,9 +72222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *151 requestBody: required: true @@ -71922,9 +72282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *151 responses: '204': @@ -71950,10 +72310,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *325 - - *326 - - *489 - - *342 + - *327 + - *328 + - *491 + - *344 - *19 responses: '200': @@ -71970,9 +72330,9 @@ paths: type: integer variables: type: array - items: *375 + items: *377 examples: - default: *376 + default: *378 headers: Link: *54 x-github: @@ -71995,9 +72355,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 requestBody: required: true content: @@ -72049,18 +72409,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *154 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: - default: *501 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72081,10 +72441,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *325 - - *326 + - *327 + - *328 - *154 - - *489 + - *491 requestBody: required: true content: @@ -72126,10 +72486,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *325 - - *326 + - *327 + - *328 - *154 - - *489 + - *491 responses: '204': description: Response @@ -72151,8 +72511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -72220,8 +72580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *325 - - *326 + - *327 + - *328 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -72380,8 +72740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -72413,9 +72773,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *333 + default: *335 '400': *14 '422': *15 '403': *29 @@ -72436,8 +72796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -72497,7 +72857,7 @@ paths: schema: oneOf: - *112 - - *502 + - *504 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72522,8 +72882,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *325 - - *326 + - *327 + - *328 - name: file_sha in: path required: true @@ -72622,8 +72982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -72732,7 +73092,7 @@ paths: description: Response content: application/json: - schema: &503 + schema: &505 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -72946,15 +73306,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *325 - - *326 - - *457 + - *327 + - *328 + - *459 responses: '200': description: Response content: application/json: - schema: *503 + schema: *505 examples: default: value: @@ -73010,9 +73370,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *325 - - *326 - - &504 + - *327 + - *328 + - &506 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -73029,7 +73389,7 @@ paths: application/json: schema: type: array - items: &505 + items: &507 title: Git Reference description: Git references within a repository type: object @@ -73104,17 +73464,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *325 - - *326 - - *504 + - *327 + - *328 + - *506 responses: '200': description: Response content: application/json: - schema: *505 + schema: *507 examples: - default: &506 + default: &508 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -73143,8 +73503,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -73173,9 +73533,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *507 examples: - default: *506 + default: *508 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -73201,9 +73561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *325 - - *326 - - *504 + - *327 + - *328 + - *506 requestBody: required: true content: @@ -73232,9 +73592,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *507 examples: - default: *506 + default: *508 '422': *15 '409': *47 x-github: @@ -73252,9 +73612,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *325 - - *326 - - *504 + - *327 + - *328 + - *506 responses: '204': description: Response @@ -73309,8 +73669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -73377,7 +73737,7 @@ paths: description: Response content: application/json: - schema: &508 + schema: &510 title: Git Tag description: Metadata for a Git tag type: object @@ -73428,7 +73788,7 @@ paths: - sha - type - url - verification: *507 + verification: *509 required: - sha - url @@ -73438,7 +73798,7 @@ paths: - tag - message examples: - default: &509 + default: &511 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -73511,8 +73871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *325 - - *326 + - *327 + - *328 - name: tag_sha in: path required: true @@ -73523,9 +73883,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: - default: *509 + default: *511 '404': *6 '409': *47 x-github: @@ -73549,8 +73909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -73623,7 +73983,7 @@ paths: description: Response content: application/json: - schema: &510 + schema: &512 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -73719,8 +74079,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *325 - - *326 + - *327 + - *328 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -73743,7 +74103,7 @@ paths: description: Response content: application/json: - schema: *510 + schema: *512 examples: default-response: summary: Default response @@ -73802,8 +74162,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -73813,7 +74173,7 @@ paths: application/json: schema: type: array - items: &511 + items: &513 title: Webhook description: Webhooks for repositories. type: object @@ -73867,7 +74227,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &752 + last_response: &754 title: Hook Response type: object properties: @@ -73941,8 +74301,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -73994,9 +74354,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: &512 + default: &514 value: type: Repository id: 12345678 @@ -74044,17 +74404,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *512 + default: *514 '404': *6 x-github: githubCloudOnly: false @@ -74074,9 +74434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 requestBody: required: true content: @@ -74121,9 +74481,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *512 + default: *514 '422': *15 '404': *6 x-github: @@ -74144,9 +74504,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 responses: '204': description: Response @@ -74170,9 +74530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 responses: '200': description: Response @@ -74199,9 +74559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 requestBody: required: false content: @@ -74245,11 +74605,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 - *17 - - *195 + - *197 responses: '200': description: Response @@ -74257,9 +74617,9 @@ paths: application/json: schema: type: array - items: *196 + items: *198 examples: - default: *197 + default: *199 '400': *14 '422': *15 x-github: @@ -74278,18 +74638,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 - *16 responses: '200': description: Response content: application/json: - schema: *198 + schema: *200 examples: - default: *199 + default: *201 '400': *14 '422': *15 x-github: @@ -74308,9 +74668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 - *16 responses: '202': *39 @@ -74333,9 +74693,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 responses: '204': description: Response @@ -74360,9 +74720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 responses: '204': description: Response @@ -74385,8 +74745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response if immutable releases are enabled @@ -74432,10 +74792,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *325 - - *326 + - *327 + - *328 responses: - '204': *173 + '204': *175 '409': *47 x-github: githubCloudOnly: false @@ -74453,10 +74813,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *325 - - *326 + - *327 + - *328 responses: - '204': *173 + '204': *175 '409': *47 x-github: githubCloudOnly: false @@ -74511,14 +74871,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: &513 + schema: &515 title: Import description: A repository import from an external source. type: object @@ -74617,7 +74977,7 @@ paths: - html_url - authors_url examples: - default: &516 + default: &518 value: vcs: subversion use_lfs: true @@ -74633,7 +74993,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': &514 + '503': &516 description: Unavailable due to service under maintenance. content: application/json: @@ -74662,8 +75022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -74711,7 +75071,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *515 examples: default: value: @@ -74736,7 +75096,7 @@ paths: type: string '422': *15 '404': *6 - '503': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74764,8 +75124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -74814,7 +75174,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *515 examples: example-1: summary: Example 1 @@ -74862,7 +75222,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': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74885,12 +75245,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response - '503': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74916,9 +75276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *325 - - *326 - - &689 + - *327 + - *328 + - &691 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -74932,7 +75292,7 @@ paths: application/json: schema: type: array - items: &515 + items: &517 title: Porter Author description: Porter Author type: object @@ -74986,7 +75346,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': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75011,8 +75371,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *325 - - *326 + - *327 + - *328 - name: author_id in: path required: true @@ -75042,7 +75402,7 @@ paths: description: Response content: application/json: - schema: *515 + schema: *517 examples: default: value: @@ -75055,7 +75415,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75079,8 +75439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -75121,7 +75481,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75149,8 +75509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -75177,11 +75537,11 @@ paths: description: Response content: application/json: - schema: *513 + schema: *515 examples: - default: *516 + default: *518 '422': *15 - '503': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75204,8 +75564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -75213,8 +75573,8 @@ paths: application/json: schema: *22 examples: - default: *517 - '301': *332 + default: *519 + '301': *334 '404': *6 x-github: githubCloudOnly: false @@ -75234,8 +75594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -75243,12 +75603,12 @@ paths: application/json: schema: anyOf: - - *212 + - *214 - type: object properties: {} additionalProperties: false examples: - default: &519 + default: &521 value: limit: collaborators_only origin: repository @@ -75273,13 +75633,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: application/json: - schema: *518 + schema: *520 examples: default: summary: Example request body @@ -75291,9 +75651,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *214 examples: - default: *519 + default: *521 '409': description: Response x-github: @@ -75315,8 +75675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -75339,8 +75699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -75350,9 +75710,9 @@ paths: application/json: schema: type: array - items: *520 + items: *522 examples: - default: &682 + default: &684 value: - id: 1 repository: @@ -75483,9 +75843,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *325 - - *326 - - *216 + - *327 + - *328 + - *218 requestBody: required: false content: @@ -75514,7 +75874,7 @@ paths: description: Response content: application/json: - schema: *520 + schema: *522 examples: default: value: @@ -75645,9 +76005,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *325 - - *326 - - *216 + - *327 + - *328 + - *218 responses: '204': description: Response @@ -75678,8 +76038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *325 - - *326 + - *327 + - *328 - 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 @@ -75727,7 +76087,7 @@ paths: required: false schema: type: string - - *220 + - *222 - name: sort description: What to sort results by. in: query @@ -75752,7 +76112,7 @@ paths: type: array items: *82 examples: - default: &530 + default: &532 value: - id: 1 node_id: MDU6SXNzdWUx @@ -75900,7 +76260,7 @@ paths: state_reason: completed headers: Link: *54 - '301': *332 + '301': *334 '422': *15 '404': *6 x-github: @@ -75929,8 +76289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -76014,7 +76374,7 @@ paths: application/json: schema: *82 examples: - default: &527 + default: &529 value: id: 1 node_id: MDU6SXNzdWUx @@ -76170,7 +76530,7 @@ paths: '422': *15 '503': *104 '404': *6 - '410': *521 + '410': *523 x-github: triggersNotification: true githubCloudOnly: false @@ -76198,8 +76558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *92 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -76220,9 +76580,9 @@ paths: application/json: schema: type: array - items: *522 + items: *524 examples: - default: &529 + default: &531 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -76280,17 +76640,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '200': description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: &523 + default: &525 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -76344,8 +76704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -76368,9 +76728,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: *523 + default: *525 '422': *15 x-github: githubCloudOnly: false @@ -76388,8 +76748,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '204': @@ -76410,8 +76770,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -76438,9 +76798,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 '404': *6 @@ -76461,8 +76821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -76495,16 +76855,16 @@ paths: description: Reaction exists content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Reaction created content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -76526,10 +76886,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *325 - - *326 + - *327 + - *328 - *81 - - *321 + - *323 responses: '204': description: Response @@ -76549,8 +76909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -76560,7 +76920,7 @@ paths: application/json: schema: type: array - items: &526 + items: &528 title: Issue Event description: Issue Event type: object @@ -76603,8 +76963,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *524 - required: *525 + properties: *526 + required: *527 nullable: true label: title: Issue Event Label @@ -76648,7 +77008,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *179 + requested_team: *181 dismissed_review: title: Issue Event Dismissed Review type: object @@ -76911,8 +77271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *325 - - *326 + - *327 + - *328 - name: event_id in: path required: true @@ -76923,7 +77283,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *528 examples: default: value: @@ -77116,7 +77476,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *521 + '410': *523 '403': *29 x-github: githubCloudOnly: false @@ -77150,9 +77510,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *325 - - *326 - - &528 + - *327 + - *328 + - &530 name: issue_number description: The number that identifies the issue. in: path @@ -77166,10 +77526,10 @@ paths: application/json: schema: *82 examples: - default: *527 - '301': *332 + default: *529 + '301': *334 '404': *6 - '410': *521 + '410': *523 '304': *37 x-github: githubCloudOnly: false @@ -77194,9 +77554,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: false content: @@ -77302,13 +77662,13 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 '422': *15 '503': *104 '403': *29 - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77326,9 +77686,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: false content: @@ -77356,7 +77716,7 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77372,9 +77732,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: content: application/json: @@ -77401,7 +77761,7 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77423,9 +77783,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: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - name: assignee in: path required: true @@ -77465,9 +77825,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *72 - *17 - *19 @@ -77478,13 +77838,13 @@ paths: application/json: schema: type: array - items: *522 + items: *524 examples: - default: *529 + default: *531 headers: Link: *54 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77513,9 +77873,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -77537,16 +77897,16 @@ paths: description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: *523 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *521 + '410': *523 '422': *15 '404': *6 x-github: @@ -77574,9 +77934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -77588,12 +77948,12 @@ paths: type: array items: *82 examples: - default: *530 + default: *532 headers: Link: *54 - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77621,9 +77981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -77647,15 +78007,15 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *332 + '301': *334 '403': *29 - '410': *521 + '410': *523 '422': *15 '404': *6 x-github: @@ -77686,9 +78046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -77702,13 +78062,13 @@ paths: application/json: schema: *82 examples: - default: *527 - '301': *332 + default: *529 + '301': *334 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *521 + '410': *523 x-github: triggersNotification: true githubCloudOnly: false @@ -77734,9 +78094,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -77748,12 +78108,12 @@ paths: type: array items: *82 examples: - default: *530 + default: *532 headers: Link: *54 - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77770,9 +78130,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -77786,7 +78146,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &533 + - &535 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -77840,7 +78200,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &536 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -77976,7 +78336,7 @@ paths: - performed_via_github_app - assignee - assigner - - &535 + - &537 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -78027,7 +78387,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &538 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -78078,7 +78438,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &539 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -78132,7 +78492,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &540 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -78166,7 +78526,7 @@ paths: properties: *67 required: *68 review_requester: *4 - requested_team: *179 + requested_team: *181 requested_reviewer: *4 required: - review_requester @@ -78179,7 +78539,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &541 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -78213,7 +78573,7 @@ paths: properties: *67 required: *68 review_requester: *4 - requested_team: *179 + requested_team: *181 requested_reviewer: *4 required: - review_requester @@ -78226,7 +78586,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &542 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -78286,7 +78646,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &543 title: Locked Issue Event description: Locked Issue Event type: object @@ -78334,7 +78694,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &544 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -78400,7 +78760,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &543 + - &545 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -78466,7 +78826,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &544 + - &546 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -78532,7 +78892,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &545 + - &547 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -78623,7 +78983,7 @@ paths: color: red headers: Link: *54 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78640,9 +79000,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -78652,7 +79012,7 @@ paths: application/json: schema: type: array - items: &531 + items: &533 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -78699,7 +79059,7 @@ paths: - color - default examples: - default: &532 + default: &534 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -78717,9 +79077,9 @@ paths: default: false headers: Link: *54 - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78736,9 +79096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: false content: @@ -78797,12 +79157,12 @@ paths: application/json: schema: type: array - items: *531 + items: *533 examples: - default: *532 - '301': *332 + default: *534 + '301': *334 '404': *6 - '410': *521 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -78819,9 +79179,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: false content: @@ -78881,12 +79241,12 @@ paths: application/json: schema: type: array - items: *531 + items: *533 examples: - default: *532 - '301': *332 + default: *534 + '301': *334 '404': *6 - '410': *521 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -78903,15 +79263,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 responses: '204': description: Response - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78930,9 +79290,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - name: name in: path required: true @@ -78945,7 +79305,7 @@ paths: application/json: schema: type: array - items: *531 + items: *533 examples: default: value: @@ -78956,9 +79316,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78978,9 +79338,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: false content: @@ -79008,7 +79368,7 @@ paths: '204': description: Response '403': *29 - '410': *521 + '410': *523 '404': *6 '422': *15 x-github: @@ -79026,9 +79386,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 responses: '204': description: Response @@ -79058,9 +79418,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 responses: '200': description: Response @@ -79068,10 +79428,10 @@ paths: application/json: schema: *82 examples: - default: *527 - '301': *332 + default: *529 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79088,9 +79448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - 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. @@ -79116,13 +79476,13 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79140,9 +79500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -79174,16 +79534,16 @@ paths: description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -79205,10 +79565,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *325 - - *326 - - *528 - - *321 + - *327 + - *328 + - *530 + - *323 responses: '204': description: Response @@ -79237,9 +79597,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -79263,7 +79623,7 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -79296,9 +79656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -79310,11 +79670,11 @@ paths: type: array items: *82 examples: - default: *530 + default: *532 headers: Link: *54 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79342,9 +79702,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -79373,14 +79733,14 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *521 + '410': *523 '422': *15 '404': *6 x-github: @@ -79400,9 +79760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -79435,7 +79795,7 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 '403': *29 '404': *6 '422': *7 @@ -79457,9 +79817,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -79474,8 +79834,6 @@ paths: description: Timeline Event type: object anyOf: - - *533 - - *534 - *535 - *536 - *537 @@ -79487,6 +79845,8 @@ paths: - *543 - *544 - *545 + - *546 + - *547 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -79795,7 +80155,7 @@ paths: type: string comments: type: array - items: &567 + items: &569 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -80004,7 +80364,7 @@ paths: type: string comments: type: array - items: *455 + items: *457 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -80293,7 +80653,7 @@ paths: headers: Link: *54 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80310,8 +80670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -80321,7 +80681,7 @@ paths: application/json: schema: type: array - items: &546 + items: &548 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -80387,8 +80747,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -80424,9 +80784,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: &547 + default: &549 value: id: 1 key: ssh-rsa AAA... @@ -80460,9 +80820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *325 - - *326 - - &548 + - *327 + - *328 + - &550 name: key_id description: The unique identifier of the key. in: path @@ -80474,9 +80834,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: *547 + default: *549 '404': *6 x-github: githubCloudOnly: false @@ -80494,9 +80854,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *325 - - *326 - - *548 + - *327 + - *328 + - *550 responses: '204': description: Response @@ -80516,8 +80876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -80527,9 +80887,9 @@ paths: application/json: schema: type: array - items: *531 + items: *533 examples: - default: *532 + default: *534 headers: Link: *54 '404': *6 @@ -80550,8 +80910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -80587,9 +80947,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: &549 + default: &551 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80621,8 +80981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *325 - - *326 + - *327 + - *328 - name: name in: path required: true @@ -80633,9 +80993,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: *549 + default: *551 '404': *6 x-github: githubCloudOnly: false @@ -80652,8 +81012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *325 - - *326 + - *327 + - *328 - name: name in: path required: true @@ -80692,7 +81052,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: default: value: @@ -80718,8 +81078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *325 - - *326 + - *327 + - *328 - name: name in: path required: true @@ -80745,8 +81105,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -80785,9 +81145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *325 - - *326 - - *431 + - *327 + - *328 + - *433 responses: '200': description: Response @@ -80932,8 +81292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -80998,8 +81358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -81033,9 +81393,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *456 + schema: *458 examples: - default: *550 + default: *552 '204': description: Response when already merged '404': @@ -81060,8 +81420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *325 - - *326 + - *327 + - *328 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -81102,12 +81462,12 @@ paths: application/json: schema: type: array - items: &551 + items: &553 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *254 - required: *255 + properties: *256 + required: *257 examples: default: value: @@ -81163,8 +81523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -81204,9 +81564,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *553 examples: - default: &552 + default: &554 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -81265,9 +81625,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *325 - - *326 - - &553 + - *327 + - *328 + - &555 name: milestone_number description: The number that identifies the milestone. in: path @@ -81279,9 +81639,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *553 examples: - default: *552 + default: *554 '404': *6 x-github: githubCloudOnly: false @@ -81298,9 +81658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *325 - - *326 - - *553 + - *327 + - *328 + - *555 requestBody: required: false content: @@ -81338,9 +81698,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *553 examples: - default: *552 + default: *554 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81356,9 +81716,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *325 - - *326 - - *553 + - *327 + - *328 + - *555 responses: '204': description: Response @@ -81379,9 +81739,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *325 - - *326 - - *553 + - *327 + - *328 + - *555 - *17 - *19 responses: @@ -81391,9 +81751,9 @@ paths: application/json: schema: type: array - items: *531 + items: *533 examples: - default: *532 + default: *534 headers: Link: *54 x-github: @@ -81412,12 +81772,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *325 - - *326 - - *554 - - *555 - - *72 + - *327 + - *328 - *556 + - *557 + - *72 + - *558 - *17 - *19 responses: @@ -81429,7 +81789,7 @@ paths: type: array items: *95 examples: - default: *557 + default: *559 headers: Link: *54 x-github: @@ -81453,8 +81813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -81512,14 +81872,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: &558 + schema: &560 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -81644,7 +82004,7 @@ paths: - custom_404 - public examples: - default: &559 + default: &561 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -81685,8 +82045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -81740,9 +82100,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *560 examples: - default: *559 + default: *561 '422': *15 '409': *47 x-github: @@ -81765,8 +82125,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -81865,8 +82225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -81892,8 +82252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -81903,7 +82263,7 @@ paths: application/json: schema: type: array - items: &560 + items: &562 title: Page Build description: Page Build type: object @@ -81997,8 +82357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *325 - - *326 + - *327 + - *328 responses: '201': description: Response @@ -82043,16 +82403,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *560 + schema: *562 examples: - default: &561 + default: &563 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -82100,8 +82460,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *325 - - *326 + - *327 + - *328 - name: build_id in: path required: true @@ -82112,9 +82472,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *562 examples: - default: *561 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82134,8 +82494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -82240,9 +82600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *325 - - *326 - - &562 + - *327 + - *328 + - &564 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -82300,11 +82660,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *325 - - *326 - - *562 + - *327 + - *328 + - *564 responses: - '204': *173 + '204': *175 '404': *6 x-github: githubCloudOnly: false @@ -82329,8 +82689,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -82588,8 +82948,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Private vulnerability reporting status @@ -82626,10 +82986,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: - '204': *173 + '204': *175 '422': *14 x-github: githubCloudOnly: false @@ -82648,10 +83008,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: - '204': *173 + '204': *175 '422': *14 x-github: githubCloudOnly: false @@ -82671,8 +83031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -82682,7 +83042,7 @@ paths: type: array items: *102 examples: - default: *563 + default: *565 '403': *29 '404': *6 x-github: @@ -82704,8 +83064,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -82721,7 +83081,7 @@ paths: required: - properties examples: - default: *564 + default: *566 responses: '204': description: No Content when custom property values are successfully created @@ -82759,8 +83119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *325 - - *326 + - *327 + - *328 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -82820,9 +83180,9 @@ paths: application/json: schema: type: array - items: *460 + items: *462 examples: - default: *565 + default: *567 headers: Link: *54 '304': *37 @@ -82854,8 +83214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -82920,7 +83280,7 @@ paths: description: Response content: application/json: - schema: &569 + schema: &571 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -83031,8 +83391,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *254 - required: *255 + properties: *256 + required: *257 nullable: true active_lock_reason: type: string @@ -83077,7 +83437,7 @@ paths: nullable: true requested_teams: type: array - items: *303 + items: *305 nullable: true head: type: object @@ -83116,14 +83476,14 @@ paths: _links: type: object properties: - comments: *256 - commits: *256 - statuses: *256 - html: *256 - issue: *256 - review_comments: *256 - review_comment: *256 - self: *256 + comments: *258 + commits: *258 + statuses: *258 + html: *258 + issue: *258 + review_comments: *258 + review_comment: *258 + self: *258 required: - comments - commits @@ -83134,7 +83494,7 @@ paths: - review_comment - self author_association: *69 - auto_merge: *566 + auto_merge: *568 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -83226,7 +83586,7 @@ paths: - merged_by - review_comments examples: - default: &570 + default: &572 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -83753,8 +84113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - name: sort in: query required: false @@ -83783,9 +84143,9 @@ paths: application/json: schema: type: array - items: *567 + items: *569 examples: - default: &572 + default: &574 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -83862,17 +84222,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '200': description: Response content: application/json: - schema: *567 + schema: *569 examples: - default: &568 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -83947,8 +84307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -83971,9 +84331,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *569 examples: - default: *568 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83989,8 +84349,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '204': @@ -84012,8 +84372,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -84040,9 +84400,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 '404': *6 @@ -84063,8 +84423,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -84097,16 +84457,16 @@ paths: description: Reaction exists content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Reaction created content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -84128,10 +84488,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *325 - - *326 + - *327 + - *328 - *81 - - *321 + - *323 responses: '204': description: Response @@ -84174,9 +84534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *325 - - *326 - - &571 + - *327 + - *328 + - &573 name: pull_number description: The number that identifies the pull request. in: path @@ -84189,9 +84549,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *569 + schema: *571 examples: - default: *570 + default: *572 '304': *37 '404': *6 '406': @@ -84226,9 +84586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: false content: @@ -84270,9 +84630,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *571 examples: - default: *570 + default: *572 '422': *15 '403': *29 x-github: @@ -84294,9 +84654,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: true content: @@ -84356,17 +84716,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '401': *25 '403': *29 '404': *6 @@ -84396,9 +84756,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 - *92 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -84419,9 +84779,9 @@ paths: application/json: schema: type: array - items: *567 + items: *569 examples: - default: *572 + default: *574 headers: Link: *54 x-github: @@ -84454,9 +84814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: true content: @@ -84561,7 +84921,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *569 examples: example-for-a-multi-line-comment: value: @@ -84649,9 +85009,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 - *81 requestBody: required: true @@ -84674,7 +85034,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *569 examples: default: value: @@ -84760,9 +85120,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 - *17 - *19 responses: @@ -84772,9 +85132,9 @@ paths: application/json: schema: type: array - items: *456 + items: *458 examples: - default: *573 + default: *575 headers: Link: *54 x-github: @@ -84804,9 +85164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 - *17 - *19 responses: @@ -84816,7 +85176,7 @@ paths: application/json: schema: type: array - items: *469 + items: *471 examples: default: value: @@ -84854,9 +85214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 responses: '204': description: Response if pull request has been merged @@ -84879,9 +85239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: false content: @@ -84992,9 +85352,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 responses: '200': description: Response @@ -85010,7 +85370,7 @@ paths: items: *4 teams: type: array - items: *179 + items: *181 required: - users - teams @@ -85069,9 +85429,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: false content: @@ -85108,7 +85468,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *462 examples: default: value: @@ -85644,9 +86004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: true content: @@ -85680,7 +86040,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *462 examples: default: value: @@ -86185,9 +86545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 - *17 - *19 responses: @@ -86197,7 +86557,7 @@ paths: application/json: schema: type: array - items: &574 + items: &576 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -86348,9 +86708,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: false content: @@ -86436,9 +86796,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: - default: &576 + default: &578 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -86501,10 +86861,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 - - &575 + - *327 + - *328 + - *573 + - &577 name: review_id description: The unique identifier of the review. in: path @@ -86516,9 +86876,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: - default: &577 + default: &579 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -86577,10 +86937,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 - - *575 + - *327 + - *328 + - *573 + - *577 requestBody: required: true content: @@ -86603,7 +86963,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: default: value: @@ -86665,18 +87025,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 - - *575 + - *327 + - *328 + - *573 + - *577 responses: '200': description: Response content: application/json: - schema: *574 + schema: *576 examples: - default: *576 + default: *578 '422': *7 '404': *6 x-github: @@ -86703,10 +87063,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *325 - - *326 - - *571 - - *575 + - *327 + - *328 + - *573 + - *577 - *17 - *19 responses: @@ -86789,9 +87149,9 @@ paths: _links: type: object properties: - self: *256 - html: *256 - pull_request: *256 + self: *258 + html: *258 + pull_request: *258 required: - self - html @@ -86941,10 +87301,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 - - *575 + - *327 + - *328 + - *573 + - *577 requestBody: required: true content: @@ -86972,7 +87332,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: default: value: @@ -87035,10 +87395,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 - - *575 + - *327 + - *328 + - *573 + - *577 requestBody: required: true content: @@ -87073,9 +87433,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: - default: *577 + default: *579 '404': *6 '422': *7 '403': *29 @@ -87097,9 +87457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: false content: @@ -87162,8 +87522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *325 - - *326 + - *327 + - *328 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -87176,9 +87536,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *580 examples: - default: &579 + default: &581 value: type: file encoding: base64 @@ -87220,8 +87580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *325 - - *326 + - *327 + - *328 - name: dir description: The alternate path to look for a README file in: path @@ -87241,9 +87601,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *580 examples: - default: *579 + default: *581 '404': *6 '422': *15 x-github: @@ -87265,8 +87625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -87276,7 +87636,7 @@ paths: application/json: schema: type: array - items: &580 + items: &582 title: Release description: A release. type: object @@ -87347,7 +87707,7 @@ paths: author: *4 assets: type: array - items: &581 + items: &583 title: Release Asset description: Data related to a release. type: object @@ -87534,8 +87894,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -87611,9 +87971,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: &584 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -87718,9 +88078,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *325 - - *326 - - &582 + - *327 + - *328 + - &584 name: asset_id description: The unique identifier of the asset. in: path @@ -87732,9 +88092,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *583 examples: - default: &583 + default: &585 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 @@ -87769,7 +88129,7 @@ paths: type: User site_admin: false '404': *6 - '302': *471 + '302': *473 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87785,9 +88145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *325 - - *326 - - *582 + - *327 + - *328 + - *584 requestBody: required: false content: @@ -87815,9 +88175,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *583 examples: - default: *583 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87833,9 +88193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *325 - - *326 - - *582 + - *327 + - *328 + - *584 responses: '204': description: Response @@ -87859,8 +88219,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -87945,16 +88305,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *584 + default: *586 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87971,8 +88331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *325 - - *326 + - *327 + - *328 - name: tag description: tag parameter in: path @@ -87985,9 +88345,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *584 + default: *586 '404': *6 x-github: githubCloudOnly: false @@ -88009,9 +88369,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *325 - - *326 - - &585 + - *327 + - *328 + - &587 name: release_id description: The unique identifier of the release. in: path @@ -88025,9 +88385,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: *580 + schema: *582 examples: - default: *584 + default: *586 '401': description: Unauthorized x-github: @@ -88045,9 +88405,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 requestBody: required: false content: @@ -88111,9 +88471,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *584 + default: *586 '404': description: Not Found if the discussion category name is invalid content: @@ -88134,9 +88494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 responses: '204': description: Response @@ -88156,9 +88516,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 - *17 - *19 responses: @@ -88168,7 +88528,7 @@ paths: application/json: schema: type: array - items: *581 + items: *583 examples: default: value: @@ -88249,9 +88609,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: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 - name: name in: query required: true @@ -88277,7 +88637,7 @@ paths: description: Response for successful upload content: application/json: - schema: *581 + schema: *583 examples: response-for-successful-upload: value: @@ -88332,9 +88692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 - 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. @@ -88358,9 +88718,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 '404': *6 @@ -88381,9 +88741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 requestBody: required: true content: @@ -88413,16 +88773,16 @@ paths: description: Reaction exists content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Reaction created content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -88444,10 +88804,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *325 - - *326 - - *585 - - *321 + - *327 + - *328 + - *587 + - *323 responses: '204': description: Response @@ -88471,9 +88831,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 - *17 - *19 responses: @@ -88489,8 +88849,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *276 - - &586 + - *278 + - &588 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -88509,69 +88869,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *277 - - *586 - - allOf: - - *278 - - *586 - allOf: - *279 - - *586 - - allOf: - - *587 - - *586 + - *588 - allOf: - *280 - - *586 + - *588 - allOf: - *281 - - *586 + - *588 + - allOf: + - *589 + - *588 - allOf: - *282 - - *586 + - *588 - allOf: - *283 - - *586 + - *588 - allOf: - *284 - - *586 + - *588 - allOf: - *285 - - *586 + - *588 - allOf: - *286 - - *586 + - *588 - allOf: - *287 - - *586 + - *588 - allOf: - *288 - - *586 + - *588 - allOf: - *289 - - *586 + - *588 - allOf: - *290 - - *586 + - *588 - allOf: - *291 - - *586 + - *588 - allOf: - *292 - - *586 + - *588 - allOf: - *293 - - *586 + - *588 - allOf: - *294 - - *586 + - *588 - allOf: - *295 - - *586 + - *588 + - allOf: + - *296 + - *588 + - allOf: + - *297 + - *588 - allOf: + - *590 - *588 - - *586 examples: default: value: @@ -88610,8 +88970,8 @@ paths: category: repos subcategory: rules parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 - name: includes_parents @@ -88622,7 +88982,7 @@ paths: schema: type: boolean default: true - - *589 + - *591 responses: '200': description: Response @@ -88630,7 +88990,7 @@ paths: application/json: schema: type: array - items: *296 + items: *298 examples: default: value: @@ -88677,8 +89037,8 @@ paths: category: repos subcategory: rules parameters: - - *325 - - *326 + - *327 + - *328 requestBody: description: Request body required: true @@ -88698,16 +89058,16 @@ paths: - tag - push default: branch - enforcement: *273 + enforcement: *275 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *274 - conditions: *271 + items: *276 + conditions: *273 rules: type: array description: An array of rules within the ruleset. - items: *590 + items: *592 required: - name - enforcement @@ -88738,9 +89098,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: &600 + default: &602 value: id: 42 name: super cool ruleset @@ -88787,12 +89147,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *325 - - *326 - - *591 - - *592 + - *327 + - *328 - *593 - *594 + - *595 + - *596 - *17 - *19 responses: @@ -88800,9 +89160,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *597 examples: - default: *596 + default: *598 '404': *6 '500': *103 x-github: @@ -88823,17 +89183,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *325 - - *326 - - *597 + - *327 + - *328 + - *599 responses: '200': description: Response content: application/json: - schema: *598 + schema: *600 examples: - default: *599 + default: *601 '404': *6 '500': *103 x-github: @@ -88861,8 +89221,8 @@ paths: category: repos subcategory: rules parameters: - - *325 - - *326 + - *327 + - *328 - name: ruleset_id description: The ID of the ruleset. in: path @@ -88882,9 +89242,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *600 + default: *602 '404': *6 '500': *103 put: @@ -88902,8 +89262,8 @@ paths: category: repos subcategory: rules parameters: - - *325 - - *326 + - *327 + - *328 - name: ruleset_id description: The ID of the ruleset. in: path @@ -88928,16 +89288,16 @@ paths: - branch - tag - push - enforcement: *273 + enforcement: *275 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *274 - conditions: *271 + items: *276 + conditions: *273 rules: description: An array of rules within the ruleset. type: array - items: *590 + items: *592 examples: default: value: @@ -88965,9 +89325,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *600 + default: *602 '404': *6 '500': *103 delete: @@ -88985,8 +89345,8 @@ paths: category: repos subcategory: rules parameters: - - *325 - - *326 + - *327 + - *328 - name: ruleset_id description: The ID of the ruleset. in: path @@ -89009,8 +89369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 - name: ruleset_id @@ -89026,9 +89386,9 @@ paths: application/json: schema: type: array - items: *299 + items: *301 examples: - default: *601 + default: *603 '404': *6 '500': *103 x-github: @@ -89047,8 +89407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *325 - - *326 + - *327 + - *328 - name: ruleset_id description: The ID of the ruleset. in: path @@ -89066,7 +89426,7 @@ paths: description: Response content: application/json: - schema: *602 + schema: *604 examples: default: value: @@ -89121,21 +89481,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *325 - - *326 - - *603 - - *604 + - *327 + - *328 - *605 - *606 + - *607 + - *608 - *48 - *19 - *17 - - *607 - - *608 - *609 - *610 - *611 - *612 + - *613 + - *614 responses: '200': description: Response @@ -89143,11 +89503,11 @@ paths: application/json: schema: type: array - items: &616 + items: &618 type: object properties: - number: *159 - created_at: *160 + number: *161 + created_at: *162 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -89155,15 +89515,15 @@ paths: format: date-time readOnly: true nullable: true - url: *162 - html_url: *163 + url: *164 + html_url: *165 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *613 - resolution: *614 + state: *615 + resolution: *616 resolved_at: type: string format: date-time @@ -89259,7 +89619,7 @@ paths: pull request. ' - oneOf: *615 + oneOf: *617 nullable: true has_more_locations: type: boolean @@ -89408,16 +89768,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *325 - - *326 - - *425 - - *612 + - *327 + - *328 + - *427 + - *614 responses: '200': description: Response content: application/json: - schema: *616 + schema: *618 examples: default: value: @@ -89469,9 +89829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 requestBody: required: true content: @@ -89479,8 +89839,8 @@ paths: schema: type: object properties: - state: *613 - resolution: *614 + state: *615 + resolution: *616 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -89499,7 +89859,7 @@ paths: description: Response content: application/json: - schema: *616 + schema: *618 examples: default: value: @@ -89574,9 +89934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 - *19 - *17 responses: @@ -89587,7 +89947,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &774 + items: &776 type: object properties: type: @@ -89613,8 +89973,6 @@ paths: example: commit details: oneOf: - - *617 - - *618 - *619 - *620 - *621 @@ -89626,6 +89984,8 @@ paths: - *627 - *628 - *629 + - *630 + - *631 examples: default: value: @@ -89711,8 +90071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -89720,14 +90080,14 @@ paths: schema: type: object properties: - reason: &631 + reason: &633 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *630 + placeholder_id: *632 required: - reason - placeholder_id @@ -89744,7 +90104,7 @@ paths: schema: type: object properties: - reason: *631 + reason: *633 expire_at: type: string format: date-time @@ -89790,8 +90150,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: - - *325 - - *326 + - *327 + - *328 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -89806,7 +90166,7 @@ paths: properties: incremental_scans: type: array - items: &632 + items: &634 description: Information on a single scan performed by secret scanning on the repository type: object @@ -89832,15 +90192,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *632 + items: *634 backfill_scans: type: array - items: *632 + items: *634 custom_pattern_backfill_scans: type: array items: allOf: - - *632 + - *634 - type: object properties: pattern_name: @@ -89910,8 +90270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *325 - - *326 + - *327 + - *328 - *48 - name: sort description: The property to sort the results by. @@ -89955,9 +90315,9 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: - default: *634 + default: *636 '400': *14 '404': *6 x-github: @@ -89980,8 +90340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -90054,7 +90414,7 @@ paths: login: type: string description: The username of the user credited. - type: *302 + type: *304 required: - login - type @@ -90141,9 +90501,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *635 examples: - default: &636 + default: &638 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -90376,8 +90736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -90481,7 +90841,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *635 examples: default: value: @@ -90628,17 +90988,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *325 - - *326 - - *635 + - *327 + - *328 + - *637 responses: '200': description: Response content: application/json: - schema: *633 + schema: *635 examples: - default: *636 + default: *638 '403': *29 '404': *6 x-github: @@ -90662,9 +91022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *325 - - *326 - - *635 + - *327 + - *328 + - *637 requestBody: required: true content: @@ -90737,7 +91097,7 @@ paths: login: type: string description: The username of the user credited. - type: *302 + type: *304 required: - login - type @@ -90823,10 +91183,10 @@ paths: description: Response content: application/json: - schema: *633 + schema: *635 examples: - default: *636 - add_credit: *636 + default: *638 + add_credit: *638 '403': *29 '404': *6 '422': @@ -90864,9 +91224,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: - - *325 - - *326 - - *635 + - *327 + - *328 + - *637 responses: '202': *39 '400': *14 @@ -90893,17 +91253,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *325 - - *326 - - *635 + - *327 + - *328 + - *637 responses: '202': description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *333 + default: *335 '400': *14 '422': *15 '403': *29 @@ -90929,8 +91289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -91029,8 +91389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -91039,7 +91399,7 @@ paths: application/json: schema: type: array - items: &637 + items: &639 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -91052,7 +91412,7 @@ paths: - 1124 - -435 '202': *39 - '204': *173 + '204': *175 '422': description: Repository contains more than 10,000 commits x-github: @@ -91072,8 +91432,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -91122,7 +91482,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *173 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91149,8 +91509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -91224,7 +91584,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *173 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91246,8 +91606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -91401,8 +91761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -91412,7 +91772,7 @@ paths: application/json: schema: type: array - items: *637 + items: *639 examples: default: value: @@ -91425,7 +91785,7 @@ paths: - - 0 - 2 - 21 - '204': *173 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91445,8 +91805,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *325 - - *326 + - *327 + - *328 - name: sha in: path required: true @@ -91500,7 +91860,7 @@ paths: description: Response content: application/json: - schema: *638 + schema: *640 examples: default: value: @@ -91554,8 +91914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -91587,14 +91947,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &639 + schema: &641 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -91662,8 +92022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -91689,7 +92049,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: default: value: @@ -91716,8 +92076,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -91737,8 +92097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -91817,8 +92177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -91826,7 +92186,7 @@ paths: application/json: schema: type: array - items: &640 + items: &642 title: Tag protection description: Tag protection type: object @@ -91878,8 +92238,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -91902,7 +92262,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *642 examples: default: value: @@ -91933,8 +92293,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: - - *325 - - *326 + - *327 + - *328 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -91971,8 +92331,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *325 - - *326 + - *327 + - *328 - name: ref in: path required: true @@ -92008,8 +92368,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -92019,9 +92379,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 headers: Link: *54 '404': *6 @@ -92041,8 +92401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *325 - - *326 + - *327 + - *328 - *19 - *17 responses: @@ -92050,7 +92410,7 @@ paths: description: Response content: application/json: - schema: &641 + schema: &643 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -92062,7 +92422,7 @@ paths: required: - names examples: - default: &642 + default: &644 value: names: - octocat @@ -92085,8 +92445,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -92117,9 +92477,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *643 examples: - default: *642 + default: *644 '404': *6 '422': *7 x-github: @@ -92140,9 +92500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *325 - - *326 - - &643 + - *327 + - *328 + - &645 name: per description: The time frame to display results for. in: query @@ -92171,7 +92531,7 @@ paths: example: 128 clones: type: array - items: &644 + items: &646 title: Traffic type: object properties: @@ -92258,8 +92618,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -92349,8 +92709,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -92410,9 +92770,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *325 - - *326 - - *643 + - *327 + - *328 + - *645 responses: '200': description: Response @@ -92431,7 +92791,7 @@ paths: example: 3782 views: type: array - items: *644 + items: *646 required: - uniques - count @@ -92508,8 +92868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -92783,8 +93143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -92807,8 +93167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -92830,8 +93190,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -92857,8 +93217,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *325 - - *326 + - *327 + - *328 - name: ref in: path required: true @@ -92950,9 +93310,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *333 + default: *335 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -93200,7 +93560,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &645 + text_matches: &647 title: Search Result Text Matches type: array items: @@ -93362,7 +93722,7 @@ paths: enum: - author-date - committer-date - - &646 + - &648 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -93433,7 +93793,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *391 + properties: *393 nullable: true comment_count: type: integer @@ -93453,7 +93813,7 @@ paths: url: type: string format: uri - verification: *507 + verification: *509 required: - author - committer @@ -93472,7 +93832,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *391 + properties: *393 nullable: true parents: type: array @@ -93490,7 +93850,7 @@ paths: type: number node_id: type: string - text_matches: *645 + text_matches: *647 required: - sha - node_id @@ -93682,7 +94042,7 @@ paths: - interactions - created - updated - - *646 + - *648 - *17 - *19 - name: advanced_search @@ -93779,11 +94139,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: type: string state_reason: @@ -93800,8 +94160,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *254 - required: *255 + properties: *256 + required: *257 nullable: true comments: type: integer @@ -93815,7 +94175,7 @@ paths: type: string format: date-time nullable: true - text_matches: *645 + text_matches: *647 pull_request: type: object properties: @@ -93859,7 +94219,7 @@ paths: timeline_url: type: string format: uri - type: *217 + type: *219 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -94040,7 +94400,7 @@ paths: enum: - created - updated - - *646 + - *648 - *17 - *19 responses: @@ -94084,7 +94444,7 @@ paths: nullable: true score: type: number - text_matches: *645 + text_matches: *647 required: - id - node_id @@ -94169,7 +94529,7 @@ paths: - forks - help-wanted-issues - updated - - *646 + - *648 - *17 - *19 responses: @@ -94408,7 +94768,7 @@ paths: - admin - pull - push - text_matches: *645 + text_matches: *647 temp_clone_token: type: string allow_merge_commit: @@ -94708,7 +95068,7 @@ paths: type: string format: uri nullable: true - text_matches: *645 + text_matches: *647 related: type: array nullable: true @@ -94899,7 +95259,7 @@ paths: - followers - repositories - joined - - *646 + - *648 - *17 - *19 responses: @@ -95003,7 +95363,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *645 + text_matches: *647 blog: type: string nullable: true @@ -95082,7 +95442,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &650 + - &652 name: team_id description: The unique identifier of the team. in: path @@ -95094,9 +95454,9 @@ paths: description: Response content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '404': *6 x-github: githubCloudOnly: false @@ -95123,7 +95483,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *650 + - *652 requestBody: required: true content: @@ -95186,16 +95546,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '201': description: Response content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '404': *6 '422': *15 '403': *29 @@ -95223,7 +95583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *650 + - *652 responses: '204': description: Response @@ -95254,7 +95614,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *650 + - *652 - *48 - *17 - *19 @@ -95265,9 +95625,9 @@ paths: application/json: schema: type: array - items: *312 + items: *314 examples: - default: *651 + default: *653 headers: Link: *54 x-github: @@ -95296,7 +95656,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *650 + - *652 requestBody: required: true content: @@ -95330,9 +95690,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: *313 + default: *315 x-github: triggersNotification: true githubCloudOnly: false @@ -95359,16 +95719,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *650 - - *314 + - *652 + - *316 responses: '200': description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: *313 + default: *315 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95393,8 +95753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *650 - - *314 + - *652 + - *316 requestBody: required: false content: @@ -95417,9 +95777,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: *652 + default: *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95444,8 +95804,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *650 - - *314 + - *652 + - *316 responses: '204': description: Response @@ -95474,8 +95834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *650 - - *314 + - *652 + - *316 - *48 - *17 - *19 @@ -95486,9 +95846,9 @@ paths: application/json: schema: type: array - items: *315 + items: *317 examples: - default: *653 + default: *655 headers: Link: *54 x-github: @@ -95517,8 +95877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *650 - - *314 + - *652 + - *316 requestBody: required: true content: @@ -95540,9 +95900,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *316 + default: *318 x-github: triggersNotification: true githubCloudOnly: false @@ -95569,17 +95929,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *650 - - *314 - - *317 + - *652 + - *316 + - *319 responses: '200': description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *316 + default: *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95604,9 +95964,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *650 - - *314 - - *317 + - *652 + - *316 + - *319 requestBody: required: true content: @@ -95628,9 +95988,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *654 + default: *656 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95655,9 +96015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *650 - - *314 - - *317 + - *652 + - *316 + - *319 responses: '204': description: Response @@ -95686,9 +96046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *650 - - *314 - - *317 + - *652 + - *316 + - *319 - 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. @@ -95714,9 +96074,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 x-github: @@ -95745,9 +96105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *650 - - *314 - - *317 + - *652 + - *316 + - *319 requestBody: required: true content: @@ -95779,9 +96139,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95807,8 +96167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *650 - - *314 + - *652 + - *316 - 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. @@ -95834,9 +96194,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 x-github: @@ -95865,8 +96225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *650 - - *314 + - *652 + - *316 requestBody: required: true content: @@ -95898,9 +96258,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95924,7 +96284,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *650 + - *652 - *17 - *19 responses: @@ -95934,9 +96294,9 @@ paths: application/json: schema: type: array - items: *214 + items: *216 examples: - default: *215 + default: *217 headers: Link: *54 x-github: @@ -95962,7 +96322,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *650 + - *652 - name: role description: Filters members returned by their role in the team. in: query @@ -96013,7 +96373,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *650 + - *652 - *59 responses: '204': @@ -96050,7 +96410,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *650 + - *652 - *59 responses: '204': @@ -96090,7 +96450,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *650 + - *652 - *59 responses: '204': @@ -96127,16 +96487,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *650 + - *652 - *59 responses: '200': description: Response content: application/json: - schema: *322 + schema: *324 examples: - response-if-user-is-a-team-maintainer: *655 + response-if-user-is-a-team-maintainer: *657 '404': *6 x-github: githubCloudOnly: false @@ -96169,7 +96529,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *650 + - *652 - *59 requestBody: required: false @@ -96195,9 +96555,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: *656 + response-if-users-membership-with-team-is-now-pending: *658 '403': description: Forbidden if team synchronization is set up '422': @@ -96231,7 +96591,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *650 + - *652 - *59 responses: '204': @@ -96260,7 +96620,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *650 + - *652 - *17 - *19 responses: @@ -96270,9 +96630,9 @@ paths: application/json: schema: type: array - items: *323 + items: *325 examples: - default: *657 + default: *659 headers: Link: *54 '404': *6 @@ -96298,16 +96658,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *650 - - *324 + - *652 + - *326 responses: '200': description: Response content: application/json: - schema: *323 + schema: *325 examples: - default: *658 + default: *660 '404': description: Not Found if project is not managed by this team x-github: @@ -96331,8 +96691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *650 - - *324 + - *652 + - *326 requestBody: required: false content: @@ -96399,8 +96759,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *650 - - *324 + - *652 + - *326 responses: '204': description: Response @@ -96427,7 +96787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *650 + - *652 - *17 - *19 responses: @@ -96439,7 +96799,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 '404': *6 @@ -96469,15 +96829,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *650 - - *325 - - *326 + - *652 + - *327 + - *328 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *659 + schema: *661 examples: alternative-response-with-extra-repository-information: value: @@ -96628,9 +96988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *650 - - *325 - - *326 + - *652 + - *327 + - *328 requestBody: required: false content: @@ -96680,9 +97040,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *650 - - *325 - - *326 + - *652 + - *327 + - *328 responses: '204': description: Response @@ -96707,7 +97067,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *650 + - *652 - *17 - *19 responses: @@ -96717,9 +97077,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - response-if-child-teams-exist: *660 + response-if-child-teams-exist: *662 headers: Link: *54 '404': *6 @@ -96752,7 +97112,7 @@ paths: application/json: schema: oneOf: - - &662 + - &664 title: Private User description: Private User type: object @@ -96955,7 +97315,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *661 + - *663 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -97108,7 +97468,7 @@ paths: description: Response content: application/json: - schema: *662 + schema: *664 examples: default: value: @@ -97311,9 +97671,9 @@ paths: type: integer codespaces: type: array - items: *222 + items: *224 examples: - default: *223 + default: *225 '304': *37 '500': *103 '401': *25 @@ -97452,17 +97812,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '401': *25 '403': *29 '404': *6 @@ -97506,7 +97866,7 @@ paths: type: integer secrets: type: array - items: &663 + items: &665 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97546,7 +97906,7 @@ paths: - visibility - selected_repositories_url examples: - default: *448 + default: *450 headers: Link: *54 x-github: @@ -97622,7 +97982,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: default: value: @@ -97768,7 +98128,7 @@ paths: type: array items: *143 examples: - default: *664 + default: *666 '401': *25 '403': *29 '404': *6 @@ -97912,15 +98272,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 responses: '200': description: Response content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '304': *37 '500': *103 '401': *25 @@ -97946,7 +98306,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 requestBody: required: false content: @@ -97976,9 +98336,9 @@ paths: description: Response content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '401': *25 '403': *29 '404': *6 @@ -98000,7 +98360,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 responses: '202': *39 '304': *37 @@ -98029,13 +98389,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 responses: '202': description: Response content: application/json: - schema: &665 + schema: &667 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -98076,7 +98436,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &666 + default: &668 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -98108,7 +98468,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *224 + - *226 - name: export_id in: path required: true @@ -98121,9 +98481,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *667 examples: - default: *666 + default: *668 '404': *6 x-github: githubCloudOnly: false @@ -98144,7 +98504,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *224 + - *226 responses: '200': description: Response @@ -98160,9 +98520,9 @@ paths: type: integer machines: type: array - items: *667 + items: *669 examples: - default: *668 + default: *670 '304': *37 '500': *103 '401': *25 @@ -98191,7 +98551,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *224 + - *226 requestBody: required: true content: @@ -98241,13 +98601,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *331 + repository: *333 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *446 - required: *447 + properties: *448 + required: *449 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -99021,15 +99381,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 responses: '200': description: Response content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '304': *37 '500': *103 '400': *14 @@ -99061,15 +99421,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 responses: '200': description: Response content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '500': *103 '401': *25 '403': *29 @@ -99099,9 +99459,9 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: &679 + default: &681 value: - id: 197 name: hello_docker @@ -99202,7 +99562,7 @@ paths: application/json: schema: type: array - items: &669 + items: &671 title: Email description: Email type: object @@ -99267,9 +99627,9 @@ paths: application/json: schema: type: array - items: *669 + items: *671 examples: - default: &681 + default: &683 value: - email: octocat@github.com verified: true @@ -99344,7 +99704,7 @@ paths: application/json: schema: type: array - items: *669 + items: *671 examples: default: value: @@ -99600,7 +99960,7 @@ paths: application/json: schema: type: array - items: &670 + items: &672 title: GPG Key description: A unique encryption key type: object @@ -99731,7 +100091,7 @@ paths: - subkeys - revoked examples: - default: &695 + default: &697 value: - id: 3 name: Octocat's GPG Key @@ -99816,9 +100176,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *672 examples: - default: &671 + default: &673 value: id: 3 name: Octocat's GPG Key @@ -99875,7 +100235,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &672 + - &674 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -99887,9 +100247,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *672 examples: - default: *671 + default: *673 '404': *6 '304': *37 '403': *29 @@ -99912,7 +100272,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *672 + - *674 responses: '204': description: Response @@ -100188,12 +100548,12 @@ paths: application/json: schema: anyOf: - - *212 + - *214 - type: object properties: {} additionalProperties: false examples: - default: *213 + default: *215 '204': description: Response when there are no restrictions x-github: @@ -100217,7 +100577,7 @@ paths: required: true content: application/json: - schema: *518 + schema: *520 examples: default: value: @@ -100228,7 +100588,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *214 examples: default: value: @@ -100309,7 +100669,7 @@ paths: - closed - all default: open - - *220 + - *222 - name: sort description: What to sort results by. in: query @@ -100334,7 +100694,7 @@ paths: type: array items: *82 examples: - default: *221 + default: *223 headers: Link: *54 '404': *6 @@ -100367,7 +100727,7 @@ paths: application/json: schema: type: array - items: &673 + items: &675 title: Key description: Key type: object @@ -100468,9 +100828,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *675 examples: - default: &674 + default: &676 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -100503,15 +100863,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *548 + - *550 responses: '200': description: Response content: application/json: - schema: *673 + schema: *675 examples: - default: *674 + default: *676 '404': *6 '304': *37 '403': *29 @@ -100534,7 +100894,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *548 + - *550 responses: '204': description: Response @@ -100567,7 +100927,7 @@ paths: application/json: schema: type: array - items: &675 + items: &677 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -100635,7 +100995,7 @@ paths: - account - plan examples: - default: &676 + default: &678 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -100697,9 +101057,9 @@ paths: application/json: schema: type: array - items: *675 + items: *677 examples: - default: *676 + default: *678 headers: Link: *54 '304': *37 @@ -100739,7 +101099,7 @@ paths: application/json: schema: type: array - items: *226 + items: *228 examples: default: value: @@ -100847,7 +101207,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: default: value: @@ -100930,7 +101290,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: default: value: @@ -100998,7 +101358,7 @@ paths: application/json: schema: type: array - items: *228 + items: *230 examples: default: value: @@ -101251,7 +101611,7 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: default: value: @@ -101431,7 +101791,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *229 + - *231 - name: exclude in: query required: false @@ -101444,7 +101804,7 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: default: value: @@ -101638,7 +101998,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *229 + - *231 responses: '302': description: Response @@ -101664,7 +102024,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *229 + - *231 responses: '204': description: Response @@ -101693,8 +102053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *229 - - *677 + - *231 + - *679 responses: '204': description: Response @@ -101718,7 +102078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *229 + - *231 - *17 - *19 responses: @@ -101730,7 +102090,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 '404': *6 @@ -101809,7 +102169,7 @@ paths: - docker - nuget - container - - *678 + - *680 - *19 - *17 responses: @@ -101819,10 +102179,10 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *679 - '400': *680 + default: *681 + '400': *682 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101842,16 +102202,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 + - *240 responses: '200': description: Response content: application/json: - schema: *235 + schema: *237 examples: - default: &696 + default: &698 value: id: 40201 name: octo-name @@ -101964,8 +102324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 + - *240 responses: '204': description: Response @@ -101995,8 +102355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 + - *240 - name: token description: package token schema: @@ -102028,8 +102388,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: - - *237 - - *238 + - *239 + - *240 - *19 - *17 - name: state @@ -102049,7 +102409,7 @@ paths: application/json: schema: type: array - items: *239 + items: *241 examples: default: value: @@ -102098,15 +102458,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 - *240 + - *242 responses: '200': description: Response content: application/json: - schema: *239 + schema: *241 examples: default: value: @@ -102142,9 +102502,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 - *240 + - *242 responses: '204': description: Response @@ -102174,9 +102534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 - *240 + - *242 responses: '204': description: Response @@ -102213,9 +102573,9 @@ paths: application/json: schema: type: array - items: *669 + items: *671 examples: - default: *681 + default: *683 headers: Link: *54 '304': *37 @@ -102328,7 +102688,7 @@ paths: type: array items: *66 examples: - default: &688 + default: &690 summary: Default response value: - id: 1296269 @@ -102632,9 +102992,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *333 + default: *335 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -102672,9 +103032,9 @@ paths: application/json: schema: type: array - items: *520 + items: *522 examples: - default: *682 + default: *684 headers: Link: *54 '304': *37 @@ -102697,7 +103057,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *216 + - *218 responses: '204': description: Response @@ -102720,7 +103080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *216 + - *218 responses: '204': description: Response @@ -102753,7 +103113,7 @@ paths: application/json: schema: type: array - items: &683 + items: &685 title: Social account description: Social media account type: object @@ -102768,7 +103128,7 @@ paths: - provider - url examples: - default: &684 + default: &686 value: - provider: twitter url: https://twitter.com/github @@ -102830,9 +103190,9 @@ paths: application/json: schema: type: array - items: *683 + items: *685 examples: - default: *684 + default: *686 '422': *15 '304': *37 '404': *6 @@ -102919,7 +103279,7 @@ paths: application/json: schema: type: array - items: &685 + items: &687 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -102939,16 +103299,14 @@ paths: - title - created_at examples: - default: &710 + default: &712 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: @@ -103005,13 +103363,12 @@ paths: description: Response content: application/json: - schema: *685 + schema: *687 examples: - default: &686 + default: &688 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 @@ -103038,7 +103395,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: - - &687 + - &689 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -103050,9 +103407,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *687 examples: - default: *686 + default: *688 '404': *6 '304': *37 '403': *29 @@ -103075,7 +103432,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: - - *687 + - *689 responses: '204': description: Response @@ -103104,7 +103461,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &711 + - &713 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 @@ -103129,11 +103486,11 @@ paths: type: array items: *66 examples: - default-response: *688 + default-response: *690 application/vnd.github.v3.star+json: schema: type: array - items: &712 + items: &714 title: Starred Repository description: Starred Repository type: object @@ -103289,8 +103646,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: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response if this repository is starred by you @@ -103318,8 +103675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -103343,8 +103700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -103379,7 +103736,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 '304': *37 @@ -103416,7 +103773,7 @@ paths: application/json: schema: type: array - items: *310 + items: *312 examples: default: value: @@ -103502,10 +103859,10 @@ paths: application/json: schema: oneOf: - - *662 - - *661 + - *664 + - *663 examples: - default-response: &690 + default-response: &692 summary: Default response value: login: octocat @@ -103540,7 +103897,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &691 + response-with-git-hub-plan-information: &693 summary: Response with GitHub plan information value: login: octocat @@ -103603,7 +103960,7 @@ paths: required: true schema: type: string - - *253 + - *255 requestBody: required: true description: Details of the draft item to create in the project. @@ -103637,9 +103994,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *261 examples: - draft_issue: *260 + draft_issue: *262 '304': *37 '403': *29 '401': *25 @@ -103662,7 +104019,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *689 + - *691 - *17 responses: '200': @@ -103711,11 +104068,11 @@ paths: application/json: schema: oneOf: - - *662 - - *661 + - *664 + - *663 examples: - default-response: *690 - response-with-git-hub-plan-information: *691 + default-response: *692 + response-with-git-hub-plan-information: *693 '404': *6 x-github: githubCloudOnly: false @@ -103765,8 +104122,8 @@ paths: required: - subject_digests examples: - default: *692 - withPredicateType: *693 + default: *694 + withPredicateType: *695 responses: '200': description: Response @@ -103819,7 +104176,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *694 + default: *696 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104024,7 +104381,7 @@ paths: initiator: type: string examples: - default: *387 + default: *389 '201': description: Response content: @@ -104063,9 +104420,9 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *679 + default: *681 '403': *29 '401': *25 x-github: @@ -104449,9 +104806,9 @@ paths: application/json: schema: type: array - items: *670 + items: *672 examples: - default: *695 + default: *697 headers: Link: *54 x-github: @@ -104555,7 +104912,7 @@ paths: application/json: schema: *22 examples: - default: *517 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104679,7 +105036,7 @@ paths: - docker - nuget - container - - *678 + - *680 - *59 - *19 - *17 @@ -104690,12 +105047,12 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *679 + default: *681 '403': *29 '401': *25 - '400': *680 + '400': *682 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104715,17 +105072,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *237 - - *238 + - *239 + - *240 - *59 responses: '200': description: Response content: application/json: - schema: *235 + schema: *237 examples: - default: *696 + default: *698 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104746,8 +105103,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *237 - - *238 + - *239 + - *240 - *59 responses: '204': @@ -104780,8 +105137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *237 - - *238 + - *239 + - *240 - *59 - name: token description: package token @@ -104814,8 +105171,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: - - *237 - - *238 + - *239 + - *240 - *59 responses: '200': @@ -104824,7 +105181,7 @@ paths: application/json: schema: type: array - items: *239 + items: *241 examples: default: value: @@ -104882,16 +105239,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *237 - - *238 + - *239 - *240 + - *242 - *59 responses: '200': description: Response content: application/json: - schema: *239 + schema: *241 examples: default: value: @@ -104926,10 +105283,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *237 - - *238 - - *59 + - *239 - *240 + - *59 + - *242 responses: '204': description: Response @@ -104961,10 +105318,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *237 - - *238 - - *59 + - *239 - *240 + - *59 + - *242 responses: '204': description: Response @@ -105005,9 +105362,9 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: - default: *252 + default: *254 headers: Link: *54 '304': *37 @@ -105029,16 +105386,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *253 + - *255 - *59 responses: '200': description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: *252 + default: *254 headers: Link: *54 '304': *37 @@ -105060,7 +105417,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *253 + - *255 - *59 - *17 - *40 @@ -105072,9 +105429,9 @@ paths: application/json: schema: type: array - items: *257 + items: *259 examples: - default: *697 + default: *699 headers: Link: *54 '304': *37 @@ -105096,17 +105453,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *253 - - *698 + - *255 + - *700 - *59 responses: '200': description: Response content: application/json: - schema: *257 + schema: *259 examples: - default: *699 + default: *701 headers: Link: *54 '304': *37 @@ -105129,7 +105486,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *253 + - *255 - *59 - *40 - *41 @@ -105162,9 +105519,9 @@ paths: application/json: schema: type: array - items: *261 + items: *263 examples: - default: *262 + default: *264 headers: Link: *54 '304': *37 @@ -105186,7 +105543,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *59 - - *253 + - *255 requestBody: required: true description: Details of the item to add to the project. @@ -105223,10 +105580,10 @@ paths: description: Response content: application/json: - schema: *259 + schema: *261 examples: - issue: *260 - pull_request: *260 + issue: *262 + pull_request: *262 '304': *37 '403': *29 '401': *25 @@ -105246,9 +105603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *253 + - *255 - *59 - - *263 + - *265 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -105268,9 +105625,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *262 + default: *264 headers: Link: *54 '304': *37 @@ -105291,9 +105648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *253 + - *255 - *59 - - *263 + - *265 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -105363,13 +105720,13 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - text_field: *262 - number_field: *262 - date_field: *262 - single_select_field: *262 - iteration_field: *262 + text_field: *264 + number_field: *264 + date_field: *264 + single_select_field: *264 + iteration_field: *264 '401': *25 '403': *29 '404': *6 @@ -105389,9 +105746,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *253 + - *255 - *59 - - *263 + - *265 responses: '204': description: Response @@ -105611,7 +105968,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -105641,9 +105998,9 @@ paths: description: Response content: application/json: - schema: *700 + schema: *702 examples: - default: *701 + default: *703 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105671,9 +106028,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *704 examples: - default: *703 + default: *705 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105697,7 +106054,7 @@ paths: - *106 - *108 - *107 - - *704 + - *706 - *109 responses: '200': @@ -105834,9 +106191,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *707 examples: - default: *706 + default: *708 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105858,7 +106215,7 @@ paths: parameters: - *59 - *106 - - *707 + - *709 - *107 responses: '200': @@ -105957,9 +106314,9 @@ paths: - *106 - *108 - *107 - - *708 + - *710 - *109 - - *709 + - *711 responses: '200': description: Response when getting a billing usage summary @@ -106093,9 +106450,9 @@ paths: application/json: schema: type: array - items: *683 + items: *685 examples: - default: *684 + default: *686 headers: Link: *54 x-github: @@ -106125,9 +106482,9 @@ paths: application/json: schema: type: array - items: *685 + items: *687 examples: - default: *710 + default: *712 headers: Link: *54 x-github: @@ -106152,7 +106509,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *59 - - *711 + - *713 - *48 - *17 - *19 @@ -106164,11 +106521,11 @@ paths: schema: anyOf: - type: array - items: *712 + items: *714 - type: array items: *66 examples: - default-response: *688 + default-response: *690 headers: Link: *54 x-github: @@ -106199,7 +106556,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -106327,7 +106684,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &713 + enterprise: &715 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -106385,7 +106742,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &714 + installation: &716 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -106404,7 +106761,7 @@ x-webhooks: required: - id - node_id - organization: &715 + organization: &717 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -106464,13 +106821,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &716 + repository: &718 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &746 + properties: &748 id: description: Unique identifier of the repository example: 42 @@ -107153,7 +107510,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &747 + required: &749 - archive_url - assignees_url - blobs_url @@ -107304,10 +107661,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -107383,11 +107740,11 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - rule: &717 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + rule: &719 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) @@ -107610,11 +107967,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - rule: *717 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + rule: *719 sender: *4 required: - action @@ -107797,11 +108154,11 @@ x-webhooks: - everyone required: - from - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - rule: *717 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + rule: *719 sender: *4 required: - action @@ -107885,7 +108242,7 @@ x-webhooks: type: string enum: - completed - check_run: &719 + check_run: &721 title: CheckRun description: A check performed on the code of a given code change type: object @@ -107938,7 +108295,7 @@ x-webhooks: type: string pull_requests: type: array - items: *404 + items: *406 repository: *143 status: example: completed @@ -107976,7 +108333,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *718 + deployment: *720 details_url: example: https://example.com type: string @@ -108026,7 +108383,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *404 + items: *406 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -108061,10 +108418,10 @@ x-webhooks: - output - app - pull_requests - installation: *714 - enterprise: *713 - organization: *715 - repository: *716 + installation: *716 + enterprise: *715 + organization: *717 + repository: *718 sender: *4 required: - check_run @@ -108457,11 +108814,11 @@ x-webhooks: type: string enum: - created - check_run: *719 - installation: *714 - enterprise: *713 - organization: *715 - repository: *716 + check_run: *721 + installation: *716 + enterprise: *715 + organization: *717 + repository: *718 sender: *4 required: - check_run @@ -108857,11 +109214,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *719 - installation: *714 - enterprise: *713 - organization: *715 - repository: *716 + check_run: *721 + installation: *716 + enterprise: *715 + organization: *717 + repository: *718 requested_action: description: The action requested by the user. type: object @@ -109266,11 +109623,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *719 - installation: *714 - enterprise: *713 - organization: *715 - repository: *716 + check_run: *721 + installation: *716 + enterprise: *715 + organization: *717 + repository: *718 sender: *4 required: - check_run @@ -110247,10 +110604,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -110935,10 +111292,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -111617,10 +111974,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -111786,7 +112143,7 @@ x-webhooks: required: - login - id - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -111931,20 +112288,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &720 + commit_oid: &722 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: *713 - installation: *714 - organization: *715 - ref: &721 + enterprise: *715 + installation: *716 + organization: *717 + ref: &723 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: *716 + repository: *718 sender: *4 required: - action @@ -112109,7 +112466,7 @@ x-webhooks: required: - login - id - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -112339,12 +112696,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *713 - installation: *714 - organization: *715 - ref: *721 - repository: *716 + commit_oid: *722 + enterprise: *715 + installation: *716 + organization: *717 + ref: *723 + repository: *718 sender: *4 required: - action @@ -112439,7 +112796,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -112610,12 +112967,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *713 - installation: *714 - organization: *715 - ref: *721 - repository: *716 + commit_oid: *722 + enterprise: *715 + installation: *716 + organization: *717 + ref: *723 + repository: *718 sender: *4 required: - action @@ -112781,7 +113138,7 @@ x-webhooks: required: - login - id - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -112947,12 +113304,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *713 - installation: *714 - organization: *715 - ref: *721 - repository: *716 + commit_oid: *722 + enterprise: *715 + installation: *716 + organization: *717 + ref: *723 + repository: *718 sender: *4 required: - action @@ -113052,7 +113409,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -113220,16 +113577,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *716 + repository: *718 sender: *4 required: - action @@ -113326,7 +113683,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -113466,12 +113823,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *713 - installation: *714 - organization: *715 - ref: *721 - repository: *716 + commit_oid: *722 + enterprise: *715 + installation: *716 + organization: *717 + ref: *723 + repository: *718 sender: *4 required: - action @@ -113728,10 +114085,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -113811,18 +114168,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *715 - pusher_type: &722 + organization: *717 + pusher_type: &724 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &723 + ref: &725 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -113832,7 +114189,7 @@ x-webhooks: enum: - tag - branch - repository: *716 + repository: *718 sender: *4 required: - ref @@ -113914,10 +114271,10 @@ x-webhooks: type: string enum: - created - definition: *264 - enterprise: *713 - installation: *714 - organization: *715 + definition: *266 + enterprise: *715 + installation: *716 + organization: *717 sender: *4 required: - action @@ -114002,9 +114359,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 sender: *4 required: - action @@ -114081,10 +114438,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *264 - enterprise: *713 - installation: *714 - organization: *715 + definition: *266 + enterprise: *715 + installation: *716 + organization: *717 sender: *4 required: - action @@ -114161,10 +114518,10 @@ x-webhooks: type: string enum: - updated - definition: *264 - enterprise: *713 - installation: *714 - organization: *715 + definition: *266 + enterprise: *715 + installation: *716 + organization: *717 sender: *4 required: - action @@ -114241,10 +114598,10 @@ x-webhooks: type: string enum: - updated - enterprise: *713 - installation: *714 - repository: *716 - organization: *715 + enterprise: *715 + installation: *716 + repository: *718 + organization: *717 sender: *4 new_property_values: type: array @@ -114329,18 +114686,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *713 - installation: *714 - organization: *715 - pusher_type: *722 - ref: *723 + enterprise: *715 + installation: *716 + organization: *717 + pusher_type: *724 + ref: *725 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *716 + repository: *718 sender: *4 required: - ref @@ -114424,11 +114781,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114512,11 +114869,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114600,11 +114957,11 @@ x-webhooks: type: string enum: - created - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114686,11 +115043,11 @@ x-webhooks: type: string enum: - dismissed - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114772,11 +115129,11 @@ x-webhooks: type: string enum: - fixed - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114859,11 +115216,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114945,11 +115302,11 @@ x-webhooks: type: string enum: - reopened - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -115026,9 +115383,9 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - key: &724 + enterprise: *715 + installation: *716 + key: &726 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -115064,8 +115421,8 @@ x-webhooks: - verified - created_at - read_only - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -115142,11 +115499,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - key: *724 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + key: *726 + organization: *717 + repository: *718 sender: *4 required: - action @@ -115707,12 +116064,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - workflow: &728 + workflow: &730 title: Workflow type: object nullable: true @@ -116438,13 +116795,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *482 + deployment: *484 pull_requests: type: array - items: *569 - repository: *716 - organization: *715 - installation: *714 + items: *571 + repository: *718 + organization: *717 + installation: *716 sender: *4 responses: '200': @@ -116515,7 +116872,7 @@ x-webhooks: type: string enum: - approved - approver: &725 + approver: &727 type: object properties: avatar_url: @@ -116558,11 +116915,11 @@ x-webhooks: type: string comment: type: string - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - reviewers: &726 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + reviewers: &728 type: array items: type: object @@ -116641,7 +116998,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &727 + workflow_job_run: &729 type: object properties: conclusion: @@ -117372,18 +117729,18 @@ x-webhooks: type: string enum: - rejected - approver: *725 + approver: *727 comment: type: string - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - reviewers: *726 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + reviewers: *728 sender: *4 since: type: string - workflow_job_run: *727 + workflow_job_run: *729 workflow_job_runs: type: array items: @@ -118087,13 +118444,13 @@ x-webhooks: type: string enum: - requested - enterprise: *713 + enterprise: *715 environment: type: string - installation: *714 - organization: *715 - repository: *716 - requestor: &733 + installation: *716 + organization: *717 + repository: *718 + requestor: &735 title: User type: object nullable: true @@ -119992,12 +120349,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - workflow: *728 + workflow: *730 workflow_run: title: Deployment Workflow Run type: object @@ -120677,7 +121034,7 @@ x-webhooks: type: string enum: - answered - answer: &731 + answer: &733 type: object properties: author_association: @@ -120834,7 +121191,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &729 + discussion: &731 title: Discussion description: A Discussion in a repository. type: object @@ -121120,7 +121477,7 @@ x-webhooks: - id labels: type: array - items: *531 + items: *533 required: - repository_url - category @@ -121142,10 +121499,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121272,11 +121629,11 @@ x-webhooks: - from required: - category - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121359,11 +121716,11 @@ x-webhooks: type: string enum: - closed - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121445,7 +121802,7 @@ x-webhooks: type: string enum: - created - comment: &730 + comment: &732 type: object properties: author_association: @@ -121602,11 +121959,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121689,12 +122046,12 @@ x-webhooks: type: string enum: - deleted - comment: *730 - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + comment: *732 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121789,12 +122146,12 @@ x-webhooks: - from required: - body - comment: *730 - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + comment: *732 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121878,11 +122235,11 @@ x-webhooks: type: string enum: - created - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121964,11 +122321,11 @@ x-webhooks: type: string enum: - deleted - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122068,11 +122425,11 @@ x-webhooks: type: string required: - from - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122154,10 +122511,10 @@ x-webhooks: type: string enum: - labeled - discussion: *729 - enterprise: *713 - installation: *714 - label: &732 + discussion: *731 + enterprise: *715 + installation: *716 + label: &734 title: Label type: object properties: @@ -122189,8 +122546,8 @@ x-webhooks: - color - default - description - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122273,11 +122630,11 @@ x-webhooks: type: string enum: - locked - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122359,11 +122716,11 @@ x-webhooks: type: string enum: - pinned - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122445,11 +122802,11 @@ x-webhooks: type: string enum: - reopened - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122534,16 +122891,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *729 - new_repository: *716 + new_discussion: *731 + new_repository: *718 required: - new_discussion - new_repository - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122626,10 +122983,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *729 - old_answer: *731 - organization: *715 - repository: *716 + discussion: *731 + old_answer: *733 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122711,12 +123068,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *729 - enterprise: *713 - installation: *714 - label: *732 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122799,11 +123156,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122885,11 +123242,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122962,7 +123319,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *713 + enterprise: *715 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -123622,9 +123979,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - forkee @@ -123770,9 +124127,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pages: description: The pages that were updated. type: array @@ -123809,7 +124166,7 @@ x-webhooks: - action - sha - html_url - repository: *716 + repository: *718 sender: *4 required: - pages @@ -123885,10 +124242,10 @@ x-webhooks: type: string enum: - created - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories: &734 + organization: *717 + repositories: &736 description: An array of repository objects that the installation can access. type: array @@ -123914,8 +124271,8 @@ x-webhooks: - name - full_name - private - repository: *716 - requester: *733 + repository: *718 + requester: *735 sender: *4 required: - action @@ -123990,11 +124347,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories: *734 - repository: *716 + organization: *717 + repositories: *736 + repository: *718 requester: nullable: true sender: *4 @@ -124070,11 +124427,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories: *734 - repository: *716 + organization: *717 + repositories: *736 + repository: *718 requester: nullable: true sender: *4 @@ -124150,10 +124507,10 @@ x-webhooks: type: string enum: - added - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories_added: &735 + organization: *717 + repositories_added: &737 description: An array of repository objects, which were added to the installation. type: array @@ -124199,15 +124556,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *716 - repository_selection: &736 + repository: *718 + repository_selection: &738 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *733 + requester: *735 sender: *4 required: - action @@ -124286,10 +124643,10 @@ x-webhooks: type: string enum: - removed - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories_added: *735 + organization: *717 + repositories_added: *737 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -124316,9 +124673,9 @@ x-webhooks: - name - full_name - private - repository: *716 - repository_selection: *736 - requester: *733 + repository: *718 + repository_selection: *738 + requester: *735 sender: *4 required: - action @@ -124397,11 +124754,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories: *734 - repository: *716 + organization: *717 + repositories: *736 + repository: *718 requester: nullable: true sender: *4 @@ -124579,10 +124936,10 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 target_type: type: string @@ -124661,11 +125018,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories: *734 - repository: *716 + organization: *717 + repositories: *736 + repository: *718 requester: nullable: true sender: *4 @@ -124917,8 +125274,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -125712,8 +126069,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -125729,7 +126086,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -126062,8 +126419,8 @@ x-webhooks: - state - locked - assignee - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -126143,7 +126500,7 @@ x-webhooks: type: string enum: - deleted - comment: &737 + comment: &739 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -126308,8 +126665,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -127099,8 +127456,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -127116,7 +127473,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -127451,8 +127808,8 @@ x-webhooks: - state - locked - assignee - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -127532,7 +127889,7 @@ x-webhooks: type: string enum: - edited - changes: &766 + changes: &768 description: The changes to the comment. type: object properties: @@ -127544,9 +127901,9 @@ x-webhooks: type: string required: - from - comment: *737 - enterprise: *713 - installation: *714 + comment: *739 + enterprise: *715 + installation: *716 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128339,8 +128696,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128356,7 +128713,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -128689,8 +129046,8 @@ x-webhooks: - state - locked - assignee - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -128780,9 +129137,9 @@ x-webhooks: type: number blocking_issue: *82 blocking_issue_repo: *66 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -128876,9 +129233,9 @@ x-webhooks: type: number blocking_issue: *82 blocking_issue_repo: *66 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -128971,9 +129328,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -129067,9 +129424,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -129154,10 +129511,10 @@ x-webhooks: type: string enum: - assigned - assignee: *733 - enterprise: *713 - installation: *714 - issue: &740 + assignee: *735 + enterprise: *715 + installation: *716 + issue: &742 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -129946,11 +130303,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129966,7 +130323,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -130067,8 +130424,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -130148,8 +130505,8 @@ x-webhooks: type: string enum: - closed - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -130943,11 +131300,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130963,7 +131320,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -131199,8 +131556,8 @@ x-webhooks: required: - state - closed_at - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -131279,8 +131636,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -132065,11 +132422,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132085,7 +132442,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -132185,8 +132542,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -132265,8 +132622,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -133073,11 +133430,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133093,7 +133450,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -133172,7 +133529,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &738 + milestone: &740 title: Milestone description: A collection of related issues and pull requests. type: object @@ -133310,8 +133667,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -133410,8 +133767,8 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134200,11 +134557,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134217,7 +134574,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *217 + type: *219 title: description: Title of the issue type: string @@ -134321,9 +134678,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *732 - organization: *715 - repository: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -134403,8 +134760,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135192,11 +135549,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135209,7 +135566,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *217 + type: *219 title: description: Title of the issue type: string @@ -135313,9 +135670,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *732 - organization: *715 - repository: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -135395,8 +135752,8 @@ x-webhooks: type: string enum: - locked - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136208,11 +136565,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136225,7 +136582,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *217 + type: *219 title: description: Title of the issue type: string @@ -136306,8 +136663,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -136386,8 +136743,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137193,11 +137550,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137213,7 +137570,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -137291,9 +137648,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *738 - organization: *715 - repository: *716 + milestone: *740 + organization: *717 + repository: *718 sender: *4 required: - action @@ -138161,11 +138518,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138258,7 +138615,7 @@ x-webhooks: required: - login - id - type: *217 + type: *219 required: - id - number @@ -138727,8 +139084,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139517,11 +139874,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139537,7 +139894,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -139637,8 +139994,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -139718,9 +140075,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *713 - installation: *714 - issue: &739 + enterprise: *715 + installation: *716 + issue: &741 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -140503,11 +140860,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140523,7 +140880,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -140623,8 +140980,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -140703,8 +141060,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141514,11 +141871,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141612,9 +141969,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *217 - organization: *715 - repository: *716 + type: *219 + organization: *717 + repository: *718 sender: *4 required: - action @@ -142480,11 +142837,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142500,7 +142857,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -143068,11 +143425,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *713 - installation: *714 - issue: *739 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *741 + organization: *717 + repository: *718 sender: *4 required: - action @@ -143152,12 +143509,12 @@ x-webhooks: type: string enum: - typed - enterprise: *713 - installation: *714 - issue: *740 - type: *217 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *742 + type: *219 + organization: *717 + repository: *718 sender: *4 required: - action @@ -143238,7 +143595,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &769 + assignee: &771 title: User type: object nullable: true @@ -143308,11 +143665,11 @@ x-webhooks: required: - login - id - enterprise: *713 - installation: *714 - issue: *740 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *742 + organization: *717 + repository: *718 sender: *4 required: - action @@ -143391,12 +143748,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *713 - installation: *714 - issue: *740 - label: *732 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *742 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -143476,8 +143833,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144287,11 +144644,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144307,7 +144664,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -144385,8 +144742,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144466,11 +144823,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *713 - installation: *714 - issue: *739 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *741 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144549,12 +144906,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *713 - installation: *714 - issue: *740 - type: *217 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *742 + type: *219 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144634,11 +144991,11 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - label: *732 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144716,11 +145073,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - label: *732 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144830,11 +145187,11 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - label: *732 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144916,9 +145273,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *713 - installation: *714 - marketplace_purchase: &741 + enterprise: *715 + installation: *716 + marketplace_purchase: &743 title: Marketplace Purchase type: object required: @@ -145001,8 +145358,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *715 - previous_marketplace_purchase: &742 + organization: *717 + previous_marketplace_purchase: &744 title: Marketplace Purchase type: object properties: @@ -145082,7 +145439,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *716 + repository: *718 sender: *4 required: - action @@ -145162,10 +145519,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *713 - installation: *714 - marketplace_purchase: *741 - organization: *715 + enterprise: *715 + installation: *716 + marketplace_purchase: *743 + organization: *717 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -145248,7 +145605,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *716 + repository: *718 sender: *4 required: - action @@ -145330,10 +145687,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *713 - installation: *714 - marketplace_purchase: *741 - organization: *715 + enterprise: *715 + installation: *716 + marketplace_purchase: *743 + organization: *717 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -145415,7 +145772,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *716 + repository: *718 sender: *4 required: - action @@ -145496,8 +145853,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 marketplace_purchase: title: Marketplace Purchase type: object @@ -145579,9 +145936,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *715 - previous_marketplace_purchase: *742 - repository: *716 + organization: *717 + previous_marketplace_purchase: *744 + repository: *718 sender: *4 required: - action @@ -145661,12 +146018,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *713 - installation: *714 - marketplace_purchase: *741 - organization: *715 - previous_marketplace_purchase: *742 - repository: *716 + enterprise: *715 + installation: *716 + marketplace_purchase: *743 + organization: *717 + previous_marketplace_purchase: *744 + repository: *718 sender: *4 required: - action @@ -145768,11 +146125,11 @@ x-webhooks: type: string required: - to - enterprise: *713 - installation: *714 - member: *733 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + member: *735 + organization: *717 + repository: *718 sender: *4 required: - action @@ -145872,11 +146229,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *713 - installation: *714 - member: *733 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + member: *735 + organization: *717 + repository: *718 sender: *4 required: - action @@ -145955,11 +146312,11 @@ x-webhooks: type: string enum: - removed - enterprise: *713 - installation: *714 - member: *733 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + member: *735 + organization: *717 + repository: *718 sender: *4 required: - action @@ -146037,11 +146394,11 @@ x-webhooks: type: string enum: - added - enterprise: *713 - installation: *714 - member: *733 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + member: *735 + organization: *717 + repository: *718 scope: description: The scope of the membership. Currently, can only be `team`. @@ -146117,7 +146474,7 @@ x-webhooks: required: - login - id - team: &743 + team: &745 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -146340,11 +146697,11 @@ x-webhooks: type: string enum: - removed - enterprise: *713 - installation: *714 - member: *733 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + member: *735 + organization: *717 + repository: *718 scope: description: The scope of the membership. Currently, can only be `team`. @@ -146421,7 +146778,7 @@ x-webhooks: required: - login - id - team: *743 + team: *745 required: - action - scope @@ -146503,8 +146860,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *714 - merge_group: &745 + installation: *716 + merge_group: &747 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -146523,15 +146880,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *744 + head_commit: *746 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -146617,10 +146974,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *714 - merge_group: *745 - organization: *715 - repository: *716 + installation: *716 + merge_group: *747 + organization: *717 + repository: *718 sender: *4 required: - action @@ -146693,7 +147050,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 + enterprise: *715 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -146802,16 +147159,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *714 - organization: *715 + installation: *716 + organization: *717 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *746 - required: *747 + properties: *748 + required: *749 nullable: true sender: *4 required: @@ -146892,11 +147249,11 @@ x-webhooks: type: string enum: - closed - enterprise: *713 - installation: *714 - milestone: *738 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + milestone: *740 + organization: *717 + repository: *718 sender: *4 required: - action @@ -146975,9 +147332,9 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - milestone: &748 + enterprise: *715 + installation: *716 + milestone: &750 title: Milestone description: A collection of related issues and pull requests. type: object @@ -147114,8 +147471,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147194,11 +147551,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - milestone: *738 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + milestone: *740 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147308,11 +147665,11 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - milestone: *738 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + milestone: *740 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147392,11 +147749,11 @@ x-webhooks: type: string enum: - opened - enterprise: *713 - installation: *714 - milestone: *748 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + milestone: *750 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147475,11 +147832,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *733 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + blocked_user: *735 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147558,11 +147915,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *733 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + blocked_user: *735 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147641,9 +147998,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - membership: &749 + enterprise: *715 + installation: *716 + membership: &751 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -147750,8 +148107,8 @@ x-webhooks: - role - organization_url - user - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147829,11 +148186,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *713 - installation: *714 - membership: *749 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + membership: *751 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147912,8 +148269,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -148029,10 +148386,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 - user: *733 + user: *735 required: - action - invitation @@ -148110,11 +148467,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *713 - installation: *714 - membership: *749 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + membership: *751 + organization: *717 + repository: *718 sender: *4 required: - action @@ -148201,11 +148558,11 @@ x-webhooks: properties: from: type: string - enterprise: *713 - installation: *714 - membership: *749 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + membership: *751 + organization: *717 + repository: *718 sender: *4 required: - action @@ -148281,9 +148638,9 @@ x-webhooks: type: string enum: - published - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 package: description: Information about the package. type: object @@ -148782,7 +149139,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &750 + items: &752 title: Ruby Gems metadata type: object properties: @@ -148877,7 +149234,7 @@ x-webhooks: - owner - package_version - registry - repository: *716 + repository: *718 sender: *4 required: - action @@ -148953,9 +149310,9 @@ x-webhooks: type: string enum: - updated - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 package: description: Information about the package. type: object @@ -149308,7 +149665,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *750 + items: *752 source_url: type: string format: uri @@ -149378,7 +149735,7 @@ x-webhooks: - owner - package_version - registry - repository: *716 + repository: *718 sender: *4 required: - action @@ -149555,12 +149912,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *713 + enterprise: *715 id: type: integer - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - id @@ -149637,7 +149994,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &751 + personal_access_token_request: &753 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -149783,10 +150140,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *713 - organization: *715 + enterprise: *715 + organization: *717 sender: *4 - installation: *714 + installation: *716 required: - action - personal_access_token_request @@ -149863,11 +150220,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *751 - enterprise: *713 - organization: *715 + personal_access_token_request: *753 + enterprise: *715 + organization: *717 sender: *4 - installation: *714 + installation: *716 required: - action - personal_access_token_request @@ -149943,11 +150300,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *751 - enterprise: *713 - organization: *715 + personal_access_token_request: *753 + enterprise: *715 + organization: *717 sender: *4 - installation: *714 + installation: *716 required: - action - personal_access_token_request @@ -150022,11 +150379,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *751 - organization: *715 - enterprise: *713 + personal_access_token_request: *753 + organization: *717 + enterprise: *715 sender: *4 - installation: *714 + installation: *716 required: - action - personal_access_token_request @@ -150131,7 +150488,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *752 + last_response: *754 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -150163,8 +150520,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 zen: description: Random string of GitHub zen. @@ -150409,10 +150766,10 @@ x-webhooks: - from required: - note - enterprise: *713 - installation: *714 - organization: *715 - project_card: &753 + enterprise: *715 + installation: *716 + organization: *717 + project_card: &755 title: Project Card type: object properties: @@ -150531,7 +150888,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *716 + repository: *718 sender: *4 required: - action @@ -150612,11 +150969,11 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - project_card: *753 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project_card: *755 + repository: *718 sender: *4 required: - action @@ -150696,9 +151053,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 project_card: title: Project Card type: object @@ -150826,8 +151183,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *746 - required: *747 + properties: *748 + required: *749 nullable: true sender: *4 required: @@ -150921,11 +151278,11 @@ x-webhooks: - from required: - note - enterprise: *713 - installation: *714 - organization: *715 - project_card: *753 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project_card: *755 + repository: *718 sender: *4 required: - action @@ -151019,9 +151376,9 @@ x-webhooks: - from required: - column_id - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 project_card: allOf: - title: Project Card @@ -151211,7 +151568,7 @@ x-webhooks: type: string required: - after_id - repository: *716 + repository: *718 sender: *4 required: - action @@ -151291,10 +151648,10 @@ x-webhooks: type: string enum: - closed - enterprise: *713 - installation: *714 - organization: *715 - project: &755 + enterprise: *715 + installation: *716 + organization: *717 + project: &757 title: Project type: object properties: @@ -151418,7 +151775,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *716 + repository: *718 sender: *4 required: - action @@ -151498,10 +151855,10 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - project_column: &754 + enterprise: *715 + installation: *716 + organization: *717 + project_column: &756 title: Project Column type: object properties: @@ -151540,7 +151897,7 @@ x-webhooks: - name - created_at - updated_at - repository: *716 + repository: *718 sender: *4 required: - action @@ -151619,18 +151976,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - project_column: *754 + enterprise: *715 + installation: *716 + organization: *717 + project_column: *756 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *746 - required: *747 + properties: *748 + required: *749 nullable: true sender: *4 required: @@ -151720,11 +152077,11 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - organization: *715 - project_column: *754 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project_column: *756 + repository: *718 sender: *4 required: - action @@ -151804,11 +152161,11 @@ x-webhooks: type: string enum: - moved - enterprise: *713 - installation: *714 - organization: *715 - project_column: *754 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project_column: *756 + repository: *718 sender: *4 required: - action @@ -151888,11 +152245,11 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - project: *755 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project: *757 + repository: *718 sender: *4 required: - action @@ -151972,18 +152329,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - project: *755 + enterprise: *715 + installation: *716 + organization: *717 + project: *757 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *746 - required: *747 + properties: *748 + required: *749 nullable: true sender: *4 required: @@ -152085,11 +152442,11 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - organization: *715 - project: *755 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project: *757 + repository: *718 sender: *4 required: - action @@ -152168,11 +152525,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *713 - installation: *714 - organization: *715 - project: *755 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project: *757 + repository: *718 sender: *4 required: - action @@ -152253,9 +152610,9 @@ x-webhooks: type: string enum: - closed - installation: *714 - organization: *715 - projects_v2: *251 + installation: *716 + organization: *717 + projects_v2: *253 sender: *4 required: - action @@ -152336,9 +152693,9 @@ x-webhooks: type: string enum: - created - installation: *714 - organization: *715 - projects_v2: *251 + installation: *716 + organization: *717 + projects_v2: *253 sender: *4 required: - action @@ -152419,9 +152776,9 @@ x-webhooks: type: string enum: - deleted - installation: *714 - organization: *715 - projects_v2: *251 + installation: *716 + organization: *717 + projects_v2: *253 sender: *4 required: - action @@ -152538,9 +152895,9 @@ x-webhooks: type: string to: type: string - installation: *714 - organization: *715 - projects_v2: *251 + installation: *716 + organization: *717 + projects_v2: *253 sender: *4 required: - action @@ -152623,7 +152980,7 @@ x-webhooks: type: string enum: - archived - changes: &759 + changes: &761 type: object properties: archived_at: @@ -152637,9 +152994,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *714 - organization: *715 - projects_v2_item: &756 + installation: *716 + organization: *717 + projects_v2_item: &758 title: Projects v2 Item description: An item belonging to a project type: object @@ -152657,7 +153014,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *258 + content_type: *260 creator: *4 created_at: type: string @@ -152774,9 +153131,9 @@ x-webhooks: nullable: true to: type: string - installation: *714 - organization: *715 - projects_v2_item: *756 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -152858,9 +153215,9 @@ x-webhooks: type: string enum: - created - installation: *714 - organization: *715 - projects_v2_item: *756 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -152941,9 +153298,9 @@ x-webhooks: type: string enum: - deleted - installation: *714 - organization: *715 - projects_v2_item: *756 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -153049,7 +153406,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &757 + - &759 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -153071,7 +153428,7 @@ x-webhooks: required: - id - name - - &758 + - &760 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -153105,8 +153462,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *757 - - *758 + - *759 + - *760 required: - field_value - type: object @@ -153122,9 +153479,9 @@ x-webhooks: nullable: true required: - body - installation: *714 - organization: *715 - projects_v2_item: *756 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -153219,9 +153576,9 @@ x-webhooks: to: type: string nullable: true - installation: *714 - organization: *715 - projects_v2_item: *756 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -153304,10 +153661,10 @@ x-webhooks: type: string enum: - restored - changes: *759 - installation: *714 - organization: *715 - projects_v2_item: *756 + changes: *761 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -153389,9 +153746,9 @@ x-webhooks: type: string enum: - reopened - installation: *714 - organization: *715 - projects_v2: *251 + installation: *716 + organization: *717 + projects_v2: *253 sender: *4 required: - action @@ -153472,14 +153829,14 @@ x-webhooks: type: string enum: - created - installation: *714 - organization: *715 - projects_v2_status_update: &762 + installation: *716 + organization: *717 + projects_v2_status_update: &764 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *760 - required: *761 + properties: *762 + required: *763 sender: *4 required: - action @@ -153560,9 +153917,9 @@ x-webhooks: type: string enum: - deleted - installation: *714 - organization: *715 - projects_v2_status_update: *762 + installation: *716 + organization: *717 + projects_v2_status_update: *764 sender: *4 required: - action @@ -153698,9 +154055,9 @@ x-webhooks: type: string format: date nullable: true - installation: *714 - organization: *715 - projects_v2_status_update: *762 + installation: *716 + organization: *717 + projects_v2_status_update: *764 sender: *4 required: - action @@ -153771,10 +154128,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - repository @@ -153851,13 +154208,13 @@ x-webhooks: type: string enum: - assigned - assignee: *733 - enterprise: *713 - installation: *714 - number: &763 + assignee: *735 + enterprise: *715 + installation: *716 + number: &765 description: The pull request number. type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -156140,7 +156497,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -156222,11 +156579,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -158504,7 +158861,7 @@ x-webhooks: - draft reason: type: string - repository: *716 + repository: *718 sender: *4 required: - action @@ -158586,11 +158943,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -160868,7 +161225,7 @@ x-webhooks: - draft reason: type: string - repository: *716 + repository: *718 sender: *4 required: - action @@ -160950,13 +161307,13 @@ x-webhooks: type: string enum: - closed - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: &764 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: &766 allOf: - - *569 + - *571 - type: object properties: allow_auto_merge: @@ -161018,7 +161375,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *716 + repository: *718 sender: *4 required: - action @@ -161099,12 +161456,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: *764 - repository: *716 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: *766 + repository: *718 sender: *4 required: - action @@ -161184,11 +161541,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *713 - milestone: *551 - number: *763 - organization: *715 - pull_request: &765 + enterprise: *715 + milestone: *553 + number: *765 + organization: *717 + pull_request: &767 title: Pull Request type: object properties: @@ -163451,7 +163808,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -163530,11 +163887,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -165816,7 +166173,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *716 + repository: *718 sender: *4 required: - action @@ -165940,12 +166297,12 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: *764 - repository: *716 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: *766 + repository: *718 sender: *4 required: - action @@ -166025,11 +166382,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -168296,7 +168653,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -168376,11 +168733,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *713 - installation: *714 - label: *732 - number: *763 - organization: *715 + enterprise: *715 + installation: *716 + label: *734 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -170662,7 +171019,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -170743,10 +171100,10 @@ x-webhooks: type: string enum: - locked - enterprise: *713 - installation: *714 - number: *763 - organization: *715 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -173026,7 +173383,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -173106,12 +173463,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *713 - milestone: *551 - number: *763 - organization: *715 - pull_request: *765 - repository: *716 + enterprise: *715 + milestone: *553 + number: *765 + organization: *717 + pull_request: *767 + repository: *718 sender: *4 required: - action @@ -173190,12 +173547,12 @@ x-webhooks: type: string enum: - opened - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: *764 - repository: *716 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: *766 + repository: *718 sender: *4 required: - action @@ -173276,12 +173633,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: *764 - repository: *716 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: *766 + repository: *718 sender: *4 required: - action @@ -173361,12 +173718,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: *764 - repository: *716 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: *766 + repository: *718 sender: *4 required: - action @@ -173732,9 +174089,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: type: object properties: @@ -175904,7 +176261,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *716 + repository: *718 sender: *4 required: - action @@ -175984,7 +176341,7 @@ x-webhooks: type: string enum: - deleted - comment: &767 + comment: &769 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -176269,9 +176626,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: type: object properties: @@ -178429,7 +178786,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *716 + repository: *718 sender: *4 required: - action @@ -178509,11 +178866,11 @@ x-webhooks: type: string enum: - edited - changes: *766 - comment: *767 - enterprise: *713 - installation: *714 - organization: *715 + changes: *768 + comment: *769 + enterprise: *715 + installation: *716 + organization: *717 pull_request: type: object properties: @@ -180674,7 +181031,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *716 + repository: *718 sender: *4 required: - action @@ -180755,9 +181112,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: title: Simple Pull Request type: object @@ -182930,7 +183287,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *716 + repository: *718 review: description: The review that was affected. type: object @@ -183177,9 +183534,9 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: title: Simple Pull Request type: object @@ -185233,8 +185590,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *716 - review: &768 + repository: *718 + review: &770 description: The review that was affected. type: object properties: @@ -185467,12 +185824,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: description: The pull request number. type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -187755,7 +188112,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 requested_reviewer: title: User type: object @@ -187839,12 +188196,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: description: The pull request number. type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -190134,7 +190491,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 requested_team: title: Team description: Groups of organization members that gives permissions @@ -190326,12 +190683,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: description: The pull request number. type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -192616,7 +192973,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 requested_reviewer: title: User type: object @@ -192701,12 +193058,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: description: The pull request number. type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -194982,7 +195339,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 requested_team: title: Team description: Groups of organization members that gives permissions @@ -195163,9 +195520,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: title: Simple Pull Request type: object @@ -197340,8 +197697,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *716 - review: *768 + repository: *718 + review: *770 sender: *4 required: - action @@ -197421,9 +197778,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: title: Simple Pull Request type: object @@ -199493,7 +199850,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *716 + repository: *718 sender: *4 thread: type: object @@ -199880,9 +200237,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: title: Simple Pull Request type: object @@ -201938,7 +202295,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *716 + repository: *718 sender: *4 thread: type: object @@ -202328,10 +202685,10 @@ x-webhooks: type: string before: type: string - enterprise: *713 - installation: *714 - number: *763 - organization: *715 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -204602,7 +204959,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -204684,11 +205041,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *769 - enterprise: *713 - installation: *714 - number: *763 - organization: *715 + assignee: *771 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -206971,7 +207328,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -207050,11 +207407,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *713 - installation: *714 - label: *732 - number: *763 - organization: *715 + enterprise: *715 + installation: *716 + label: *734 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -209327,7 +209684,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -209408,10 +209765,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *713 - installation: *714 - number: *763 - organization: *715 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -211676,7 +212033,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -211876,7 +212233,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *713 + enterprise: *715 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -211968,8 +212325,8 @@ x-webhooks: - url - author - committer - installation: *714 - organization: *715 + installation: *716 + organization: *717 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -212544,9 +212901,9 @@ x-webhooks: type: string enum: - published - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 registry_package: type: object properties: @@ -212992,7 +213349,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *750 + items: *752 summary: type: string tag_name: @@ -213046,7 +213403,7 @@ x-webhooks: - owner - package_version - registry - repository: *716 + repository: *718 sender: *4 required: - action @@ -213124,9 +213481,9 @@ x-webhooks: type: string enum: - updated - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 registry_package: type: object properties: @@ -213434,7 +213791,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *750 + items: *752 summary: type: string tag_name: @@ -213483,7 +213840,7 @@ x-webhooks: - owner - package_version - registry - repository: *716 + repository: *718 sender: *4 required: - action @@ -213560,10 +213917,10 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - release: &770 + enterprise: *715 + installation: *716 + organization: *717 + release: &772 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -213881,7 +214238,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *716 + repository: *718 sender: *4 required: - action @@ -213958,11 +214315,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - release: *770 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + release: *772 + repository: *718 sender: *4 required: - action @@ -214079,11 +214436,11 @@ x-webhooks: type: boolean required: - to - enterprise: *713 - installation: *714 - organization: *715 - release: *770 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + release: *772 + repository: *718 sender: *4 required: - action @@ -214161,9 +214518,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -214485,7 +214842,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *716 + repository: *718 sender: *4 required: - action @@ -214561,10 +214918,10 @@ x-webhooks: type: string enum: - published - enterprise: *713 - installation: *714 - organization: *715 - release: &771 + enterprise: *715 + installation: *716 + organization: *717 + release: &773 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -214883,7 +215240,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *716 + repository: *718 sender: *4 required: - action @@ -214959,11 +215316,11 @@ x-webhooks: type: string enum: - released - enterprise: *713 - installation: *714 - organization: *715 - release: *770 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + release: *772 + repository: *718 sender: *4 required: - action @@ -215039,11 +215396,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *713 - installation: *714 - organization: *715 - release: *771 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + release: *773 + repository: *718 sender: *4 required: - action @@ -215119,11 +215476,11 @@ x-webhooks: type: string enum: - published - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - repository_advisory: *633 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + repository_advisory: *635 sender: *4 required: - action @@ -215199,11 +215556,11 @@ x-webhooks: type: string enum: - reported - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - repository_advisory: *633 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + repository_advisory: *635 sender: *4 required: - action @@ -215279,10 +215636,10 @@ x-webhooks: type: string enum: - archived - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215359,10 +215716,10 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215440,10 +215797,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215527,10 +215884,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215642,10 +215999,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215717,10 +216074,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 status: type: string @@ -215801,10 +216158,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215881,10 +216238,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215978,10 +216335,10 @@ x-webhooks: - name required: - repository - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -216061,11 +216418,11 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - repository_ruleset: *296 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + repository_ruleset: *298 sender: *4 required: - action @@ -216143,11 +216500,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - repository_ruleset: *296 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + repository_ruleset: *298 sender: *4 required: - action @@ -216225,11 +216582,11 @@ x-webhooks: type: string enum: - edited - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - repository_ruleset: *296 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + repository_ruleset: *298 changes: type: object properties: @@ -216248,16 +216605,16 @@ x-webhooks: properties: added: type: array - items: *271 + items: *273 deleted: type: array - items: *271 + items: *273 updated: type: array items: type: object properties: - condition: *271 + condition: *273 changes: type: object properties: @@ -216290,16 +216647,16 @@ x-webhooks: properties: added: type: array - items: *590 + items: *592 deleted: type: array - items: *590 + items: *592 updated: type: array items: type: object properties: - rule: *590 + rule: *592 changes: type: object properties: @@ -216533,10 +216890,10 @@ x-webhooks: - from required: - owner - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -216614,10 +216971,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -216695,7 +217052,7 @@ x-webhooks: type: string enum: - create - alert: &772 + alert: &774 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -216816,10 +217173,10 @@ x-webhooks: type: string enum: - open - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217025,10 +217382,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217106,11 +217463,11 @@ x-webhooks: type: string enum: - reopen - alert: *772 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + alert: *774 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217309,10 +217666,10 @@ x-webhooks: enum: - fixed - open - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217390,11 +217747,11 @@ x-webhooks: type: string enum: - created - alert: &773 + alert: &775 type: object properties: - number: *159 - created_at: *160 + number: *161 + created_at: *162 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -217402,8 +217759,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *162 - html_url: *163 + url: *164 + html_url: *165 locations_url: type: string format: uri @@ -217508,10 +217865,10 @@ x-webhooks: properties: *20 required: *21 nullable: true - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217592,11 +217949,11 @@ x-webhooks: type: string enum: - created - alert: *773 - installation: *714 - location: *774 - organization: *715 - repository: *716 + alert: *775 + installation: *716 + location: *776 + organization: *717 + repository: *718 sender: *4 required: - location @@ -217834,11 +218191,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *773 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + alert: *775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217916,11 +218273,11 @@ x-webhooks: type: string enum: - reopened - alert: *773 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + alert: *775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217998,11 +218355,11 @@ x-webhooks: type: string enum: - resolved - alert: *773 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + alert: *775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -218080,11 +218437,11 @@ x-webhooks: type: string enum: - validated - alert: *773 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + alert: *775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -218210,10 +218567,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *716 - enterprise: *713 - installation: *714 - organization: *715 + repository: *718 + enterprise: *715 + installation: *716 + organization: *717 sender: *4 required: - action @@ -218291,11 +218648,11 @@ x-webhooks: type: string enum: - published - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - security_advisory: &775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + security_advisory: &777 description: The details of the security advisory, including summary, description, and severity. type: object @@ -218478,11 +218835,11 @@ x-webhooks: type: string enum: - updated - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - security_advisory: *775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + security_advisory: *777 sender: *4 required: - action @@ -218555,10 +218912,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -218742,11 +219099,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *270 - enterprise: *713 - installation: *714 - organization: *715 - repository: *331 + security_and_analysis: *272 + enterprise: *715 + installation: *716 + organization: *717 + repository: *333 sender: *4 required: - changes @@ -218824,12 +219181,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: &776 + sponsorship: &778 type: object properties: created_at: @@ -219130,12 +219487,12 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: *776 + sponsorship: *778 required: - action - sponsorship @@ -219223,12 +219580,12 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: *776 + sponsorship: *778 required: - action - changes @@ -219305,17 +219662,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &777 + effective_date: &779 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: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: *776 + sponsorship: *778 required: - action - sponsorship @@ -219389,7 +219746,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &778 + changes: &780 type: object properties: tier: @@ -219433,13 +219790,13 @@ x-webhooks: - from required: - tier - effective_date: *777 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + effective_date: *779 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: *776 + sponsorship: *778 required: - action - changes @@ -219516,13 +219873,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *778 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + changes: *780 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: *776 + sponsorship: *778 required: - action - changes @@ -219596,10 +219953,10 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -219682,10 +220039,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -220105,15 +220462,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *713 + enterprise: *715 id: description: The unique identifier of the status. type: integer - installation: *714 + installation: *716 name: type: string - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 sha: description: The Commit SHA. @@ -220228,9 +220585,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -220320,9 +220677,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -220412,9 +220769,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -220504,9 +220861,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -220583,12 +220940,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - team: &779 + team: &781 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -220811,9 +221168,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 repository: title: Repository description: A git repository @@ -221271,7 +221628,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *779 + team: *781 required: - action - team @@ -221347,9 +221704,9 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 repository: title: Repository description: A git repository @@ -221807,7 +222164,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *779 + team: *781 required: - action - team @@ -221884,9 +222241,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 repository: title: Repository description: A git repository @@ -222344,7 +222701,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *779 + team: *781 required: - action - team @@ -222488,9 +222845,9 @@ x-webhooks: - from required: - permissions - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 repository: title: Repository description: A git repository @@ -222948,7 +223305,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *779 + team: *781 required: - action - changes @@ -223026,9 +223383,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 repository: title: Repository description: A git repository @@ -223486,7 +223843,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *779 + team: *781 required: - action - team @@ -223562,10 +223919,10 @@ x-webhooks: type: string enum: - started - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -223638,16 +223995,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *713 + enterprise: *715 inputs: type: object nullable: true additionalProperties: true - installation: *714 - organization: *715 + installation: *716 + organization: *717 ref: type: string - repository: *716 + repository: *718 sender: *4 workflow: type: string @@ -223729,10 +224086,10 @@ x-webhooks: type: string enum: - completed - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 workflow_job: allOf: @@ -223969,7 +224326,7 @@ x-webhooks: type: string required: - conclusion - deployment: *482 + deployment: *484 required: - action - repository @@ -224048,10 +224405,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 workflow_job: allOf: @@ -224311,7 +224668,7 @@ x-webhooks: required: - status - steps - deployment: *482 + deployment: *484 required: - action - repository @@ -224390,10 +224747,10 @@ x-webhooks: type: string enum: - queued - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 workflow_job: type: object @@ -224528,7 +224885,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *482 + deployment: *484 required: - action - repository @@ -224607,10 +224964,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 workflow_job: type: object @@ -224746,7 +225103,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *482 + deployment: *484 required: - action - repository @@ -224826,12 +225183,12 @@ x-webhooks: type: string enum: - completed - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - workflow: *728 + workflow: *730 workflow_run: title: Workflow Run type: object @@ -225830,12 +226187,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - workflow: *728 + workflow: *730 workflow_run: title: Workflow Run type: object @@ -226819,12 +227176,12 @@ x-webhooks: type: string enum: - requested - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - workflow: *728 + workflow: *730 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index 9d8b3fe89..46e15043c 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -73601,6 +73601,505 @@ } } }, + "/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, + "example": "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, + "example": "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.\\-_]+$", + "example": "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + } + } + } + }, + "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, + "example": "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.\\-_]+$", + "example": "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + } + } + } + }, + "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", @@ -73803,6 +74302,151 @@ } } }, + "/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", + "example": 3, + "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + } + } + } + }, + "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", @@ -151428,10 +152072,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -151641,10 +152283,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -151772,10 +152412,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -151991,10 +152629,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -152172,10 +152808,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -152277,10 +152911,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -262085,6 +262717,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -262743,6 +263376,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -264344,6 +264978,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -563799,16 +564434,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" } @@ -563995,9 +564628,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" } @@ -564222,9 +564854,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" } @@ -616710,16 +617341,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" } @@ -667271,10 +667900,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -668151,10 +668778,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -668627,10 +669252,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index e1d4a825f..6437679a1 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -857,7 +857,7 @@ paths: - subscriptions_url - type - url - type: &302 + type: &304 type: string description: The type of credit the user is receiving. enum: @@ -1023,7 +1023,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &635 + - &637 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1579,7 +1579,7 @@ paths: schema: type: integer default: 30 - - &195 + - &197 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 @@ -1595,7 +1595,7 @@ paths: application/json: schema: type: array - items: &196 + items: &198 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1675,7 +1675,7 @@ paths: - installation_id - repository_id examples: - default: &197 + default: &199 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1803,7 +1803,7 @@ paths: description: Response content: application/json: - schema: &198 + schema: &200 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1917,7 +1917,7 @@ paths: - request - response examples: - default: &199 + default: &201 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2886,7 +2886,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &268 + properties: &270 id: description: Unique identifier of the repository example: 42 @@ -3324,7 +3324,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &269 + required: &271 - archive_url - assignees_url - blobs_url @@ -7435,7 +7435,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &169 + code_scanning_options: &171 type: object description: Security Configuration feature options for code scanning nullable: true @@ -7629,7 +7629,7 @@ paths: description: Response content: application/json: - schema: &171 + schema: &173 type: array description: A list of default code security configurations items: @@ -7645,7 +7645,7 @@ paths: default configuration: *43 examples: - default: &172 + default: &174 value: - default_for_new_repos: public configuration: @@ -7976,7 +7976,7 @@ paths: - *42 - *45 responses: - '204': &173 + '204': &175 description: A header with no content is returned. '400': *14 '403': *29 @@ -8103,7 +8103,7 @@ paths: default: value: default_for_new_repos: all - configuration: &170 + configuration: &172 value: id: 1325 target_type: organization @@ -8188,7 +8188,7 @@ paths: application/json: schema: type: array - items: &174 + items: &176 type: object description: Repositories associated with a code security configuration and attachment status @@ -8489,7 +8489,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &175 + repository: &177 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8583,7 +8583,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *42 - - &180 + - &182 name: state in: query description: |- @@ -8592,7 +8592,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &181 + - &183 name: severity in: query description: |- @@ -8601,7 +8601,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &182 + - &184 name: ecosystem in: query description: |- @@ -8610,14 +8610,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &183 + - &185 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 - - &184 + - &186 name: epss_percentage in: query description: |- @@ -8629,7 +8629,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 - - &473 + - &475 name: has in: query description: |- @@ -8643,7 +8643,7 @@ paths: type: string enum: - patch - - &185 + - &187 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8653,7 +8653,7 @@ paths: enum: - development - runtime - - &186 + - &188 name: sort in: query description: |- @@ -8679,11 +8679,11 @@ paths: application/json: schema: type: array - items: &187 + items: &189 type: object description: A Dependabot alert. properties: - number: &159 + number: &161 type: integer description: The security alert number. readOnly: true @@ -8745,7 +8745,7 @@ paths: - unknown - direct - transitive - security_advisory: &474 + security_advisory: &476 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -8948,29 +8948,29 @@ paths: - withdrawn_at additionalProperties: false security_vulnerability: *52 - url: &162 + url: &164 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &163 + html_url: &165 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &160 + created_at: &162 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: &161 + updated_at: &163 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: &165 + dismissed_at: &167 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9000,14 +9000,14 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &164 + fixed_at: &166 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - auto_dismissed_at: &475 + auto_dismissed_at: &477 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9033,7 +9033,7 @@ paths: - repository additionalProperties: false examples: - default: &188 + default: &190 value: - number: 2 state: dismissed @@ -9817,7 +9817,7 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: &177 + properties: &179 login: type: string example: github @@ -9858,7 +9858,7 @@ paths: type: string example: A great organization nullable: true - required: &178 + required: &180 - login - url - id @@ -10303,7 +10303,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &524 + properties: &526 id: type: integer format: int64 @@ -10415,7 +10415,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &254 + properties: &256 url: type: string format: uri @@ -10485,7 +10485,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &255 + required: &257 - closed_issues - creator - description @@ -10564,7 +10564,7 @@ paths: timeline_url: type: string format: uri - type: &217 + type: &219 title: Issue Type description: The type of issue. type: object @@ -10675,7 +10675,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &647 + sub_issues_summary: &649 title: Sub-issues Summary type: object properties: @@ -10695,7 +10695,7 @@ paths: type: string format: uri nullable: true - issue_dependencies_summary: &648 + issue_dependencies_summary: &650 title: Issue Dependencies Summary type: object properties: @@ -10714,7 +10714,7 @@ paths: - total_blocking issue_field_values: type: array - items: &649 + items: &651 title: Issue Field Value description: A value assigned to an issue field type: object @@ -10774,7 +10774,7 @@ paths: - node_id - data_type - value - required: &525 + required: &527 - assignee - closed_at - comments @@ -10795,7 +10795,7 @@ paths: - user - created_at - updated_at - comment: &522 + comment: &524 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11365,7 +11365,7 @@ paths: url: type: string format: uri - user: &661 + user: &663 title: Public User description: Public User type: object @@ -13235,7 +13235,7 @@ paths: - closed - all default: open - - &220 + - &222 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -13286,7 +13286,7 @@ paths: type: array items: *82 examples: - default: &221 + default: &223 value: - id: 1 node_id: MDU6SXNzdWUx @@ -14670,14 +14670,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &325 + - &327 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &326 + - &328 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14739,7 +14739,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &332 + '301': &334 description: Moved permanently content: application/json: @@ -14761,7 +14761,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &554 + - &556 name: all description: If `true`, show notifications marked as read. in: query @@ -14769,7 +14769,7 @@ paths: schema: type: boolean default: false - - &555 + - &557 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14779,7 +14779,7 @@ paths: type: boolean default: false - *72 - - &556 + - &558 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: @@ -14815,7 +14815,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &190 + properties: &192 id: type: integer format: int64 @@ -15091,7 +15091,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &270 + security_and_analysis: &272 nullable: true type: object properties: @@ -15165,7 +15165,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &191 + required: &193 - archive_url - assignees_url - blobs_url @@ -15253,7 +15253,7 @@ paths: - url - subscription_url examples: - default: &557 + default: &559 value: - id: '1' repository: @@ -16121,7 +16121,7 @@ paths: - property_name - value examples: - default: &563 + default: &565 value: - property_name: environment value: production @@ -16171,7 +16171,7 @@ paths: required: - properties examples: - default: &564 + default: &566 value: properties: - property_name: environment @@ -16716,7 +16716,7 @@ paths: required: false schema: type: string - - &704 + - &706 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -16862,7 +16862,7 @@ paths: parameters: - *63 - *106 - - &707 + - &709 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 @@ -16974,7 +16974,7 @@ paths: - *106 - *108 - *107 - - &708 + - &710 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -16982,7 +16982,7 @@ paths: schema: type: string - *109 - - &709 + - &711 name: sku description: The SKU to query for usage. in: query @@ -17884,7 +17884,7 @@ paths: type: integer repository_cache_usages: type: array - items: &337 + items: &339 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19076,7 +19076,7 @@ paths: - all - local_only - selected - selected_actions_url: &343 + selected_actions_url: &345 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` @@ -19159,7 +19159,7 @@ paths: description: Response content: application/json: - schema: &347 + schema: &349 type: object properties: days: @@ -19201,7 +19201,7 @@ paths: required: true content: application/json: - schema: &348 + schema: &350 type: object properties: days: @@ -19258,7 +19258,7 @@ paths: required: - approval_policy examples: - default: &349 + default: &351 value: approval_policy: first_time_contributors '404': *6 @@ -19317,7 +19317,7 @@ paths: description: Response content: application/json: - schema: &350 + schema: &352 type: object required: - run_workflows_from_fork_pull_requests @@ -19371,7 +19371,7 @@ paths: required: true content: application/json: - schema: &351 + schema: &353 type: object required: - run_workflows_from_fork_pull_requests @@ -20006,7 +20006,7 @@ paths: description: Response content: application/json: - schema: &352 + schema: &354 type: object properties: default_workflow_permissions: &136 @@ -20057,7 +20057,7 @@ paths: required: false content: application/json: - schema: &353 + schema: &355 type: object properties: default_workflow_permissions: *136 @@ -20546,7 +20546,7 @@ paths: type: array items: *143 examples: - default: &664 + default: &666 value: total_count: 1 repositories: @@ -21188,7 +21188,7 @@ paths: application/json: schema: type: array - items: &354 + items: &356 title: Runner Application description: Runner Application type: object @@ -21213,7 +21213,7 @@ paths: - download_url - filename examples: - default: &355 + default: &357 value: - os: osx architecture: x64 @@ -21299,7 +21299,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &356 + '201': &358 description: Response content: application/json: @@ -21410,7 +21410,7 @@ paths: - token - expires_at examples: - default: &357 + default: &359 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -21449,7 +21449,7 @@ paths: application/json: schema: *147 examples: - default: &358 + default: &360 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -21483,7 +21483,7 @@ paths: application/json: schema: *145 examples: - default: &359 + default: &361 value: id: 23 name: MBP @@ -21709,7 +21709,7 @@ paths: - *63 - *144 responses: - '200': &360 + '200': &362 description: Response content: application/json: @@ -21766,7 +21766,7 @@ paths: parameters: - *63 - *144 - - &361 + - &363 name: name description: The name of a self-hosted runner's custom label. in: path @@ -21896,7 +21896,7 @@ paths: description: Response content: application/json: - schema: &373 + schema: &375 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -21925,7 +21925,7 @@ paths: - key_id - key examples: - default: &374 + default: &376 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -22338,7 +22338,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *63 - - &342 + - &344 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)." @@ -22803,6 +22803,324 @@ 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: + - *63 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + example: 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 + example: 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.\\-_]+$" + example: 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: &156 + 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 + description: The ID of the provenance attestation associated + with the deployment record. + nullable: true + examples: + default: &157 + 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: + - *63 + - 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 + example: 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.\\-_]+$" + example: 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: *156 + examples: + default: *157 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/metadata/storage-record": post: summary: Create artifact metadata storage record @@ -22956,6 +23274,51 @@ 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: + - *63 + - 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 + example: 3 + type: integer + deployment_records: + type: array + items: *156 + examples: + default: *157 + 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 @@ -23079,12 +23442,12 @@ paths: required: - subject_digests examples: - default: &692 + default: &694 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &693 + withPredicateType: &695 value: subject_digests: - sha256:abc123 @@ -23142,7 +23505,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &694 + default: &696 value: attestations_subject_digests: - sha256:abc: @@ -23491,7 +23854,7 @@ paths: initiator: type: string examples: - default: &387 + default: &389 value: attestations: - bundle: @@ -23710,7 +24073,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &156 + schema: &158 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -23736,7 +24099,7 @@ paths: application/json: schema: type: array - items: &157 + items: &159 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -23767,7 +24130,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &179 + items: &181 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -23842,7 +24205,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &232 + properties: &234 id: description: Unique identifier of the team type: integer @@ -23914,7 +24277,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &233 + required: &235 - id - node_id - url @@ -23957,7 +24320,7 @@ paths: type: string format: date-time nullable: true - state: *156 + state: *158 contact_link: description: The contact link of the campaign. type: string @@ -24177,9 +24540,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: &158 + default: &160 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -24262,9 +24625,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *158 + default: *160 '404': *6 '422': description: Unprocessable Entity @@ -24341,7 +24704,7 @@ paths: type: string format: uri nullable: true - state: *156 + state: *158 examples: default: value: @@ -24351,9 +24714,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *158 + default: *160 '400': description: Bad Request content: @@ -24420,17 +24783,17 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *63 - - &413 + - &415 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: &166 + schema: &168 type: string description: The name of the tool used to generate the code scanning analysis. - - &414 + - &416 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 @@ -24438,7 +24801,7 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &167 + schema: &169 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, @@ -24453,7 +24816,7 @@ paths: be returned. in: query required: false - schema: &416 + schema: &418 type: string description: State of a code scanning alert. enum: @@ -24476,7 +24839,7 @@ paths: be returned. in: query required: false - schema: &417 + schema: &419 type: string description: Severity of a code scanning alert. enum: @@ -24497,18 +24860,18 @@ paths: items: type: object properties: - number: *159 - created_at: *160 - updated_at: *161 - url: *162 - html_url: *163 - instances_url: &418 + number: *161 + created_at: *162 + updated_at: *163 + url: *164 + html_url: *165 + instances_url: &420 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &168 + state: &170 type: string description: State of a code scanning alert. nullable: true @@ -24516,7 +24879,7 @@ paths: - open - dismissed - fixed - fixed_at: *164 + fixed_at: *166 dismissed_by: title: Simple User description: A GitHub user. @@ -24524,8 +24887,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *165 - dismissed_reason: &419 + dismissed_at: *167 + dismissed_reason: &421 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -24534,13 +24897,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &420 + dismissed_comment: &422 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &421 + rule: &423 type: object properties: id: @@ -24593,25 +24956,25 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &422 + tool: &424 type: object properties: - name: *166 + name: *168 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *167 - most_recent_instance: &423 + guid: *169 + most_recent_instance: &425 type: object properties: - ref: &415 + ref: &417 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &433 + analysis_key: &435 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -24622,13 +24985,13 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &434 + category: &436 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: *168 + state: *170 commit_sha: type: string message: @@ -25135,7 +25498,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *169 + code_scanning_options: *171 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -25278,7 +25641,7 @@ paths: application/json: schema: *43 examples: - default: *170 + default: *172 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25306,9 +25669,9 @@ paths: description: Response content: application/json: - schema: *171 + schema: *173 examples: - default: *172 + default: *174 '304': *37 '403': *29 '404': *6 @@ -25360,7 +25723,7 @@ paths: - 32 - 91 responses: - '204': *173 + '204': *175 '400': *14 '403': *29 '404': *6 @@ -25395,7 +25758,7 @@ paths: application/json: schema: *43 examples: - default: *170 + default: *172 '304': *37 '403': *29 '404': *6 @@ -25679,7 +26042,7 @@ paths: - *63 - *45 responses: - '204': *173 + '204': *175 '400': *14 '403': *29 '404': *6 @@ -25817,7 +26180,7 @@ paths: default: value: default_for_new_repos: all - configuration: *170 + configuration: *172 '403': *29 '404': *6 x-github: @@ -25870,13 +26233,13 @@ paths: application/json: schema: type: array - items: *174 + items: *176 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *175 + repository: *177 '403': *29 '404': *6 x-github: @@ -25916,7 +26279,7 @@ paths: type: integer codespaces: type: array - items: &222 + items: &224 type: object title: Codespace description: A codespace. @@ -25946,7 +26309,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &446 + properties: &448 name: type: string description: The name of the machine. @@ -25988,7 +26351,7 @@ paths: - ready - in_progress nullable: true - required: &447 + required: &449 - name - display_name - operating_system @@ -26193,7 +26556,7 @@ paths: - pulls_url - recent_folders examples: - default: &223 + default: &225 value: total_count: 3 codespaces: @@ -26817,7 +27180,7 @@ paths: type: integer secrets: type: array - items: &176 + items: &178 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -26856,7 +27219,7 @@ paths: - updated_at - visibility examples: - default: &448 + default: &450 value: total_count: 2 secrets: @@ -26894,7 +27257,7 @@ paths: description: Response content: application/json: - schema: &449 + schema: &451 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -26923,7 +27286,7 @@ paths: - key_id - key examples: - default: &450 + default: &452 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26953,9 +27316,9 @@ paths: description: Response content: application/json: - schema: *176 + schema: *178 examples: - default: &452 + default: &454 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -27422,7 +27785,7 @@ paths: currently being billed. seats: type: array - items: &225 + items: &227 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -27439,14 +27802,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *177 - required: *178 + properties: *179 + required: *180 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *179 + - *181 - *55 nullable: true pending_cancellation_date: @@ -27953,7 +28316,7 @@ paths: application/json: schema: type: array - items: &307 + items: &309 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -28260,7 +28623,7 @@ paths: - date additionalProperties: true examples: - default: &308 + default: &310 value: - date: '2024-06-24' total_active_users: 24 @@ -28362,7 +28725,7 @@ paths: '500': *103 '403': *29 '404': *6 - '422': &309 + '422': &311 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -28390,11 +28753,11 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *63 - - *180 - - *181 - *182 - *183 - *184 + - *185 + - *186 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -28432,8 +28795,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *185 - - *186 + - *187 + - *188 - *48 - *40 - *41 @@ -28445,9 +28808,9 @@ paths: application/json: schema: type: array - items: *187 + items: *189 examples: - default: *188 + default: *190 '304': *37 '400': *14 '403': *29 @@ -28491,7 +28854,7 @@ paths: type: integer secrets: type: array - items: &189 + items: &191 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -28568,7 +28931,7 @@ paths: description: Response content: application/json: - schema: &478 + schema: &480 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -28585,7 +28948,7 @@ paths: - key_id - key examples: - default: &479 + default: &481 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28615,7 +28978,7 @@ paths: description: Response content: application/json: - schema: *189 + schema: *191 examples: default: value: @@ -28916,7 +29279,7 @@ paths: application/json: schema: type: array - items: &235 + items: &237 title: Package description: A software package type: object @@ -28966,8 +29329,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *190 - required: *191 + properties: *192 + required: *193 nullable: true created_at: type: string @@ -28986,7 +29349,7 @@ paths: - created_at - updated_at examples: - default: &236 + default: &238 value: - id: 197 name: hello_docker @@ -29156,7 +29519,7 @@ paths: application/json: schema: type: array - items: &214 + items: &216 title: Organization Invitation description: Organization Invitation type: object @@ -29203,7 +29566,7 @@ paths: - invitation_teams_url - node_id examples: - default: &215 + default: &217 value: - id: 1 login: monalisa @@ -29270,7 +29633,7 @@ paths: application/json: schema: type: array - items: &192 + items: &194 title: Org Hook description: Org Hook type: object @@ -29441,9 +29804,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *194 examples: - default: &193 + default: &195 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -29491,7 +29854,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *63 - - &194 + - &196 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. @@ -29504,9 +29867,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *194 examples: - default: *193 + default: *195 '404': *6 x-github: githubCloudOnly: false @@ -29534,7 +29897,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *63 - - *194 + - *196 requestBody: required: false content: @@ -29579,7 +29942,7 @@ paths: description: Response content: application/json: - schema: *192 + schema: *194 examples: default: value: @@ -29621,7 +29984,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *63 - - *194 + - *196 responses: '204': description: Response @@ -29649,7 +30012,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *63 - - *194 + - *196 responses: '200': description: Response @@ -29680,7 +30043,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *63 - - *194 + - *196 requestBody: required: false content: @@ -29731,9 +30094,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *63 - - *194 + - *196 - *17 - - *195 + - *197 responses: '200': description: Response @@ -29741,9 +30104,9 @@ paths: application/json: schema: type: array - items: *196 + items: *198 examples: - default: *197 + default: *199 '400': *14 '422': *15 x-github: @@ -29769,16 +30132,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *63 - - *194 + - *196 - *16 responses: '200': description: Response content: application/json: - schema: *198 + schema: *200 examples: - default: *199 + default: *201 '400': *14 '422': *15 x-github: @@ -29804,7 +30167,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *63 - - *194 + - *196 - *16 responses: '202': *39 @@ -29834,7 +30197,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *63 - - *194 + - *196 responses: '204': description: Response @@ -29857,7 +30220,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *63 - - &204 + - &206 name: actor_type in: path description: The type of the actor @@ -29870,14 +30233,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &205 + - &207 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &200 + - &202 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`.' @@ -29885,7 +30248,7 @@ paths: required: true schema: type: string - - &201 + - &203 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) @@ -29979,12 +30342,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *63 - - *200 - - *201 + - *202 + - *203 - *19 - *17 - *48 - - &210 + - &212 name: sort description: The property to sort the results by. in: query @@ -30063,14 +30426,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *63 - - *200 - - *201 + - *202 + - *203 responses: '200': description: Response content: application/json: - schema: &202 + schema: &204 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -30086,7 +30449,7 @@ paths: type: integer format: int64 examples: - default: &203 + default: &205 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -30107,23 +30470,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *63 - - &206 + - &208 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *200 - - *201 + - *202 + - *203 responses: '200': description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *203 + default: *205 x-github: enabledForGitHubApps: true category: orgs @@ -30142,18 +30505,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *63 - - *200 - - *201 - - *204 - - *205 + - *202 + - *203 + - *206 + - *207 responses: '200': description: Response content: application/json: - schema: *202 + schema: *204 examples: - default: *203 + default: *205 x-github: enabledForGitHubApps: true category: orgs @@ -30171,9 +30534,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *63 - - *200 - - *201 - - &207 + - *202 + - *203 + - &209 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -30186,7 +30549,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &210 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -30202,7 +30565,7 @@ paths: type: integer format: int64 examples: - default: &209 + default: &211 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -30239,18 +30602,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *63 - - *206 - - *200 - - *201 - - *207 + - *208 + - *202 + - *203 + - *209 responses: '200': description: Response content: application/json: - schema: *208 + schema: *210 examples: - default: *209 + default: *211 x-github: enabledForGitHubApps: true category: orgs @@ -30268,19 +30631,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *63 - - *204 - - *205 - - *200 - - *201 + - *206 - *207 + - *202 + - *203 + - *209 responses: '200': description: Response content: application/json: - schema: *208 + schema: *210 examples: - default: *209 + default: *211 x-github: enabledForGitHubApps: true category: orgs @@ -30298,13 +30661,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *63 - - *206 - - *200 - - *201 + - *208 + - *202 + - *203 - *19 - *17 - *48 - - *210 + - *212 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -30385,7 +30748,7 @@ paths: application/json: schema: *22 examples: - default: &517 + default: &519 value: id: 1 account: @@ -30551,12 +30914,12 @@ paths: application/json: schema: anyOf: - - &212 + - &214 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &211 + limit: &213 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -30581,7 +30944,7 @@ paths: properties: {} additionalProperties: false examples: - default: &213 + default: &215 value: limit: collaborators_only origin: organization @@ -30610,13 +30973,13 @@ paths: required: true content: application/json: - schema: &518 + schema: &520 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *211 + limit: *213 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -30640,9 +31003,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *214 examples: - default: *213 + default: *215 '422': *15 x-github: githubCloudOnly: false @@ -30718,9 +31081,9 @@ paths: application/json: schema: type: array - items: *214 + items: *216 examples: - default: *215 + default: *217 headers: Link: *54 '404': *6 @@ -30797,7 +31160,7 @@ paths: description: Response content: application/json: - schema: *214 + schema: *216 examples: default: value: @@ -30852,7 +31215,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *63 - - &216 + - &218 name: invitation_id description: The unique identifier of the invitation. in: path @@ -30883,7 +31246,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *63 - - *216 + - *218 - *17 - *19 responses: @@ -30893,9 +31256,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: &234 + default: &236 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -30938,7 +31301,7 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: default: value: @@ -31023,9 +31386,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: &218 + default: &220 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -31058,7 +31421,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *63 - - &219 + - &221 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -31111,9 +31474,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *218 + default: *220 '404': *6 '422': *7 x-github: @@ -31138,7 +31501,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *63 - - *219 + - *221 responses: '204': description: Response @@ -31201,7 +31564,7 @@ paths: - closed - all default: open - - *220 + - *222 - name: type description: Can be the name of an issue type. in: query @@ -31232,7 +31595,7 @@ paths: type: array items: *82 examples: - default: *221 + default: *223 headers: Link: *54 '404': *6 @@ -31391,9 +31754,9 @@ paths: type: integer codespaces: type: array - items: *222 + items: *224 examples: - default: *223 + default: *225 '304': *37 '500': *103 '401': *25 @@ -31420,7 +31783,7 @@ paths: parameters: - *63 - *59 - - &224 + - &226 name: codespace_name in: path required: true @@ -31455,15 +31818,15 @@ paths: parameters: - *63 - *59 - - *224 + - *226 responses: '200': description: Response content: application/json: - schema: *222 + schema: *224 examples: - default: &445 + default: &447 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -31643,7 +32006,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *225 + schema: *227 examples: default: value: @@ -31719,7 +32082,7 @@ paths: description: Response content: application/json: - schema: &226 + schema: &228 title: Org Membership description: Org Membership type: object @@ -31786,7 +32149,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &227 + response-if-user-has-an-active-admin-membership-with-organization: &229 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -31883,9 +32246,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: - response-if-user-already-had-membership-with-organization: *227 + response-if-user-already-had-membership-with-organization: *229 '422': *15 '403': *29 x-github: @@ -31956,7 +32319,7 @@ paths: application/json: schema: type: array - items: &228 + items: &230 title: Migration description: A migration. type: object @@ -32285,7 +32648,7 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: default: value: @@ -32464,7 +32827,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *63 - - &229 + - &231 name: migration_id description: The unique identifier of the migration. in: path @@ -32491,7 +32854,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *228 + schema: *230 examples: default: value: @@ -32661,7 +33024,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *63 - - *229 + - *231 responses: '302': description: Response @@ -32683,7 +33046,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *63 - - *229 + - *231 responses: '204': description: Response @@ -32707,8 +33070,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *63 - - *229 - - &677 + - *231 + - &679 name: repo_name description: repo_name parameter in: path @@ -32736,7 +33099,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *63 - - *229 + - *231 - *17 - *19 responses: @@ -32748,7 +33111,7 @@ paths: type: array items: *143 examples: - default: &241 + default: &243 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -32901,7 +33264,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &231 + items: &233 title: Organization Role description: Organization roles type: object @@ -33076,7 +33439,7 @@ paths: parameters: - *63 - *64 - - &230 + - &232 name: role_id description: The unique identifier of the role. in: path @@ -33113,7 +33476,7 @@ paths: parameters: - *63 - *64 - - *230 + - *232 responses: '204': description: Response @@ -33166,7 +33529,7 @@ paths: parameters: - *63 - *59 - - *230 + - *232 responses: '204': description: Response @@ -33198,7 +33561,7 @@ paths: parameters: - *63 - *59 - - *230 + - *232 responses: '204': description: Response @@ -33227,13 +33590,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *63 - - *230 + - *232 responses: '200': description: Response content: application/json: - schema: *231 + schema: *233 examples: default: value: @@ -33284,7 +33647,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *63 - - *230 + - *232 - *17 - *19 responses: @@ -33362,8 +33725,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true type: description: The ownership type of the team @@ -33395,7 +33758,7 @@ paths: - type - parent examples: - default: *234 + default: *236 headers: Link: *54 '404': @@ -33425,7 +33788,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *63 - - *230 + - *232 - *17 - *19 responses: @@ -33453,13 +33816,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &303 + items: &305 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *232 - required: *233 + properties: *234 + required: *235 name: nullable: true type: string @@ -33747,7 +34110,7 @@ paths: - nuget - container - *63 - - &678 + - &680 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -33783,12 +34146,12 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *236 + default: *238 '403': *29 '401': *25 - '400': &680 + '400': &682 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -33810,7 +34173,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &237 + - &239 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 @@ -33828,7 +34191,7 @@ paths: - docker - nuget - container - - &238 + - &240 name: package_name description: The name of the package. in: path @@ -33841,7 +34204,7 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: default: value: @@ -33893,8 +34256,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *237 - - *238 + - *239 + - *240 - *63 responses: '204': @@ -33927,8 +34290,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *237 - - *238 + - *239 + - *240 - *63 - name: token description: package token @@ -33961,8 +34324,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: - - *237 - - *238 + - *239 + - *240 - *63 - *19 - *17 @@ -33983,7 +34346,7 @@ paths: application/json: schema: type: array - items: &239 + items: &241 title: Package Version description: A version of a software package type: object @@ -34108,10 +34471,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *237 - - *238 + - *239 + - *240 - *63 - - &240 + - &242 name: package_version_id description: Unique identifier of the package version. in: path @@ -34123,7 +34486,7 @@ paths: description: Response content: application/json: - schema: *239 + schema: *241 examples: default: value: @@ -34159,10 +34522,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *237 - - *238 - - *63 + - *239 - *240 + - *63 + - *242 responses: '204': description: Response @@ -34194,10 +34557,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *237 - - *238 - - *63 + - *239 - *240 + - *63 + - *242 responses: '204': description: Response @@ -34227,7 +34590,7 @@ paths: - *63 - *17 - *19 - - &242 + - &244 name: sort description: The property by which to sort the results. in: query @@ -34238,7 +34601,7 @@ paths: - created_at default: created_at - *48 - - &243 + - &245 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -34249,7 +34612,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &244 + - &246 name: repository description: The name of the repository to use to filter the results. in: query @@ -34257,7 +34620,7 @@ paths: schema: type: string example: Hello-World - - &245 + - &247 name: permission description: The permission to use to filter the results. in: query @@ -34265,7 +34628,7 @@ paths: schema: type: string example: issues_read - - &246 + - &248 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) @@ -34275,7 +34638,7 @@ paths: schema: type: string format: date-time - - &247 + - &249 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) @@ -34285,7 +34648,7 @@ paths: schema: type: string format: date-time - - &248 + - &250 name: token_id description: The ID of the token in: query @@ -34555,7 +34918,7 @@ paths: '422': *15 '404': *6 '403': *29 - '204': *173 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34598,7 +34961,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -34624,14 +34987,14 @@ paths: - *63 - *17 - *19 - - *242 - - *48 - - *243 - *244 + - *48 - *245 - *246 - *247 - *248 + - *249 + - *250 responses: '500': *103 '422': *15 @@ -34870,7 +35233,7 @@ paths: responses: '500': *103 '404': *6 - '204': *173 + '204': *175 '403': *29 '422': *15 x-github: @@ -34913,7 +35276,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -34955,7 +35318,7 @@ paths: type: integer configurations: type: array - items: &249 + items: &251 title: Organization private registry description: Private registry configuration for an organization type: object @@ -35245,7 +35608,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &250 + org-private-registry-with-selected-visibility: &252 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -35341,9 +35704,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *249 + schema: *251 examples: - default: *250 + default: *252 '404': *6 x-github: githubCloudOnly: false @@ -35510,7 +35873,7 @@ paths: application/json: schema: type: array - items: &251 + items: &253 title: Projects v2 Project description: A projects v2 project type: object @@ -35580,7 +35943,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &760 + properties: &762 id: type: number description: The unique identifier of the status update. @@ -35628,7 +35991,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &761 + required: &763 - id - node_id - created_at @@ -35653,7 +36016,7 @@ paths: - deleted_at - deleted_by examples: - default: &252 + default: &254 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -35756,7 +36119,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &253 + - &255 name: project_number description: The project's number. in: path @@ -35769,9 +36132,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: *252 + default: *254 headers: Link: *54 '304': *37 @@ -35794,7 +36157,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *63 - - *253 + - *255 requestBody: required: true description: Details of the draft item to create in the project. @@ -35828,7 +36191,7 @@ paths: description: Response content: application/json: - schema: &259 + schema: &261 title: Projects v2 Item description: An item belonging to a project type: object @@ -35842,7 +36205,7 @@ paths: content: oneOf: - *82 - - &460 + - &462 title: Pull Request Simple description: Pull Request Simple type: object @@ -35948,8 +36311,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *254 - required: *255 + properties: *256 + required: *257 nullable: true active_lock_reason: type: string @@ -35994,7 +36357,7 @@ paths: nullable: true requested_teams: type: array - items: *179 + items: *181 nullable: true head: type: object @@ -36045,7 +36408,7 @@ paths: _links: type: object properties: - comments: &256 + comments: &258 title: Link description: Hypermedia Link type: object @@ -36054,13 +36417,13 @@ paths: type: string required: - href - commits: *256 - statuses: *256 - html: *256 - issue: *256 - review_comments: *256 - review_comment: *256 - self: *256 + commits: *258 + statuses: *258 + html: *258 + issue: *258 + review_comments: *258 + review_comment: *258 + self: *258 required: - comments - commits @@ -36071,7 +36434,7 @@ paths: - review_comment - self author_association: *69 - auto_merge: &566 + auto_merge: &568 title: Auto merge description: The status of auto merging a pull request. type: object @@ -36173,7 +36536,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &258 + content_type: &260 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -36213,7 +36576,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &260 + draft_issue: &262 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -36287,7 +36650,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *253 + - *255 - *63 - *17 - *40 @@ -36299,7 +36662,7 @@ paths: application/json: schema: type: array - items: &257 + items: &259 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -36446,7 +36809,7 @@ paths: - updated_at - project_url examples: - default: &697 + default: &699 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -36577,8 +36940,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *253 - - &698 + - *255 + - &700 name: field_id description: The unique identifier of the field. in: path @@ -36591,9 +36954,9 @@ paths: description: Response content: application/json: - schema: *257 + schema: *259 examples: - default: &699 + default: &701 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -36637,7 +37000,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *253 + - *255 - *63 - 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) @@ -36670,7 +37033,7 @@ paths: application/json: schema: type: array - items: &261 + items: &263 title: Projects v2 Item description: An item belonging to a project type: object @@ -36686,7 +37049,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *258 + content_type: *260 content: type: object additionalProperties: true @@ -36729,7 +37092,7 @@ paths: - updated_at - archived_at examples: - default: &262 + default: &264 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -37426,7 +37789,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *63 - - *253 + - *255 requestBody: required: true description: Details of the item to add to the project. @@ -37463,10 +37826,10 @@ paths: description: Response content: application/json: - schema: *259 + schema: *261 examples: - issue: *260 - pull_request: *260 + issue: *262 + pull_request: *262 '304': *37 '403': *29 '401': *25 @@ -37486,9 +37849,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *253 + - *255 - *63 - - &263 + - &265 name: item_id description: The unique identifier of the project item. in: path @@ -37514,9 +37877,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *262 + default: *264 headers: Link: *54 '304': *37 @@ -37537,9 +37900,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *253 + - *255 - *63 - - *263 + - *265 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -37609,13 +37972,13 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - text_field: *262 - number_field: *262 - date_field: *262 - single_select_field: *262 - iteration_field: *262 + text_field: *264 + number_field: *264 + date_field: *264 + single_select_field: *264 + iteration_field: *264 '401': *25 '403': *29 '404': *6 @@ -37635,9 +37998,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *253 + - *255 - *63 - - *263 + - *265 responses: '204': description: Response @@ -37669,7 +38032,7 @@ paths: application/json: schema: type: array - items: &264 + items: &266 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -37717,8 +38080,6 @@ paths: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -37735,7 +38096,7 @@ paths: - property_name - value_type examples: - default: &265 + default: &267 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -37794,7 +38155,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *264 + items: *266 minItems: 1 maxItems: 100 required: @@ -37824,9 +38185,9 @@ paths: application/json: schema: type: array - items: *264 + items: *266 examples: - default: *265 + default: *267 '403': *29 '404': *6 x-github: @@ -37848,7 +38209,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *63 - - &266 + - &268 name: custom_property_name description: The custom property name in: path @@ -37860,9 +38221,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: - default: &267 + default: &269 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -37897,7 +38258,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *63 - - *266 + - *268 requestBody: required: true content: @@ -37935,8 +38296,6 @@ paths: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -37966,9 +38325,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *266 examples: - default: *267 + default: *269 '403': *29 '404': *6 x-github: @@ -37992,9 +38351,9 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *63 - - *266 + - *268 responses: - '204': *173 + '204': *175 '403': *29 '404': *6 x-github: @@ -38314,7 +38673,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -38516,7 +38875,7 @@ paths: description: Response content: application/json: - schema: &331 + schema: &333 title: Full Repository description: Full Repository type: object @@ -38793,8 +39152,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *268 - required: *269 + properties: *270 + required: *271 nullable: true temp_clone_token: type: string @@ -38909,7 +39268,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &465 + properties: &467 url: type: string format: uri @@ -38925,12 +39284,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &466 + required: &468 - url - key - name - html_url - security_and_analysis: *270 + security_and_analysis: *272 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -39014,7 +39373,7 @@ paths: - network_count - subscribers_count examples: - default: &333 + default: &335 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -39535,7 +39894,7 @@ paths: - *63 - *17 - *19 - - &589 + - &591 name: targets description: | A comma-separated list of rule targets to filter by. @@ -39553,7 +39912,7 @@ paths: application/json: schema: type: array - items: &296 + items: &298 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -39588,7 +39947,7 @@ paths: source: type: string description: The name of the source - enforcement: &273 + enforcement: &275 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -39601,7 +39960,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &274 + items: &276 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -39671,7 +40030,7 @@ paths: conditions: nullable: true anyOf: - - &271 + - &273 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -39695,7 +40054,7 @@ paths: match. items: type: string - - &275 + - &277 title: Organization ruleset conditions type: object description: |- @@ -39709,7 +40068,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *271 + - *273 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -39743,7 +40102,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *271 + - *273 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -39765,7 +40124,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *271 + - *273 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -39778,7 +40137,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &272 + items: &274 title: Repository ruleset property targeting definition type: object @@ -39811,17 +40170,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *272 + items: *274 required: - repository_property rules: type: array - items: &590 + items: &592 title: Repository Rule type: object description: A repository rule. oneOf: - - &276 + - &278 title: creation description: Only allow users with bypass permission to create matching refs. @@ -39833,7 +40192,7 @@ paths: type: string enum: - creation - - &277 + - &279 title: update description: Only allow users with bypass permission to update matching refs. @@ -39854,7 +40213,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &278 + - &280 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -39866,7 +40225,7 @@ paths: type: string enum: - deletion - - &279 + - &281 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -39878,7 +40237,7 @@ paths: type: string enum: - required_linear_history - - &587 + - &589 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -39956,7 +40315,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &280 + - &282 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -39980,7 +40339,7 @@ paths: type: string required: - required_deployment_environments - - &281 + - &283 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -39992,7 +40351,7 @@ paths: type: string enum: - required_signatures - - &282 + - &284 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -40103,7 +40462,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &283 + - &285 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -40151,7 +40510,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &284 + - &286 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -40163,7 +40522,7 @@ paths: type: string enum: - non_fast_forward - - &285 + - &287 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -40199,7 +40558,7 @@ paths: required: - operator - pattern - - &286 + - &288 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -40235,7 +40594,7 @@ paths: required: - operator - pattern - - &287 + - &289 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -40271,7 +40630,7 @@ paths: required: - operator - pattern - - &288 + - &290 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -40307,7 +40666,7 @@ paths: required: - operator - pattern - - &289 + - &291 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -40343,7 +40702,7 @@ paths: required: - operator - pattern - - &290 + - &292 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -40368,7 +40727,7 @@ paths: type: string required: - restricted_file_paths - - &291 + - &293 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -40392,7 +40751,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &292 + - &294 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -40415,7 +40774,7 @@ paths: type: string required: - restricted_file_extensions - - &293 + - &295 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -40440,7 +40799,7 @@ paths: maximum: 100 required: - max_file_size - - &294 + - &296 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -40490,7 +40849,7 @@ paths: - repository_id required: - workflows - - &295 + - &297 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -40551,7 +40910,7 @@ paths: - tool required: - code_scanning_tools - - &588 + - &590 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -40649,22 +41008,20 @@ paths: - push - repository default: branch - enforcement: *273 + enforcement: *275 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *274 - conditions: *275 + items: *276 + conditions: *277 rules: type: array description: An array of rules within the ruleset. - items: &298 + items: &300 title: Repository Rule type: object description: A repository rule. oneOf: - - *276 - - *277 - *278 - *279 - *280 @@ -40683,6 +41040,8 @@ paths: - *293 - *294 - *295 + - *296 + - *297 required: - name - enforcement @@ -40720,9 +41079,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: &297 + default: &299 value: id: 21 name: super cool ruleset @@ -40777,7 +41136,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *63 - - &591 + - &593 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 @@ -40792,7 +41151,7 @@ paths: in: query schema: type: string - - &592 + - &594 name: time_period description: |- The time period to filter by. @@ -40808,14 +41167,14 @@ paths: - week - month default: day - - &593 + - &595 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 - - &594 + - &596 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -40835,7 +41194,7 @@ paths: description: Response content: application/json: - schema: &595 + schema: &597 title: Rule Suites description: Response type: array @@ -40890,7 +41249,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &596 + default: &598 value: - id: 21 actor_id: 12 @@ -40934,7 +41293,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *63 - - &597 + - &599 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -40950,7 +41309,7 @@ paths: description: Response content: application/json: - schema: &598 + schema: &600 title: Rule Suite description: Response type: object @@ -41049,7 +41408,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &599 + default: &601 value: id: 21 actor_id: 12 @@ -41122,9 +41481,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *297 + default: *299 '404': *6 '500': *103 put: @@ -41168,16 +41527,16 @@ paths: - tag - push - repository - enforcement: *273 + enforcement: *275 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *274 - conditions: *275 + items: *276 + conditions: *277 rules: description: An array of rules within the ruleset. type: array - items: *298 + items: *300 examples: default: value: @@ -41212,9 +41571,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *297 + default: *299 '404': *6 '500': *103 delete: @@ -41271,7 +41630,7 @@ paths: application/json: schema: type: array - items: &299 + items: &301 title: Ruleset version type: object description: The historical version of a ruleset @@ -41295,7 +41654,7 @@ paths: type: string format: date-time examples: - default: &601 + default: &603 value: - version_id: 3 actor: @@ -41348,9 +41707,9 @@ paths: description: Response content: application/json: - schema: &602 + schema: &604 allOf: - - *299 + - *301 - type: object required: - state @@ -41420,7 +41779,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *63 - - &603 + - &605 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -41431,7 +41790,7 @@ paths: enum: - open - resolved - - &604 + - &606 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -41441,7 +41800,7 @@ paths: required: false schema: type: string - - &605 + - &607 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -41450,7 +41809,7 @@ paths: required: false schema: type: string - - &606 + - &608 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -41465,7 +41824,7 @@ paths: - *48 - *19 - *17 - - &607 + - &609 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -41475,7 +41834,7 @@ paths: required: false schema: type: string - - &608 + - &610 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -41485,7 +41844,7 @@ paths: required: false schema: type: string - - &609 + - &611 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -41494,7 +41853,7 @@ paths: required: false schema: type: string - - &610 + - &612 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -41503,7 +41862,7 @@ paths: schema: type: boolean default: false - - &611 + - &613 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -41512,7 +41871,7 @@ paths: schema: type: boolean default: false - - &612 + - &614 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -41531,8 +41890,8 @@ paths: items: type: object properties: - number: *159 - created_at: *160 + number: *161 + created_at: *162 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -41540,21 +41899,21 @@ paths: format: date-time readOnly: true nullable: true - url: *162 - html_url: *163 + url: *164 + html_url: *165 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &613 + state: &615 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &614 + resolution: &616 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -41661,8 +42020,8 @@ paths: pull request. ' - oneOf: &615 - - &617 + oneOf: &617 + - &619 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -41714,7 +42073,7 @@ paths: - blob_url - commit_sha - commit_url - - &618 + - &620 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -41769,7 +42128,7 @@ paths: - page_url - commit_sha - commit_url - - &619 + - &621 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -41783,7 +42142,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &620 + - &622 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -41797,7 +42156,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &621 + - &623 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -41811,7 +42170,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &622 + - &624 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -41825,7 +42184,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &623 + - &625 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -41839,7 +42198,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &624 + - &626 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -41853,7 +42212,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &625 + - &627 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -41867,7 +42226,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &626 + - &628 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -41881,7 +42240,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &627 + - &629 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -41895,7 +42254,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &628 + - &630 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -41909,7 +42268,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &629 + - &631 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -42151,7 +42510,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &301 + pattern_config_version: &303 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -42160,7 +42519,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &300 + items: &302 type: object properties: token_type: @@ -42226,7 +42585,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *300 + items: *302 examples: default: value: @@ -42283,7 +42642,7 @@ paths: schema: type: object properties: - pattern_config_version: *301 + pattern_config_version: *303 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -42309,7 +42668,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *301 + custom_pattern_version: *303 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -42407,7 +42766,7 @@ paths: application/json: schema: type: array - items: &633 + items: &635 description: A repository security advisory. type: object properties: @@ -42627,7 +42986,7 @@ paths: login: type: string description: The username of the user credited. - type: *302 + type: *304 credits_detailed: type: array nullable: true @@ -42637,7 +42996,7 @@ paths: type: object properties: user: *4 - type: *302 + type: *304 state: type: string description: The state of the user's acceptance of the @@ -42661,7 +43020,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *179 + items: *181 private_fork: readOnly: true nullable: true @@ -42698,7 +43057,7 @@ paths: - private_fork additionalProperties: false examples: - default: &634 + default: &636 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -43085,9 +43444,9 @@ paths: application/json: schema: type: array - items: *303 + items: *305 examples: - default: *234 + default: *236 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43172,7 +43531,7 @@ paths: description: Response content: application/json: - schema: &700 + schema: &702 type: object properties: total_minutes_used: @@ -43242,7 +43601,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &701 + default: &703 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -43278,7 +43637,7 @@ paths: description: Response content: application/json: - schema: &702 + schema: &704 type: object properties: total_gigabytes_bandwidth_used: @@ -43296,7 +43655,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &703 + default: &705 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -43328,7 +43687,7 @@ paths: description: Response content: application/json: - schema: &705 + schema: &707 type: object properties: days_left_in_billing_cycle: @@ -43346,7 +43705,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &706 + default: &708 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -43629,7 +43988,7 @@ paths: type: integer network_configurations: type: array - items: &304 + items: &306 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -43749,9 +44108,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *306 examples: - default: &305 + default: &307 value: id: 123456789ABCDEF name: My network configuration @@ -43780,7 +44139,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *63 - - &306 + - &308 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -43792,9 +44151,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *306 examples: - default: *305 + default: *307 headers: Link: *54 x-github: @@ -43816,7 +44175,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *63 - - *306 + - *308 requestBody: required: true content: @@ -43855,9 +44214,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *306 examples: - default: *305 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43877,7 +44236,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *63 - - *306 + - *308 responses: '204': description: Response @@ -44017,13 +44376,13 @@ paths: application/json: schema: type: array - items: *307 + items: *309 examples: - default: *308 + default: *310 '500': *103 '403': *29 '404': *6 - '422': *309 + '422': *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44051,9 +44410,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 headers: Link: *54 '403': *29 @@ -44147,7 +44506,7 @@ paths: description: Response content: application/json: - schema: &310 + schema: &312 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -44210,8 +44569,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *232 - required: *233 + properties: *234 + required: *235 nullable: true members_count: type: integer @@ -44474,7 +44833,7 @@ paths: - repos_count - organization examples: - default: &311 + default: &313 value: id: 1 node_id: MDQ6VGVhbTE= @@ -44551,9 +44910,9 @@ paths: description: Response content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '404': *6 x-github: githubCloudOnly: false @@ -44637,16 +44996,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '201': description: Response content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '404': *6 '422': *15 '403': *29 @@ -44716,7 +45075,7 @@ paths: application/json: schema: type: array - items: &312 + items: &314 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -44815,7 +45174,7 @@ paths: - updated_at - url examples: - default: &651 + default: &653 value: - author: login: octocat @@ -44924,9 +45283,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: &313 + default: &315 value: author: login: octocat @@ -45000,7 +45359,7 @@ paths: parameters: - *63 - *64 - - &314 + - &316 name: discussion_number description: The number that identifies the discussion. in: path @@ -45012,9 +45371,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: *313 + default: *315 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45038,7 +45397,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 requestBody: required: false content: @@ -45061,9 +45420,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: &652 + default: &654 value: author: login: octocat @@ -45135,7 +45494,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 responses: '204': description: Response @@ -45163,7 +45522,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 - *48 - *17 - *19 @@ -45174,7 +45533,7 @@ paths: application/json: schema: type: array - items: &315 + items: &317 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -45246,7 +45605,7 @@ paths: - updated_at - url examples: - default: &653 + default: &655 value: - author: login: octocat @@ -45316,7 +45675,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 requestBody: required: true content: @@ -45338,9 +45697,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: &316 + default: &318 value: author: login: octocat @@ -45408,8 +45767,8 @@ paths: parameters: - *63 - *64 - - *314 - - &317 + - *316 + - &319 name: comment_number description: The number that identifies the comment. in: path @@ -45421,9 +45780,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *316 + default: *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45447,8 +45806,8 @@ paths: parameters: - *63 - *64 - - *314 - - *317 + - *316 + - *319 requestBody: required: true content: @@ -45470,9 +45829,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: &654 + default: &656 value: author: login: octocat @@ -45538,8 +45897,8 @@ paths: parameters: - *63 - *64 - - *314 - - *317 + - *316 + - *319 responses: '204': description: Response @@ -45567,8 +45926,8 @@ paths: parameters: - *63 - *64 - - *314 - - *317 + - *316 + - *319 - 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. @@ -45594,7 +45953,7 @@ paths: application/json: schema: type: array - items: &318 + items: &320 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -45637,7 +45996,7 @@ paths: - content - created_at examples: - default: &320 + default: &322 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -45689,8 +46048,8 @@ paths: parameters: - *63 - *64 - - *314 - - *317 + - *316 + - *319 requestBody: required: true content: @@ -45723,9 +46082,9 @@ paths: team discussion comment content: application/json: - schema: *318 + schema: *320 examples: - default: &319 + default: &321 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -45754,9 +46113,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45781,9 +46140,9 @@ paths: parameters: - *63 - *64 - - *314 - - *317 - - &321 + - *316 + - *319 + - &323 name: reaction_id description: The unique identifier of the reaction. in: path @@ -45817,7 +46176,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 - 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. @@ -45843,9 +46202,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 x-github: @@ -45873,7 +46232,7 @@ paths: parameters: - *63 - *64 - - *314 + - *316 requestBody: required: true content: @@ -45905,16 +46264,16 @@ paths: description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45939,8 +46298,8 @@ paths: parameters: - *63 - *64 - - *314 - - *321 + - *316 + - *323 responses: '204': description: Response @@ -45975,9 +46334,9 @@ paths: application/json: schema: type: array - items: *214 + items: *216 examples: - default: *215 + default: *217 headers: Link: *54 x-github: @@ -46061,7 +46420,7 @@ paths: description: Response content: application/json: - schema: &322 + schema: &324 title: Team Membership description: Team Membership type: object @@ -46088,7 +46447,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &655 + response-if-user-is-a-team-maintainer: &657 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -46151,9 +46510,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: &656 + response-if-users-membership-with-team-is-now-pending: &658 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -46226,7 +46585,7 @@ paths: application/json: schema: type: array - items: &323 + items: &325 title: Team Project description: A team's access to a project. type: object @@ -46294,7 +46653,7 @@ paths: - updated_at - permissions examples: - default: &657 + default: &659 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -46359,7 +46718,7 @@ paths: parameters: - *63 - *64 - - &324 + - &326 name: project_id description: The unique identifier of the project. in: path @@ -46371,9 +46730,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *325 examples: - default: &658 + default: &660 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -46437,7 +46796,7 @@ paths: parameters: - *63 - *64 - - *324 + - *326 requestBody: required: false content: @@ -46505,7 +46864,7 @@ paths: parameters: - *63 - *64 - - *324 + - *326 responses: '204': description: Response @@ -46545,7 +46904,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -46576,14 +46935,14 @@ paths: parameters: - *63 - *64 - - *325 - - *326 + - *327 + - *328 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &659 + schema: &661 title: Team Repository description: A team's access to a repository. type: object @@ -47154,8 +47513,8 @@ paths: parameters: - *63 - *64 - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -47202,8 +47561,8 @@ paths: parameters: - *63 - *64 - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -47238,9 +47597,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - response-if-child-teams-exist: &660 + response-if-child-teams-exist: &662 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -47367,7 +47726,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#get-a-project-column parameters: - - &327 + - &329 name: column_id description: The unique identifier of the column. in: path @@ -47379,7 +47738,7 @@ paths: description: Response content: application/json: - schema: &328 + schema: &330 title: Project Column description: Project columns contain cards of work. type: object @@ -47425,7 +47784,7 @@ paths: - created_at - updated_at examples: - default: &329 + default: &331 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -47460,7 +47819,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#update-an-existing-project-column parameters: - - *327 + - *329 requestBody: required: true content: @@ -47484,9 +47843,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *330 examples: - default: *329 + default: *331 '304': *37 '403': *29 '401': *25 @@ -47511,7 +47870,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#delete-a-project-column parameters: - - *327 + - *329 responses: '204': description: Response @@ -47540,7 +47899,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/columns#move-a-project-column parameters: - - *327 + - *329 requestBody: required: true content: @@ -47600,7 +47959,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#list-project-collaborators parameters: - - *324 + - *326 - 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 @@ -47657,7 +48016,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#add-project-collaborator parameters: - - *324 + - *326 - *59 requestBody: required: false @@ -47710,7 +48069,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *324 + - *326 - *59 responses: '204': @@ -47742,7 +48101,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects-classic/collaborators#get-project-permission-for-a-user parameters: - - *324 + - *326 - *59 responses: '200': @@ -47843,7 +48202,7 @@ paths: resources: type: object properties: - core: &330 + core: &332 title: Rate Limit type: object properties: @@ -47860,21 +48219,21 @@ paths: - remaining - reset - used - graphql: *330 - search: *330 - code_search: *330 - source_import: *330 - integration_manifest: *330 - code_scanning_upload: *330 - actions_runner_registration: *330 - scim: *330 - dependency_snapshots: *330 - dependency_sbom: *330 - code_scanning_autofix: *330 + graphql: *332 + search: *332 + code_search: *332 + source_import: *332 + integration_manifest: *332 + code_scanning_upload: *332 + actions_runner_registration: *332 + scim: *332 + dependency_snapshots: *332 + dependency_sbom: *332 + code_scanning_autofix: *332 required: - core - search - rate: *330 + rate: *332 required: - rate - resources @@ -47979,14 +48338,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *331 + schema: *333 examples: default-response: summary: Default response @@ -48487,7 +48846,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *332 + '301': *334 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48505,8 +48864,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -48753,10 +49112,10 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *333 - '307': &334 + default: *335 + '307': &336 description: Temporary Redirect content: application/json: @@ -48785,8 +49144,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -48808,7 +49167,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *334 + '307': *336 '404': *6 '409': *47 x-github: @@ -48832,11 +49191,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 - - &365 + - &367 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -48859,7 +49218,7 @@ paths: type: integer artifacts: type: array - items: &335 + items: &337 title: Artifact description: An artifact type: object @@ -48937,7 +49296,7 @@ paths: - expires_at - updated_at examples: - default: &366 + default: &368 value: total_count: 2 artifacts: @@ -48998,9 +49357,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *325 - - *326 - - &336 + - *327 + - *328 + - &338 name: artifact_id description: The unique identifier of the artifact. in: path @@ -49012,7 +49371,7 @@ paths: description: Response content: application/json: - schema: *335 + schema: *337 examples: default: value: @@ -49050,9 +49409,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *325 - - *326 - - *336 + - *327 + - *328 + - *338 responses: '204': description: Response @@ -49076,9 +49435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *325 - - *326 - - *336 + - *327 + - *328 + - *338 - name: archive_format in: path required: true @@ -49092,7 +49451,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': &521 + '410': &523 description: Gone content: application/json: @@ -49119,14 +49478,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *337 + schema: *339 examples: default: value: @@ -49152,11 +49511,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 - - &338 + - &340 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 @@ -49190,7 +49549,7 @@ paths: description: Response content: application/json: - schema: &339 + schema: &341 title: Repository actions caches description: Repository actions caches type: object @@ -49232,7 +49591,7 @@ paths: - total_count - actions_caches examples: - default: &340 + default: &342 value: total_count: 1 actions_caches: @@ -49264,23 +49623,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: - - *325 - - *326 + - *327 + - *328 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *338 + - *340 responses: '200': description: Response content: application/json: - schema: *339 + schema: *341 examples: - default: *340 + default: *342 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49300,8 +49659,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: - - *325 - - *326 + - *327 + - *328 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -49332,9 +49691,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *325 - - *326 - - &341 + - *327 + - *328 + - &343 name: job_id description: The unique identifier of the job. in: path @@ -49346,7 +49705,7 @@ paths: description: Response content: application/json: - schema: &369 + schema: &371 title: Job description: Information of a job execution in a workflow run type: object @@ -49653,9 +50012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *325 - - *326 - - *341 + - *327 + - *328 + - *343 responses: '302': description: Response @@ -49683,9 +50042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *325 - - *326 - - *341 + - *327 + - *328 + - *343 requestBody: required: false content: @@ -49730,8 +50089,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Status response @@ -49781,8 +50140,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -49845,8 +50204,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -49864,7 +50223,7 @@ paths: type: integer secrets: type: array - items: &371 + items: &373 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -49884,7 +50243,7 @@ paths: - created_at - updated_at examples: - default: &372 + default: &374 value: total_count: 2 secrets: @@ -49917,9 +50276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *325 - - *326 - - *342 + - *327 + - *328 + - *344 - *19 responses: '200': @@ -49936,7 +50295,7 @@ paths: type: integer variables: type: array - items: &375 + items: &377 title: Actions Variable type: object properties: @@ -49966,7 +50325,7 @@ paths: - created_at - updated_at examples: - default: &376 + default: &378 value: total_count: 2 variables: @@ -49999,8 +50358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -50009,11 +50368,11 @@ paths: schema: type: object properties: - enabled: &344 + enabled: &346 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *128 - selected_actions_url: *343 + selected_actions_url: *345 sha_pinning_required: *129 required: - enabled @@ -50042,8 +50401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -50054,7 +50413,7 @@ paths: schema: type: object properties: - enabled: *344 + enabled: *346 allowed_actions: *128 sha_pinning_required: *129 required: @@ -50086,14 +50445,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: &345 + schema: &347 type: object properties: access_level: @@ -50110,7 +50469,7 @@ paths: required: - access_level examples: - default: &346 + default: &348 value: access_level: organization x-github: @@ -50134,15 +50493,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: application/json: - schema: *345 + schema: *347 examples: - default: *346 + default: *348 responses: '204': description: Response @@ -50166,14 +50525,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *347 + schema: *349 examples: default: value: @@ -50197,8 +50556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Empty response for successful settings update @@ -50208,7 +50567,7 @@ paths: required: true content: application/json: - schema: *348 + schema: *350 examples: default: summary: Set retention days @@ -50232,8 +50591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -50241,7 +50600,7 @@ paths: application/json: schema: *130 examples: - default: *349 + default: *351 '404': *6 x-github: enabledForGitHubApps: true @@ -50260,8 +50619,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -50295,14 +50654,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *350 + schema: *352 examples: default: *131 '403': *29 @@ -50324,13 +50683,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: application/json: - schema: *351 + schema: *353 examples: default: *131 responses: @@ -50356,8 +50715,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -50384,8 +50743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -50417,14 +50776,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *352 + schema: *354 examples: default: *138 x-github: @@ -50447,8 +50806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Success response @@ -50459,7 +50818,7 @@ paths: required: true content: application/json: - schema: *353 + schema: *355 examples: default: *138 x-github: @@ -50488,8 +50847,8 @@ paths: in: query schema: type: string - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -50533,8 +50892,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -50542,9 +50901,9 @@ paths: application/json: schema: type: array - items: *354 + items: *356 examples: - default: *355 + default: *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50566,8 +50925,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -50610,7 +50969,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *356 + '201': *358 '404': *6 '422': *7 '409': *47 @@ -50641,8 +51000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '201': description: Response @@ -50650,7 +51009,7 @@ paths: application/json: schema: *147 examples: - default: *357 + default: *359 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50678,8 +51037,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '201': description: Response @@ -50687,7 +51046,7 @@ paths: application/json: schema: *147 examples: - default: *358 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50709,8 +51068,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: - - *325 - - *326 + - *327 + - *328 - *144 responses: '200': @@ -50719,7 +51078,7 @@ paths: application/json: schema: *145 examples: - default: *359 + default: *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50740,8 +51099,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: - - *325 - - *326 + - *327 + - *328 - *144 responses: '204': @@ -50768,8 +51127,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: - - *325 - - *326 + - *327 + - *328 - *144 responses: '200': *149 @@ -50794,8 +51153,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: - - *325 - - *326 + - *327 + - *328 - *144 requestBody: required: true @@ -50844,8 +51203,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: - - *325 - - *326 + - *327 + - *328 - *144 requestBody: required: true @@ -50895,11 +51254,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: - - *325 - - *326 + - *327 + - *328 - *144 responses: - '200': *360 + '200': *362 '404': *6 x-github: githubCloudOnly: false @@ -50926,10 +51285,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: - - *325 - - *326 + - *327 + - *328 - *144 - - *361 + - *363 responses: '200': *149 '404': *6 @@ -50957,9 +51316,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *325 - - *326 - - &379 + - *327 + - *328 + - &381 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. @@ -50967,7 +51326,7 @@ paths: required: false schema: type: string - - &380 + - &382 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -50975,7 +51334,7 @@ paths: required: false schema: type: string - - &381 + - &383 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -50984,7 +51343,7 @@ paths: required: false schema: type: string - - &382 + - &384 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 @@ -51011,7 +51370,7 @@ paths: - pending - *17 - *19 - - &383 + - &385 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)." @@ -51020,7 +51379,7 @@ paths: schema: type: string format: date-time - - &362 + - &364 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -51029,13 +51388,13 @@ paths: schema: type: boolean default: false - - &384 + - &386 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &385 + - &387 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -51058,7 +51417,7 @@ paths: type: integer workflow_runs: type: array - items: &363 + items: &365 title: Workflow Run description: An invocation of a workflow type: object @@ -51153,7 +51512,7 @@ paths: that triggered the run. type: array nullable: true - items: &404 + items: &406 title: Pull Request Minimal type: object properties: @@ -51272,7 +51631,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &408 + properties: &410 id: type: string description: SHA for the commit @@ -51323,7 +51682,7 @@ paths: - name - email nullable: true - required: &409 + required: &411 - id - tree_id - message @@ -51370,7 +51729,7 @@ paths: - workflow_url - pull_requests examples: - default: &386 + default: &388 value: total_count: 1 workflow_runs: @@ -51606,24 +51965,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *325 - - *326 - - &364 + - *327 + - *328 + - &366 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *363 + schema: *365 examples: - default: &367 + default: &369 value: id: 30433642 name: Build @@ -51864,9 +52223,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '204': description: Response @@ -51889,9 +52248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '200': description: Response @@ -52010,9 +52369,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: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '201': description: Response @@ -52045,12 +52404,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 - *17 - *19 - - *365 + - *367 responses: '200': description: Response @@ -52066,9 +52425,9 @@ paths: type: integer artifacts: type: array - items: *335 + items: *337 examples: - default: *366 + default: *368 headers: Link: *54 x-github: @@ -52092,25 +52451,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *325 - - *326 - - *364 - - &368 + - *327 + - *328 + - *366 + - &370 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *362 + - *364 responses: '200': description: Response content: application/json: - schema: *363 + schema: *365 examples: - default: *367 + default: *369 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52133,10 +52492,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *325 - - *326 - - *364 - - *368 + - *327 + - *328 + - *366 + - *370 - *17 - *19 responses: @@ -52154,9 +52513,9 @@ paths: type: integer jobs: type: array - items: *369 + items: *371 examples: - default: &370 + default: &372 value: total_count: 1 jobs: @@ -52269,10 +52628,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *325 - - *326 - - *364 - - *368 + - *327 + - *328 + - *366 + - *370 responses: '302': description: Response @@ -52300,9 +52659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '202': description: Response @@ -52335,9 +52694,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: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 requestBody: required: true content: @@ -52404,9 +52763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '202': description: Response @@ -52439,9 +52798,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 - 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 @@ -52471,9 +52830,9 @@ paths: type: integer jobs: type: array - items: *369 + items: *371 examples: - default: *370 + default: *372 headers: Link: *54 x-github: @@ -52498,9 +52857,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '302': description: Response @@ -52527,9 +52886,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '204': description: Response @@ -52556,9 +52915,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '200': description: Response @@ -52618,7 +52977,7 @@ paths: items: type: object properties: - type: &487 + type: &489 type: string description: The type of reviewer. enum: @@ -52628,7 +52987,7 @@ paths: reviewer: anyOf: - *4 - - *179 + - *181 required: - environment - wait_timer @@ -52703,9 +53062,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 requestBody: required: true content: @@ -52752,7 +53111,7 @@ paths: application/json: schema: type: array - items: &482 + items: &484 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -52858,7 +53217,7 @@ paths: - created_at - updated_at examples: - default: &483 + default: &485 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -52914,9 +53273,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 requestBody: required: false content: @@ -52960,9 +53319,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 requestBody: required: false content: @@ -53015,9 +53374,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *325 - - *326 - - *364 + - *327 + - *328 + - *366 responses: '200': description: Response @@ -53154,8 +53513,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -53173,9 +53532,9 @@ paths: type: integer secrets: type: array - items: *371 + items: *373 examples: - default: *372 + default: *374 headers: Link: *54 x-github: @@ -53200,16 +53559,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *373 + schema: *375 examples: - default: *374 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53231,17 +53590,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '200': description: Response content: application/json: - schema: *371 + schema: *373 examples: - default: &500 + default: &502 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -53267,8 +53626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 requestBody: required: true @@ -53326,8 +53685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '204': @@ -53353,9 +53712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *325 - - *326 - - *342 + - *327 + - *328 + - *344 - *19 responses: '200': @@ -53372,9 +53731,9 @@ paths: type: integer variables: type: array - items: *375 + items: *377 examples: - default: *376 + default: *378 headers: Link: *54 x-github: @@ -53397,8 +53756,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -53450,17 +53809,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *325 - - *326 + - *327 + - *328 - *154 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: - default: &501 + default: &503 value: name: USERNAME value: octocat @@ -53486,8 +53845,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *325 - - *326 + - *327 + - *328 - *154 requestBody: required: true @@ -53530,8 +53889,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *325 - - *326 + - *327 + - *328 - *154 responses: '204': @@ -53557,8 +53916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -53576,7 +53935,7 @@ paths: type: integer workflows: type: array - items: &377 + items: &379 title: Workflow description: A GitHub Actions workflow type: object @@ -53683,9 +54042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *325 - - *326 - - &378 + - *327 + - *328 + - &380 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -53700,7 +54059,7 @@ paths: description: Response content: application/json: - schema: *377 + schema: *379 examples: default: value: @@ -53733,9 +54092,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *325 - - *326 - - *378 + - *327 + - *328 + - *380 responses: '204': description: Response @@ -53760,9 +54119,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *325 - - *326 - - *378 + - *327 + - *328 + - *380 responses: '204': description: Response @@ -53813,9 +54172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *325 - - *326 - - *378 + - *327 + - *328 + - *380 responses: '204': description: Response @@ -53842,19 +54201,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *325 - - *326 - - *378 - - *379 + - *327 + - *328 - *380 - *381 - *382 - - *17 - - *19 - *383 - - *362 - *384 + - *17 + - *19 - *385 + - *364 + - *386 + - *387 responses: '200': description: Response @@ -53870,9 +54229,9 @@ paths: type: integer workflow_runs: type: array - items: *363 + items: *365 examples: - default: *386 + default: *388 headers: Link: *54 x-github: @@ -53904,9 +54263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *325 - - *326 - - *378 + - *327 + - *328 + - *380 responses: '200': description: Response @@ -53967,8 +54326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *325 - - *326 + - *327 + - *328 - *48 - *17 - *40 @@ -54132,8 +54491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -54170,8 +54529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *325 - - *326 + - *327 + - *328 - name: assignee in: path required: true @@ -54207,8 +54566,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -54320,8 +54679,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *40 - *41 @@ -54378,7 +54737,7 @@ paths: initiator: type: string examples: - default: *387 + default: *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54398,8 +54757,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -54407,7 +54766,7 @@ paths: application/json: schema: type: array - items: &388 + items: &390 title: Autolink reference description: An autolink reference. type: object @@ -54461,8 +54820,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -54501,9 +54860,9 @@ paths: description: response content: application/json: - schema: *388 + schema: *390 examples: - default: &389 + default: &391 value: id: 1 key_prefix: TICKET- @@ -54534,9 +54893,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *325 - - *326 - - &390 + - *327 + - *328 + - &392 name: autolink_id description: The unique identifier of the autolink. in: path @@ -54548,9 +54907,9 @@ paths: description: Response content: application/json: - schema: *388 + schema: *390 examples: - default: *389 + default: *391 '404': *6 x-github: githubCloudOnly: false @@ -54570,9 +54929,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *325 - - *326 - - *390 + - *327 + - *328 + - *392 responses: '204': description: Response @@ -54596,8 +54955,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response if Dependabot is enabled @@ -54645,8 +55004,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -54667,8 +55026,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -54688,8 +55047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *325 - - *326 + - *327 + - *328 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -54727,7 +55086,7 @@ paths: - url protected: type: boolean - protection: &392 + protection: &394 title: Branch Protection description: Branch Protection type: object @@ -54769,7 +55128,7 @@ paths: required: - contexts - checks - enforce_admins: &395 + enforce_admins: &397 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -54784,7 +55143,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &397 + required_pull_request_reviews: &399 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -54805,7 +55164,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *179 + items: *181 apps: description: The list of apps with review dismissal access. @@ -54834,7 +55193,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *179 + items: *181 apps: description: The list of apps allowed to bypass pull request requirements. @@ -54860,7 +55219,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &394 + restrictions: &396 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -54923,7 +55282,7 @@ paths: type: string teams: type: array - items: *179 + items: *181 apps: type: array items: @@ -55137,9 +55496,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *325 - - *326 - - &393 + - *327 + - *328 + - &395 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). @@ -55153,14 +55512,14 @@ paths: description: Response content: application/json: - schema: &403 + schema: &405 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &456 + commit: &458 title: Commit description: Commit type: object @@ -55194,7 +55553,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &391 + properties: &393 name: type: string example: '"Chris Wanstrath"' @@ -55209,7 +55568,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *391 + properties: *393 nullable: true message: type: string @@ -55230,7 +55589,7 @@ paths: required: - sha - url - verification: &507 + verification: &509 title: Verification type: object properties: @@ -55300,7 +55659,7 @@ paths: type: integer files: type: array - items: &469 + items: &471 title: Diff Entry description: Diff Entry type: object @@ -55384,7 +55743,7 @@ paths: - self protected: type: boolean - protection: *392 + protection: *394 protection_url: type: string format: uri @@ -55491,7 +55850,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *332 + '301': *334 '404': *6 x-github: githubCloudOnly: false @@ -55513,15 +55872,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *392 + schema: *394 examples: default: value: @@ -55715,9 +56074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -55972,7 +56331,7 @@ paths: url: type: string format: uri - required_status_checks: &400 + required_status_checks: &402 title: Status Check Policy description: Status Check Policy type: object @@ -56048,7 +56407,7 @@ paths: items: *4 teams: type: array - items: *179 + items: *181 apps: type: array items: *5 @@ -56066,7 +56425,7 @@ paths: items: *4 teams: type: array - items: *179 + items: *181 apps: type: array items: *5 @@ -56124,7 +56483,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *394 + restrictions: *396 required_conversation_resolution: type: object properties: @@ -56236,9 +56595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -56263,17 +56622,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: &396 + default: &398 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -56295,17 +56654,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: *396 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56324,9 +56683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -56351,17 +56710,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *397 + schema: *399 examples: - default: &398 + default: &400 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -56457,9 +56816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -56557,9 +56916,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *399 examples: - default: *398 + default: *400 '422': *15 x-github: githubCloudOnly: false @@ -56580,9 +56939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -56609,17 +56968,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: &399 + default: &401 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -56642,17 +57001,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *395 + schema: *397 examples: - default: *399 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -56672,9 +57031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -56699,17 +57058,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *400 + schema: *402 examples: - default: &401 + default: &403 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -56735,9 +57094,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -56789,9 +57148,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *402 examples: - default: *401 + default: *403 '404': *6 '422': *15 x-github: @@ -56813,9 +57172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -56839,9 +57198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response @@ -56875,9 +57234,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -56944,9 +57303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -57010,9 +57369,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: content: application/json: @@ -57078,15 +57437,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response content: application/json: - schema: *394 + schema: *396 examples: default: value: @@ -57177,9 +57536,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '204': description: Response @@ -57202,9 +57561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response @@ -57214,7 +57573,7 @@ paths: type: array items: *5 examples: - default: &402 + default: &404 value: - id: 1 slug: octoapp @@ -57271,9 +57630,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57307,7 +57666,7 @@ paths: type: array items: *5 examples: - default: *402 + default: *404 '422': *15 x-github: githubCloudOnly: false @@ -57328,9 +57687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57364,7 +57723,7 @@ paths: type: array items: *5 examples: - default: *402 + default: *404 '422': *15 x-github: githubCloudOnly: false @@ -57385,9 +57744,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57421,7 +57780,7 @@ paths: type: array items: *5 examples: - default: *402 + default: *404 '422': *15 x-github: githubCloudOnly: false @@ -57443,9 +57802,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response @@ -57453,9 +57812,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 '404': *6 x-github: githubCloudOnly: false @@ -57475,9 +57834,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -57513,9 +57872,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 '422': *15 x-github: githubCloudOnly: false @@ -57536,9 +57895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: false content: @@ -57574,9 +57933,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 '422': *15 x-github: githubCloudOnly: false @@ -57597,9 +57956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: content: application/json: @@ -57634,9 +57993,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 '422': *15 x-github: githubCloudOnly: false @@ -57658,9 +58017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 responses: '200': description: Response @@ -57694,9 +58053,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57754,9 +58113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57814,9 +58173,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57876,9 +58235,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 requestBody: required: true content: @@ -57900,7 +58259,7 @@ paths: description: Response content: application/json: - schema: *403 + schema: *405 examples: default: value: @@ -58016,8 +58375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -58296,7 +58655,7 @@ paths: description: Response content: application/json: - schema: &405 + schema: &407 title: CheckRun description: A check performed on the code of a given code change type: object @@ -58415,8 +58774,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *404 - deployment: &718 + items: *406 + deployment: &720 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -58696,9 +59055,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *325 - - *326 - - &406 + - *327 + - *328 + - &408 name: check_run_id description: The unique identifier of the check run. in: path @@ -58710,9 +59069,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *407 examples: - default: &407 + default: &409 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -58812,9 +59171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *325 - - *326 - - *406 + - *327 + - *328 + - *408 requestBody: required: true content: @@ -59054,9 +59413,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *407 examples: - default: *407 + default: *409 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59076,9 +59435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *325 - - *326 - - *406 + - *327 + - *328 + - *408 - *17 - *19 responses: @@ -59173,9 +59532,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *325 - - *326 - - *406 + - *327 + - *328 + - *408 responses: '201': description: Response @@ -59219,8 +59578,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -59242,7 +59601,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &410 + schema: &412 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -59306,7 +59665,7 @@ paths: nullable: true pull_requests: type: array - items: *404 + items: *406 nullable: true app: title: GitHub app @@ -59328,12 +59687,12 @@ paths: type: string format: date-time nullable: true - head_commit: &744 + head_commit: &746 title: Simple Commit description: A commit. type: object - properties: *408 - required: *409 + properties: *410 + required: *411 latest_check_runs_count: type: integer check_runs_url: @@ -59361,7 +59720,7 @@ paths: - check_runs_url - pull_requests examples: - default: &411 + default: &413 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -59652,9 +60011,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *410 + schema: *412 examples: - default: *411 + default: *413 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59673,8 +60032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -59983,9 +60342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *325 - - *326 - - &412 + - *327 + - *328 + - &414 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -59997,9 +60356,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *412 examples: - default: *411 + default: *413 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60022,17 +60381,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *325 - - *326 - - *412 - - &462 + - *327 + - *328 + - *414 + - &464 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &463 + - &465 name: status description: Returns check runs with the specified `status`. in: query @@ -60071,9 +60430,9 @@ paths: type: integer check_runs: type: array - items: *405 + items: *407 examples: - default: &464 + default: &466 value: total_count: 1 check_runs: @@ -60175,9 +60534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *325 - - *326 - - *412 + - *327 + - *328 + - *414 responses: '201': description: Response @@ -60210,21 +60569,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *325 - - *326 - - *413 - - *414 + - *327 + - *328 + - *415 + - *416 - *19 - *17 - - &431 + - &433 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: *415 - - &432 + schema: *417 + - &434 name: pr description: The number of the pull request for the results you want to list. in: query @@ -60249,13 +60608,13 @@ paths: be returned. in: query required: false - schema: *416 + schema: *418 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *417 + schema: *419 responses: '200': description: Response @@ -60266,14 +60625,14 @@ paths: items: type: object properties: - number: *159 - created_at: *160 - updated_at: *161 - url: *162 - html_url: *163 - instances_url: *418 - state: *168 - fixed_at: *164 + number: *161 + created_at: *162 + updated_at: *163 + url: *164 + html_url: *165 + instances_url: *420 + state: *170 + fixed_at: *166 dismissed_by: title: Simple User description: A GitHub user. @@ -60281,12 +60640,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *165 - dismissed_reason: *419 - dismissed_comment: *420 - rule: *421 - tool: *422 - most_recent_instance: *423 + dismissed_at: *167 + dismissed_reason: *421 + dismissed_comment: *422 + rule: *423 + tool: *424 + most_recent_instance: *425 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -60412,7 +60771,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &424 + '403': &426 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -60439,9 +60798,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *325 - - *326 - - &425 + - *327 + - *328 + - &427 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -60449,23 +60808,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *159 + schema: *161 responses: '200': description: Response content: application/json: - schema: &426 + schema: &428 type: object properties: - number: *159 - created_at: *160 - updated_at: *161 - url: *162 - html_url: *163 - instances_url: *418 - state: *168 - fixed_at: *164 + number: *161 + created_at: *162 + updated_at: *163 + url: *164 + html_url: *165 + instances_url: *420 + state: *170 + fixed_at: *166 dismissed_by: title: Simple User description: A GitHub user. @@ -60473,9 +60832,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *165 - dismissed_reason: *419 - dismissed_comment: *420 + dismissed_at: *167 + dismissed_reason: *421 + dismissed_comment: *422 rule: type: object properties: @@ -60529,8 +60888,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *422 - most_recent_instance: *423 + tool: *424 + most_recent_instance: *425 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -60629,7 +60988,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -60649,9 +61008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 requestBody: required: true content: @@ -60666,8 +61025,8 @@ paths: enum: - open - dismissed - dismissed_reason: *419 - dismissed_comment: *420 + dismissed_reason: *421 + dismissed_comment: *422 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -60686,7 +61045,7 @@ paths: description: Response content: application/json: - schema: *426 + schema: *428 examples: default: value: @@ -60762,7 +61121,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &430 + '403': &432 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -60789,15 +61148,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: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 responses: '200': description: Response content: application/json: - schema: &427 + schema: &429 type: object properties: status: @@ -60823,13 +61182,13 @@ paths: - description - started_at examples: - default: &428 + default: &430 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &429 + '400': &431 description: Bad Request content: application/json: @@ -60840,7 +61199,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': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -60865,29 +61224,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: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 responses: '200': description: OK content: application/json: - schema: *427 + schema: *429 examples: - default: *428 + default: *430 '202': description: Accepted content: application/json: - schema: *427 + schema: *429 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *429 + '400': *431 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -60919,9 +61278,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: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 requestBody: required: false content: @@ -60966,8 +61325,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *429 - '403': *430 + '400': *431 + '403': *432 '404': *6 '422': description: Unprocessable Entity @@ -60991,13 +61350,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 - *19 - *17 - - *431 - - *432 + - *433 + - *434 responses: '200': description: Response @@ -61005,7 +61364,7 @@ paths: application/json: schema: type: array - items: *423 + items: *425 examples: default: value: @@ -61044,7 +61403,7 @@ paths: end_column: 50 classifications: - source - '403': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -61078,25 +61437,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *325 - - *326 - - *413 - - *414 + - *327 + - *328 + - *415 + - *416 - *19 - *17 - - *432 + - *434 - 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: *415 + schema: *417 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &435 + schema: &437 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -61117,23 +61476,23 @@ paths: application/json: schema: type: array - items: &436 + items: &438 type: object properties: - ref: *415 - commit_sha: &444 + ref: *417 + commit_sha: &446 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: *433 + analysis_key: *435 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *434 + category: *436 error: type: string example: error reading field xyz @@ -61157,8 +61516,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *435 - tool: *422 + sarif_id: *437 + tool: *424 deletable: type: boolean warning: @@ -61219,7 +61578,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -61255,8 +61614,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: - - *325 - - *326 + - *327 + - *328 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -61269,7 +61628,7 @@ paths: description: Response content: application/json: - schema: *436 + schema: *438 examples: response: summary: application/json response @@ -61323,7 +61682,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *424 + '403': *426 '404': *6 '422': description: Response if analysis could not be processed @@ -61410,8 +61769,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: - - *325 - - *326 + - *327 + - *328 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -61464,7 +61823,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': *430 + '403': *432 '404': *6 '503': *104 x-github: @@ -61486,8 +61845,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -61495,7 +61854,7 @@ paths: application/json: schema: type: array - items: &437 + items: &439 title: CodeQL Database description: A CodeQL database. type: object @@ -61606,7 +61965,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': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -61635,8 +61994,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - name: language in: path description: The language of the CodeQL database. @@ -61648,7 +62007,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *439 examples: default: value: @@ -61680,9 +62039,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': &471 + '302': &473 description: Found - '403': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -61704,8 +62063,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *325 - - *326 + - *327 + - *328 - name: language in: path description: The language of the CodeQL database. @@ -61715,7 +62074,7 @@ paths: responses: '204': description: Response - '403': *430 + '403': *432 '404': *6 '503': *104 x-github: @@ -61743,8 +62102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -61753,10 +62112,11 @@ paths: type: object additionalProperties: false properties: - language: &438 + language: &440 type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -61832,7 +62192,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &442 + schema: &444 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -61842,7 +62202,7 @@ paths: description: The ID of the variant analysis. controller_repo: *53 actor: *4 - query_language: *438 + query_language: *440 query_pack_url: type: string description: The download url for the query pack. @@ -61889,7 +62249,7 @@ paths: items: type: object properties: - repository: &439 + repository: &441 title: Repository Identifier description: Repository Identifier type: object @@ -61925,7 +62285,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &443 + analysis_status: &445 type: string description: The new status of the CodeQL variant analysis repository task. @@ -61957,7 +62317,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &440 + access_mismatch_repos: &442 type: object properties: repository_count: @@ -61971,7 +62331,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: *439 + items: *441 required: - repository_count - repositories @@ -61993,8 +62353,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *440 - over_limit_repos: *440 + no_codeql_db_repos: *442 + over_limit_repos: *442 required: - access_mismatch_repos - not_found_repos @@ -62010,7 +62370,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &441 + value: &443 summary: Default response value: id: 1 @@ -62162,10 +62522,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *441 + value: *443 repository_lists: summary: Response for a successful variant analysis submission - value: *441 + value: *443 '404': *6 '422': description: Unable to process variant analysis submission @@ -62193,8 +62553,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: - - *325 - - *326 + - *327 + - *328 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -62206,9 +62566,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *444 examples: - default: *441 + default: *443 '404': *6 '503': *104 x-github: @@ -62231,7 +62591,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: - - *325 + - *327 - name: repo in: path description: The name of the controller repository. @@ -62266,7 +62626,7 @@ paths: type: object properties: repository: *53 - analysis_status: *443 + analysis_status: *445 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -62391,8 +62751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -62477,7 +62837,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *424 + '403': *426 '404': *6 '503': *104 x-github: @@ -62498,8 +62858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -62591,7 +62951,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *430 + '403': *432 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -62662,8 +63022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -62671,7 +63031,7 @@ paths: schema: type: object properties: - commit_sha: *444 + commit_sha: *446 ref: type: string description: |- @@ -62729,7 +63089,7 @@ paths: schema: type: object properties: - id: *435 + id: *437 url: type: string description: The REST API URL for checking the status of the upload. @@ -62743,7 +63103,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': *430 + '403': *432 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -62766,8 +63126,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *325 - - *326 + - *327 + - *328 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -62813,7 +63173,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': *424 + '403': *426 '404': description: Not Found if the sarif id does not match any upload '503': *104 @@ -62838,8 +63198,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -62895,7 +63255,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': *173 + '204': *175 '304': *37 '403': *29 '404': *6 @@ -62920,8 +63280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *325 - - *326 + - *327 + - *328 - 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 @@ -63041,8 +63401,8 @@ paths: parameters: - *17 - *19 - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -63058,7 +63418,7 @@ paths: type: integer codespaces: type: array - items: *222 + items: *224 examples: default: value: @@ -63356,8 +63716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -63420,17 +63780,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '400': *14 '401': *25 '403': *29 @@ -63459,8 +63819,8 @@ paths: parameters: - *17 - *19 - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -63524,8 +63884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -63560,14 +63920,14 @@ paths: type: integer machines: type: array - items: &667 + items: &669 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *446 - required: *447 + properties: *448 + required: *449 examples: - default: &668 + default: &670 value: total_count: 2 machines: @@ -63607,8 +63967,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *325 - - *326 + - *327 + - *328 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -63692,8 +64052,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: - - *325 - - *326 + - *327 + - *328 - 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 @@ -63759,8 +64119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -63778,7 +64138,7 @@ paths: type: integer secrets: type: array - items: &451 + items: &453 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -63798,7 +64158,7 @@ paths: - created_at - updated_at examples: - default: *448 + default: *450 headers: Link: *54 x-github: @@ -63821,16 +64181,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *449 + schema: *451 examples: - default: *450 + default: *452 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -63850,17 +64210,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '200': description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *452 + default: *454 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63880,8 +64240,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 requestBody: required: true @@ -63934,8 +64294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '204': @@ -63964,8 +64324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *325 - - *326 + - *327 + - *328 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -64007,7 +64367,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &453 + properties: &455 login: type: string example: octocat @@ -64100,7 +64460,7 @@ paths: user_view_type: type: string example: public - required: &454 + required: &456 - avatar_url - events_url - followers_url @@ -64174,8 +64534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *325 - - *326 + - *327 + - *328 - *59 responses: '204': @@ -64222,8 +64582,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *325 - - *326 + - *327 + - *328 - *59 requestBody: required: false @@ -64250,7 +64610,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &520 + schema: &522 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -64479,8 +64839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *325 - - *326 + - *327 + - *328 - *59 responses: '204': @@ -64512,8 +64872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *325 - - *326 + - *327 + - *328 - *59 responses: '200': @@ -64534,8 +64894,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *453 - required: *454 + properties: *455 + required: *456 nullable: true required: - permission @@ -64590,8 +64950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -64601,7 +64961,7 @@ paths: application/json: schema: type: array - items: &455 + items: &457 title: Commit Comment description: Commit Comment type: object @@ -64659,7 +65019,7 @@ paths: - created_at - updated_at examples: - default: &458 + default: &460 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -64718,17 +65078,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '200': description: Response content: application/json: - schema: *455 + schema: *457 examples: - default: &459 + default: &461 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -64785,8 +65145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -64809,7 +65169,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: default: value: @@ -64860,8 +65220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '204': @@ -64883,8 +65243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -64911,9 +65271,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 '404': *6 @@ -64934,8 +65294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -64968,16 +65328,16 @@ paths: description: Reaction exists content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Reaction created content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -64999,10 +65359,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *325 - - *326 + - *327 + - *328 - *81 - - *321 + - *323 responses: '204': description: Response @@ -65051,8 +65411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *325 - - *326 + - *327 + - *328 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -65108,9 +65468,9 @@ paths: application/json: schema: type: array - items: *456 + items: *458 examples: - default: &573 + default: &575 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -65204,9 +65564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *325 - - *326 - - &457 + - *327 + - *328 + - &459 name: commit_sha description: The SHA of the commit. in: path @@ -65278,9 +65638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *325 - - *326 - - *457 + - *327 + - *328 + - *459 - *17 - *19 responses: @@ -65290,9 +65650,9 @@ paths: application/json: schema: type: array - items: *455 + items: *457 examples: - default: *458 + default: *460 headers: Link: *54 x-github: @@ -65320,9 +65680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *325 - - *326 - - *457 + - *327 + - *328 + - *459 requestBody: required: true content: @@ -65357,9 +65717,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *457 examples: - default: *459 + default: *461 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -65387,9 +65747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *325 - - *326 - - *457 + - *327 + - *328 + - *459 - *17 - *19 responses: @@ -65399,9 +65759,9 @@ paths: application/json: schema: type: array - items: *460 + items: *462 examples: - default: &565 + default: &567 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -65938,11 +66298,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *325 - - *326 + - *327 + - *328 - *19 - *17 - - &461 + - &463 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)" @@ -65957,9 +66317,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *458 examples: - default: &550 + default: &552 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66072,11 +66432,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *325 - - *326 - - *461 - - *462 + - *327 + - *328 - *463 + - *464 + - *465 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -66110,9 +66470,9 @@ paths: type: integer check_runs: type: array - items: *405 + items: *407 examples: - default: *464 + default: *466 headers: Link: *54 x-github: @@ -66137,9 +66497,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *325 - - *326 - - *461 + - *327 + - *328 + - *463 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -66147,7 +66507,7 @@ paths: schema: type: integer example: 1 - - *462 + - *464 - *17 - *19 responses: @@ -66165,7 +66525,7 @@ paths: type: integer check_suites: type: array - items: *410 + items: *412 examples: default: value: @@ -66365,9 +66725,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *325 - - *326 - - *461 + - *327 + - *328 + - *463 - *17 - *19 responses: @@ -66565,9 +66925,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *325 - - *326 - - *461 + - *327 + - *328 + - *463 - *17 - *19 responses: @@ -66577,7 +66937,7 @@ paths: application/json: schema: type: array - items: &638 + items: &640 title: Status description: The status of a commit. type: object @@ -66658,7 +67018,7 @@ paths: site_admin: false headers: Link: *54 - '301': *332 + '301': *334 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66686,8 +67046,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -66716,20 +67076,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *465 - required: *466 + properties: *467 + required: *468 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &467 + properties: &469 url: type: string format: uri html_url: type: string format: uri - required: &468 + required: &470 - url - html_url nullable: true @@ -66743,26 +67103,26 @@ paths: contributing: title: Community Health File type: object - properties: *467 - required: *468 + properties: *469 + required: *470 nullable: true readme: title: Community Health File type: object - properties: *467 - required: *468 + properties: *469 + required: *470 nullable: true issue_template: title: Community Health File type: object - properties: *467 - required: *468 + properties: *469 + required: *470 nullable: true pull_request_template: title: Community Health File type: object - properties: *467 - required: *468 + properties: *469 + required: *470 nullable: true required: - code_of_conduct @@ -66889,8 +67249,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *325 - - *326 + - *327 + - *328 - *19 - *17 - name: basehead @@ -66933,8 +67293,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *456 - merge_base_commit: *456 + base_commit: *458 + merge_base_commit: *458 status: type: string enum: @@ -66954,10 +67314,10 @@ paths: example: 6 commits: type: array - items: *456 + items: *458 files: type: array - items: *469 + items: *471 required: - url - html_url @@ -67243,8 +67603,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *325 - - *326 + - *327 + - *328 - name: path description: path parameter in: path @@ -67387,7 +67747,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &470 + response-if-content-is-a-file: &472 summary: Response if content is a file value: type: file @@ -67519,7 +67879,7 @@ paths: - size - type - url - - &578 + - &580 title: Content File description: Content File type: object @@ -67720,7 +68080,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *470 + response-if-content-is-a-file: *472 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -67789,7 +68149,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *471 + '302': *473 '304': *37 x-github: githubCloudOnly: false @@ -67812,8 +68172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *325 - - *326 + - *327 + - *328 - name: path description: path parameter in: path @@ -67906,7 +68266,7 @@ paths: description: Response content: application/json: - schema: &472 + schema: &474 title: File Commit description: File Commit type: object @@ -68058,7 +68418,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: example-for-creating-a-file: value: @@ -68112,7 +68472,7 @@ paths: schema: oneOf: - *3 - - &502 + - &504 description: Repository rule violation was detected type: object properties: @@ -68133,7 +68493,7 @@ paths: items: type: object properties: - placeholder_id: &630 + placeholder_id: &632 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -68165,8 +68525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *325 - - *326 + - *327 + - *328 - name: path description: path parameter in: path @@ -68227,7 +68587,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: default: value: @@ -68282,8 +68642,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *325 - - *326 + - *327 + - *328 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -68406,22 +68766,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *325 - - *326 - - *180 - - *181 + - *327 + - *328 - *182 - *183 + - *184 + - *185 - 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 - - *184 - - *473 - - *185 - *186 + - *475 + - *187 + - *188 - *48 - name: per_page description: The number of results per page (max 100). For more information, @@ -68440,11 +68800,11 @@ paths: application/json: schema: type: array - items: &476 + items: &478 type: object description: A Dependabot alert. properties: - number: *159 + number: *161 state: type: string description: The state of the Dependabot alert. @@ -68486,13 +68846,13 @@ paths: - unknown - direct - transitive - security_advisory: *474 + security_advisory: *476 security_vulnerability: *52 - url: *162 - html_url: *163 - created_at: *160 - updated_at: *161 - dismissed_at: *165 + url: *164 + html_url: *165 + created_at: *162 + updated_at: *163 + dismissed_at: *167 dismissed_by: title: Simple User description: A GitHub user. @@ -68516,8 +68876,8 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *164 - auto_dismissed_at: *475 + fixed_at: *166 + auto_dismissed_at: *477 required: - number - state @@ -68747,9 +69107,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *325 - - *326 - - &477 + - *327 + - *328 + - &479 name: alert_number in: path description: |- @@ -68758,13 +69118,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *159 + schema: *161 responses: '200': description: Response content: application/json: - schema: *476 + schema: *478 examples: default: value: @@ -68877,9 +69237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *325 - - *326 - - *477 + - *327 + - *328 + - *479 requestBody: required: true content: @@ -68924,7 +69284,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *478 examples: default: value: @@ -69053,8 +69413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -69072,7 +69432,7 @@ paths: type: integer secrets: type: array - items: &480 + items: &482 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -69125,16 +69485,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *478 + schema: *480 examples: - default: *479 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69154,15 +69514,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '200': description: Response content: application/json: - schema: *480 + schema: *482 examples: default: value: @@ -69188,8 +69548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 requestBody: required: true @@ -69242,8 +69602,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *325 - - *326 + - *327 + - *328 - *151 responses: '204': @@ -69266,8 +69626,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: - - *325 - - *326 + - *327 + - *328 - 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 @@ -69427,8 +69787,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -69667,8 +70027,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -69743,7 +70103,7 @@ paths: - version - url additionalProperties: false - metadata: &481 + metadata: &483 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -69776,7 +70136,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *481 + metadata: *483 resolved: type: object description: A collection of resolved package dependencies. @@ -69789,7 +70149,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *481 + metadata: *483 relationship: type: string description: A notation of whether a dependency is requested @@ -69918,8 +70278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *325 - - *326 + - *327 + - *328 - name: sha description: The SHA recorded at creation time. in: query @@ -69959,9 +70319,9 @@ paths: application/json: schema: type: array - items: *482 + items: *484 examples: - default: *483 + default: *485 headers: Link: *54 x-github: @@ -70027,8 +70387,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -70109,7 +70469,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *484 examples: simple-example: summary: Simple example @@ -70182,9 +70542,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *325 - - *326 - - &484 + - *327 + - *328 + - &486 name: deployment_id description: deployment_id parameter in: path @@ -70196,7 +70556,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *484 examples: default: value: @@ -70261,9 +70621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *325 - - *326 - - *484 + - *327 + - *328 + - *486 responses: '204': description: Response @@ -70285,9 +70645,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *325 - - *326 - - *484 + - *327 + - *328 + - *486 - *17 - *19 responses: @@ -70297,7 +70657,7 @@ paths: application/json: schema: type: array - items: &485 + items: &487 title: Deployment Status description: The status of a deployment. type: object @@ -70458,9 +70818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *325 - - *326 - - *484 + - *327 + - *328 + - *486 requestBody: required: true content: @@ -70535,9 +70895,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *487 examples: - default: &486 + default: &488 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -70593,9 +70953,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *325 - - *326 - - *484 + - *327 + - *328 + - *486 - name: status_id in: path required: true @@ -70606,9 +70966,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *487 examples: - default: *486 + default: *488 '404': *6 x-github: githubCloudOnly: false @@ -70633,8 +70993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -70691,8 +71051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -70709,7 +71069,7 @@ paths: type: integer environments: type: array - items: &488 + items: &490 title: Environment description: Details of a deployment environment type: object @@ -70761,7 +71121,7 @@ paths: type: type: string example: wait_timer - wait_timer: &490 + wait_timer: &492 type: integer example: 30 description: The amount of time to delay a job after @@ -70798,11 +71158,11 @@ paths: items: type: object properties: - type: *487 + type: *489 reviewer: anyOf: - *4 - - *179 + - *181 required: - id - node_id @@ -70822,7 +71182,7 @@ paths: - id - node_id - type - deployment_branch_policy: &491 + deployment_branch_policy: &493 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -70938,9 +71298,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *325 - - *326 - - &489 + - *327 + - *328 + - &491 name: environment_name in: path required: true @@ -70953,9 +71313,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *490 examples: - default: &492 + default: &494 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -71039,9 +71399,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 requestBody: required: false content: @@ -71050,7 +71410,7 @@ paths: type: object nullable: true properties: - wait_timer: *490 + wait_timer: *492 prevent_self_review: type: boolean example: false @@ -71067,13 +71427,13 @@ paths: items: type: object properties: - type: *487 + type: *489 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *491 + deployment_branch_policy: *493 additionalProperties: false examples: default: @@ -71093,9 +71453,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *490 examples: - default: *492 + default: *494 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -71119,9 +71479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 responses: '204': description: Default response @@ -71146,9 +71506,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *17 - *19 responses: @@ -71166,7 +71526,7 @@ paths: example: 2 branch_policies: type: array - items: &493 + items: &495 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -71223,9 +71583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 requestBody: required: true content: @@ -71271,9 +71631,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *495 examples: - example-wildcard: &494 + example-wildcard: &496 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -71315,10 +71675,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *325 - - *326 - - *489 - - &495 + - *327 + - *328 + - *491 + - &497 name: branch_policy_id in: path required: true @@ -71330,9 +71690,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *495 examples: - default: *494 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71351,10 +71711,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *325 - - *326 - - *489 - - *495 + - *327 + - *328 + - *491 + - *497 requestBody: required: true content: @@ -71382,9 +71742,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *495 examples: - default: *494 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71403,10 +71763,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *325 - - *326 - - *489 - - *495 + - *327 + - *328 + - *491 + - *497 responses: '204': description: Response @@ -71431,9 +71791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *489 - - *326 - - *325 + - *491 + - *328 + - *327 responses: '200': description: List of deployment protection rules @@ -71449,7 +71809,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &496 + items: &498 title: Deployment protection rule description: Deployment protection rule type: object @@ -71468,7 +71828,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &497 + app: &499 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -71567,9 +71927,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: - - *489 - - *326 - - *325 + - *491 + - *328 + - *327 requestBody: content: application/json: @@ -71590,9 +71950,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *496 + schema: *498 examples: - default: &498 + default: &500 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -71627,9 +71987,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: - - *489 - - *326 - - *325 + - *491 + - *328 + - *327 - *19 - *17 responses: @@ -71648,7 +72008,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *497 + items: *499 examples: default: value: @@ -71683,10 +72043,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *325 - - *326 - - *489 - - &499 + - *327 + - *328 + - *491 + - &501 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -71698,9 +72058,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *498 examples: - default: *498 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71721,10 +72081,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *489 - - *326 - - *325 - - *499 + - *491 + - *328 + - *327 + - *501 responses: '204': description: Response @@ -71750,9 +72110,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *17 - *19 responses: @@ -71770,9 +72130,9 @@ paths: type: integer secrets: type: array - items: *371 + items: *373 examples: - default: *372 + default: *374 headers: Link: *54 x-github: @@ -71797,17 +72157,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 responses: '200': description: Response content: application/json: - schema: *373 + schema: *375 examples: - default: *374 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71829,18 +72189,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *151 responses: '200': description: Response content: application/json: - schema: *371 + schema: *373 examples: - default: *500 + default: *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71862,9 +72222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *151 requestBody: required: true @@ -71922,9 +72282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *151 responses: '204': @@ -71950,10 +72310,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *325 - - *326 - - *489 - - *342 + - *327 + - *328 + - *491 + - *344 - *19 responses: '200': @@ -71970,9 +72330,9 @@ paths: type: integer variables: type: array - items: *375 + items: *377 examples: - default: *376 + default: *378 headers: Link: *54 x-github: @@ -71995,9 +72355,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 requestBody: required: true content: @@ -72049,18 +72409,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *325 - - *326 - - *489 + - *327 + - *328 + - *491 - *154 responses: '200': description: Response content: application/json: - schema: *375 + schema: *377 examples: - default: *501 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72081,10 +72441,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *325 - - *326 + - *327 + - *328 - *154 - - *489 + - *491 requestBody: required: true content: @@ -72126,10 +72486,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *325 - - *326 + - *327 + - *328 - *154 - - *489 + - *491 responses: '204': description: Response @@ -72151,8 +72511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -72220,8 +72580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *325 - - *326 + - *327 + - *328 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -72380,8 +72740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -72413,9 +72773,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *333 + default: *335 '400': *14 '422': *15 '403': *29 @@ -72436,8 +72796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -72497,7 +72857,7 @@ paths: schema: oneOf: - *112 - - *502 + - *504 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72522,8 +72882,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *325 - - *326 + - *327 + - *328 - name: file_sha in: path required: true @@ -72622,8 +72982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -72732,7 +73092,7 @@ paths: description: Response content: application/json: - schema: &503 + schema: &505 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -72946,15 +73306,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *325 - - *326 - - *457 + - *327 + - *328 + - *459 responses: '200': description: Response content: application/json: - schema: *503 + schema: *505 examples: default: value: @@ -73010,9 +73370,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *325 - - *326 - - &504 + - *327 + - *328 + - &506 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -73029,7 +73389,7 @@ paths: application/json: schema: type: array - items: &505 + items: &507 title: Git Reference description: Git references within a repository type: object @@ -73104,17 +73464,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *325 - - *326 - - *504 + - *327 + - *328 + - *506 responses: '200': description: Response content: application/json: - schema: *505 + schema: *507 examples: - default: &506 + default: &508 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -73143,8 +73503,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -73173,9 +73533,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *507 examples: - default: *506 + default: *508 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -73201,9 +73561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *325 - - *326 - - *504 + - *327 + - *328 + - *506 requestBody: required: true content: @@ -73232,9 +73592,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *507 examples: - default: *506 + default: *508 '422': *15 '409': *47 x-github: @@ -73252,9 +73612,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *325 - - *326 - - *504 + - *327 + - *328 + - *506 responses: '204': description: Response @@ -73309,8 +73669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -73377,7 +73737,7 @@ paths: description: Response content: application/json: - schema: &508 + schema: &510 title: Git Tag description: Metadata for a Git tag type: object @@ -73428,7 +73788,7 @@ paths: - sha - type - url - verification: *507 + verification: *509 required: - sha - url @@ -73438,7 +73798,7 @@ paths: - tag - message examples: - default: &509 + default: &511 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -73511,8 +73871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *325 - - *326 + - *327 + - *328 - name: tag_sha in: path required: true @@ -73523,9 +73883,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *510 examples: - default: *509 + default: *511 '404': *6 '409': *47 x-github: @@ -73549,8 +73909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -73623,7 +73983,7 @@ paths: description: Response content: application/json: - schema: &510 + schema: &512 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -73719,8 +74079,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *325 - - *326 + - *327 + - *328 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -73743,7 +74103,7 @@ paths: description: Response content: application/json: - schema: *510 + schema: *512 examples: default-response: summary: Default response @@ -73802,8 +74162,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -73813,7 +74173,7 @@ paths: application/json: schema: type: array - items: &511 + items: &513 title: Webhook description: Webhooks for repositories. type: object @@ -73867,7 +74227,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &752 + last_response: &754 title: Hook Response type: object properties: @@ -73941,8 +74301,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -73994,9 +74354,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: &512 + default: &514 value: type: Repository id: 12345678 @@ -74044,17 +74404,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 responses: '200': description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *512 + default: *514 '404': *6 x-github: githubCloudOnly: false @@ -74074,9 +74434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 requestBody: required: true content: @@ -74121,9 +74481,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *513 examples: - default: *512 + default: *514 '422': *15 '404': *6 x-github: @@ -74144,9 +74504,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 responses: '204': description: Response @@ -74170,9 +74530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 responses: '200': description: Response @@ -74199,9 +74559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 requestBody: required: false content: @@ -74245,11 +74605,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 - *17 - - *195 + - *197 responses: '200': description: Response @@ -74257,9 +74617,9 @@ paths: application/json: schema: type: array - items: *196 + items: *198 examples: - default: *197 + default: *199 '400': *14 '422': *15 x-github: @@ -74278,18 +74638,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 - *16 responses: '200': description: Response content: application/json: - schema: *198 + schema: *200 examples: - default: *199 + default: *201 '400': *14 '422': *15 x-github: @@ -74308,9 +74668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 - *16 responses: '202': *39 @@ -74333,9 +74693,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 responses: '204': description: Response @@ -74360,9 +74720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *325 - - *326 - - *194 + - *327 + - *328 + - *196 responses: '204': description: Response @@ -74385,8 +74745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response if immutable releases are enabled @@ -74432,10 +74792,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *325 - - *326 + - *327 + - *328 responses: - '204': *173 + '204': *175 '409': *47 x-github: githubCloudOnly: false @@ -74453,10 +74813,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *325 - - *326 + - *327 + - *328 responses: - '204': *173 + '204': *175 '409': *47 x-github: githubCloudOnly: false @@ -74511,14 +74871,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: &513 + schema: &515 title: Import description: A repository import from an external source. type: object @@ -74617,7 +74977,7 @@ paths: - html_url - authors_url examples: - default: &516 + default: &518 value: vcs: subversion use_lfs: true @@ -74633,7 +74993,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': &514 + '503': &516 description: Unavailable due to service under maintenance. content: application/json: @@ -74662,8 +75022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -74711,7 +75071,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *515 examples: default: value: @@ -74736,7 +75096,7 @@ paths: type: string '422': *15 '404': *6 - '503': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74764,8 +75124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -74814,7 +75174,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *515 examples: example-1: summary: Example 1 @@ -74862,7 +75222,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': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74885,12 +75245,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response - '503': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74916,9 +75276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *325 - - *326 - - &689 + - *327 + - *328 + - &691 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -74932,7 +75292,7 @@ paths: application/json: schema: type: array - items: &515 + items: &517 title: Porter Author description: Porter Author type: object @@ -74986,7 +75346,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': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75011,8 +75371,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *325 - - *326 + - *327 + - *328 - name: author_id in: path required: true @@ -75042,7 +75402,7 @@ paths: description: Response content: application/json: - schema: *515 + schema: *517 examples: default: value: @@ -75055,7 +75415,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75079,8 +75439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -75121,7 +75481,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75149,8 +75509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -75177,11 +75537,11 @@ paths: description: Response content: application/json: - schema: *513 + schema: *515 examples: - default: *516 + default: *518 '422': *15 - '503': *514 + '503': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75204,8 +75564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -75213,8 +75573,8 @@ paths: application/json: schema: *22 examples: - default: *517 - '301': *332 + default: *519 + '301': *334 '404': *6 x-github: githubCloudOnly: false @@ -75234,8 +75594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -75243,12 +75603,12 @@ paths: application/json: schema: anyOf: - - *212 + - *214 - type: object properties: {} additionalProperties: false examples: - default: &519 + default: &521 value: limit: collaborators_only origin: repository @@ -75273,13 +75633,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: application/json: - schema: *518 + schema: *520 examples: default: summary: Example request body @@ -75291,9 +75651,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *214 examples: - default: *519 + default: *521 '409': description: Response x-github: @@ -75315,8 +75675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -75339,8 +75699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -75350,9 +75710,9 @@ paths: application/json: schema: type: array - items: *520 + items: *522 examples: - default: &682 + default: &684 value: - id: 1 repository: @@ -75483,9 +75843,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *325 - - *326 - - *216 + - *327 + - *328 + - *218 requestBody: required: false content: @@ -75514,7 +75874,7 @@ paths: description: Response content: application/json: - schema: *520 + schema: *522 examples: default: value: @@ -75645,9 +76005,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *325 - - *326 - - *216 + - *327 + - *328 + - *218 responses: '204': description: Response @@ -75678,8 +76038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *325 - - *326 + - *327 + - *328 - 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 @@ -75727,7 +76087,7 @@ paths: required: false schema: type: string - - *220 + - *222 - name: sort description: What to sort results by. in: query @@ -75752,7 +76112,7 @@ paths: type: array items: *82 examples: - default: &530 + default: &532 value: - id: 1 node_id: MDU6SXNzdWUx @@ -75900,7 +76260,7 @@ paths: state_reason: completed headers: Link: *54 - '301': *332 + '301': *334 '422': *15 '404': *6 x-github: @@ -75929,8 +76289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -76014,7 +76374,7 @@ paths: application/json: schema: *82 examples: - default: &527 + default: &529 value: id: 1 node_id: MDU6SXNzdWUx @@ -76170,7 +76530,7 @@ paths: '422': *15 '503': *104 '404': *6 - '410': *521 + '410': *523 x-github: triggersNotification: true githubCloudOnly: false @@ -76198,8 +76558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *92 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -76220,9 +76580,9 @@ paths: application/json: schema: type: array - items: *522 + items: *524 examples: - default: &529 + default: &531 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -76280,17 +76640,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '200': description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: &523 + default: &525 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -76344,8 +76704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -76368,9 +76728,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: *523 + default: *525 '422': *15 x-github: githubCloudOnly: false @@ -76388,8 +76748,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '204': @@ -76410,8 +76770,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -76438,9 +76798,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 '404': *6 @@ -76461,8 +76821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -76495,16 +76855,16 @@ paths: description: Reaction exists content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Reaction created content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -76526,10 +76886,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *325 - - *326 + - *327 + - *328 - *81 - - *321 + - *323 responses: '204': description: Response @@ -76549,8 +76909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -76560,7 +76920,7 @@ paths: application/json: schema: type: array - items: &526 + items: &528 title: Issue Event description: Issue Event type: object @@ -76603,8 +76963,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *524 - required: *525 + properties: *526 + required: *527 nullable: true label: title: Issue Event Label @@ -76648,7 +77008,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *179 + requested_team: *181 dismissed_review: title: Issue Event Dismissed Review type: object @@ -76911,8 +77271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *325 - - *326 + - *327 + - *328 - name: event_id in: path required: true @@ -76923,7 +77283,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *528 examples: default: value: @@ -77116,7 +77476,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *521 + '410': *523 '403': *29 x-github: githubCloudOnly: false @@ -77150,9 +77510,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *325 - - *326 - - &528 + - *327 + - *328 + - &530 name: issue_number description: The number that identifies the issue. in: path @@ -77166,10 +77526,10 @@ paths: application/json: schema: *82 examples: - default: *527 - '301': *332 + default: *529 + '301': *334 '404': *6 - '410': *521 + '410': *523 '304': *37 x-github: githubCloudOnly: false @@ -77194,9 +77554,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: false content: @@ -77302,13 +77662,13 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 '422': *15 '503': *104 '403': *29 - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77326,9 +77686,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: false content: @@ -77356,7 +77716,7 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77372,9 +77732,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: content: application/json: @@ -77401,7 +77761,7 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77423,9 +77783,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: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - name: assignee in: path required: true @@ -77465,9 +77825,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *72 - *17 - *19 @@ -77478,13 +77838,13 @@ paths: application/json: schema: type: array - items: *522 + items: *524 examples: - default: *529 + default: *531 headers: Link: *54 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77513,9 +77873,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -77537,16 +77897,16 @@ paths: description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: *523 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *521 + '410': *523 '422': *15 '404': *6 x-github: @@ -77574,9 +77934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -77588,12 +77948,12 @@ paths: type: array items: *82 examples: - default: *530 + default: *532 headers: Link: *54 - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77621,9 +77981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -77647,15 +78007,15 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *332 + '301': *334 '403': *29 - '410': *521 + '410': *523 '422': *15 '404': *6 x-github: @@ -77686,9 +78046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -77702,13 +78062,13 @@ paths: application/json: schema: *82 examples: - default: *527 - '301': *332 + default: *529 + '301': *334 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *521 + '410': *523 x-github: triggersNotification: true githubCloudOnly: false @@ -77734,9 +78094,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -77748,12 +78108,12 @@ paths: type: array items: *82 examples: - default: *530 + default: *532 headers: Link: *54 - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77770,9 +78130,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -77786,7 +78146,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &533 + - &535 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -77840,7 +78200,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &536 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -77976,7 +78336,7 @@ paths: - performed_via_github_app - assignee - assigner - - &535 + - &537 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -78027,7 +78387,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &538 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -78078,7 +78438,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &539 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -78132,7 +78492,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &540 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -78166,7 +78526,7 @@ paths: properties: *67 required: *68 review_requester: *4 - requested_team: *179 + requested_team: *181 requested_reviewer: *4 required: - review_requester @@ -78179,7 +78539,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &541 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -78213,7 +78573,7 @@ paths: properties: *67 required: *68 review_requester: *4 - requested_team: *179 + requested_team: *181 requested_reviewer: *4 required: - review_requester @@ -78226,7 +78586,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &542 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -78286,7 +78646,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &543 title: Locked Issue Event description: Locked Issue Event type: object @@ -78334,7 +78694,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &544 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -78400,7 +78760,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &543 + - &545 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -78466,7 +78826,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &544 + - &546 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -78532,7 +78892,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &545 + - &547 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -78623,7 +78983,7 @@ paths: color: red headers: Link: *54 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78640,9 +79000,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -78652,7 +79012,7 @@ paths: application/json: schema: type: array - items: &531 + items: &533 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -78699,7 +79059,7 @@ paths: - color - default examples: - default: &532 + default: &534 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -78717,9 +79077,9 @@ paths: default: false headers: Link: *54 - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78736,9 +79096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: false content: @@ -78797,12 +79157,12 @@ paths: application/json: schema: type: array - items: *531 + items: *533 examples: - default: *532 - '301': *332 + default: *534 + '301': *334 '404': *6 - '410': *521 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -78819,9 +79179,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: false content: @@ -78881,12 +79241,12 @@ paths: application/json: schema: type: array - items: *531 + items: *533 examples: - default: *532 - '301': *332 + default: *534 + '301': *334 '404': *6 - '410': *521 + '410': *523 '422': *15 x-github: githubCloudOnly: false @@ -78903,15 +79263,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 responses: '204': description: Response - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78930,9 +79290,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - name: name in: path required: true @@ -78945,7 +79305,7 @@ paths: application/json: schema: type: array - items: *531 + items: *533 examples: default: value: @@ -78956,9 +79316,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *332 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78978,9 +79338,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: false content: @@ -79008,7 +79368,7 @@ paths: '204': description: Response '403': *29 - '410': *521 + '410': *523 '404': *6 '422': *15 x-github: @@ -79026,9 +79386,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 responses: '204': description: Response @@ -79058,9 +79418,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 responses: '200': description: Response @@ -79068,10 +79428,10 @@ paths: application/json: schema: *82 examples: - default: *527 - '301': *332 + default: *529 + '301': *334 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79088,9 +79448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - 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. @@ -79116,13 +79476,13 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79140,9 +79500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -79174,16 +79534,16 @@ paths: description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -79205,10 +79565,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *325 - - *326 - - *528 - - *321 + - *327 + - *328 + - *530 + - *323 responses: '204': description: Response @@ -79237,9 +79597,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -79263,7 +79623,7 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -79296,9 +79656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -79310,11 +79670,11 @@ paths: type: array items: *82 examples: - default: *530 + default: *532 headers: Link: *54 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79342,9 +79702,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -79373,14 +79733,14 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *521 + '410': *523 '422': *15 '404': *6 x-github: @@ -79400,9 +79760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 requestBody: required: true content: @@ -79435,7 +79795,7 @@ paths: application/json: schema: *82 examples: - default: *527 + default: *529 '403': *29 '404': *6 '422': *7 @@ -79457,9 +79817,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *325 - - *326 - - *528 + - *327 + - *328 + - *530 - *17 - *19 responses: @@ -79474,8 +79834,6 @@ paths: description: Timeline Event type: object anyOf: - - *533 - - *534 - *535 - *536 - *537 @@ -79487,6 +79845,8 @@ paths: - *543 - *544 - *545 + - *546 + - *547 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -79795,7 +80155,7 @@ paths: type: string comments: type: array - items: &567 + items: &569 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -80004,7 +80364,7 @@ paths: type: string comments: type: array - items: *455 + items: *457 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -80293,7 +80653,7 @@ paths: headers: Link: *54 '404': *6 - '410': *521 + '410': *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80310,8 +80670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -80321,7 +80681,7 @@ paths: application/json: schema: type: array - items: &546 + items: &548 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -80387,8 +80747,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -80424,9 +80784,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: &547 + default: &549 value: id: 1 key: ssh-rsa AAA... @@ -80460,9 +80820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *325 - - *326 - - &548 + - *327 + - *328 + - &550 name: key_id description: The unique identifier of the key. in: path @@ -80474,9 +80834,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *548 examples: - default: *547 + default: *549 '404': *6 x-github: githubCloudOnly: false @@ -80494,9 +80854,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *325 - - *326 - - *548 + - *327 + - *328 + - *550 responses: '204': description: Response @@ -80516,8 +80876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -80527,9 +80887,9 @@ paths: application/json: schema: type: array - items: *531 + items: *533 examples: - default: *532 + default: *534 headers: Link: *54 '404': *6 @@ -80550,8 +80910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -80587,9 +80947,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: &549 + default: &551 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80621,8 +80981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *325 - - *326 + - *327 + - *328 - name: name in: path required: true @@ -80633,9 +80993,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: *549 + default: *551 '404': *6 x-github: githubCloudOnly: false @@ -80652,8 +81012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *325 - - *326 + - *327 + - *328 - name: name in: path required: true @@ -80692,7 +81052,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: default: value: @@ -80718,8 +81078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *325 - - *326 + - *327 + - *328 - name: name in: path required: true @@ -80745,8 +81105,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -80785,9 +81145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *325 - - *326 - - *431 + - *327 + - *328 + - *433 responses: '200': description: Response @@ -80932,8 +81292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -80998,8 +81358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -81033,9 +81393,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *456 + schema: *458 examples: - default: *550 + default: *552 '204': description: Response when already merged '404': @@ -81060,8 +81420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *325 - - *326 + - *327 + - *328 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -81102,12 +81462,12 @@ paths: application/json: schema: type: array - items: &551 + items: &553 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *254 - required: *255 + properties: *256 + required: *257 examples: default: value: @@ -81163,8 +81523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -81204,9 +81564,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *553 examples: - default: &552 + default: &554 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -81265,9 +81625,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *325 - - *326 - - &553 + - *327 + - *328 + - &555 name: milestone_number description: The number that identifies the milestone. in: path @@ -81279,9 +81639,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *553 examples: - default: *552 + default: *554 '404': *6 x-github: githubCloudOnly: false @@ -81298,9 +81658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *325 - - *326 - - *553 + - *327 + - *328 + - *555 requestBody: required: false content: @@ -81338,9 +81698,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *553 examples: - default: *552 + default: *554 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81356,9 +81716,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *325 - - *326 - - *553 + - *327 + - *328 + - *555 responses: '204': description: Response @@ -81379,9 +81739,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *325 - - *326 - - *553 + - *327 + - *328 + - *555 - *17 - *19 responses: @@ -81391,9 +81751,9 @@ paths: application/json: schema: type: array - items: *531 + items: *533 examples: - default: *532 + default: *534 headers: Link: *54 x-github: @@ -81412,12 +81772,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *325 - - *326 - - *554 - - *555 - - *72 + - *327 + - *328 - *556 + - *557 + - *72 + - *558 - *17 - *19 responses: @@ -81429,7 +81789,7 @@ paths: type: array items: *95 examples: - default: *557 + default: *559 headers: Link: *54 x-github: @@ -81453,8 +81813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -81512,14 +81872,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: &558 + schema: &560 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -81644,7 +82004,7 @@ paths: - custom_404 - public examples: - default: &559 + default: &561 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -81685,8 +82045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -81740,9 +82100,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *560 examples: - default: *559 + default: *561 '422': *15 '409': *47 x-github: @@ -81765,8 +82125,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -81865,8 +82225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -81892,8 +82252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -81903,7 +82263,7 @@ paths: application/json: schema: type: array - items: &560 + items: &562 title: Page Build description: Page Build type: object @@ -81997,8 +82357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *325 - - *326 + - *327 + - *328 responses: '201': description: Response @@ -82043,16 +82403,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *560 + schema: *562 examples: - default: &561 + default: &563 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -82100,8 +82460,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *325 - - *326 + - *327 + - *328 - name: build_id in: path required: true @@ -82112,9 +82472,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *562 examples: - default: *561 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82134,8 +82494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -82240,9 +82600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *325 - - *326 - - &562 + - *327 + - *328 + - &564 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -82300,11 +82660,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *325 - - *326 - - *562 + - *327 + - *328 + - *564 responses: - '204': *173 + '204': *175 '404': *6 x-github: githubCloudOnly: false @@ -82329,8 +82689,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -82588,8 +82948,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: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Private vulnerability reporting status @@ -82626,10 +82986,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: - '204': *173 + '204': *175 '422': *14 x-github: githubCloudOnly: false @@ -82648,10 +83008,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: - '204': *173 + '204': *175 '422': *14 x-github: githubCloudOnly: false @@ -82671,8 +83031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -82682,7 +83042,7 @@ paths: type: array items: *102 examples: - default: *563 + default: *565 '403': *29 '404': *6 x-github: @@ -82704,8 +83064,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -82721,7 +83081,7 @@ paths: required: - properties examples: - default: *564 + default: *566 responses: '204': description: No Content when custom property values are successfully created @@ -82759,8 +83119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *325 - - *326 + - *327 + - *328 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -82820,9 +83180,9 @@ paths: application/json: schema: type: array - items: *460 + items: *462 examples: - default: *565 + default: *567 headers: Link: *54 '304': *37 @@ -82854,8 +83214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -82920,7 +83280,7 @@ paths: description: Response content: application/json: - schema: &569 + schema: &571 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -83031,8 +83391,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *254 - required: *255 + properties: *256 + required: *257 nullable: true active_lock_reason: type: string @@ -83077,7 +83437,7 @@ paths: nullable: true requested_teams: type: array - items: *303 + items: *305 nullable: true head: type: object @@ -83116,14 +83476,14 @@ paths: _links: type: object properties: - comments: *256 - commits: *256 - statuses: *256 - html: *256 - issue: *256 - review_comments: *256 - review_comment: *256 - self: *256 + comments: *258 + commits: *258 + statuses: *258 + html: *258 + issue: *258 + review_comments: *258 + review_comment: *258 + self: *258 required: - comments - commits @@ -83134,7 +83494,7 @@ paths: - review_comment - self author_association: *69 - auto_merge: *566 + auto_merge: *568 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -83226,7 +83586,7 @@ paths: - merged_by - review_comments examples: - default: &570 + default: &572 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -83753,8 +84113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *325 - - *326 + - *327 + - *328 - name: sort in: query required: false @@ -83783,9 +84143,9 @@ paths: application/json: schema: type: array - items: *567 + items: *569 examples: - default: &572 + default: &574 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -83862,17 +84222,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '200': description: Response content: application/json: - schema: *567 + schema: *569 examples: - default: &568 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -83947,8 +84307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -83971,9 +84331,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *569 examples: - default: *568 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83989,8 +84349,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *325 - - *326 + - *327 + - *328 - *81 responses: '204': @@ -84012,8 +84372,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -84040,9 +84400,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 '404': *6 @@ -84063,8 +84423,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *325 - - *326 + - *327 + - *328 - *81 requestBody: required: true @@ -84097,16 +84457,16 @@ paths: description: Reaction exists content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Reaction created content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -84128,10 +84488,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *325 - - *326 + - *327 + - *328 - *81 - - *321 + - *323 responses: '204': description: Response @@ -84174,9 +84534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *325 - - *326 - - &571 + - *327 + - *328 + - &573 name: pull_number description: The number that identifies the pull request. in: path @@ -84189,9 +84549,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *569 + schema: *571 examples: - default: *570 + default: *572 '304': *37 '404': *6 '406': @@ -84226,9 +84586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: false content: @@ -84270,9 +84630,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *571 examples: - default: *570 + default: *572 '422': *15 '403': *29 x-github: @@ -84294,9 +84654,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: true content: @@ -84356,17 +84716,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '401': *25 '403': *29 '404': *6 @@ -84396,9 +84756,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 - *92 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -84419,9 +84779,9 @@ paths: application/json: schema: type: array - items: *567 + items: *569 examples: - default: *572 + default: *574 headers: Link: *54 x-github: @@ -84454,9 +84814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: true content: @@ -84561,7 +84921,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *569 examples: example-for-a-multi-line-comment: value: @@ -84649,9 +85009,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 - *81 requestBody: required: true @@ -84674,7 +85034,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *569 examples: default: value: @@ -84760,9 +85120,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 - *17 - *19 responses: @@ -84772,9 +85132,9 @@ paths: application/json: schema: type: array - items: *456 + items: *458 examples: - default: *573 + default: *575 headers: Link: *54 x-github: @@ -84804,9 +85164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 - *17 - *19 responses: @@ -84816,7 +85176,7 @@ paths: application/json: schema: type: array - items: *469 + items: *471 examples: default: value: @@ -84854,9 +85214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 responses: '204': description: Response if pull request has been merged @@ -84879,9 +85239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: false content: @@ -84992,9 +85352,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 responses: '200': description: Response @@ -85010,7 +85370,7 @@ paths: items: *4 teams: type: array - items: *179 + items: *181 required: - users - teams @@ -85069,9 +85429,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: false content: @@ -85108,7 +85468,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *462 examples: default: value: @@ -85644,9 +86004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: true content: @@ -85680,7 +86040,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *462 examples: default: value: @@ -86185,9 +86545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 - *17 - *19 responses: @@ -86197,7 +86557,7 @@ paths: application/json: schema: type: array - items: &574 + items: &576 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -86348,9 +86708,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: false content: @@ -86436,9 +86796,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: - default: &576 + default: &578 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -86501,10 +86861,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 - - &575 + - *327 + - *328 + - *573 + - &577 name: review_id description: The unique identifier of the review. in: path @@ -86516,9 +86876,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: - default: &577 + default: &579 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -86577,10 +86937,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 - - *575 + - *327 + - *328 + - *573 + - *577 requestBody: required: true content: @@ -86603,7 +86963,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: default: value: @@ -86665,18 +87025,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 - - *575 + - *327 + - *328 + - *573 + - *577 responses: '200': description: Response content: application/json: - schema: *574 + schema: *576 examples: - default: *576 + default: *578 '422': *7 '404': *6 x-github: @@ -86703,10 +87063,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *325 - - *326 - - *571 - - *575 + - *327 + - *328 + - *573 + - *577 - *17 - *19 responses: @@ -86789,9 +87149,9 @@ paths: _links: type: object properties: - self: *256 - html: *256 - pull_request: *256 + self: *258 + html: *258 + pull_request: *258 required: - self - html @@ -86941,10 +87301,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 - - *575 + - *327 + - *328 + - *573 + - *577 requestBody: required: true content: @@ -86972,7 +87332,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: default: value: @@ -87035,10 +87395,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *325 - - *326 - - *571 - - *575 + - *327 + - *328 + - *573 + - *577 requestBody: required: true content: @@ -87073,9 +87433,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *576 examples: - default: *577 + default: *579 '404': *6 '422': *7 '403': *29 @@ -87097,9 +87457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *325 - - *326 - - *571 + - *327 + - *328 + - *573 requestBody: required: false content: @@ -87162,8 +87522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *325 - - *326 + - *327 + - *328 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -87176,9 +87536,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *580 examples: - default: &579 + default: &581 value: type: file encoding: base64 @@ -87220,8 +87580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *325 - - *326 + - *327 + - *328 - name: dir description: The alternate path to look for a README file in: path @@ -87241,9 +87601,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *580 examples: - default: *579 + default: *581 '404': *6 '422': *15 x-github: @@ -87265,8 +87625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -87276,7 +87636,7 @@ paths: application/json: schema: type: array - items: &580 + items: &582 title: Release description: A release. type: object @@ -87347,7 +87707,7 @@ paths: author: *4 assets: type: array - items: &581 + items: &583 title: Release Asset description: Data related to a release. type: object @@ -87534,8 +87894,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -87611,9 +87971,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: &584 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -87718,9 +88078,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *325 - - *326 - - &582 + - *327 + - *328 + - &584 name: asset_id description: The unique identifier of the asset. in: path @@ -87732,9 +88092,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *583 examples: - default: &583 + default: &585 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 @@ -87769,7 +88129,7 @@ paths: type: User site_admin: false '404': *6 - '302': *471 + '302': *473 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87785,9 +88145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *325 - - *326 - - *582 + - *327 + - *328 + - *584 requestBody: required: false content: @@ -87815,9 +88175,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *583 examples: - default: *583 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87833,9 +88193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *325 - - *326 - - *582 + - *327 + - *328 + - *584 responses: '204': description: Response @@ -87859,8 +88219,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -87945,16 +88305,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *584 + default: *586 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87971,8 +88331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *325 - - *326 + - *327 + - *328 - name: tag description: tag parameter in: path @@ -87985,9 +88345,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *584 + default: *586 '404': *6 x-github: githubCloudOnly: false @@ -88009,9 +88369,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *325 - - *326 - - &585 + - *327 + - *328 + - &587 name: release_id description: The unique identifier of the release. in: path @@ -88025,9 +88385,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: *580 + schema: *582 examples: - default: *584 + default: *586 '401': description: Unauthorized x-github: @@ -88045,9 +88405,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 requestBody: required: false content: @@ -88111,9 +88471,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *584 + default: *586 '404': description: Not Found if the discussion category name is invalid content: @@ -88134,9 +88494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 responses: '204': description: Response @@ -88156,9 +88516,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 - *17 - *19 responses: @@ -88168,7 +88528,7 @@ paths: application/json: schema: type: array - items: *581 + items: *583 examples: default: value: @@ -88249,9 +88609,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: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 - name: name in: query required: true @@ -88277,7 +88637,7 @@ paths: description: Response for successful upload content: application/json: - schema: *581 + schema: *583 examples: response-for-successful-upload: value: @@ -88332,9 +88692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 - 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. @@ -88358,9 +88718,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 '404': *6 @@ -88381,9 +88741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *325 - - *326 - - *585 + - *327 + - *328 + - *587 requestBody: required: true content: @@ -88413,16 +88773,16 @@ paths: description: Reaction exists content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '201': description: Reaction created content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -88444,10 +88804,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *325 - - *326 - - *585 - - *321 + - *327 + - *328 + - *587 + - *323 responses: '204': description: Response @@ -88471,9 +88831,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *325 - - *326 - - *393 + - *327 + - *328 + - *395 - *17 - *19 responses: @@ -88489,8 +88849,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *276 - - &586 + - *278 + - &588 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -88509,69 +88869,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *277 - - *586 - - allOf: - - *278 - - *586 - allOf: - *279 - - *586 - - allOf: - - *587 - - *586 + - *588 - allOf: - *280 - - *586 + - *588 - allOf: - *281 - - *586 + - *588 + - allOf: + - *589 + - *588 - allOf: - *282 - - *586 + - *588 - allOf: - *283 - - *586 + - *588 - allOf: - *284 - - *586 + - *588 - allOf: - *285 - - *586 + - *588 - allOf: - *286 - - *586 + - *588 - allOf: - *287 - - *586 + - *588 - allOf: - *288 - - *586 + - *588 - allOf: - *289 - - *586 + - *588 - allOf: - *290 - - *586 + - *588 - allOf: - *291 - - *586 + - *588 - allOf: - *292 - - *586 + - *588 - allOf: - *293 - - *586 + - *588 - allOf: - *294 - - *586 + - *588 - allOf: - *295 - - *586 + - *588 + - allOf: + - *296 + - *588 + - allOf: + - *297 + - *588 - allOf: + - *590 - *588 - - *586 examples: default: value: @@ -88610,8 +88970,8 @@ paths: category: repos subcategory: rules parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 - name: includes_parents @@ -88622,7 +88982,7 @@ paths: schema: type: boolean default: true - - *589 + - *591 responses: '200': description: Response @@ -88630,7 +88990,7 @@ paths: application/json: schema: type: array - items: *296 + items: *298 examples: default: value: @@ -88677,8 +89037,8 @@ paths: category: repos subcategory: rules parameters: - - *325 - - *326 + - *327 + - *328 requestBody: description: Request body required: true @@ -88698,16 +89058,16 @@ paths: - tag - push default: branch - enforcement: *273 + enforcement: *275 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *274 - conditions: *271 + items: *276 + conditions: *273 rules: type: array description: An array of rules within the ruleset. - items: *590 + items: *592 required: - name - enforcement @@ -88738,9 +89098,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: &600 + default: &602 value: id: 42 name: super cool ruleset @@ -88787,12 +89147,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *325 - - *326 - - *591 - - *592 + - *327 + - *328 - *593 - *594 + - *595 + - *596 - *17 - *19 responses: @@ -88800,9 +89160,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *597 examples: - default: *596 + default: *598 '404': *6 '500': *103 x-github: @@ -88823,17 +89183,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *325 - - *326 - - *597 + - *327 + - *328 + - *599 responses: '200': description: Response content: application/json: - schema: *598 + schema: *600 examples: - default: *599 + default: *601 '404': *6 '500': *103 x-github: @@ -88861,8 +89221,8 @@ paths: category: repos subcategory: rules parameters: - - *325 - - *326 + - *327 + - *328 - name: ruleset_id description: The ID of the ruleset. in: path @@ -88882,9 +89242,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *600 + default: *602 '404': *6 '500': *103 put: @@ -88902,8 +89262,8 @@ paths: category: repos subcategory: rules parameters: - - *325 - - *326 + - *327 + - *328 - name: ruleset_id description: The ID of the ruleset. in: path @@ -88928,16 +89288,16 @@ paths: - branch - tag - push - enforcement: *273 + enforcement: *275 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *274 - conditions: *271 + items: *276 + conditions: *273 rules: description: An array of rules within the ruleset. type: array - items: *590 + items: *592 examples: default: value: @@ -88965,9 +89325,9 @@ paths: description: Response content: application/json: - schema: *296 + schema: *298 examples: - default: *600 + default: *602 '404': *6 '500': *103 delete: @@ -88985,8 +89345,8 @@ paths: category: repos subcategory: rules parameters: - - *325 - - *326 + - *327 + - *328 - name: ruleset_id description: The ID of the ruleset. in: path @@ -89009,8 +89369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 - name: ruleset_id @@ -89026,9 +89386,9 @@ paths: application/json: schema: type: array - items: *299 + items: *301 examples: - default: *601 + default: *603 '404': *6 '500': *103 x-github: @@ -89047,8 +89407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *325 - - *326 + - *327 + - *328 - name: ruleset_id description: The ID of the ruleset. in: path @@ -89066,7 +89426,7 @@ paths: description: Response content: application/json: - schema: *602 + schema: *604 examples: default: value: @@ -89121,21 +89481,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *325 - - *326 - - *603 - - *604 + - *327 + - *328 - *605 - *606 + - *607 + - *608 - *48 - *19 - *17 - - *607 - - *608 - *609 - *610 - *611 - *612 + - *613 + - *614 responses: '200': description: Response @@ -89143,11 +89503,11 @@ paths: application/json: schema: type: array - items: &616 + items: &618 type: object properties: - number: *159 - created_at: *160 + number: *161 + created_at: *162 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -89155,15 +89515,15 @@ paths: format: date-time readOnly: true nullable: true - url: *162 - html_url: *163 + url: *164 + html_url: *165 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *613 - resolution: *614 + state: *615 + resolution: *616 resolved_at: type: string format: date-time @@ -89259,7 +89619,7 @@ paths: pull request. ' - oneOf: *615 + oneOf: *617 nullable: true has_more_locations: type: boolean @@ -89408,16 +89768,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *325 - - *326 - - *425 - - *612 + - *327 + - *328 + - *427 + - *614 responses: '200': description: Response content: application/json: - schema: *616 + schema: *618 examples: default: value: @@ -89469,9 +89829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 requestBody: required: true content: @@ -89479,8 +89839,8 @@ paths: schema: type: object properties: - state: *613 - resolution: *614 + state: *615 + resolution: *616 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -89499,7 +89859,7 @@ paths: description: Response content: application/json: - schema: *616 + schema: *618 examples: default: value: @@ -89574,9 +89934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *325 - - *326 - - *425 + - *327 + - *328 + - *427 - *19 - *17 responses: @@ -89587,7 +89947,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &774 + items: &776 type: object properties: type: @@ -89613,8 +89973,6 @@ paths: example: commit details: oneOf: - - *617 - - *618 - *619 - *620 - *621 @@ -89626,6 +89984,8 @@ paths: - *627 - *628 - *629 + - *630 + - *631 examples: default: value: @@ -89711,8 +90071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -89720,14 +90080,14 @@ paths: schema: type: object properties: - reason: &631 + reason: &633 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *630 + placeholder_id: *632 required: - reason - placeholder_id @@ -89744,7 +90104,7 @@ paths: schema: type: object properties: - reason: *631 + reason: *633 expire_at: type: string format: date-time @@ -89790,8 +90150,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: - - *325 - - *326 + - *327 + - *328 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -89806,7 +90166,7 @@ paths: properties: incremental_scans: type: array - items: &632 + items: &634 description: Information on a single scan performed by secret scanning on the repository type: object @@ -89832,15 +90192,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *632 + items: *634 backfill_scans: type: array - items: *632 + items: *634 custom_pattern_backfill_scans: type: array items: allOf: - - *632 + - *634 - type: object properties: pattern_name: @@ -89910,8 +90270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *325 - - *326 + - *327 + - *328 - *48 - name: sort description: The property to sort the results by. @@ -89955,9 +90315,9 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: - default: *634 + default: *636 '400': *14 '404': *6 x-github: @@ -89980,8 +90340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -90054,7 +90414,7 @@ paths: login: type: string description: The username of the user credited. - type: *302 + type: *304 required: - login - type @@ -90141,9 +90501,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *635 examples: - default: &636 + default: &638 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -90376,8 +90736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -90481,7 +90841,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *635 examples: default: value: @@ -90628,17 +90988,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *325 - - *326 - - *635 + - *327 + - *328 + - *637 responses: '200': description: Response content: application/json: - schema: *633 + schema: *635 examples: - default: *636 + default: *638 '403': *29 '404': *6 x-github: @@ -90662,9 +91022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *325 - - *326 - - *635 + - *327 + - *328 + - *637 requestBody: required: true content: @@ -90737,7 +91097,7 @@ paths: login: type: string description: The username of the user credited. - type: *302 + type: *304 required: - login - type @@ -90823,10 +91183,10 @@ paths: description: Response content: application/json: - schema: *633 + schema: *635 examples: - default: *636 - add_credit: *636 + default: *638 + add_credit: *638 '403': *29 '404': *6 '422': @@ -90864,9 +91224,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: - - *325 - - *326 - - *635 + - *327 + - *328 + - *637 responses: '202': *39 '400': *14 @@ -90893,17 +91253,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *325 - - *326 - - *635 + - *327 + - *328 + - *637 responses: '202': description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *333 + default: *335 '400': *14 '422': *15 '403': *29 @@ -90929,8 +91289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -91029,8 +91389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -91039,7 +91399,7 @@ paths: application/json: schema: type: array - items: &637 + items: &639 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -91052,7 +91412,7 @@ paths: - 1124 - -435 '202': *39 - '204': *173 + '204': *175 '422': description: Repository contains more than 10,000 commits x-github: @@ -91072,8 +91432,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -91122,7 +91482,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *173 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91149,8 +91509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -91224,7 +91584,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *173 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91246,8 +91606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -91401,8 +91761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -91412,7 +91772,7 @@ paths: application/json: schema: type: array - items: *637 + items: *639 examples: default: value: @@ -91425,7 +91785,7 @@ paths: - - 0 - 2 - 21 - '204': *173 + '204': *175 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91445,8 +91805,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *325 - - *326 + - *327 + - *328 - name: sha in: path required: true @@ -91500,7 +91860,7 @@ paths: description: Response content: application/json: - schema: *638 + schema: *640 examples: default: value: @@ -91554,8 +91914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -91587,14 +91947,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &639 + schema: &641 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -91662,8 +92022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: false content: @@ -91689,7 +92049,7 @@ paths: description: Response content: application/json: - schema: *639 + schema: *641 examples: default: value: @@ -91716,8 +92076,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -91737,8 +92097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -91817,8 +92177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -91826,7 +92186,7 @@ paths: application/json: schema: type: array - items: &640 + items: &642 title: Tag protection description: Tag protection type: object @@ -91878,8 +92238,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: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -91902,7 +92262,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *642 examples: default: value: @@ -91933,8 +92293,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: - - *325 - - *326 + - *327 + - *328 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -91971,8 +92331,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *325 - - *326 + - *327 + - *328 - name: ref in: path required: true @@ -92008,8 +92368,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *325 - - *326 + - *327 + - *328 - *17 - *19 responses: @@ -92019,9 +92379,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - default: *234 + default: *236 headers: Link: *54 '404': *6 @@ -92041,8 +92401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *325 - - *326 + - *327 + - *328 - *19 - *17 responses: @@ -92050,7 +92410,7 @@ paths: description: Response content: application/json: - schema: &641 + schema: &643 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -92062,7 +92422,7 @@ paths: required: - names examples: - default: &642 + default: &644 value: names: - octocat @@ -92085,8 +92445,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -92117,9 +92477,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *643 examples: - default: *642 + default: *644 '404': *6 '422': *7 x-github: @@ -92140,9 +92500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *325 - - *326 - - &643 + - *327 + - *328 + - &645 name: per description: The time frame to display results for. in: query @@ -92171,7 +92531,7 @@ paths: example: 128 clones: type: array - items: &644 + items: &646 title: Traffic type: object properties: @@ -92258,8 +92618,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -92349,8 +92709,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *325 - - *326 + - *327 + - *328 responses: '200': description: Response @@ -92410,9 +92770,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *325 - - *326 - - *643 + - *327 + - *328 + - *645 responses: '200': description: Response @@ -92431,7 +92791,7 @@ paths: example: 3782 views: type: array - items: *644 + items: *646 required: - uniques - count @@ -92508,8 +92868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *325 - - *326 + - *327 + - *328 requestBody: required: true content: @@ -92783,8 +93143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -92807,8 +93167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -92830,8 +93190,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -92857,8 +93217,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *325 - - *326 + - *327 + - *328 - name: ref in: path required: true @@ -92950,9 +93310,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *333 + default: *335 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -93200,7 +93560,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &645 + text_matches: &647 title: Search Result Text Matches type: array items: @@ -93362,7 +93722,7 @@ paths: enum: - author-date - committer-date - - &646 + - &648 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -93433,7 +93793,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *391 + properties: *393 nullable: true comment_count: type: integer @@ -93453,7 +93813,7 @@ paths: url: type: string format: uri - verification: *507 + verification: *509 required: - author - committer @@ -93472,7 +93832,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *391 + properties: *393 nullable: true parents: type: array @@ -93490,7 +93850,7 @@ paths: type: number node_id: type: string - text_matches: *645 + text_matches: *647 required: - sha - node_id @@ -93682,7 +94042,7 @@ paths: - interactions - created - updated - - *646 + - *648 - *17 - *19 - name: advanced_search @@ -93779,11 +94139,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: type: string state_reason: @@ -93800,8 +94160,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *254 - required: *255 + properties: *256 + required: *257 nullable: true comments: type: integer @@ -93815,7 +94175,7 @@ paths: type: string format: date-time nullable: true - text_matches: *645 + text_matches: *647 pull_request: type: object properties: @@ -93859,7 +94219,7 @@ paths: timeline_url: type: string format: uri - type: *217 + type: *219 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -94040,7 +94400,7 @@ paths: enum: - created - updated - - *646 + - *648 - *17 - *19 responses: @@ -94084,7 +94444,7 @@ paths: nullable: true score: type: number - text_matches: *645 + text_matches: *647 required: - id - node_id @@ -94169,7 +94529,7 @@ paths: - forks - help-wanted-issues - updated - - *646 + - *648 - *17 - *19 responses: @@ -94408,7 +94768,7 @@ paths: - admin - pull - push - text_matches: *645 + text_matches: *647 temp_clone_token: type: string allow_merge_commit: @@ -94708,7 +95068,7 @@ paths: type: string format: uri nullable: true - text_matches: *645 + text_matches: *647 related: type: array nullable: true @@ -94899,7 +95259,7 @@ paths: - followers - repositories - joined - - *646 + - *648 - *17 - *19 responses: @@ -95003,7 +95363,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *645 + text_matches: *647 blog: type: string nullable: true @@ -95082,7 +95442,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &650 + - &652 name: team_id description: The unique identifier of the team. in: path @@ -95094,9 +95454,9 @@ paths: description: Response content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '404': *6 x-github: githubCloudOnly: false @@ -95123,7 +95483,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *650 + - *652 requestBody: required: true content: @@ -95186,16 +95546,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '201': description: Response content: application/json: - schema: *310 + schema: *312 examples: - default: *311 + default: *313 '404': *6 '422': *15 '403': *29 @@ -95223,7 +95583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *650 + - *652 responses: '204': description: Response @@ -95254,7 +95614,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *650 + - *652 - *48 - *17 - *19 @@ -95265,9 +95625,9 @@ paths: application/json: schema: type: array - items: *312 + items: *314 examples: - default: *651 + default: *653 headers: Link: *54 x-github: @@ -95296,7 +95656,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *650 + - *652 requestBody: required: true content: @@ -95330,9 +95690,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: *313 + default: *315 x-github: triggersNotification: true githubCloudOnly: false @@ -95359,16 +95719,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *650 - - *314 + - *652 + - *316 responses: '200': description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: *313 + default: *315 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95393,8 +95753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *650 - - *314 + - *652 + - *316 requestBody: required: false content: @@ -95417,9 +95777,9 @@ paths: description: Response content: application/json: - schema: *312 + schema: *314 examples: - default: *652 + default: *654 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95444,8 +95804,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *650 - - *314 + - *652 + - *316 responses: '204': description: Response @@ -95474,8 +95834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *650 - - *314 + - *652 + - *316 - *48 - *17 - *19 @@ -95486,9 +95846,9 @@ paths: application/json: schema: type: array - items: *315 + items: *317 examples: - default: *653 + default: *655 headers: Link: *54 x-github: @@ -95517,8 +95877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *650 - - *314 + - *652 + - *316 requestBody: required: true content: @@ -95540,9 +95900,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *316 + default: *318 x-github: triggersNotification: true githubCloudOnly: false @@ -95569,17 +95929,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *650 - - *314 - - *317 + - *652 + - *316 + - *319 responses: '200': description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *316 + default: *318 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95604,9 +95964,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *650 - - *314 - - *317 + - *652 + - *316 + - *319 requestBody: required: true content: @@ -95628,9 +95988,9 @@ paths: description: Response content: application/json: - schema: *315 + schema: *317 examples: - default: *654 + default: *656 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95655,9 +96015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *650 - - *314 - - *317 + - *652 + - *316 + - *319 responses: '204': description: Response @@ -95686,9 +96046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *650 - - *314 - - *317 + - *652 + - *316 + - *319 - 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. @@ -95714,9 +96074,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 x-github: @@ -95745,9 +96105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *650 - - *314 - - *317 + - *652 + - *316 + - *319 requestBody: required: true content: @@ -95779,9 +96139,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95807,8 +96167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *650 - - *314 + - *652 + - *316 - 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. @@ -95834,9 +96194,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *320 + default: *322 headers: Link: *54 x-github: @@ -95865,8 +96225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *650 - - *314 + - *652 + - *316 requestBody: required: true content: @@ -95898,9 +96258,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *320 examples: - default: *319 + default: *321 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95924,7 +96284,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *650 + - *652 - *17 - *19 responses: @@ -95934,9 +96294,9 @@ paths: application/json: schema: type: array - items: *214 + items: *216 examples: - default: *215 + default: *217 headers: Link: *54 x-github: @@ -95962,7 +96322,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *650 + - *652 - name: role description: Filters members returned by their role in the team. in: query @@ -96013,7 +96373,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *650 + - *652 - *59 responses: '204': @@ -96050,7 +96410,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *650 + - *652 - *59 responses: '204': @@ -96090,7 +96450,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *650 + - *652 - *59 responses: '204': @@ -96127,16 +96487,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *650 + - *652 - *59 responses: '200': description: Response content: application/json: - schema: *322 + schema: *324 examples: - response-if-user-is-a-team-maintainer: *655 + response-if-user-is-a-team-maintainer: *657 '404': *6 x-github: githubCloudOnly: false @@ -96169,7 +96529,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *650 + - *652 - *59 requestBody: required: false @@ -96195,9 +96555,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: *656 + response-if-users-membership-with-team-is-now-pending: *658 '403': description: Forbidden if team synchronization is set up '422': @@ -96231,7 +96591,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *650 + - *652 - *59 responses: '204': @@ -96260,7 +96620,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *650 + - *652 - *17 - *19 responses: @@ -96270,9 +96630,9 @@ paths: application/json: schema: type: array - items: *323 + items: *325 examples: - default: *657 + default: *659 headers: Link: *54 '404': *6 @@ -96298,16 +96658,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *650 - - *324 + - *652 + - *326 responses: '200': description: Response content: application/json: - schema: *323 + schema: *325 examples: - default: *658 + default: *660 '404': description: Not Found if project is not managed by this team x-github: @@ -96331,8 +96691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *650 - - *324 + - *652 + - *326 requestBody: required: false content: @@ -96399,8 +96759,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *650 - - *324 + - *652 + - *326 responses: '204': description: Response @@ -96427,7 +96787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *650 + - *652 - *17 - *19 responses: @@ -96439,7 +96799,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 '404': *6 @@ -96469,15 +96829,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *650 - - *325 - - *326 + - *652 + - *327 + - *328 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *659 + schema: *661 examples: alternative-response-with-extra-repository-information: value: @@ -96628,9 +96988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *650 - - *325 - - *326 + - *652 + - *327 + - *328 requestBody: required: false content: @@ -96680,9 +97040,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *650 - - *325 - - *326 + - *652 + - *327 + - *328 responses: '204': description: Response @@ -96707,7 +97067,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *650 + - *652 - *17 - *19 responses: @@ -96717,9 +97077,9 @@ paths: application/json: schema: type: array - items: *179 + items: *181 examples: - response-if-child-teams-exist: *660 + response-if-child-teams-exist: *662 headers: Link: *54 '404': *6 @@ -96752,7 +97112,7 @@ paths: application/json: schema: oneOf: - - &662 + - &664 title: Private User description: Private User type: object @@ -96955,7 +97315,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *661 + - *663 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -97108,7 +97468,7 @@ paths: description: Response content: application/json: - schema: *662 + schema: *664 examples: default: value: @@ -97311,9 +97671,9 @@ paths: type: integer codespaces: type: array - items: *222 + items: *224 examples: - default: *223 + default: *225 '304': *37 '500': *103 '401': *25 @@ -97452,17 +97812,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '401': *25 '403': *29 '404': *6 @@ -97506,7 +97866,7 @@ paths: type: integer secrets: type: array - items: &663 + items: &665 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -97546,7 +97906,7 @@ paths: - visibility - selected_repositories_url examples: - default: *448 + default: *450 headers: Link: *54 x-github: @@ -97622,7 +97982,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: default: value: @@ -97768,7 +98128,7 @@ paths: type: array items: *143 examples: - default: *664 + default: *666 '401': *25 '403': *29 '404': *6 @@ -97912,15 +98272,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 responses: '200': description: Response content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '304': *37 '500': *103 '401': *25 @@ -97946,7 +98306,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 requestBody: required: false content: @@ -97976,9 +98336,9 @@ paths: description: Response content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '401': *25 '403': *29 '404': *6 @@ -98000,7 +98360,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 responses: '202': *39 '304': *37 @@ -98029,13 +98389,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 responses: '202': description: Response content: application/json: - schema: &665 + schema: &667 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -98076,7 +98436,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &666 + default: &668 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -98108,7 +98468,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *224 + - *226 - name: export_id in: path required: true @@ -98121,9 +98481,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *667 examples: - default: *666 + default: *668 '404': *6 x-github: githubCloudOnly: false @@ -98144,7 +98504,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *224 + - *226 responses: '200': description: Response @@ -98160,9 +98520,9 @@ paths: type: integer machines: type: array - items: *667 + items: *669 examples: - default: *668 + default: *670 '304': *37 '500': *103 '401': *25 @@ -98191,7 +98551,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *224 + - *226 requestBody: required: true content: @@ -98241,13 +98601,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *331 + repository: *333 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *446 - required: *447 + properties: *448 + required: *449 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -99021,15 +99381,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 responses: '200': description: Response content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '304': *37 '500': *103 '400': *14 @@ -99061,15 +99421,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *224 + - *226 responses: '200': description: Response content: application/json: - schema: *222 + schema: *224 examples: - default: *445 + default: *447 '500': *103 '401': *25 '403': *29 @@ -99099,9 +99459,9 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: &679 + default: &681 value: - id: 197 name: hello_docker @@ -99202,7 +99562,7 @@ paths: application/json: schema: type: array - items: &669 + items: &671 title: Email description: Email type: object @@ -99267,9 +99627,9 @@ paths: application/json: schema: type: array - items: *669 + items: *671 examples: - default: &681 + default: &683 value: - email: octocat@github.com verified: true @@ -99344,7 +99704,7 @@ paths: application/json: schema: type: array - items: *669 + items: *671 examples: default: value: @@ -99600,7 +99960,7 @@ paths: application/json: schema: type: array - items: &670 + items: &672 title: GPG Key description: A unique encryption key type: object @@ -99731,7 +100091,7 @@ paths: - subkeys - revoked examples: - default: &695 + default: &697 value: - id: 3 name: Octocat's GPG Key @@ -99816,9 +100176,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *672 examples: - default: &671 + default: &673 value: id: 3 name: Octocat's GPG Key @@ -99875,7 +100235,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &672 + - &674 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -99887,9 +100247,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *672 examples: - default: *671 + default: *673 '404': *6 '304': *37 '403': *29 @@ -99912,7 +100272,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *672 + - *674 responses: '204': description: Response @@ -100188,12 +100548,12 @@ paths: application/json: schema: anyOf: - - *212 + - *214 - type: object properties: {} additionalProperties: false examples: - default: *213 + default: *215 '204': description: Response when there are no restrictions x-github: @@ -100217,7 +100577,7 @@ paths: required: true content: application/json: - schema: *518 + schema: *520 examples: default: value: @@ -100228,7 +100588,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *214 examples: default: value: @@ -100309,7 +100669,7 @@ paths: - closed - all default: open - - *220 + - *222 - name: sort description: What to sort results by. in: query @@ -100334,7 +100694,7 @@ paths: type: array items: *82 examples: - default: *221 + default: *223 headers: Link: *54 '404': *6 @@ -100367,7 +100727,7 @@ paths: application/json: schema: type: array - items: &673 + items: &675 title: Key description: Key type: object @@ -100468,9 +100828,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *675 examples: - default: &674 + default: &676 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -100503,15 +100863,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *548 + - *550 responses: '200': description: Response content: application/json: - schema: *673 + schema: *675 examples: - default: *674 + default: *676 '404': *6 '304': *37 '403': *29 @@ -100534,7 +100894,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *548 + - *550 responses: '204': description: Response @@ -100567,7 +100927,7 @@ paths: application/json: schema: type: array - items: &675 + items: &677 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -100635,7 +100995,7 @@ paths: - account - plan examples: - default: &676 + default: &678 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -100697,9 +101057,9 @@ paths: application/json: schema: type: array - items: *675 + items: *677 examples: - default: *676 + default: *678 headers: Link: *54 '304': *37 @@ -100739,7 +101099,7 @@ paths: application/json: schema: type: array - items: *226 + items: *228 examples: default: value: @@ -100847,7 +101207,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: default: value: @@ -100930,7 +101290,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *228 examples: default: value: @@ -100998,7 +101358,7 @@ paths: application/json: schema: type: array - items: *228 + items: *230 examples: default: value: @@ -101251,7 +101611,7 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: default: value: @@ -101431,7 +101791,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *229 + - *231 - name: exclude in: query required: false @@ -101444,7 +101804,7 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: default: value: @@ -101638,7 +101998,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *229 + - *231 responses: '302': description: Response @@ -101664,7 +102024,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *229 + - *231 responses: '204': description: Response @@ -101693,8 +102053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *229 - - *677 + - *231 + - *679 responses: '204': description: Response @@ -101718,7 +102078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *229 + - *231 - *17 - *19 responses: @@ -101730,7 +102090,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 '404': *6 @@ -101809,7 +102169,7 @@ paths: - docker - nuget - container - - *678 + - *680 - *19 - *17 responses: @@ -101819,10 +102179,10 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *679 - '400': *680 + default: *681 + '400': *682 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101842,16 +102202,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 + - *240 responses: '200': description: Response content: application/json: - schema: *235 + schema: *237 examples: - default: &696 + default: &698 value: id: 40201 name: octo-name @@ -101964,8 +102324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 + - *240 responses: '204': description: Response @@ -101995,8 +102355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 + - *240 - name: token description: package token schema: @@ -102028,8 +102388,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: - - *237 - - *238 + - *239 + - *240 - *19 - *17 - name: state @@ -102049,7 +102409,7 @@ paths: application/json: schema: type: array - items: *239 + items: *241 examples: default: value: @@ -102098,15 +102458,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 - *240 + - *242 responses: '200': description: Response content: application/json: - schema: *239 + schema: *241 examples: default: value: @@ -102142,9 +102502,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 - *240 + - *242 responses: '204': description: Response @@ -102174,9 +102534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *237 - - *238 + - *239 - *240 + - *242 responses: '204': description: Response @@ -102213,9 +102573,9 @@ paths: application/json: schema: type: array - items: *669 + items: *671 examples: - default: *681 + default: *683 headers: Link: *54 '304': *37 @@ -102328,7 +102688,7 @@ paths: type: array items: *66 examples: - default: &688 + default: &690 summary: Default response value: - id: 1296269 @@ -102632,9 +102992,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *333 examples: - default: *333 + default: *335 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -102672,9 +103032,9 @@ paths: application/json: schema: type: array - items: *520 + items: *522 examples: - default: *682 + default: *684 headers: Link: *54 '304': *37 @@ -102697,7 +103057,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *216 + - *218 responses: '204': description: Response @@ -102720,7 +103080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *216 + - *218 responses: '204': description: Response @@ -102753,7 +103113,7 @@ paths: application/json: schema: type: array - items: &683 + items: &685 title: Social account description: Social media account type: object @@ -102768,7 +103128,7 @@ paths: - provider - url examples: - default: &684 + default: &686 value: - provider: twitter url: https://twitter.com/github @@ -102830,9 +103190,9 @@ paths: application/json: schema: type: array - items: *683 + items: *685 examples: - default: *684 + default: *686 '422': *15 '304': *37 '404': *6 @@ -102919,7 +103279,7 @@ paths: application/json: schema: type: array - items: &685 + items: &687 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -102939,16 +103299,14 @@ paths: - title - created_at examples: - default: &710 + default: &712 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: @@ -103005,13 +103363,12 @@ paths: description: Response content: application/json: - schema: *685 + schema: *687 examples: - default: &686 + default: &688 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 @@ -103038,7 +103395,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: - - &687 + - &689 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -103050,9 +103407,9 @@ paths: description: Response content: application/json: - schema: *685 + schema: *687 examples: - default: *686 + default: *688 '404': *6 '304': *37 '403': *29 @@ -103075,7 +103432,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: - - *687 + - *689 responses: '204': description: Response @@ -103104,7 +103461,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &711 + - &713 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 @@ -103129,11 +103486,11 @@ paths: type: array items: *66 examples: - default-response: *688 + default-response: *690 application/vnd.github.v3.star+json: schema: type: array - items: &712 + items: &714 title: Starred Repository description: Starred Repository type: object @@ -103289,8 +103646,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: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response if this repository is starred by you @@ -103318,8 +103675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -103343,8 +103700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *325 - - *326 + - *327 + - *328 responses: '204': description: Response @@ -103379,7 +103736,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 '304': *37 @@ -103416,7 +103773,7 @@ paths: application/json: schema: type: array - items: *310 + items: *312 examples: default: value: @@ -103502,10 +103859,10 @@ paths: application/json: schema: oneOf: - - *662 - - *661 + - *664 + - *663 examples: - default-response: &690 + default-response: &692 summary: Default response value: login: octocat @@ -103540,7 +103897,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &691 + response-with-git-hub-plan-information: &693 summary: Response with GitHub plan information value: login: octocat @@ -103603,7 +103960,7 @@ paths: required: true schema: type: string - - *253 + - *255 requestBody: required: true description: Details of the draft item to create in the project. @@ -103637,9 +103994,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *261 examples: - draft_issue: *260 + draft_issue: *262 '304': *37 '403': *29 '401': *25 @@ -103662,7 +104019,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *689 + - *691 - *17 responses: '200': @@ -103711,11 +104068,11 @@ paths: application/json: schema: oneOf: - - *662 - - *661 + - *664 + - *663 examples: - default-response: *690 - response-with-git-hub-plan-information: *691 + default-response: *692 + response-with-git-hub-plan-information: *693 '404': *6 x-github: githubCloudOnly: false @@ -103765,8 +104122,8 @@ paths: required: - subject_digests examples: - default: *692 - withPredicateType: *693 + default: *694 + withPredicateType: *695 responses: '200': description: Response @@ -103819,7 +104176,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *694 + default: *696 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104024,7 +104381,7 @@ paths: initiator: type: string examples: - default: *387 + default: *389 '201': description: Response content: @@ -104063,9 +104420,9 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *679 + default: *681 '403': *29 '401': *25 x-github: @@ -104449,9 +104806,9 @@ paths: application/json: schema: type: array - items: *670 + items: *672 examples: - default: *695 + default: *697 headers: Link: *54 x-github: @@ -104555,7 +104912,7 @@ paths: application/json: schema: *22 examples: - default: *517 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104679,7 +105036,7 @@ paths: - docker - nuget - container - - *678 + - *680 - *59 - *19 - *17 @@ -104690,12 +105047,12 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: - default: *679 + default: *681 '403': *29 '401': *25 - '400': *680 + '400': *682 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104715,17 +105072,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *237 - - *238 + - *239 + - *240 - *59 responses: '200': description: Response content: application/json: - schema: *235 + schema: *237 examples: - default: *696 + default: *698 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104746,8 +105103,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *237 - - *238 + - *239 + - *240 - *59 responses: '204': @@ -104780,8 +105137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *237 - - *238 + - *239 + - *240 - *59 - name: token description: package token @@ -104814,8 +105171,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: - - *237 - - *238 + - *239 + - *240 - *59 responses: '200': @@ -104824,7 +105181,7 @@ paths: application/json: schema: type: array - items: *239 + items: *241 examples: default: value: @@ -104882,16 +105239,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *237 - - *238 + - *239 - *240 + - *242 - *59 responses: '200': description: Response content: application/json: - schema: *239 + schema: *241 examples: default: value: @@ -104926,10 +105283,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *237 - - *238 - - *59 + - *239 - *240 + - *59 + - *242 responses: '204': description: Response @@ -104961,10 +105318,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *237 - - *238 - - *59 + - *239 - *240 + - *59 + - *242 responses: '204': description: Response @@ -105005,9 +105362,9 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: - default: *252 + default: *254 headers: Link: *54 '304': *37 @@ -105029,16 +105386,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *253 + - *255 - *59 responses: '200': description: Response content: application/json: - schema: *251 + schema: *253 examples: - default: *252 + default: *254 headers: Link: *54 '304': *37 @@ -105060,7 +105417,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *253 + - *255 - *59 - *17 - *40 @@ -105072,9 +105429,9 @@ paths: application/json: schema: type: array - items: *257 + items: *259 examples: - default: *697 + default: *699 headers: Link: *54 '304': *37 @@ -105096,17 +105453,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *253 - - *698 + - *255 + - *700 - *59 responses: '200': description: Response content: application/json: - schema: *257 + schema: *259 examples: - default: *699 + default: *701 headers: Link: *54 '304': *37 @@ -105129,7 +105486,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *253 + - *255 - *59 - *40 - *41 @@ -105162,9 +105519,9 @@ paths: application/json: schema: type: array - items: *261 + items: *263 examples: - default: *262 + default: *264 headers: Link: *54 '304': *37 @@ -105186,7 +105543,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *59 - - *253 + - *255 requestBody: required: true description: Details of the item to add to the project. @@ -105223,10 +105580,10 @@ paths: description: Response content: application/json: - schema: *259 + schema: *261 examples: - issue: *260 - pull_request: *260 + issue: *262 + pull_request: *262 '304': *37 '403': *29 '401': *25 @@ -105246,9 +105603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *253 + - *255 - *59 - - *263 + - *265 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -105268,9 +105625,9 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *262 + default: *264 headers: Link: *54 '304': *37 @@ -105291,9 +105648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *253 + - *255 - *59 - - *263 + - *265 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -105363,13 +105720,13 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - text_field: *262 - number_field: *262 - date_field: *262 - single_select_field: *262 - iteration_field: *262 + text_field: *264 + number_field: *264 + date_field: *264 + single_select_field: *264 + iteration_field: *264 '401': *25 '403': *29 '404': *6 @@ -105389,9 +105746,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *253 + - *255 - *59 - - *263 + - *265 responses: '204': description: Response @@ -105611,7 +105968,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -105641,9 +105998,9 @@ paths: description: Response content: application/json: - schema: *700 + schema: *702 examples: - default: *701 + default: *703 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105671,9 +106028,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *704 examples: - default: *703 + default: *705 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105697,7 +106054,7 @@ paths: - *106 - *108 - *107 - - *704 + - *706 - *109 responses: '200': @@ -105834,9 +106191,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *707 examples: - default: *706 + default: *708 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105858,7 +106215,7 @@ paths: parameters: - *59 - *106 - - *707 + - *709 - *107 responses: '200': @@ -105957,9 +106314,9 @@ paths: - *106 - *108 - *107 - - *708 + - *710 - *109 - - *709 + - *711 responses: '200': description: Response when getting a billing usage summary @@ -106093,9 +106450,9 @@ paths: application/json: schema: type: array - items: *683 + items: *685 examples: - default: *684 + default: *686 headers: Link: *54 x-github: @@ -106125,9 +106482,9 @@ paths: application/json: schema: type: array - items: *685 + items: *687 examples: - default: *710 + default: *712 headers: Link: *54 x-github: @@ -106152,7 +106509,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *59 - - *711 + - *713 - *48 - *17 - *19 @@ -106164,11 +106521,11 @@ paths: schema: anyOf: - type: array - items: *712 + items: *714 - type: array items: *66 examples: - default-response: *688 + default-response: *690 headers: Link: *54 x-github: @@ -106199,7 +106556,7 @@ paths: type: array items: *143 examples: - default: *241 + default: *243 headers: Link: *54 x-github: @@ -106327,7 +106684,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &713 + enterprise: &715 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -106385,7 +106742,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &714 + installation: &716 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -106404,7 +106761,7 @@ x-webhooks: required: - id - node_id - organization: &715 + organization: &717 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -106464,13 +106821,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &716 + repository: &718 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &746 + properties: &748 id: description: Unique identifier of the repository example: 42 @@ -107153,7 +107510,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &747 + required: &749 - archive_url - assignees_url - blobs_url @@ -107304,10 +107661,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -107383,11 +107740,11 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - rule: &717 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + rule: &719 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) @@ -107610,11 +107967,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - rule: *717 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + rule: *719 sender: *4 required: - action @@ -107797,11 +108154,11 @@ x-webhooks: - everyone required: - from - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - rule: *717 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + rule: *719 sender: *4 required: - action @@ -107885,7 +108242,7 @@ x-webhooks: type: string enum: - completed - check_run: &719 + check_run: &721 title: CheckRun description: A check performed on the code of a given code change type: object @@ -107938,7 +108295,7 @@ x-webhooks: type: string pull_requests: type: array - items: *404 + items: *406 repository: *143 status: example: completed @@ -107976,7 +108333,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *718 + deployment: *720 details_url: example: https://example.com type: string @@ -108026,7 +108383,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *404 + items: *406 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -108061,10 +108418,10 @@ x-webhooks: - output - app - pull_requests - installation: *714 - enterprise: *713 - organization: *715 - repository: *716 + installation: *716 + enterprise: *715 + organization: *717 + repository: *718 sender: *4 required: - check_run @@ -108457,11 +108814,11 @@ x-webhooks: type: string enum: - created - check_run: *719 - installation: *714 - enterprise: *713 - organization: *715 - repository: *716 + check_run: *721 + installation: *716 + enterprise: *715 + organization: *717 + repository: *718 sender: *4 required: - check_run @@ -108857,11 +109214,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *719 - installation: *714 - enterprise: *713 - organization: *715 - repository: *716 + check_run: *721 + installation: *716 + enterprise: *715 + organization: *717 + repository: *718 requested_action: description: The action requested by the user. type: object @@ -109266,11 +109623,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *719 - installation: *714 - enterprise: *713 - organization: *715 - repository: *716 + check_run: *721 + installation: *716 + enterprise: *715 + organization: *717 + repository: *718 sender: *4 required: - check_run @@ -110247,10 +110604,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -110935,10 +111292,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -111617,10 +111974,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -111786,7 +112143,7 @@ x-webhooks: required: - login - id - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -111931,20 +112288,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &720 + commit_oid: &722 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: *713 - installation: *714 - organization: *715 - ref: &721 + enterprise: *715 + installation: *716 + organization: *717 + ref: &723 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: *716 + repository: *718 sender: *4 required: - action @@ -112109,7 +112466,7 @@ x-webhooks: required: - login - id - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -112339,12 +112696,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *713 - installation: *714 - organization: *715 - ref: *721 - repository: *716 + commit_oid: *722 + enterprise: *715 + installation: *716 + organization: *717 + ref: *723 + repository: *718 sender: *4 required: - action @@ -112439,7 +112796,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -112610,12 +112967,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *713 - installation: *714 - organization: *715 - ref: *721 - repository: *716 + commit_oid: *722 + enterprise: *715 + installation: *716 + organization: *717 + ref: *723 + repository: *718 sender: *4 required: - action @@ -112781,7 +113138,7 @@ x-webhooks: required: - login - id - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -112947,12 +113304,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *713 - installation: *714 - organization: *715 - ref: *721 - repository: *716 + commit_oid: *722 + enterprise: *715 + installation: *716 + organization: *717 + ref: *723 + repository: *718 sender: *4 required: - action @@ -113052,7 +113409,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -113220,16 +113577,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *716 + repository: *718 sender: *4 required: - action @@ -113326,7 +113683,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *420 + dismissed_comment: *422 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -113466,12 +113823,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *720 - enterprise: *713 - installation: *714 - organization: *715 - ref: *721 - repository: *716 + commit_oid: *722 + enterprise: *715 + installation: *716 + organization: *717 + ref: *723 + repository: *718 sender: *4 required: - action @@ -113728,10 +114085,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -113811,18 +114168,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *715 - pusher_type: &722 + organization: *717 + pusher_type: &724 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &723 + ref: &725 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -113832,7 +114189,7 @@ x-webhooks: enum: - tag - branch - repository: *716 + repository: *718 sender: *4 required: - ref @@ -113914,10 +114271,10 @@ x-webhooks: type: string enum: - created - definition: *264 - enterprise: *713 - installation: *714 - organization: *715 + definition: *266 + enterprise: *715 + installation: *716 + organization: *717 sender: *4 required: - action @@ -114002,9 +114359,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 sender: *4 required: - action @@ -114081,10 +114438,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *264 - enterprise: *713 - installation: *714 - organization: *715 + definition: *266 + enterprise: *715 + installation: *716 + organization: *717 sender: *4 required: - action @@ -114161,10 +114518,10 @@ x-webhooks: type: string enum: - updated - definition: *264 - enterprise: *713 - installation: *714 - organization: *715 + definition: *266 + enterprise: *715 + installation: *716 + organization: *717 sender: *4 required: - action @@ -114241,10 +114598,10 @@ x-webhooks: type: string enum: - updated - enterprise: *713 - installation: *714 - repository: *716 - organization: *715 + enterprise: *715 + installation: *716 + repository: *718 + organization: *717 sender: *4 new_property_values: type: array @@ -114329,18 +114686,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *713 - installation: *714 - organization: *715 - pusher_type: *722 - ref: *723 + enterprise: *715 + installation: *716 + organization: *717 + pusher_type: *724 + ref: *725 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *716 + repository: *718 sender: *4 required: - ref @@ -114424,11 +114781,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114512,11 +114869,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114600,11 +114957,11 @@ x-webhooks: type: string enum: - created - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114686,11 +115043,11 @@ x-webhooks: type: string enum: - dismissed - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114772,11 +115129,11 @@ x-webhooks: type: string enum: - fixed - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114859,11 +115216,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -114945,11 +115302,11 @@ x-webhooks: type: string enum: - reopened - alert: *476 - installation: *714 - organization: *715 - enterprise: *713 - repository: *716 + alert: *478 + installation: *716 + organization: *717 + enterprise: *715 + repository: *718 sender: *4 required: - action @@ -115026,9 +115383,9 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - key: &724 + enterprise: *715 + installation: *716 + key: &726 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -115064,8 +115421,8 @@ x-webhooks: - verified - created_at - read_only - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -115142,11 +115499,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - key: *724 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + key: *726 + organization: *717 + repository: *718 sender: *4 required: - action @@ -115707,12 +116064,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - workflow: &728 + workflow: &730 title: Workflow type: object nullable: true @@ -116438,13 +116795,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *482 + deployment: *484 pull_requests: type: array - items: *569 - repository: *716 - organization: *715 - installation: *714 + items: *571 + repository: *718 + organization: *717 + installation: *716 sender: *4 responses: '200': @@ -116515,7 +116872,7 @@ x-webhooks: type: string enum: - approved - approver: &725 + approver: &727 type: object properties: avatar_url: @@ -116558,11 +116915,11 @@ x-webhooks: type: string comment: type: string - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - reviewers: &726 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + reviewers: &728 type: array items: type: object @@ -116641,7 +116998,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &727 + workflow_job_run: &729 type: object properties: conclusion: @@ -117372,18 +117729,18 @@ x-webhooks: type: string enum: - rejected - approver: *725 + approver: *727 comment: type: string - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - reviewers: *726 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + reviewers: *728 sender: *4 since: type: string - workflow_job_run: *727 + workflow_job_run: *729 workflow_job_runs: type: array items: @@ -118087,13 +118444,13 @@ x-webhooks: type: string enum: - requested - enterprise: *713 + enterprise: *715 environment: type: string - installation: *714 - organization: *715 - repository: *716 - requestor: &733 + installation: *716 + organization: *717 + repository: *718 + requestor: &735 title: User type: object nullable: true @@ -119992,12 +120349,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - workflow: *728 + workflow: *730 workflow_run: title: Deployment Workflow Run type: object @@ -120677,7 +121034,7 @@ x-webhooks: type: string enum: - answered - answer: &731 + answer: &733 type: object properties: author_association: @@ -120834,7 +121191,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &729 + discussion: &731 title: Discussion description: A Discussion in a repository. type: object @@ -121120,7 +121477,7 @@ x-webhooks: - id labels: type: array - items: *531 + items: *533 required: - repository_url - category @@ -121142,10 +121499,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121272,11 +121629,11 @@ x-webhooks: - from required: - category - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121359,11 +121716,11 @@ x-webhooks: type: string enum: - closed - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121445,7 +121802,7 @@ x-webhooks: type: string enum: - created - comment: &730 + comment: &732 type: object properties: author_association: @@ -121602,11 +121959,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121689,12 +122046,12 @@ x-webhooks: type: string enum: - deleted - comment: *730 - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + comment: *732 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121789,12 +122146,12 @@ x-webhooks: - from required: - body - comment: *730 - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + comment: *732 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121878,11 +122235,11 @@ x-webhooks: type: string enum: - created - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -121964,11 +122321,11 @@ x-webhooks: type: string enum: - deleted - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122068,11 +122425,11 @@ x-webhooks: type: string required: - from - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122154,10 +122511,10 @@ x-webhooks: type: string enum: - labeled - discussion: *729 - enterprise: *713 - installation: *714 - label: &732 + discussion: *731 + enterprise: *715 + installation: *716 + label: &734 title: Label type: object properties: @@ -122189,8 +122546,8 @@ x-webhooks: - color - default - description - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122273,11 +122630,11 @@ x-webhooks: type: string enum: - locked - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122359,11 +122716,11 @@ x-webhooks: type: string enum: - pinned - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122445,11 +122802,11 @@ x-webhooks: type: string enum: - reopened - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122534,16 +122891,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *729 - new_repository: *716 + new_discussion: *731 + new_repository: *718 required: - new_discussion - new_repository - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122626,10 +122983,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *729 - old_answer: *731 - organization: *715 - repository: *716 + discussion: *731 + old_answer: *733 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122711,12 +123068,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *729 - enterprise: *713 - installation: *714 - label: *732 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122799,11 +123156,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122885,11 +123242,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *729 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + discussion: *731 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -122962,7 +123319,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *713 + enterprise: *715 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -123622,9 +123979,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - forkee @@ -123770,9 +124127,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pages: description: The pages that were updated. type: array @@ -123809,7 +124166,7 @@ x-webhooks: - action - sha - html_url - repository: *716 + repository: *718 sender: *4 required: - pages @@ -123885,10 +124242,10 @@ x-webhooks: type: string enum: - created - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories: &734 + organization: *717 + repositories: &736 description: An array of repository objects that the installation can access. type: array @@ -123914,8 +124271,8 @@ x-webhooks: - name - full_name - private - repository: *716 - requester: *733 + repository: *718 + requester: *735 sender: *4 required: - action @@ -123990,11 +124347,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories: *734 - repository: *716 + organization: *717 + repositories: *736 + repository: *718 requester: nullable: true sender: *4 @@ -124070,11 +124427,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories: *734 - repository: *716 + organization: *717 + repositories: *736 + repository: *718 requester: nullable: true sender: *4 @@ -124150,10 +124507,10 @@ x-webhooks: type: string enum: - added - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories_added: &735 + organization: *717 + repositories_added: &737 description: An array of repository objects, which were added to the installation. type: array @@ -124199,15 +124556,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *716 - repository_selection: &736 + repository: *718 + repository_selection: &738 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *733 + requester: *735 sender: *4 required: - action @@ -124286,10 +124643,10 @@ x-webhooks: type: string enum: - removed - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories_added: *735 + organization: *717 + repositories_added: *737 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -124316,9 +124673,9 @@ x-webhooks: - name - full_name - private - repository: *716 - repository_selection: *736 - requester: *733 + repository: *718 + repository_selection: *738 + requester: *735 sender: *4 required: - action @@ -124397,11 +124754,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories: *734 - repository: *716 + organization: *717 + repositories: *736 + repository: *718 requester: nullable: true sender: *4 @@ -124579,10 +124936,10 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 target_type: type: string @@ -124661,11 +125018,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *713 + enterprise: *715 installation: *22 - organization: *715 - repositories: *734 - repository: *716 + organization: *717 + repositories: *736 + repository: *718 requester: nullable: true sender: *4 @@ -124917,8 +125274,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -125712,8 +126069,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -125729,7 +126086,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -126062,8 +126419,8 @@ x-webhooks: - state - locked - assignee - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -126143,7 +126500,7 @@ x-webhooks: type: string enum: - deleted - comment: &737 + comment: &739 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -126308,8 +126665,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -127099,8 +127456,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -127116,7 +127473,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -127451,8 +127808,8 @@ x-webhooks: - state - locked - assignee - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -127532,7 +127889,7 @@ x-webhooks: type: string enum: - edited - changes: &766 + changes: &768 description: The changes to the comment. type: object properties: @@ -127544,9 +127901,9 @@ x-webhooks: type: string required: - from - comment: *737 - enterprise: *713 - installation: *714 + comment: *739 + enterprise: *715 + installation: *716 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128339,8 +128696,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128356,7 +128713,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -128689,8 +129046,8 @@ x-webhooks: - state - locked - assignee - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -128780,9 +129137,9 @@ x-webhooks: type: number blocking_issue: *82 blocking_issue_repo: *66 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -128876,9 +129233,9 @@ x-webhooks: type: number blocking_issue: *82 blocking_issue_repo: *66 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -128971,9 +129328,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -129067,9 +129424,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -129154,10 +129511,10 @@ x-webhooks: type: string enum: - assigned - assignee: *733 - enterprise: *713 - installation: *714 - issue: &740 + assignee: *735 + enterprise: *715 + installation: *716 + issue: &742 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -129946,11 +130303,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129966,7 +130323,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -130067,8 +130424,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -130148,8 +130505,8 @@ x-webhooks: type: string enum: - closed - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -130943,11 +131300,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130963,7 +131320,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -131199,8 +131556,8 @@ x-webhooks: required: - state - closed_at - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -131279,8 +131636,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -132065,11 +132422,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132085,7 +132442,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -132185,8 +132542,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -132265,8 +132622,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -133073,11 +133430,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133093,7 +133450,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -133172,7 +133529,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &738 + milestone: &740 title: Milestone description: A collection of related issues and pull requests. type: object @@ -133310,8 +133667,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -133410,8 +133767,8 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134200,11 +134557,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134217,7 +134574,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *217 + type: *219 title: description: Title of the issue type: string @@ -134321,9 +134678,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *732 - organization: *715 - repository: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -134403,8 +134760,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135192,11 +135549,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135209,7 +135566,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *217 + type: *219 title: description: Title of the issue type: string @@ -135313,9 +135670,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *732 - organization: *715 - repository: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -135395,8 +135752,8 @@ x-webhooks: type: string enum: - locked - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136208,11 +136565,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136225,7 +136582,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *217 + type: *219 title: description: Title of the issue type: string @@ -136306,8 +136663,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -136386,8 +136743,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137193,11 +137550,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137213,7 +137570,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -137291,9 +137648,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *738 - organization: *715 - repository: *716 + milestone: *740 + organization: *717 + repository: *718 sender: *4 required: - action @@ -138161,11 +138518,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138258,7 +138615,7 @@ x-webhooks: required: - login - id - type: *217 + type: *219 required: - id - number @@ -138727,8 +139084,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139517,11 +139874,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139537,7 +139894,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -139637,8 +139994,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -139718,9 +140075,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *713 - installation: *714 - issue: &739 + enterprise: *715 + installation: *716 + issue: &741 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -140503,11 +140860,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140523,7 +140880,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -140623,8 +140980,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -140703,8 +141060,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141514,11 +141871,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141612,9 +141969,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *217 - organization: *715 - repository: *716 + type: *219 + organization: *717 + repository: *718 sender: *4 required: - action @@ -142480,11 +142837,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142500,7 +142857,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -143068,11 +143425,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *713 - installation: *714 - issue: *739 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *741 + organization: *717 + repository: *718 sender: *4 required: - action @@ -143152,12 +143509,12 @@ x-webhooks: type: string enum: - typed - enterprise: *713 - installation: *714 - issue: *740 - type: *217 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *742 + type: *219 + organization: *717 + repository: *718 sender: *4 required: - action @@ -143238,7 +143595,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &769 + assignee: &771 title: User type: object nullable: true @@ -143308,11 +143665,11 @@ x-webhooks: required: - login - id - enterprise: *713 - installation: *714 - issue: *740 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *742 + organization: *717 + repository: *718 sender: *4 required: - action @@ -143391,12 +143748,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *713 - installation: *714 - issue: *740 - label: *732 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *742 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -143476,8 +143833,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144287,11 +144644,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *647 - issue_dependencies_summary: *648 + sub_issues_summary: *649 + issue_dependencies_summary: *650 issue_field_values: type: array - items: *649 + items: *651 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144307,7 +144664,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *217 + type: *219 updated_at: type: string format: date-time @@ -144385,8 +144742,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144466,11 +144823,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *713 - installation: *714 - issue: *739 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *741 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144549,12 +144906,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *713 - installation: *714 - issue: *740 - type: *217 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + issue: *742 + type: *219 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144634,11 +144991,11 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - label: *732 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144716,11 +145073,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - label: *732 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144830,11 +145187,11 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - label: *732 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + label: *734 + organization: *717 + repository: *718 sender: *4 required: - action @@ -144916,9 +145273,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *713 - installation: *714 - marketplace_purchase: &741 + enterprise: *715 + installation: *716 + marketplace_purchase: &743 title: Marketplace Purchase type: object required: @@ -145001,8 +145358,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *715 - previous_marketplace_purchase: &742 + organization: *717 + previous_marketplace_purchase: &744 title: Marketplace Purchase type: object properties: @@ -145082,7 +145439,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *716 + repository: *718 sender: *4 required: - action @@ -145162,10 +145519,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *713 - installation: *714 - marketplace_purchase: *741 - organization: *715 + enterprise: *715 + installation: *716 + marketplace_purchase: *743 + organization: *717 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -145248,7 +145605,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *716 + repository: *718 sender: *4 required: - action @@ -145330,10 +145687,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *713 - installation: *714 - marketplace_purchase: *741 - organization: *715 + enterprise: *715 + installation: *716 + marketplace_purchase: *743 + organization: *717 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -145415,7 +145772,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *716 + repository: *718 sender: *4 required: - action @@ -145496,8 +145853,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 marketplace_purchase: title: Marketplace Purchase type: object @@ -145579,9 +145936,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *715 - previous_marketplace_purchase: *742 - repository: *716 + organization: *717 + previous_marketplace_purchase: *744 + repository: *718 sender: *4 required: - action @@ -145661,12 +146018,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *713 - installation: *714 - marketplace_purchase: *741 - organization: *715 - previous_marketplace_purchase: *742 - repository: *716 + enterprise: *715 + installation: *716 + marketplace_purchase: *743 + organization: *717 + previous_marketplace_purchase: *744 + repository: *718 sender: *4 required: - action @@ -145768,11 +146125,11 @@ x-webhooks: type: string required: - to - enterprise: *713 - installation: *714 - member: *733 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + member: *735 + organization: *717 + repository: *718 sender: *4 required: - action @@ -145872,11 +146229,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *713 - installation: *714 - member: *733 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + member: *735 + organization: *717 + repository: *718 sender: *4 required: - action @@ -145955,11 +146312,11 @@ x-webhooks: type: string enum: - removed - enterprise: *713 - installation: *714 - member: *733 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + member: *735 + organization: *717 + repository: *718 sender: *4 required: - action @@ -146037,11 +146394,11 @@ x-webhooks: type: string enum: - added - enterprise: *713 - installation: *714 - member: *733 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + member: *735 + organization: *717 + repository: *718 scope: description: The scope of the membership. Currently, can only be `team`. @@ -146117,7 +146474,7 @@ x-webhooks: required: - login - id - team: &743 + team: &745 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -146340,11 +146697,11 @@ x-webhooks: type: string enum: - removed - enterprise: *713 - installation: *714 - member: *733 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + member: *735 + organization: *717 + repository: *718 scope: description: The scope of the membership. Currently, can only be `team`. @@ -146421,7 +146778,7 @@ x-webhooks: required: - login - id - team: *743 + team: *745 required: - action - scope @@ -146503,8 +146860,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *714 - merge_group: &745 + installation: *716 + merge_group: &747 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -146523,15 +146880,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *744 + head_commit: *746 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -146617,10 +146974,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *714 - merge_group: *745 - organization: *715 - repository: *716 + installation: *716 + merge_group: *747 + organization: *717 + repository: *718 sender: *4 required: - action @@ -146693,7 +147050,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 + enterprise: *715 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -146802,16 +147159,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *714 - organization: *715 + installation: *716 + organization: *717 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *746 - required: *747 + properties: *748 + required: *749 nullable: true sender: *4 required: @@ -146892,11 +147249,11 @@ x-webhooks: type: string enum: - closed - enterprise: *713 - installation: *714 - milestone: *738 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + milestone: *740 + organization: *717 + repository: *718 sender: *4 required: - action @@ -146975,9 +147332,9 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - milestone: &748 + enterprise: *715 + installation: *716 + milestone: &750 title: Milestone description: A collection of related issues and pull requests. type: object @@ -147114,8 +147471,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147194,11 +147551,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - milestone: *738 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + milestone: *740 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147308,11 +147665,11 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - milestone: *738 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + milestone: *740 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147392,11 +147749,11 @@ x-webhooks: type: string enum: - opened - enterprise: *713 - installation: *714 - milestone: *748 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + milestone: *750 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147475,11 +147832,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *733 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + blocked_user: *735 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147558,11 +147915,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *733 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + blocked_user: *735 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147641,9 +147998,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - membership: &749 + enterprise: *715 + installation: *716 + membership: &751 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -147750,8 +148107,8 @@ x-webhooks: - role - organization_url - user - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147829,11 +148186,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *713 - installation: *714 - membership: *749 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + membership: *751 + organization: *717 + repository: *718 sender: *4 required: - action @@ -147912,8 +148269,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -148029,10 +148386,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 - user: *733 + user: *735 required: - action - invitation @@ -148110,11 +148467,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *713 - installation: *714 - membership: *749 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + membership: *751 + organization: *717 + repository: *718 sender: *4 required: - action @@ -148201,11 +148558,11 @@ x-webhooks: properties: from: type: string - enterprise: *713 - installation: *714 - membership: *749 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + membership: *751 + organization: *717 + repository: *718 sender: *4 required: - action @@ -148281,9 +148638,9 @@ x-webhooks: type: string enum: - published - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 package: description: Information about the package. type: object @@ -148782,7 +149139,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &750 + items: &752 title: Ruby Gems metadata type: object properties: @@ -148877,7 +149234,7 @@ x-webhooks: - owner - package_version - registry - repository: *716 + repository: *718 sender: *4 required: - action @@ -148953,9 +149310,9 @@ x-webhooks: type: string enum: - updated - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 package: description: Information about the package. type: object @@ -149308,7 +149665,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *750 + items: *752 source_url: type: string format: uri @@ -149378,7 +149735,7 @@ x-webhooks: - owner - package_version - registry - repository: *716 + repository: *718 sender: *4 required: - action @@ -149555,12 +149912,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *713 + enterprise: *715 id: type: integer - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - id @@ -149637,7 +149994,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &751 + personal_access_token_request: &753 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -149783,10 +150140,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *713 - organization: *715 + enterprise: *715 + organization: *717 sender: *4 - installation: *714 + installation: *716 required: - action - personal_access_token_request @@ -149863,11 +150220,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *751 - enterprise: *713 - organization: *715 + personal_access_token_request: *753 + enterprise: *715 + organization: *717 sender: *4 - installation: *714 + installation: *716 required: - action - personal_access_token_request @@ -149943,11 +150300,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *751 - enterprise: *713 - organization: *715 + personal_access_token_request: *753 + enterprise: *715 + organization: *717 sender: *4 - installation: *714 + installation: *716 required: - action - personal_access_token_request @@ -150022,11 +150379,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *751 - organization: *715 - enterprise: *713 + personal_access_token_request: *753 + organization: *717 + enterprise: *715 sender: *4 - installation: *714 + installation: *716 required: - action - personal_access_token_request @@ -150131,7 +150488,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *752 + last_response: *754 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -150163,8 +150520,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 zen: description: Random string of GitHub zen. @@ -150409,10 +150766,10 @@ x-webhooks: - from required: - note - enterprise: *713 - installation: *714 - organization: *715 - project_card: &753 + enterprise: *715 + installation: *716 + organization: *717 + project_card: &755 title: Project Card type: object properties: @@ -150531,7 +150888,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *716 + repository: *718 sender: *4 required: - action @@ -150612,11 +150969,11 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - project_card: *753 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project_card: *755 + repository: *718 sender: *4 required: - action @@ -150696,9 +151053,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 project_card: title: Project Card type: object @@ -150826,8 +151183,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *746 - required: *747 + properties: *748 + required: *749 nullable: true sender: *4 required: @@ -150921,11 +151278,11 @@ x-webhooks: - from required: - note - enterprise: *713 - installation: *714 - organization: *715 - project_card: *753 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project_card: *755 + repository: *718 sender: *4 required: - action @@ -151019,9 +151376,9 @@ x-webhooks: - from required: - column_id - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 project_card: allOf: - title: Project Card @@ -151211,7 +151568,7 @@ x-webhooks: type: string required: - after_id - repository: *716 + repository: *718 sender: *4 required: - action @@ -151291,10 +151648,10 @@ x-webhooks: type: string enum: - closed - enterprise: *713 - installation: *714 - organization: *715 - project: &755 + enterprise: *715 + installation: *716 + organization: *717 + project: &757 title: Project type: object properties: @@ -151418,7 +151775,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *716 + repository: *718 sender: *4 required: - action @@ -151498,10 +151855,10 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - project_column: &754 + enterprise: *715 + installation: *716 + organization: *717 + project_column: &756 title: Project Column type: object properties: @@ -151540,7 +151897,7 @@ x-webhooks: - name - created_at - updated_at - repository: *716 + repository: *718 sender: *4 required: - action @@ -151619,18 +151976,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - project_column: *754 + enterprise: *715 + installation: *716 + organization: *717 + project_column: *756 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *746 - required: *747 + properties: *748 + required: *749 nullable: true sender: *4 required: @@ -151720,11 +152077,11 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - organization: *715 - project_column: *754 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project_column: *756 + repository: *718 sender: *4 required: - action @@ -151804,11 +152161,11 @@ x-webhooks: type: string enum: - moved - enterprise: *713 - installation: *714 - organization: *715 - project_column: *754 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project_column: *756 + repository: *718 sender: *4 required: - action @@ -151888,11 +152245,11 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - project: *755 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project: *757 + repository: *718 sender: *4 required: - action @@ -151972,18 +152329,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - project: *755 + enterprise: *715 + installation: *716 + organization: *717 + project: *757 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *746 - required: *747 + properties: *748 + required: *749 nullable: true sender: *4 required: @@ -152085,11 +152442,11 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - organization: *715 - project: *755 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project: *757 + repository: *718 sender: *4 required: - action @@ -152168,11 +152525,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *713 - installation: *714 - organization: *715 - project: *755 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + project: *757 + repository: *718 sender: *4 required: - action @@ -152253,9 +152610,9 @@ x-webhooks: type: string enum: - closed - installation: *714 - organization: *715 - projects_v2: *251 + installation: *716 + organization: *717 + projects_v2: *253 sender: *4 required: - action @@ -152336,9 +152693,9 @@ x-webhooks: type: string enum: - created - installation: *714 - organization: *715 - projects_v2: *251 + installation: *716 + organization: *717 + projects_v2: *253 sender: *4 required: - action @@ -152419,9 +152776,9 @@ x-webhooks: type: string enum: - deleted - installation: *714 - organization: *715 - projects_v2: *251 + installation: *716 + organization: *717 + projects_v2: *253 sender: *4 required: - action @@ -152538,9 +152895,9 @@ x-webhooks: type: string to: type: string - installation: *714 - organization: *715 - projects_v2: *251 + installation: *716 + organization: *717 + projects_v2: *253 sender: *4 required: - action @@ -152623,7 +152980,7 @@ x-webhooks: type: string enum: - archived - changes: &759 + changes: &761 type: object properties: archived_at: @@ -152637,9 +152994,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *714 - organization: *715 - projects_v2_item: &756 + installation: *716 + organization: *717 + projects_v2_item: &758 title: Projects v2 Item description: An item belonging to a project type: object @@ -152657,7 +153014,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *258 + content_type: *260 creator: *4 created_at: type: string @@ -152774,9 +153131,9 @@ x-webhooks: nullable: true to: type: string - installation: *714 - organization: *715 - projects_v2_item: *756 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -152858,9 +153215,9 @@ x-webhooks: type: string enum: - created - installation: *714 - organization: *715 - projects_v2_item: *756 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -152941,9 +153298,9 @@ x-webhooks: type: string enum: - deleted - installation: *714 - organization: *715 - projects_v2_item: *756 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -153049,7 +153406,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &757 + - &759 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -153071,7 +153428,7 @@ x-webhooks: required: - id - name - - &758 + - &760 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -153105,8 +153462,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *757 - - *758 + - *759 + - *760 required: - field_value - type: object @@ -153122,9 +153479,9 @@ x-webhooks: nullable: true required: - body - installation: *714 - organization: *715 - projects_v2_item: *756 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -153219,9 +153576,9 @@ x-webhooks: to: type: string nullable: true - installation: *714 - organization: *715 - projects_v2_item: *756 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -153304,10 +153661,10 @@ x-webhooks: type: string enum: - restored - changes: *759 - installation: *714 - organization: *715 - projects_v2_item: *756 + changes: *761 + installation: *716 + organization: *717 + projects_v2_item: *758 sender: *4 required: - action @@ -153389,9 +153746,9 @@ x-webhooks: type: string enum: - reopened - installation: *714 - organization: *715 - projects_v2: *251 + installation: *716 + organization: *717 + projects_v2: *253 sender: *4 required: - action @@ -153472,14 +153829,14 @@ x-webhooks: type: string enum: - created - installation: *714 - organization: *715 - projects_v2_status_update: &762 + installation: *716 + organization: *717 + projects_v2_status_update: &764 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *760 - required: *761 + properties: *762 + required: *763 sender: *4 required: - action @@ -153560,9 +153917,9 @@ x-webhooks: type: string enum: - deleted - installation: *714 - organization: *715 - projects_v2_status_update: *762 + installation: *716 + organization: *717 + projects_v2_status_update: *764 sender: *4 required: - action @@ -153698,9 +154055,9 @@ x-webhooks: type: string format: date nullable: true - installation: *714 - organization: *715 - projects_v2_status_update: *762 + installation: *716 + organization: *717 + projects_v2_status_update: *764 sender: *4 required: - action @@ -153771,10 +154128,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - repository @@ -153851,13 +154208,13 @@ x-webhooks: type: string enum: - assigned - assignee: *733 - enterprise: *713 - installation: *714 - number: &763 + assignee: *735 + enterprise: *715 + installation: *716 + number: &765 description: The pull request number. type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -156140,7 +156497,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -156222,11 +156579,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -158504,7 +158861,7 @@ x-webhooks: - draft reason: type: string - repository: *716 + repository: *718 sender: *4 required: - action @@ -158586,11 +158943,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -160868,7 +161225,7 @@ x-webhooks: - draft reason: type: string - repository: *716 + repository: *718 sender: *4 required: - action @@ -160950,13 +161307,13 @@ x-webhooks: type: string enum: - closed - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: &764 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: &766 allOf: - - *569 + - *571 - type: object properties: allow_auto_merge: @@ -161018,7 +161375,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *716 + repository: *718 sender: *4 required: - action @@ -161099,12 +161456,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: *764 - repository: *716 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: *766 + repository: *718 sender: *4 required: - action @@ -161184,11 +161541,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *713 - milestone: *551 - number: *763 - organization: *715 - pull_request: &765 + enterprise: *715 + milestone: *553 + number: *765 + organization: *717 + pull_request: &767 title: Pull Request type: object properties: @@ -163451,7 +163808,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -163530,11 +163887,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -165816,7 +166173,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *716 + repository: *718 sender: *4 required: - action @@ -165940,12 +166297,12 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: *764 - repository: *716 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: *766 + repository: *718 sender: *4 required: - action @@ -166025,11 +166382,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -168296,7 +168653,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -168376,11 +168733,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *713 - installation: *714 - label: *732 - number: *763 - organization: *715 + enterprise: *715 + installation: *716 + label: *734 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -170662,7 +171019,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -170743,10 +171100,10 @@ x-webhooks: type: string enum: - locked - enterprise: *713 - installation: *714 - number: *763 - organization: *715 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -173026,7 +173383,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -173106,12 +173463,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *713 - milestone: *551 - number: *763 - organization: *715 - pull_request: *765 - repository: *716 + enterprise: *715 + milestone: *553 + number: *765 + organization: *717 + pull_request: *767 + repository: *718 sender: *4 required: - action @@ -173190,12 +173547,12 @@ x-webhooks: type: string enum: - opened - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: *764 - repository: *716 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: *766 + repository: *718 sender: *4 required: - action @@ -173276,12 +173633,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: *764 - repository: *716 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: *766 + repository: *718 sender: *4 required: - action @@ -173361,12 +173718,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *713 - installation: *714 - number: *763 - organization: *715 - pull_request: *764 - repository: *716 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 + pull_request: *766 + repository: *718 sender: *4 required: - action @@ -173732,9 +174089,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: type: object properties: @@ -175904,7 +176261,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *716 + repository: *718 sender: *4 required: - action @@ -175984,7 +176341,7 @@ x-webhooks: type: string enum: - deleted - comment: &767 + comment: &769 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -176269,9 +176626,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: type: object properties: @@ -178429,7 +178786,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *716 + repository: *718 sender: *4 required: - action @@ -178509,11 +178866,11 @@ x-webhooks: type: string enum: - edited - changes: *766 - comment: *767 - enterprise: *713 - installation: *714 - organization: *715 + changes: *768 + comment: *769 + enterprise: *715 + installation: *716 + organization: *717 pull_request: type: object properties: @@ -180674,7 +181031,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *716 + repository: *718 sender: *4 required: - action @@ -180755,9 +181112,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: title: Simple Pull Request type: object @@ -182930,7 +183287,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *716 + repository: *718 review: description: The review that was affected. type: object @@ -183177,9 +183534,9 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: title: Simple Pull Request type: object @@ -185233,8 +185590,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *716 - review: &768 + repository: *718 + review: &770 description: The review that was affected. type: object properties: @@ -185467,12 +185824,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: description: The pull request number. type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -187755,7 +188112,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 requested_reviewer: title: User type: object @@ -187839,12 +188196,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: description: The pull request number. type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -190134,7 +190491,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 requested_team: title: Team description: Groups of organization members that gives permissions @@ -190326,12 +190683,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: description: The pull request number. type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -192616,7 +192973,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 requested_reviewer: title: User type: object @@ -192701,12 +193058,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *713 - installation: *714 + enterprise: *715 + installation: *716 number: description: The pull request number. type: integer - organization: *715 + organization: *717 pull_request: title: Pull Request type: object @@ -194982,7 +195339,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 requested_team: title: Team description: Groups of organization members that gives permissions @@ -195163,9 +195520,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: title: Simple Pull Request type: object @@ -197340,8 +197697,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *716 - review: *768 + repository: *718 + review: *770 sender: *4 required: - action @@ -197421,9 +197778,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: title: Simple Pull Request type: object @@ -199493,7 +199850,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *716 + repository: *718 sender: *4 thread: type: object @@ -199880,9 +200237,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 pull_request: title: Simple Pull Request type: object @@ -201938,7 +202295,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *716 + repository: *718 sender: *4 thread: type: object @@ -202328,10 +202685,10 @@ x-webhooks: type: string before: type: string - enterprise: *713 - installation: *714 - number: *763 - organization: *715 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -204602,7 +204959,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -204684,11 +205041,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *769 - enterprise: *713 - installation: *714 - number: *763 - organization: *715 + assignee: *771 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -206971,7 +207328,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -207050,11 +207407,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *713 - installation: *714 - label: *732 - number: *763 - organization: *715 + enterprise: *715 + installation: *716 + label: *734 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -209327,7 +209684,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -209408,10 +209765,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *713 - installation: *714 - number: *763 - organization: *715 + enterprise: *715 + installation: *716 + number: *765 + organization: *717 pull_request: title: Pull Request type: object @@ -211676,7 +212033,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *716 + repository: *718 sender: *4 required: - action @@ -211876,7 +212233,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *713 + enterprise: *715 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -211968,8 +212325,8 @@ x-webhooks: - url - author - committer - installation: *714 - organization: *715 + installation: *716 + organization: *717 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -212544,9 +212901,9 @@ x-webhooks: type: string enum: - published - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 registry_package: type: object properties: @@ -212992,7 +213349,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *750 + items: *752 summary: type: string tag_name: @@ -213046,7 +213403,7 @@ x-webhooks: - owner - package_version - registry - repository: *716 + repository: *718 sender: *4 required: - action @@ -213124,9 +213481,9 @@ x-webhooks: type: string enum: - updated - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 registry_package: type: object properties: @@ -213434,7 +213791,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *750 + items: *752 summary: type: string tag_name: @@ -213483,7 +213840,7 @@ x-webhooks: - owner - package_version - registry - repository: *716 + repository: *718 sender: *4 required: - action @@ -213560,10 +213917,10 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - release: &770 + enterprise: *715 + installation: *716 + organization: *717 + release: &772 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -213881,7 +214238,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *716 + repository: *718 sender: *4 required: - action @@ -213958,11 +214315,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - release: *770 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + release: *772 + repository: *718 sender: *4 required: - action @@ -214079,11 +214436,11 @@ x-webhooks: type: boolean required: - to - enterprise: *713 - installation: *714 - organization: *715 - release: *770 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + release: *772 + repository: *718 sender: *4 required: - action @@ -214161,9 +214518,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -214485,7 +214842,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *716 + repository: *718 sender: *4 required: - action @@ -214561,10 +214918,10 @@ x-webhooks: type: string enum: - published - enterprise: *713 - installation: *714 - organization: *715 - release: &771 + enterprise: *715 + installation: *716 + organization: *717 + release: &773 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -214883,7 +215240,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *716 + repository: *718 sender: *4 required: - action @@ -214959,11 +215316,11 @@ x-webhooks: type: string enum: - released - enterprise: *713 - installation: *714 - organization: *715 - release: *770 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + release: *772 + repository: *718 sender: *4 required: - action @@ -215039,11 +215396,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *713 - installation: *714 - organization: *715 - release: *771 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + release: *773 + repository: *718 sender: *4 required: - action @@ -215119,11 +215476,11 @@ x-webhooks: type: string enum: - published - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - repository_advisory: *633 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + repository_advisory: *635 sender: *4 required: - action @@ -215199,11 +215556,11 @@ x-webhooks: type: string enum: - reported - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - repository_advisory: *633 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + repository_advisory: *635 sender: *4 required: - action @@ -215279,10 +215636,10 @@ x-webhooks: type: string enum: - archived - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215359,10 +215716,10 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215440,10 +215797,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215527,10 +215884,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215642,10 +215999,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215717,10 +216074,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 status: type: string @@ -215801,10 +216158,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215881,10 +216238,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -215978,10 +216335,10 @@ x-webhooks: - name required: - repository - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -216061,11 +216418,11 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - repository_ruleset: *296 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + repository_ruleset: *298 sender: *4 required: - action @@ -216143,11 +216500,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - repository_ruleset: *296 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + repository_ruleset: *298 sender: *4 required: - action @@ -216225,11 +216582,11 @@ x-webhooks: type: string enum: - edited - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - repository_ruleset: *296 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + repository_ruleset: *298 changes: type: object properties: @@ -216248,16 +216605,16 @@ x-webhooks: properties: added: type: array - items: *271 + items: *273 deleted: type: array - items: *271 + items: *273 updated: type: array items: type: object properties: - condition: *271 + condition: *273 changes: type: object properties: @@ -216290,16 +216647,16 @@ x-webhooks: properties: added: type: array - items: *590 + items: *592 deleted: type: array - items: *590 + items: *592 updated: type: array items: type: object properties: - rule: *590 + rule: *592 changes: type: object properties: @@ -216533,10 +216890,10 @@ x-webhooks: - from required: - owner - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -216614,10 +216971,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -216695,7 +217052,7 @@ x-webhooks: type: string enum: - create - alert: &772 + alert: &774 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -216816,10 +217173,10 @@ x-webhooks: type: string enum: - open - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217025,10 +217382,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217106,11 +217463,11 @@ x-webhooks: type: string enum: - reopen - alert: *772 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + alert: *774 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217309,10 +217666,10 @@ x-webhooks: enum: - fixed - open - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217390,11 +217747,11 @@ x-webhooks: type: string enum: - created - alert: &773 + alert: &775 type: object properties: - number: *159 - created_at: *160 + number: *161 + created_at: *162 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -217402,8 +217759,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *162 - html_url: *163 + url: *164 + html_url: *165 locations_url: type: string format: uri @@ -217508,10 +217865,10 @@ x-webhooks: properties: *20 required: *21 nullable: true - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217592,11 +217949,11 @@ x-webhooks: type: string enum: - created - alert: *773 - installation: *714 - location: *774 - organization: *715 - repository: *716 + alert: *775 + installation: *716 + location: *776 + organization: *717 + repository: *718 sender: *4 required: - location @@ -217834,11 +218191,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *773 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + alert: *775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217916,11 +218273,11 @@ x-webhooks: type: string enum: - reopened - alert: *773 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + alert: *775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -217998,11 +218355,11 @@ x-webhooks: type: string enum: - resolved - alert: *773 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + alert: *775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -218080,11 +218437,11 @@ x-webhooks: type: string enum: - validated - alert: *773 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + alert: *775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -218210,10 +218567,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *716 - enterprise: *713 - installation: *714 - organization: *715 + repository: *718 + enterprise: *715 + installation: *716 + organization: *717 sender: *4 required: - action @@ -218291,11 +218648,11 @@ x-webhooks: type: string enum: - published - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - security_advisory: &775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + security_advisory: &777 description: The details of the security advisory, including summary, description, and severity. type: object @@ -218478,11 +218835,11 @@ x-webhooks: type: string enum: - updated - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 - security_advisory: *775 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 + security_advisory: *777 sender: *4 required: - action @@ -218555,10 +218912,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -218742,11 +219099,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *270 - enterprise: *713 - installation: *714 - organization: *715 - repository: *331 + security_and_analysis: *272 + enterprise: *715 + installation: *716 + organization: *717 + repository: *333 sender: *4 required: - changes @@ -218824,12 +219181,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: &776 + sponsorship: &778 type: object properties: created_at: @@ -219130,12 +219487,12 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: *776 + sponsorship: *778 required: - action - sponsorship @@ -219223,12 +219580,12 @@ x-webhooks: type: string required: - from - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: *776 + sponsorship: *778 required: - action - changes @@ -219305,17 +219662,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &777 + effective_date: &779 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: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: *776 + sponsorship: *778 required: - action - sponsorship @@ -219389,7 +219746,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &778 + changes: &780 type: object properties: tier: @@ -219433,13 +219790,13 @@ x-webhooks: - from required: - tier - effective_date: *777 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + effective_date: *779 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: *776 + sponsorship: *778 required: - action - changes @@ -219516,13 +219873,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *778 - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + changes: *780 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - sponsorship: *776 + sponsorship: *778 required: - action - changes @@ -219596,10 +219953,10 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -219682,10 +220039,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -220105,15 +220462,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *713 + enterprise: *715 id: description: The unique identifier of the status. type: integer - installation: *714 + installation: *716 name: type: string - organization: *715 - repository: *716 + organization: *717 + repository: *718 sender: *4 sha: description: The Commit SHA. @@ -220228,9 +220585,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -220320,9 +220677,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -220412,9 +220769,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -220504,9 +220861,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *714 - organization: *715 - repository: *716 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -220583,12 +220940,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - team: &779 + team: &781 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -220811,9 +221168,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 repository: title: Repository description: A git repository @@ -221271,7 +221628,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *779 + team: *781 required: - action - team @@ -221347,9 +221704,9 @@ x-webhooks: type: string enum: - created - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 repository: title: Repository description: A git repository @@ -221807,7 +222164,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *779 + team: *781 required: - action - team @@ -221884,9 +222241,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 repository: title: Repository description: A git repository @@ -222344,7 +222701,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *779 + team: *781 required: - action - team @@ -222488,9 +222845,9 @@ x-webhooks: - from required: - permissions - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 repository: title: Repository description: A git repository @@ -222948,7 +223305,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *779 + team: *781 required: - action - changes @@ -223026,9 +223383,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *713 - installation: *714 - organization: *715 + enterprise: *715 + installation: *716 + organization: *717 repository: title: Repository description: A git repository @@ -223486,7 +223843,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *779 + team: *781 required: - action - team @@ -223562,10 +223919,10 @@ x-webhooks: type: string enum: - started - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 required: - action @@ -223638,16 +223995,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *713 + enterprise: *715 inputs: type: object nullable: true additionalProperties: true - installation: *714 - organization: *715 + installation: *716 + organization: *717 ref: type: string - repository: *716 + repository: *718 sender: *4 workflow: type: string @@ -223729,10 +224086,10 @@ x-webhooks: type: string enum: - completed - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 workflow_job: allOf: @@ -223969,7 +224326,7 @@ x-webhooks: type: string required: - conclusion - deployment: *482 + deployment: *484 required: - action - repository @@ -224048,10 +224405,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 workflow_job: allOf: @@ -224311,7 +224668,7 @@ x-webhooks: required: - status - steps - deployment: *482 + deployment: *484 required: - action - repository @@ -224390,10 +224747,10 @@ x-webhooks: type: string enum: - queued - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 workflow_job: type: object @@ -224528,7 +224885,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *482 + deployment: *484 required: - action - repository @@ -224607,10 +224964,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 workflow_job: type: object @@ -224746,7 +225103,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *482 + deployment: *484 required: - action - repository @@ -224826,12 +225183,12 @@ x-webhooks: type: string enum: - completed - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - workflow: *728 + workflow: *730 workflow_run: title: Workflow Run type: object @@ -225830,12 +226187,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - workflow: *728 + workflow: *730 workflow_run: title: Workflow Run type: object @@ -226819,12 +227176,12 @@ x-webhooks: type: string enum: - requested - enterprise: *713 - installation: *714 - organization: *715 - repository: *716 + enterprise: *715 + installation: *716 + organization: *717 + repository: *718 sender: *4 - workflow: *728 + workflow: *730 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index a21ce6e88..55b39d4ad 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -48098,10 +48098,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } @@ -48322,10 +48320,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } @@ -48468,10 +48464,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } @@ -48728,10 +48722,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } @@ -48917,10 +48909,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -49024,10 +49014,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } @@ -49819,10 +49807,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -50032,10 +50018,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -50163,10 +50147,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -50391,10 +50373,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -50593,10 +50573,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -50774,10 +50752,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -50879,10 +50855,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -119386,6 +119360,505 @@ } } }, + "/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, + "example": "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, + "example": "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.\\-_]+$", + "example": "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + } + } + } + }, + "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, + "example": "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.\\-_]+$", + "example": "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + } + } + } + }, + "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", @@ -119588,6 +120061,151 @@ } } }, + "/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", + "example": 3, + "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", + "description": "The ID of the provenance attestation associated with the deployment record.", + "nullable": true + } + } + } + } + } + }, + "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", @@ -203937,10 +204555,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -204150,10 +204766,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -204281,10 +204895,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -204500,10 +205112,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -204681,10 +205291,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -204786,10 +205394,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -320068,6 +320674,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -320726,6 +321333,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -322327,6 +322935,7 @@ "type": "string", "description": "The language targeted by the CodeQL query", "enum": [ + "actions", "cpp", "csharp", "go", @@ -634965,16 +635574,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" } @@ -635161,9 +635768,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" } @@ -635388,9 +635994,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" } @@ -687952,16 +688557,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" } @@ -748421,10 +749024,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -749301,10 +749902,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -749777,10 +750376,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." }, @@ -1019077,10 +1019674,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } @@ -1019797,10 +1020392,8 @@ "allowed_values": { "type": "array", "items": { - "type": "string", - "maxLength": 75 + "type": "string" }, - "maxItems": 200, "nullable": true, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." } diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 683cbd1b8..434047188 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -865,7 +865,7 @@ paths: - subscriptions_url - type - url - type: &436 + type: &438 type: string description: The type of credit the user is receiving. enum: @@ -1031,7 +1031,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &764 + - &766 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1587,7 +1587,7 @@ paths: schema: type: integer default: 30 - - &346 + - &348 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 @@ -1603,7 +1603,7 @@ paths: application/json: schema: type: array - items: &347 + items: &349 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1683,7 +1683,7 @@ paths: - installation_id - repository_id examples: - default: &348 + default: &350 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1715,7 +1715,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &774 + schema: &776 title: Scim Error description: Scim Error type: object @@ -1811,7 +1811,7 @@ paths: description: Response content: application/json: - schema: &349 + schema: &351 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1925,7 +1925,7 @@ paths: - request - response examples: - default: &350 + default: &352 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2913,7 +2913,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &414 + properties: &416 id: description: Unique identifier of the repository example: 42 @@ -3351,7 +3351,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &415 + required: &417 - archive_url - assignees_url - blobs_url @@ -8740,7 +8740,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &775 + '401': &777 description: Authorization failure '404': *6 x-github: @@ -11536,7 +11536,7 @@ paths: required: false schema: type: string - - &300 + - &302 name: include description: |- The event types to include: @@ -11554,7 +11554,7 @@ paths: - web - git - all - - &301 + - &303 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. @@ -11562,7 +11562,7 @@ paths: required: false schema: type: string - - &302 + - &304 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. @@ -11570,7 +11570,7 @@ paths: required: false schema: type: string - - &303 + - &305 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -11592,7 +11592,7 @@ paths: application/json: schema: type: array - items: &304 + items: &306 type: object properties: "@timestamp": @@ -11714,7 +11714,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &305 + default: &307 value: - "@timestamp": 1606929874512 action: team.add_member @@ -12380,7 +12380,7 @@ paths: application/json: schema: type: array - items: &306 + items: &308 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -12541,7 +12541,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &307 + default: &309 value: - id: 21 number: 42 @@ -12646,7 +12646,7 @@ paths: application/json: schema: type: array - items: &309 + items: &311 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -12771,7 +12771,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &310 + default: &312 value: - id: 21 number: 42 @@ -12856,7 +12856,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &315 + - &317 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`, @@ -12866,7 +12866,7 @@ paths: schema: &107 type: string description: The name of the tool used to generate the code scanning analysis. - - &316 + - &318 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 @@ -12889,7 +12889,7 @@ paths: be returned. in: query required: false - schema: &317 + schema: &319 type: string description: State of a code scanning alert. enum: @@ -12914,7 +12914,7 @@ paths: application/json: schema: type: array - items: &318 + items: &320 type: object properties: number: &123 @@ -12943,7 +12943,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &549 + instances_url: &551 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -12978,7 +12978,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &550 + dismissed_reason: &552 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -12987,13 +12987,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &551 + dismissed_comment: &553 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &552 + rule: &554 type: object properties: id: @@ -13046,7 +13046,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &553 + tool: &555 type: object properties: name: *107 @@ -13056,15 +13056,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *108 - most_recent_instance: &554 + most_recent_instance: &556 type: object properties: - ref: &547 + ref: &549 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &564 + analysis_key: &566 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -13075,7 +13075,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &565 + category: &567 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -13423,7 +13423,7 @@ paths: - most_recent_instance - repository examples: - default: &319 + default: &321 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -14076,7 +14076,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &320 + code_scanning_options: &322 type: object description: Security Configuration feature options for code scanning nullable: true @@ -14270,7 +14270,7 @@ paths: description: Response content: application/json: - schema: &322 + schema: &324 type: array description: A list of default code security configurations items: @@ -14286,7 +14286,7 @@ paths: default configuration: *110 examples: - default: &323 + default: &325 value: - default_for_new_repos: public configuration: @@ -14740,7 +14740,7 @@ paths: default: value: default_for_new_repos: all - configuration: &321 + configuration: &323 value: id: 1325 target_type: organization @@ -14825,7 +14825,7 @@ paths: application/json: schema: type: array - items: &324 + items: &326 type: object description: Repositories associated with a code security configuration and attachment status @@ -14849,7 +14849,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &325 + repository: &327 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -15338,7 +15338,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &311 + - &313 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -15413,7 +15413,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &381 + properties: &383 id: description: Unique identifier of the team type: integer @@ -15485,7 +15485,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &382 + required: &384 - id - node_id - url @@ -16718,7 +16718,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &331 + - &333 name: state in: query description: |- @@ -16727,7 +16727,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &332 + - &334 name: severity in: query description: |- @@ -16736,7 +16736,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &333 + - &335 name: ecosystem in: query description: |- @@ -16745,14 +16745,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &334 + - &336 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 - - &335 + - &337 name: epss_percentage in: query description: |- @@ -16764,7 +16764,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 - - &604 + - &606 name: has in: query description: |- @@ -16778,7 +16778,7 @@ paths: type: string enum: - patch - - &336 + - &338 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -16788,7 +16788,7 @@ paths: enum: - development - runtime - - &337 + - &339 name: sort in: query description: |- @@ -16814,7 +16814,7 @@ paths: application/json: schema: type: array - items: &338 + items: &340 type: object description: A Dependabot alert. properties: @@ -16877,7 +16877,7 @@ paths: - unknown - direct - transitive - security_advisory: &605 + security_advisory: &607 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17109,7 +17109,7 @@ paths: nullable: true maxLength: 280 fixed_at: *133 - auto_dismissed_at: &606 + auto_dismissed_at: &608 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -17135,7 +17135,7 @@ paths: - repository additionalProperties: false examples: - default: &339 + default: &341 value: - number: 2 state: dismissed @@ -18247,7 +18247,7 @@ paths: - name - created_on examples: - default: &447 + default: &449 value: total_count: 2 network_configurations: @@ -18470,7 +18470,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: - *41 - - &448 + - &450 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -18482,7 +18482,7 @@ paths: description: Response content: application/json: - schema: &449 + schema: &451 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -18516,7 +18516,7 @@ paths: - subnet_id - region examples: - default: &450 + default: &452 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -18604,8 +18604,6 @@ paths: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -18818,8 +18816,6 @@ paths: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -19109,8 +19105,6 @@ paths: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -19316,7 +19310,7 @@ paths: required: true content: application/json: - schema: &413 + schema: &415 title: Custom Property Set Payload description: Custom property set payload type: object @@ -19349,8 +19343,6 @@ paths: type: array items: type: string - maxLength: 75 - maxItems: 200 nullable: true description: |- An ordered list of the allowed values of the property. @@ -20483,7 +20475,7 @@ paths: nullable: true anyOf: - *157 - - &419 + - &421 title: Organization ruleset conditions type: object description: |- @@ -20530,7 +20522,7 @@ paths: - *160 rules: type: array - items: &730 + items: &732 title: Repository Rule type: object description: A repository rule. @@ -20539,7 +20531,7 @@ paths: - *166 - *167 - *168 - - &727 + - &729 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -20633,7 +20625,7 @@ paths: - *182 - *183 - *184 - - &728 + - &730 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. @@ -20889,7 +20881,7 @@ paths: type: string format: date-time examples: - default: &422 + default: &424 value: - version_id: 3 actor: @@ -20942,7 +20934,7 @@ paths: description: Response content: application/json: - schema: &423 + schema: &425 allOf: - *189 - type: object @@ -20997,7 +20989,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &424 + - &426 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -21008,7 +21000,7 @@ paths: enum: - open - resolved - - &425 + - &427 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -21018,7 +21010,7 @@ paths: required: false schema: type: string - - &426 + - &428 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -21027,7 +21019,7 @@ paths: required: false schema: type: string - - &427 + - &429 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. @@ -21043,7 +21035,7 @@ paths: - *17 - *104 - *105 - - &428 + - &430 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -21052,7 +21044,7 @@ paths: required: false schema: type: string - - &429 + - &431 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -21061,7 +21053,7 @@ paths: schema: type: boolean default: false - - &430 + - &432 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -21070,7 +21062,7 @@ paths: schema: type: boolean default: false - - &431 + - &433 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -21086,7 +21078,7 @@ paths: application/json: schema: type: array - items: &432 + items: &434 type: object properties: number: *123 @@ -21105,14 +21097,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &742 + state: &744 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: &743 + resolution: &745 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -21219,8 +21211,8 @@ paths: pull request. ' - oneOf: &744 - - &746 + oneOf: &746 + - &748 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -21272,7 +21264,7 @@ paths: - blob_url - commit_sha - commit_url - - &747 + - &749 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. @@ -21327,7 +21319,7 @@ paths: - page_url - commit_sha - commit_url - - &748 + - &750 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -21341,7 +21333,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &749 + - &751 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -21355,7 +21347,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &750 + - &752 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -21369,7 +21361,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &751 + - &753 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -21383,7 +21375,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &752 + - &754 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -21397,7 +21389,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &753 + - &755 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -21411,7 +21403,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &754 + - &756 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. @@ -21425,7 +21417,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &755 + - &757 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. @@ -21439,7 +21431,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &756 + - &758 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. @@ -21453,7 +21445,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &757 + - &759 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. @@ -21467,7 +21459,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &758 + - &760 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -21494,7 +21486,7 @@ paths: required: *21 nullable: true examples: - default: &433 + default: &435 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -21703,7 +21695,7 @@ paths: description: Response content: application/json: - schema: &434 + schema: &436 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -21786,7 +21778,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *191 examples: - default: &435 + default: &437 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -21930,7 +21922,7 @@ paths: description: Response content: application/json: - schema: &438 + schema: &440 type: object properties: total_minutes_used: @@ -22000,7 +21992,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &439 + default: &441 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -22031,7 +22023,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &440 + - &442 name: advanced_security_product in: query description: | @@ -22051,7 +22043,7 @@ paths: description: Success content: application/json: - schema: &441 + schema: &443 type: object properties: total_advanced_security_committers: @@ -22106,7 +22098,7 @@ paths: required: - repositories examples: - default: &442 + default: &444 value: total_advanced_security_committers: 2 total_count: 2 @@ -23418,7 +23410,7 @@ paths: description: Response content: application/json: - schema: &443 + schema: &445 type: object properties: total_gigabytes_bandwidth_used: @@ -23436,7 +23428,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &444 + default: &446 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -23680,7 +23672,7 @@ paths: description: Response content: application/json: - schema: &445 + schema: &447 type: object properties: days_left_in_billing_cycle: @@ -23698,7 +23690,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &446 + default: &448 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -24930,7 +24922,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &664 + properties: &666 id: type: integer format: int64 @@ -25042,7 +25034,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &403 + properties: &405 url: type: string format: uri @@ -25112,7 +25104,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &404 + required: &406 - closed_issues - creator - description @@ -25191,7 +25183,7 @@ paths: timeline_url: type: string format: uri - type: &368 + type: &370 title: Issue Type description: The type of issue. type: object @@ -25302,7 +25294,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &802 + sub_issues_summary: &804 title: Sub-issues Summary type: object properties: @@ -25322,7 +25314,7 @@ paths: type: string format: uri nullable: true - issue_dependencies_summary: &803 + issue_dependencies_summary: &805 title: Issue Dependencies Summary type: object properties: @@ -25341,7 +25333,7 @@ paths: - total_blocking issue_field_values: type: array - items: &804 + items: &806 title: Issue Field Value description: A value assigned to an issue field type: object @@ -25401,7 +25393,7 @@ paths: - node_id - data_type - value - required: &665 + required: &667 - assignee - closed_at - comments @@ -25422,7 +25414,7 @@ paths: - user - created_at - updated_at - comment: &662 + comment: &664 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -25980,7 +25972,7 @@ paths: url: type: string format: uri - user: &816 + user: &818 title: Public User description: Public User type: object @@ -27850,7 +27842,7 @@ paths: - closed - all default: open - - &371 + - &373 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -27901,7 +27893,7 @@ paths: type: array items: *227 examples: - default: &372 + default: &374 value: - id: 1 node_id: MDU6SXNzdWUx @@ -29285,14 +29277,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: - - &470 + - &472 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &471 + - &473 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -29354,7 +29346,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &482 + '301': &484 description: Moved permanently content: application/json: @@ -29376,7 +29368,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &694 + - &696 name: all description: If `true`, show notifications marked as read. in: query @@ -29384,7 +29376,7 @@ paths: schema: type: boolean default: false - - &695 + - &697 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -29394,7 +29386,7 @@ paths: type: boolean default: false - *217 - - &696 + - &698 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: @@ -29430,7 +29422,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &341 + properties: &343 id: type: integer format: int64 @@ -29706,7 +29698,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &416 + security_and_analysis: &418 nullable: true type: object properties: @@ -29788,7 +29780,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &342 + required: &344 - archive_url - assignees_url - blobs_url @@ -29876,7 +29868,7 @@ paths: - url - subscription_url examples: - default: &697 + default: &699 value: - id: '1' repository: @@ -30473,7 +30465,7 @@ paths: type: integer custom_roles: type: array - items: &327 + items: &329 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -30521,7 +30513,7 @@ paths: - created_at - updated_at examples: - default: &328 + default: &330 value: id: 8030 name: Security Engineer @@ -30847,7 +30839,7 @@ paths: type: array items: *151 examples: - default: &703 + default: &705 value: - property_name: environment value: production @@ -30897,7 +30889,7 @@ paths: required: - properties examples: - default: &704 + default: &706 value: properties: - property_name: environment @@ -32273,7 +32265,7 @@ paths: type: integer repository_cache_usages: type: array - items: &487 + items: &489 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -34387,7 +34379,7 @@ paths: type: array items: *284 examples: - default: &819 + default: &821 value: total_count: 1 repositories: @@ -35429,7 +35421,7 @@ paths: description: Response content: application/json: - schema: &507 + schema: &509 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -35458,7 +35450,7 @@ paths: - key_id - key examples: - default: &508 + default: &510 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -35871,7 +35863,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *83 - - &492 + - &494 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)." @@ -36414,6 +36406,324 @@ 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: + - *83 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + type: string + description: The name of the artifact. + minLength: 1 + example: 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 + example: 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.\\-_]+$" + example: 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: &300 + 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 + description: The ID of the provenance attestation associated + with the deployment record. + nullable: true + examples: + default: &301 + 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: + - *83 + - 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 + example: 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.\\-_]+$" + example: 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: *300 + examples: + default: *301 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: artifact-metadata "/orgs/{org}/artifacts/metadata/storage-record": post: summary: Create artifact metadata storage record @@ -36567,6 +36877,51 @@ 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: + - *83 + - 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 + example: 3 + type: integer + deployment_records: + type: array + items: *300 + examples: + default: *301 + 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 @@ -36690,12 +37045,12 @@ paths: required: - subject_digests examples: - default: &847 + default: &849 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &848 + withPredicateType: &850 value: subject_digests: - sha256:abc123 @@ -36753,7 +37108,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &849 + default: &851 value: attestations_subject_digests: - sha256:abc: @@ -37102,7 +37457,7 @@ paths: initiator: type: string examples: - default: &521 + default: &523 value: attestations: - bundle: @@ -37228,10 +37583,10 @@ paths: required: false schema: type: string - - *300 - - *301 - *302 - *303 + - *304 + - *305 - *17 responses: '200': @@ -37240,9 +37595,9 @@ paths: application/json: schema: type: array - items: *304 + items: *306 examples: - default: *305 + default: *307 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -37365,7 +37720,7 @@ paths: subcategory: bypass-requests parameters: - *83 - - &308 + - &310 name: repository_name description: The name of the repository to filter on. in: query @@ -37384,9 +37739,9 @@ paths: application/json: schema: type: array - items: *306 + items: *308 examples: - default: *307 + default: *309 '404': *6 '500': *40 "/orgs/{org}/bypass-requests/secret-scanning": @@ -37410,7 +37765,7 @@ paths: subcategory: delegated-bypass parameters: - *83 - - *308 + - *310 - *99 - *100 - *101 @@ -37424,9 +37779,9 @@ paths: application/json: schema: type: array - items: *309 + items: *311 examples: - default: *310 + default: *312 '404': *6 '500': *40 "/orgs/{org}/campaigns": @@ -37453,7 +37808,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &312 + schema: &314 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -37479,7 +37834,7 @@ paths: application/json: schema: type: array - items: &313 + items: &315 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -37510,7 +37865,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *311 + items: *313 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -37528,7 +37883,7 @@ paths: type: string format: date-time nullable: true - state: *312 + state: *314 contact_link: description: The contact link of the campaign. type: string @@ -37748,9 +38103,9 @@ paths: description: Response content: application/json: - schema: *313 + schema: *315 examples: - default: &314 + default: &316 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -37833,9 +38188,9 @@ paths: description: Response content: application/json: - schema: *313 + schema: *315 examples: - default: *314 + default: *316 '404': *6 '422': description: Unprocessable Entity @@ -37912,7 +38267,7 @@ paths: type: string format: uri nullable: true - state: *312 + state: *314 examples: default: value: @@ -37922,9 +38277,9 @@ paths: description: Response content: application/json: - schema: *313 + schema: *315 examples: - default: *314 + default: *316 '400': description: Bad Request content: @@ -37991,8 +38346,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *83 - - *315 - - *316 + - *317 + - *318 - *104 - *105 - *19 @@ -38003,7 +38358,7 @@ paths: be returned. in: query required: false - schema: *317 + schema: *319 - name: sort description: The property by which to sort the results. in: query @@ -38019,7 +38374,7 @@ paths: be returned. in: query required: false - schema: &548 + schema: &550 type: string description: Severity of a code scanning alert. enum: @@ -38037,9 +38392,9 @@ paths: application/json: schema: type: array - items: *318 + items: *320 examples: - default: *319 + default: *321 headers: Link: *43 '404': *6 @@ -38254,7 +38609,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *320 + code_scanning_options: *322 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -38397,7 +38752,7 @@ paths: application/json: schema: *110 examples: - default: *321 + default: *323 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38425,9 +38780,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *324 examples: - default: *323 + default: *325 '304': *37 '403': *29 '404': *6 @@ -38514,7 +38869,7 @@ paths: application/json: schema: *110 examples: - default: *321 + default: *323 '304': *37 '403': *29 '404': *6 @@ -38936,7 +39291,7 @@ paths: default: value: default_for_new_repos: all - configuration: *321 + configuration: *323 '403': *29 '404': *6 x-github: @@ -38989,13 +39344,13 @@ paths: application/json: schema: type: array - items: *324 + items: *326 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *325 + repository: *327 '403': *29 '404': *6 x-github: @@ -39035,7 +39390,7 @@ paths: type: integer codespaces: type: array - items: &373 + items: &375 type: object title: Codespace description: A codespace. @@ -39065,7 +39420,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &577 + properties: &579 name: type: string description: The name of the machine. @@ -39107,7 +39462,7 @@ paths: - ready - in_progress nullable: true - required: &578 + required: &580 - name - display_name - operating_system @@ -39312,7 +39667,7 @@ paths: - pulls_url - recent_folders examples: - default: &374 + default: &376 value: total_count: 3 codespaces: @@ -39936,7 +40291,7 @@ paths: type: integer secrets: type: array - items: &326 + items: &328 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -39975,7 +40330,7 @@ paths: - updated_at - visibility examples: - default: &579 + default: &581 value: total_count: 2 secrets: @@ -40013,7 +40368,7 @@ paths: description: Response content: application/json: - schema: &580 + schema: &582 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -40042,7 +40397,7 @@ paths: - key_id - key examples: - default: &581 + default: &583 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -40072,9 +40427,9 @@ paths: description: Response content: application/json: - schema: *326 + schema: *328 examples: - default: &583 + default: &585 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -41145,7 +41500,7 @@ paths: type: integer custom_roles: type: array - items: *327 + items: *329 examples: default: value: @@ -41237,7 +41592,7 @@ paths: required: true content: application/json: - schema: &329 + schema: &331 type: object properties: name: @@ -41278,9 +41633,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *329 examples: - default: *328 + default: *330 '422': *15 '404': *6 x-github: @@ -41311,9 +41666,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *329 examples: - default: *328 + default: *330 '404': *6 x-github: githubCloudOnly: true @@ -41341,7 +41696,7 @@ paths: required: true content: application/json: - schema: &330 + schema: &332 type: object properties: name: @@ -41379,9 +41734,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *329 examples: - default: *328 + default: *330 '422': *15 '404': *6 x-github: @@ -41439,7 +41794,7 @@ paths: required: true content: application/json: - schema: *329 + schema: *331 examples: default: value: @@ -41453,9 +41808,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *329 examples: - default: *328 + default: *330 '422': *15 '404': *6 x-github: @@ -41492,9 +41847,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *329 examples: - default: *328 + default: *330 '404': *6 x-github: githubCloudOnly: true @@ -41528,7 +41883,7 @@ paths: required: true content: application/json: - schema: *330 + schema: *332 examples: default: value: @@ -41543,9 +41898,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *329 examples: - default: *328 + default: *330 '422': *15 '404': *6 x-github: @@ -41605,11 +41960,11 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *83 - - *331 - - *332 - *333 - *334 - *335 + - *336 + - *337 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -41647,8 +42002,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *336 - - *337 + - *338 + - *339 - *106 - *104 - *105 @@ -41660,9 +42015,9 @@ paths: application/json: schema: type: array - items: *338 + items: *340 examples: - default: *339 + default: *341 '304': *37 '400': *14 '403': *29 @@ -41706,7 +42061,7 @@ paths: type: integer secrets: type: array - items: &340 + items: &342 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -41783,7 +42138,7 @@ paths: description: Response content: application/json: - schema: &609 + schema: &611 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -41800,7 +42155,7 @@ paths: - key_id - key examples: - default: &610 + default: &612 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -41830,7 +42185,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *342 examples: default: value: @@ -42130,7 +42485,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *83 - - &618 + - &620 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -42138,7 +42493,7 @@ paths: required: false schema: type: string - - &619 + - &621 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -42146,7 +42501,7 @@ paths: required: false schema: type: string - - &620 + - &622 name: time_period description: |- The time period to filter by. @@ -42162,7 +42517,7 @@ paths: - week - month default: month - - &621 + - &623 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -42177,7 +42532,7 @@ paths: - denied - all default: all - - *308 + - *310 - *17 - *19 responses: @@ -42187,7 +42542,7 @@ paths: application/json: schema: type: array - items: &622 + items: &624 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -42343,7 +42698,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &623 + default: &625 value: - id: 21 number: 42 @@ -42430,11 +42785,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *83 - - *308 + - *310 - *99 - *100 - *101 - - &624 + - &626 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -42460,7 +42815,7 @@ paths: application/json: schema: type: array - items: &625 + items: &627 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -42581,7 +42936,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &626 + default: &628 value: - id: 21 number: 42 @@ -42669,7 +43024,7 @@ paths: application/json: schema: type: array - items: &384 + items: &386 title: Package description: A software package type: object @@ -42719,8 +43074,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *341 - required: *342 + properties: *343 + required: *344 nullable: true created_at: type: string @@ -42739,7 +43094,7 @@ paths: - created_at - updated_at examples: - default: &385 + default: &387 value: - id: 197 name: hello_docker @@ -42926,7 +43281,7 @@ paths: description: Response content: application/json: - schema: &465 + schema: &467 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -43007,7 +43362,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &466 + default: &468 value: group_id: '123' group_name: Octocat admins @@ -43062,7 +43417,7 @@ paths: description: Response content: application/json: - schema: &463 + schema: &465 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -43099,7 +43454,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &464 + default: &466 value: groups: - group_id: '123' @@ -43143,7 +43498,7 @@ paths: application/json: schema: type: array - items: &365 + items: &367 title: Organization Invitation description: Organization Invitation type: object @@ -43190,7 +43545,7 @@ paths: - invitation_teams_url - node_id examples: - default: &366 + default: &368 value: - id: 1 login: monalisa @@ -43257,7 +43612,7 @@ paths: application/json: schema: type: array - items: &417 + items: &419 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -43271,7 +43626,7 @@ paths: - name - description examples: - default: &418 + default: &420 value: - name: add_assignee description: Assign or remove a user @@ -43312,7 +43667,7 @@ paths: application/json: schema: type: array - items: &343 + items: &345 title: Org Hook description: Org Hook type: object @@ -43481,9 +43836,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *345 examples: - default: &344 + default: &346 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -43528,7 +43883,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *83 - - &345 + - &347 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. @@ -43541,9 +43896,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *345 examples: - default: *344 + default: *346 '404': *6 x-github: githubCloudOnly: false @@ -43565,7 +43920,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *83 - - *345 + - *347 requestBody: required: false content: @@ -43610,7 +43965,7 @@ paths: description: Response content: application/json: - schema: *343 + schema: *345 examples: default: value: @@ -43650,7 +44005,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *83 - - *345 + - *347 responses: '204': description: Response @@ -43676,7 +44031,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *83 - - *345 + - *347 responses: '200': description: Response @@ -43705,7 +44060,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *83 - - *345 + - *347 requestBody: required: false content: @@ -43754,9 +44109,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *83 - - *345 + - *347 - *17 - - *346 + - *348 responses: '200': description: Response @@ -43764,9 +44119,9 @@ paths: application/json: schema: type: array - items: *347 + items: *349 examples: - default: *348 + default: *350 '400': *14 '422': *15 x-github: @@ -43790,16 +44145,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *83 - - *345 + - *347 - *16 responses: '200': description: Response content: application/json: - schema: *349 + schema: *351 examples: - default: *350 + default: *352 '400': *14 '422': *15 x-github: @@ -43823,7 +44178,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *83 - - *345 + - *347 - *16 responses: '202': *39 @@ -43850,7 +44205,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *83 - - *345 + - *347 responses: '204': description: Response @@ -43873,7 +44228,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *83 - - &355 + - &357 name: actor_type in: path description: The type of the actor @@ -43886,14 +44241,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &356 + - &358 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &351 + - &353 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`.' @@ -43901,7 +44256,7 @@ paths: required: true schema: type: string - - &352 + - &354 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) @@ -43995,12 +44350,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *83 - - *351 - - *352 + - *353 + - *354 - *19 - *17 - *106 - - &361 + - &363 name: sort description: The property to sort the results by. in: query @@ -44079,14 +44434,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *83 - - *351 - - *352 + - *353 + - *354 responses: '200': description: Response content: application/json: - schema: &353 + schema: &355 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -44102,7 +44457,7 @@ paths: type: integer format: int64 examples: - default: &354 + default: &356 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -44123,23 +44478,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *83 - - &357 + - &359 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *351 - - *352 + - *353 + - *354 responses: '200': description: Response content: application/json: - schema: *353 + schema: *355 examples: - default: *354 + default: *356 x-github: enabledForGitHubApps: true category: orgs @@ -44158,18 +44513,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *83 - - *351 - - *352 - - *355 - - *356 + - *353 + - *354 + - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *353 + schema: *355 examples: - default: *354 + default: *356 x-github: enabledForGitHubApps: true category: orgs @@ -44187,9 +44542,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *83 - - *351 - - *352 - - &358 + - *353 + - *354 + - &360 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -44202,7 +44557,7 @@ paths: description: Response content: application/json: - schema: &359 + schema: &361 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -44218,7 +44573,7 @@ paths: type: integer format: int64 examples: - default: &360 + default: &362 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -44255,18 +44610,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *83 - - *357 - - *351 - - *352 - - *358 + - *359 + - *353 + - *354 + - *360 responses: '200': description: Response content: application/json: - schema: *359 + schema: *361 examples: - default: *360 + default: *362 x-github: enabledForGitHubApps: true category: orgs @@ -44284,19 +44639,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *83 - - *355 - - *356 - - *351 - - *352 + - *357 - *358 + - *353 + - *354 + - *360 responses: '200': description: Response content: application/json: - schema: *359 + schema: *361 examples: - default: *360 + default: *362 x-github: enabledForGitHubApps: true category: orgs @@ -44314,13 +44669,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *83 - - *357 - - *351 - - *352 + - *359 + - *353 + - *354 - *19 - *17 - *106 - - *361 + - *363 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -44401,7 +44756,7 @@ paths: application/json: schema: *22 examples: - default: &657 + default: &659 value: id: 1 account: @@ -44567,12 +44922,12 @@ paths: application/json: schema: anyOf: - - &363 + - &365 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &362 + limit: &364 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -44597,7 +44952,7 @@ paths: properties: {} additionalProperties: false examples: - default: &364 + default: &366 value: limit: collaborators_only origin: organization @@ -44626,13 +44981,13 @@ paths: required: true content: application/json: - schema: &658 + schema: &660 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *362 + limit: *364 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -44656,9 +45011,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *365 examples: - default: *364 + default: *366 '422': *15 x-github: githubCloudOnly: false @@ -44736,9 +45091,9 @@ paths: application/json: schema: type: array - items: *365 + items: *367 examples: - default: *366 + default: *368 headers: Link: *43 '404': *6 @@ -44816,7 +45171,7 @@ paths: description: Response content: application/json: - schema: *365 + schema: *367 examples: default: value: @@ -44873,7 +45228,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *83 - - &367 + - &369 name: invitation_id description: The unique identifier of the invitation. in: path @@ -44907,7 +45262,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *83 - - *367 + - *369 - *17 - *19 responses: @@ -44917,9 +45272,9 @@ paths: application/json: schema: type: array - items: *311 + items: *313 examples: - default: &383 + default: &385 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -44962,7 +45317,7 @@ paths: application/json: schema: type: array - items: *368 + items: *370 examples: default: value: @@ -45047,9 +45402,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *370 examples: - default: &369 + default: &371 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -45082,7 +45437,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *83 - - &370 + - &372 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -45135,9 +45490,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *370 examples: - default: *369 + default: *371 '404': *6 '422': *7 x-github: @@ -45162,7 +45517,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *83 - - *370 + - *372 responses: '204': description: Response @@ -45225,7 +45580,7 @@ paths: - closed - all default: open - - *371 + - *373 - name: type description: Can be the name of an issue type. in: query @@ -45256,7 +45611,7 @@ paths: type: array items: *227 examples: - default: *372 + default: *374 headers: Link: *43 '404': *6 @@ -45415,9 +45770,9 @@ paths: type: integer codespaces: type: array - items: *373 + items: *375 examples: - default: *374 + default: *376 '304': *37 '500': *40 '401': *25 @@ -45444,7 +45799,7 @@ paths: parameters: - *83 - *138 - - &375 + - &377 name: codespace_name in: path required: true @@ -45479,15 +45834,15 @@ paths: parameters: - *83 - *138 - - *375 + - *377 responses: '200': description: Response content: application/json: - schema: *373 + schema: *375 examples: - default: &576 + default: &578 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -45743,7 +46098,7 @@ paths: description: Response content: application/json: - schema: &376 + schema: &378 title: Org Membership description: Org Membership type: object @@ -45810,7 +46165,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &377 + response-if-user-has-an-active-admin-membership-with-organization: &379 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -45907,9 +46262,9 @@ paths: description: Response content: application/json: - schema: *376 + schema: *378 examples: - response-if-user-already-had-membership-with-organization: *377 + response-if-user-already-had-membership-with-organization: *379 '422': *15 '403': *29 x-github: @@ -45980,7 +46335,7 @@ paths: application/json: schema: type: array - items: &378 + items: &380 title: Migration description: A migration. type: object @@ -46309,7 +46664,7 @@ paths: description: Response content: application/json: - schema: *378 + schema: *380 examples: default: value: @@ -46488,7 +46843,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *83 - - &379 + - &381 name: migration_id description: The unique identifier of the migration. in: path @@ -46515,7 +46870,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *378 + schema: *380 examples: default: value: @@ -46685,7 +47040,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *83 - - *379 + - *381 responses: '302': description: Response @@ -46707,7 +47062,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *83 - - *379 + - *381 responses: '204': description: Response @@ -46731,8 +47086,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *83 - - *379 - - &832 + - *381 + - &834 name: repo_name description: repo_name parameter in: path @@ -46760,7 +47115,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *83 - - *379 + - *381 - *17 - *19 responses: @@ -46772,7 +47127,7 @@ paths: type: array items: *284 examples: - default: &390 + default: &392 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -46981,7 +47336,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &380 + items: &382 title: Organization Role description: Organization roles type: object @@ -47188,7 +47543,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *382 examples: default: value: @@ -47418,7 +47773,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *382 examples: default: value: @@ -47515,7 +47870,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *382 examples: default: value: @@ -47673,8 +48028,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *381 - required: *382 + properties: *383 + required: *384 nullable: true type: description: The ownership type of the team @@ -47706,7 +48061,7 @@ paths: - type - parent examples: - default: *383 + default: *385 headers: Link: *43 '404': @@ -47764,13 +48119,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &437 + items: &439 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *381 - required: *382 + properties: *383 + required: *384 name: nullable: true type: string @@ -48058,7 +48413,7 @@ paths: - nuget - container - *83 - - &833 + - &835 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -48094,12 +48449,12 @@ paths: application/json: schema: type: array - items: *384 + items: *386 examples: - default: *385 + default: *387 '403': *29 '401': *25 - '400': &835 + '400': &837 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -48121,7 +48476,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &386 + - &388 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 @@ -48139,7 +48494,7 @@ paths: - docker - nuget - container - - &387 + - &389 name: package_name description: The name of the package. in: path @@ -48152,7 +48507,7 @@ paths: description: Response content: application/json: - schema: *384 + schema: *386 examples: default: value: @@ -48204,8 +48559,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *386 - - *387 + - *388 + - *389 - *83 responses: '204': @@ -48238,8 +48593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *386 - - *387 + - *388 + - *389 - *83 - name: token description: package token @@ -48272,8 +48627,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: - - *386 - - *387 + - *388 + - *389 - *83 - *19 - *17 @@ -48294,7 +48649,7 @@ paths: application/json: schema: type: array - items: &388 + items: &390 title: Package Version description: A version of a software package type: object @@ -48419,10 +48774,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: - - *386 - - *387 + - *388 + - *389 - *83 - - &389 + - &391 name: package_version_id description: Unique identifier of the package version. in: path @@ -48434,7 +48789,7 @@ paths: description: Response content: application/json: - schema: *388 + schema: *390 examples: default: value: @@ -48470,10 +48825,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *386 - - *387 - - *83 + - *388 - *389 + - *83 + - *391 responses: '204': description: Response @@ -48505,10 +48860,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *386 - - *387 - - *83 + - *388 - *389 + - *83 + - *391 responses: '204': description: Response @@ -48538,7 +48893,7 @@ paths: - *83 - *17 - *19 - - &391 + - &393 name: sort description: The property by which to sort the results. in: query @@ -48549,7 +48904,7 @@ paths: - created_at default: created_at - *106 - - &392 + - &394 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -48560,7 +48915,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &393 + - &395 name: repository description: The name of the repository to use to filter the results. in: query @@ -48568,7 +48923,7 @@ paths: schema: type: string example: Hello-World - - &394 + - &396 name: permission description: The permission to use to filter the results. in: query @@ -48576,7 +48931,7 @@ paths: schema: type: string example: issues_read - - &395 + - &397 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) @@ -48586,7 +48941,7 @@ paths: schema: type: string format: date-time - - &396 + - &398 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) @@ -48596,7 +48951,7 @@ paths: schema: type: string format: date-time - - &397 + - &399 name: token_id description: The ID of the token in: query @@ -48909,7 +49264,7 @@ paths: type: array items: *284 examples: - default: *390 + default: *392 headers: Link: *43 x-github: @@ -48935,14 +49290,14 @@ paths: - *83 - *17 - *19 - - *391 - - *106 - - *392 - *393 + - *106 - *394 - *395 - *396 - *397 + - *398 + - *399 responses: '500': *40 '422': *15 @@ -49224,7 +49579,7 @@ paths: type: array items: *284 examples: - default: *390 + default: *392 headers: Link: *43 x-github: @@ -49266,7 +49621,7 @@ paths: type: integer configurations: type: array - items: &398 + items: &400 title: Organization private registry description: Private registry configuration for an organization type: object @@ -49556,7 +49911,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &399 + org-private-registry-with-selected-visibility: &401 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -49652,9 +50007,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *398 + schema: *400 examples: - default: *399 + default: *401 '404': *6 x-github: githubCloudOnly: false @@ -49821,7 +50176,7 @@ paths: application/json: schema: type: array - items: &400 + items: &402 title: Projects v2 Project description: A projects v2 project type: object @@ -49891,7 +50246,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &912 + properties: &914 id: type: number description: The unique identifier of the status update. @@ -49939,7 +50294,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &913 + required: &915 - id - node_id - created_at @@ -49964,7 +50319,7 @@ paths: - deleted_at - deleted_by examples: - default: &401 + default: &403 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -50067,7 +50422,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &402 + - &404 name: project_number description: The project's number. in: path @@ -50080,9 +50435,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *402 examples: - default: *401 + default: *403 headers: Link: *43 '304': *37 @@ -50105,7 +50460,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *83 - - *402 + - *404 requestBody: required: true description: Details of the draft item to create in the project. @@ -50139,7 +50494,7 @@ paths: description: Response content: application/json: - schema: &408 + schema: &410 title: Projects v2 Item description: An item belonging to a project type: object @@ -50153,7 +50508,7 @@ paths: content: oneOf: - *227 - - &591 + - &593 title: Pull Request Simple description: Pull Request Simple type: object @@ -50259,8 +50614,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *403 - required: *404 + properties: *405 + required: *406 nullable: true active_lock_reason: type: string @@ -50305,7 +50660,7 @@ paths: nullable: true requested_teams: type: array - items: *311 + items: *313 nullable: true head: type: object @@ -50356,7 +50711,7 @@ paths: _links: type: object properties: - comments: &405 + comments: &407 title: Link description: Hypermedia Link type: object @@ -50365,13 +50720,13 @@ paths: type: string required: - href - commits: *405 - statuses: *405 - html: *405 - issue: *405 - review_comments: *405 - review_comment: *405 - self: *405 + commits: *407 + statuses: *407 + html: *407 + issue: *407 + review_comments: *407 + review_comment: *407 + self: *407 required: - comments - commits @@ -50382,7 +50737,7 @@ paths: - review_comment - self author_association: *214 - auto_merge: &706 + auto_merge: &708 title: Auto merge description: The status of auto merging a pull request. type: object @@ -50484,7 +50839,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &407 + content_type: &409 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -50524,7 +50879,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &409 + draft_issue: &411 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -50598,7 +50953,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *402 + - *404 - *83 - *17 - *104 @@ -50610,7 +50965,7 @@ paths: application/json: schema: type: array - items: &406 + items: &408 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -50757,7 +51112,7 @@ paths: - updated_at - project_url examples: - default: &852 + default: &854 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -50888,8 +51243,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *402 - - &853 + - *404 + - &855 name: field_id description: The unique identifier of the field. in: path @@ -50902,9 +51257,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *408 examples: - default: &854 + default: &856 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -50948,7 +51303,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: - - *402 + - *404 - *83 - 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) @@ -50981,7 +51336,7 @@ paths: application/json: schema: type: array - items: &410 + items: &412 title: Projects v2 Item description: An item belonging to a project type: object @@ -50997,7 +51352,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *407 + content_type: *409 content: type: object additionalProperties: true @@ -51040,7 +51395,7 @@ paths: - updated_at - archived_at examples: - default: &411 + default: &413 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -51737,7 +52092,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - *83 - - *402 + - *404 requestBody: required: true description: Details of the item to add to the project. @@ -51774,10 +52129,10 @@ paths: description: Response content: application/json: - schema: *408 + schema: *410 examples: - issue: *409 - pull_request: *409 + issue: *411 + pull_request: *411 '304': *37 '403': *29 '401': *25 @@ -51797,9 +52152,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: - - *402 + - *404 - *83 - - &412 + - &414 name: item_id description: The unique identifier of the project item. in: path @@ -51825,9 +52180,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *412 examples: - default: *411 + default: *413 headers: Link: *43 '304': *37 @@ -51848,9 +52203,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *402 + - *404 - *83 - - *412 + - *414 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -51920,13 +52275,13 @@ paths: description: Response content: application/json: - schema: *410 + schema: *412 examples: - text_field: *411 - number_field: *411 - date_field: *411 - single_select_field: *411 - iteration_field: *411 + text_field: *413 + number_field: *413 + date_field: *413 + single_select_field: *413 + iteration_field: *413 '401': *25 '403': *29 '404': *6 @@ -51946,9 +52301,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *402 + - *404 - *83 - - *412 + - *414 responses: '204': description: Response @@ -52111,7 +52466,7 @@ paths: required: true content: application/json: - schema: *413 + schema: *415 examples: default: value: @@ -52476,7 +52831,7 @@ paths: type: array items: *284 examples: - default: *390 + default: *392 headers: Link: *43 x-github: @@ -52679,7 +53034,7 @@ paths: description: Response content: application/json: - schema: &481 + schema: &483 title: Full Repository description: Full Repository type: object @@ -52956,8 +53311,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *414 - required: *415 + properties: *416 + required: *417 nullable: true temp_clone_token: type: string @@ -53072,7 +53427,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &596 + properties: &598 url: type: string format: uri @@ -53088,12 +53443,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &597 + required: &599 - url - key - name - html_url - security_and_analysis: *416 + security_and_analysis: *418 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -53177,7 +53532,7 @@ paths: - network_count - subscribers_count examples: - default: &483 + default: &485 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -53703,9 +54058,9 @@ paths: application/json: schema: type: array - items: *417 + items: *419 examples: - default: *418 + default: *420 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -53730,7 +54085,7 @@ paths: - *83 - *17 - *19 - - &729 + - &731 name: targets description: | A comma-separated list of rule targets to filter by. @@ -53821,11 +54176,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *164 - conditions: *419 + conditions: *421 rules: type: array description: An array of rules within the ruleset. - items: &421 + items: &423 title: Repository Rule type: object description: A repository rule. @@ -53889,7 +54244,7 @@ paths: application/json: schema: *185 examples: - default: &420 + default: &422 value: id: 21 name: super cool ruleset @@ -53944,7 +54299,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *83 - - &731 + - &733 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 @@ -53954,16 +54309,16 @@ paths: schema: type: string x-multi-segment: true - - *308 + - *310 - *101 - - &732 + - &734 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 - - &733 + - &735 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -53983,7 +54338,7 @@ paths: description: Response content: application/json: - schema: &734 + schema: &736 title: Rule Suites description: Response type: array @@ -54038,7 +54393,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &735 + default: &737 value: - id: 21 actor_id: 12 @@ -54082,7 +54437,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *83 - - &736 + - &738 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -54098,7 +54453,7 @@ paths: description: Response content: application/json: - schema: &737 + schema: &739 title: Rule Suite description: Response type: object @@ -54197,7 +54552,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &738 + default: &740 value: id: 21 actor_id: 12 @@ -54272,7 +54627,7 @@ paths: application/json: schema: *185 examples: - default: *420 + default: *422 '404': *6 '500': *40 put: @@ -54321,11 +54676,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *164 - conditions: *419 + conditions: *421 rules: description: An array of rules within the ruleset. type: array - items: *421 + items: *423 examples: default: value: @@ -54362,7 +54717,7 @@ paths: application/json: schema: *185 examples: - default: *420 + default: *422 '404': *6 '500': *40 delete: @@ -54421,7 +54776,7 @@ paths: type: array items: *189 examples: - default: *422 + default: *424 '404': *6 '500': *40 x-github: @@ -54458,7 +54813,7 @@ paths: description: Response content: application/json: - schema: *423 + schema: *425 examples: default: value: @@ -54521,14 +54876,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *83 - - *424 - - *425 - *426 - *427 + - *428 + - *429 - *106 - *19 - *17 - - &740 + - &742 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 @@ -54538,7 +54893,7 @@ paths: required: false schema: type: string - - &741 + - &743 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 @@ -54548,10 +54903,10 @@ paths: required: false schema: type: string - - *428 - - *429 - *430 - *431 + - *432 + - *433 responses: '200': description: Response @@ -54559,9 +54914,9 @@ paths: application/json: schema: type: array - items: *432 + items: *434 examples: - default: *433 + default: *435 headers: Link: *43 '404': *6 @@ -54596,9 +54951,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *436 examples: - default: *435 + default: *437 '403': *29 '404': *6 patch: @@ -54751,7 +55106,7 @@ paths: application/json: schema: type: array - items: &762 + items: &764 description: A repository security advisory. type: object properties: @@ -54971,7 +55326,7 @@ paths: login: type: string description: The username of the user credited. - type: *436 + type: *438 credits_detailed: type: array nullable: true @@ -54981,7 +55336,7 @@ paths: type: object properties: user: *4 - type: *436 + type: *438 state: type: string description: The state of the user's acceptance of the @@ -55005,7 +55360,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *311 + items: *313 private_fork: readOnly: true nullable: true @@ -55042,7 +55397,7 @@ paths: - private_fork additionalProperties: false examples: - default: &763 + default: &765 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -55429,9 +55784,9 @@ paths: application/json: schema: type: array - items: *437 + items: *439 examples: - default: *383 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55516,9 +55871,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: *439 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -55543,7 +55898,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *83 - - *440 + - *442 - *17 - *19 responses: @@ -55551,9 +55906,9 @@ paths: description: Success content: application/json: - schema: *441 + schema: *443 examples: - default: *442 + default: *444 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -55581,9 +55936,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *445 examples: - default: *444 + default: *446 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -55611,9 +55966,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: - default: *446 + default: *448 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -55894,7 +56249,7 @@ paths: type: array items: *143 examples: - default: *447 + default: *449 headers: Link: *43 x-github: @@ -56095,15 +56450,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: - *83 - - *448 + - *450 responses: '200': description: Response content: application/json: - schema: *449 + schema: *451 examples: - default: *450 + default: *452 headers: Link: *43 x-github: @@ -56141,7 +56496,7 @@ paths: description: Response content: application/json: - schema: &472 + schema: &474 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -56187,7 +56542,7 @@ paths: type: string nullable: true examples: - default: &473 + default: &475 value: groups: - group_id: '123' @@ -56299,9 +56654,9 @@ paths: application/json: schema: type: array - items: *311 + items: *313 examples: - default: *383 + default: *385 headers: Link: *43 '403': *29 @@ -56395,7 +56750,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &453 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -56458,8 +56813,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *381 - required: *382 + properties: *383 + required: *384 nullable: true members_count: type: integer @@ -56722,7 +57077,7 @@ paths: - repos_count - organization examples: - default: &452 + default: &454 value: id: 1 node_id: MDQ6VGVhbTE= @@ -56799,9 +57154,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *452 + default: *454 '404': *6 x-github: githubCloudOnly: false @@ -56885,16 +57240,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *451 + schema: *453 examples: - default: *452 + default: *454 '201': description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *452 + default: *454 '404': *6 '422': *15 '403': *29 @@ -56964,7 +57319,7 @@ paths: application/json: schema: type: array - items: &453 + items: &455 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -57063,7 +57418,7 @@ paths: - updated_at - url examples: - default: &806 + default: &808 value: - author: login: octocat @@ -57172,9 +57527,9 @@ paths: description: Response content: application/json: - schema: *453 + schema: *455 examples: - default: &454 + default: &456 value: author: login: octocat @@ -57248,7 +57603,7 @@ paths: parameters: - *83 - *210 - - &455 + - &457 name: discussion_number description: The number that identifies the discussion. in: path @@ -57260,9 +57615,9 @@ paths: description: Response content: application/json: - schema: *453 + schema: *455 examples: - default: *454 + default: *456 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57286,7 +57641,7 @@ paths: parameters: - *83 - *210 - - *455 + - *457 requestBody: required: false content: @@ -57309,9 +57664,9 @@ paths: description: Response content: application/json: - schema: *453 + schema: *455 examples: - default: &807 + default: &809 value: author: login: octocat @@ -57383,7 +57738,7 @@ paths: parameters: - *83 - *210 - - *455 + - *457 responses: '204': description: Response @@ -57411,7 +57766,7 @@ paths: parameters: - *83 - *210 - - *455 + - *457 - *106 - *17 - *19 @@ -57422,7 +57777,7 @@ paths: application/json: schema: type: array - items: &456 + items: &458 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -57494,7 +57849,7 @@ paths: - updated_at - url examples: - default: &808 + default: &810 value: - author: login: octocat @@ -57564,7 +57919,7 @@ paths: parameters: - *83 - *210 - - *455 + - *457 requestBody: required: true content: @@ -57586,9 +57941,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *458 examples: - default: &457 + default: &459 value: author: login: octocat @@ -57656,8 +58011,8 @@ paths: parameters: - *83 - *210 - - *455 - - &458 + - *457 + - &460 name: comment_number description: The number that identifies the comment. in: path @@ -57669,9 +58024,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *458 examples: - default: *457 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57695,8 +58050,8 @@ paths: parameters: - *83 - *210 - - *455 - - *458 + - *457 + - *460 requestBody: required: true content: @@ -57718,9 +58073,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *458 examples: - default: &809 + default: &811 value: author: login: octocat @@ -57786,8 +58141,8 @@ paths: parameters: - *83 - *210 - - *455 - - *458 + - *457 + - *460 responses: '204': description: Response @@ -57815,8 +58170,8 @@ paths: parameters: - *83 - *210 - - *455 - - *458 + - *457 + - *460 - 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. @@ -57842,7 +58197,7 @@ paths: application/json: schema: type: array - items: &459 + items: &461 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -57885,7 +58240,7 @@ paths: - content - created_at examples: - default: &461 + default: &463 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -57937,8 +58292,8 @@ paths: parameters: - *83 - *210 - - *455 - - *458 + - *457 + - *460 requestBody: required: true content: @@ -57971,9 +58326,9 @@ paths: team discussion comment content: application/json: - schema: *459 + schema: *461 examples: - default: &460 + default: &462 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -58002,9 +58357,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58029,9 +58384,9 @@ paths: parameters: - *83 - *210 - - *455 - - *458 - - &462 + - *457 + - *460 + - &464 name: reaction_id description: The unique identifier of the reaction. in: path @@ -58065,7 +58420,7 @@ paths: parameters: - *83 - *210 - - *455 + - *457 - 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. @@ -58091,9 +58446,9 @@ paths: application/json: schema: type: array - items: *459 + items: *461 examples: - default: *461 + default: *463 headers: Link: *43 x-github: @@ -58121,7 +58476,7 @@ paths: parameters: - *83 - *210 - - *455 + - *457 requestBody: required: true content: @@ -58153,16 +58508,16 @@ paths: description: Response content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '201': description: Response content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -58187,8 +58542,8 @@ paths: parameters: - *83 - *210 - - *455 - - *462 + - *457 + - *464 responses: '204': description: Response @@ -58218,9 +58573,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *465 examples: - default: *464 + default: *466 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -58263,9 +58618,9 @@ paths: description: Response content: application/json: - schema: *465 + schema: *467 examples: - default: *466 + default: *468 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -58320,9 +58675,9 @@ paths: application/json: schema: type: array - items: *365 + items: *367 examples: - default: *366 + default: *368 headers: Link: *43 x-github: @@ -58406,7 +58761,7 @@ paths: description: Response content: application/json: - schema: &467 + schema: &469 title: Team Membership description: Team Membership type: object @@ -58433,7 +58788,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &810 + response-if-user-is-a-team-maintainer: &812 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -58496,9 +58851,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *469 examples: - response-if-users-membership-with-team-is-now-pending: &811 + response-if-users-membership-with-team-is-now-pending: &813 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -58571,7 +58926,7 @@ paths: application/json: schema: type: array - items: &468 + items: &470 title: Team Project description: A team's access to a project. type: object @@ -58639,7 +58994,7 @@ paths: - updated_at - permissions examples: - default: &812 + default: &814 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -58704,7 +59059,7 @@ paths: parameters: - *83 - *210 - - &469 + - &471 name: project_id description: The unique identifier of the project. in: path @@ -58716,9 +59071,9 @@ paths: description: Response content: application/json: - schema: *468 + schema: *470 examples: - default: &813 + default: &815 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -58782,7 +59137,7 @@ paths: parameters: - *83 - *210 - - *469 + - *471 requestBody: required: false content: @@ -58850,7 +59205,7 @@ paths: parameters: - *83 - *210 - - *469 + - *471 responses: '204': description: Response @@ -58890,7 +59245,7 @@ paths: type: array items: *284 examples: - default: *390 + default: *392 headers: Link: *43 x-github: @@ -58921,14 +59276,14 @@ paths: parameters: - *83 - *210 - - *470 - - *471 + - *472 + - *473 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &814 + schema: &816 title: Team Repository description: A team's access to a repository. type: object @@ -59499,8 +59854,8 @@ paths: parameters: - *83 - *210 - - *470 - - *471 + - *472 + - *473 requestBody: required: false content: @@ -59547,8 +59902,8 @@ paths: parameters: - *83 - *210 - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -59581,9 +59936,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: - default: *473 + default: *475 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -59649,7 +60004,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: default: value: @@ -59692,9 +60047,9 @@ paths: application/json: schema: type: array - items: *311 + items: *313 examples: - response-if-child-teams-exist: &815 + response-if-child-teams-exist: &817 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -59821,7 +60176,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#get-a-project-card parameters: - - &474 + - &476 name: card_id description: The unique identifier of the card. in: path @@ -59833,7 +60188,7 @@ paths: description: Response content: application/json: - schema: &475 + schema: &477 title: Project Card description: Project cards represent a scope of work. type: object @@ -59900,7 +60255,7 @@ paths: - created_at - updated_at examples: - default: &476 + default: &478 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -59956,7 +60311,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#update-an-existing-project-card parameters: - - *474 + - *476 requestBody: required: false content: @@ -59983,9 +60338,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *477 examples: - default: *476 + default: *478 '304': *37 '403': *29 '401': *25 @@ -60012,7 +60367,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#delete-a-project-card parameters: - - *474 + - *476 responses: '204': description: Response @@ -60056,7 +60411,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#move-a-project-card parameters: - - *474 + - *476 requestBody: required: true content: @@ -60167,7 +60522,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#get-a-project-column parameters: - - &477 + - &479 name: column_id description: The unique identifier of the column. in: path @@ -60179,7 +60534,7 @@ paths: description: Response content: application/json: - schema: &478 + schema: &480 title: Project Column description: Project columns contain cards of work. type: object @@ -60225,7 +60580,7 @@ paths: - created_at - updated_at examples: - default: &479 + default: &481 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -60260,7 +60615,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#update-an-existing-project-column parameters: - - *477 + - *479 requestBody: required: true content: @@ -60284,9 +60639,9 @@ paths: description: Response content: application/json: - schema: *478 + schema: *480 examples: - default: *479 + default: *481 '304': *37 '403': *29 '401': *25 @@ -60311,7 +60666,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#delete-a-project-column parameters: - - *477 + - *479 responses: '204': description: Response @@ -60340,7 +60695,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#list-project-cards parameters: - - *477 + - *479 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -60361,7 +60716,7 @@ paths: application/json: schema: type: array - items: *475 + items: *477 examples: default: value: @@ -60420,7 +60775,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/cards#create-a-project-card parameters: - - *477 + - *479 requestBody: required: true content: @@ -60460,9 +60815,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *477 examples: - default: *476 + default: *478 '304': *37 '403': *29 '401': *25 @@ -60518,7 +60873,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/columns#move-a-project-column parameters: - - *477 + - *479 requestBody: required: true content: @@ -60578,7 +60933,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#list-project-collaborators parameters: - - *469 + - *471 - 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 @@ -60635,7 +60990,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#add-project-collaborator parameters: - - *469 + - *471 - *138 requestBody: required: false @@ -60688,7 +61043,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects-classic/collaborators#remove-user-as-a-collaborator parameters: - - *469 + - *471 - *138 responses: '204': @@ -60720,7 +61075,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: - - *469 + - *471 - *138 responses: '200': @@ -60821,7 +61176,7 @@ paths: resources: type: object properties: - core: &480 + core: &482 title: Rate Limit type: object properties: @@ -60838,21 +61193,21 @@ paths: - remaining - reset - used - graphql: *480 - search: *480 - code_search: *480 - source_import: *480 - integration_manifest: *480 - code_scanning_upload: *480 - actions_runner_registration: *480 - scim: *480 - dependency_snapshots: *480 - dependency_sbom: *480 - code_scanning_autofix: *480 + graphql: *482 + search: *482 + code_search: *482 + source_import: *482 + integration_manifest: *482 + code_scanning_upload: *482 + actions_runner_registration: *482 + scim: *482 + dependency_snapshots: *482 + dependency_sbom: *482 + code_scanning_autofix: *482 required: - core - search - rate: *480 + rate: *482 required: - rate - resources @@ -60957,14 +61312,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response content: application/json: - schema: *481 + schema: *483 examples: default-response: summary: Default response @@ -61469,7 +61824,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *482 + '301': *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61487,8 +61842,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: false content: @@ -61745,10 +62100,10 @@ paths: description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: *483 - '307': &484 + default: *485 + '307': &486 description: Temporary Redirect content: application/json: @@ -61777,8 +62132,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -61800,7 +62155,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': *484 + '307': *486 '404': *6 '409': *114 x-github: @@ -61824,11 +62179,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 - - &499 + - &501 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -61851,7 +62206,7 @@ paths: type: integer artifacts: type: array - items: &485 + items: &487 title: Artifact description: An artifact type: object @@ -61929,7 +62284,7 @@ paths: - expires_at - updated_at examples: - default: &500 + default: &502 value: total_count: 2 artifacts: @@ -61990,9 +62345,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *470 - - *471 - - &486 + - *472 + - *473 + - &488 name: artifact_id description: The unique identifier of the artifact. in: path @@ -62004,7 +62359,7 @@ paths: description: Response content: application/json: - schema: *485 + schema: *487 examples: default: value: @@ -62042,9 +62397,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *470 - - *471 - - *486 + - *472 + - *473 + - *488 responses: '204': description: Response @@ -62068,9 +62423,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *470 - - *471 - - *486 + - *472 + - *473 + - *488 - name: archive_format in: path required: true @@ -62084,7 +62439,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': &661 + '410': &663 description: Gone content: application/json: @@ -62111,14 +62466,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response content: application/json: - schema: *487 + schema: *489 examples: default: value: @@ -62144,11 +62499,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: - - *470 - - *471 + - *472 + - *473 - *17 - *19 - - &488 + - &490 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 @@ -62182,7 +62537,7 @@ paths: description: Response content: application/json: - schema: &489 + schema: &491 title: Repository actions caches description: Repository actions caches type: object @@ -62224,7 +62579,7 @@ paths: - total_count - actions_caches examples: - default: &490 + default: &492 value: total_count: 1 actions_caches: @@ -62256,23 +62611,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: - - *470 - - *471 + - *472 + - *473 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *488 + - *490 responses: '200': description: Response content: application/json: - schema: *489 + schema: *491 examples: - default: *490 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62292,8 +62647,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: - - *470 - - *471 + - *472 + - *473 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -62324,9 +62679,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: - - *470 - - *471 - - &491 + - *472 + - *473 + - &493 name: job_id description: The unique identifier of the job. in: path @@ -62338,7 +62693,7 @@ paths: description: Response content: application/json: - schema: &503 + schema: &505 title: Job description: Information of a job execution in a workflow run type: object @@ -62645,9 +63000,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: - - *470 - - *471 - - *491 + - *472 + - *473 + - *493 responses: '302': description: Response @@ -62675,9 +63030,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: - - *470 - - *471 - - *491 + - *472 + - *473 + - *493 requestBody: required: false content: @@ -62722,8 +63077,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Status response @@ -62773,8 +63128,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -62837,8 +63192,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -62856,7 +63211,7 @@ paths: type: integer secrets: type: array - items: &505 + items: &507 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -62876,7 +63231,7 @@ paths: - created_at - updated_at examples: - default: &506 + default: &508 value: total_count: 2 secrets: @@ -62909,9 +63264,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *470 - - *471 - - *492 + - *472 + - *473 + - *494 - *19 responses: '200': @@ -62928,7 +63283,7 @@ paths: type: integer variables: type: array - items: &509 + items: &511 title: Actions Variable type: object properties: @@ -62958,7 +63313,7 @@ paths: - created_at - updated_at examples: - default: &510 + default: &512 value: total_count: 2 variables: @@ -62991,8 +63346,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -63001,7 +63356,7 @@ paths: schema: type: object properties: - enabled: &493 + enabled: &495 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *56 @@ -63036,8 +63391,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: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -63048,7 +63403,7 @@ paths: schema: type: object properties: - enabled: *493 + enabled: *495 allowed_actions: *56 sha_pinning_required: *57 required: @@ -63081,14 +63436,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response content: application/json: - schema: &494 + schema: &496 type: object properties: access_level: @@ -63106,7 +63461,7 @@ paths: required: - access_level examples: - default: &495 + default: &497 value: access_level: organization x-github: @@ -63131,15 +63486,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: application/json: - schema: *494 + schema: *496 examples: - default: *495 + default: *497 responses: '204': description: Response @@ -63163,8 +63518,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -63194,8 +63549,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: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Empty response for successful settings update @@ -63229,8 +63584,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -63257,8 +63612,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: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -63292,8 +63647,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -63321,8 +63676,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -63353,8 +63708,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -63385,8 +63740,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: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -63418,8 +63773,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -63448,8 +63803,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: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Success response @@ -63489,8 +63844,8 @@ paths: in: query schema: type: string - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -63534,8 +63889,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -63567,8 +63922,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -63642,8 +63997,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: - - *470 - - *471 + - *472 + - *473 responses: '201': description: Response @@ -63679,8 +64034,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: - - *470 - - *471 + - *472 + - *473 responses: '201': description: Response @@ -63710,8 +64065,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: - - *470 - - *471 + - *472 + - *473 - *71 responses: '200': @@ -63741,8 +64096,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: - - *470 - - *471 + - *472 + - *473 - *71 responses: '204': @@ -63769,8 +64124,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: - - *470 - - *471 + - *472 + - *473 - *71 responses: '200': *77 @@ -63795,8 +64150,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: - - *470 - - *471 + - *472 + - *473 - *71 requestBody: required: true @@ -63845,8 +64200,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: - - *470 - - *471 + - *472 + - *473 - *71 requestBody: required: true @@ -63896,8 +64251,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: - - *470 - - *471 + - *472 + - *473 - *71 responses: '200': *291 @@ -63927,8 +64282,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: - - *470 - - *471 + - *472 + - *473 - *71 - *292 responses: @@ -63958,9 +64313,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: - - *470 - - *471 - - &513 + - *472 + - *473 + - &515 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. @@ -63968,7 +64323,7 @@ paths: required: false schema: type: string - - &514 + - &516 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -63976,7 +64331,7 @@ paths: required: false schema: type: string - - &515 + - &517 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -63985,7 +64340,7 @@ paths: required: false schema: type: string - - &516 + - &518 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 @@ -64012,7 +64367,7 @@ paths: - pending - *17 - *19 - - &517 + - &519 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)." @@ -64021,7 +64376,7 @@ paths: schema: type: string format: date-time - - &496 + - &498 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -64030,13 +64385,13 @@ paths: schema: type: boolean default: false - - &518 + - &520 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &519 + - &521 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -64059,7 +64414,7 @@ paths: type: integer workflow_runs: type: array - items: &497 + items: &499 title: Workflow Run description: An invocation of a workflow type: object @@ -64154,7 +64509,7 @@ paths: that triggered the run. type: array nullable: true - items: &538 + items: &540 title: Pull Request Minimal type: object properties: @@ -64273,7 +64628,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &542 + properties: &544 id: type: string description: SHA for the commit @@ -64324,7 +64679,7 @@ paths: - name - email nullable: true - required: &543 + required: &545 - id - tree_id - message @@ -64371,7 +64726,7 @@ paths: - workflow_url - pull_requests examples: - default: &520 + default: &522 value: total_count: 1 workflow_runs: @@ -64607,24 +64962,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *470 - - *471 - - &498 + - *472 + - *473 + - &500 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *496 + - *498 responses: '200': description: Response content: application/json: - schema: *497 + schema: *499 examples: - default: &501 + default: &503 value: id: 30433642 name: Build @@ -64865,9 +65220,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 responses: '204': description: Response @@ -64890,9 +65245,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: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 responses: '200': description: Response @@ -65011,9 +65366,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: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 responses: '201': description: Response @@ -65046,12 +65401,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 - *17 - *19 - - *499 + - *501 responses: '200': description: Response @@ -65067,9 +65422,9 @@ paths: type: integer artifacts: type: array - items: *485 + items: *487 examples: - default: *500 + default: *502 headers: Link: *43 x-github: @@ -65093,25 +65448,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *470 - - *471 - - *498 - - &502 + - *472 + - *473 + - *500 + - &504 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *496 + - *498 responses: '200': description: Response content: application/json: - schema: *497 + schema: *499 examples: - default: *501 + default: *503 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65134,10 +65489,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: - - *470 - - *471 - - *498 - - *502 + - *472 + - *473 + - *500 + - *504 - *17 - *19 responses: @@ -65155,9 +65510,9 @@ paths: type: integer jobs: type: array - items: *503 + items: *505 examples: - default: &504 + default: &506 value: total_count: 1 jobs: @@ -65270,10 +65625,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *470 - - *471 - - *498 - - *502 + - *472 + - *473 + - *500 + - *504 responses: '302': description: Response @@ -65301,9 +65656,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 responses: '202': description: Response @@ -65336,9 +65691,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: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 requestBody: required: true content: @@ -65405,9 +65760,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 responses: '202': description: Response @@ -65440,9 +65795,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: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 - 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 @@ -65472,9 +65827,9 @@ paths: type: integer jobs: type: array - items: *503 + items: *505 examples: - default: *504 + default: *506 headers: Link: *43 x-github: @@ -65499,9 +65854,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 responses: '302': description: Response @@ -65528,9 +65883,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 responses: '204': description: Response @@ -65557,9 +65912,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: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 responses: '200': description: Response @@ -65619,7 +65974,7 @@ paths: items: type: object properties: - type: &627 + type: &629 type: string description: The type of reviewer. enum: @@ -65629,7 +65984,7 @@ paths: reviewer: anyOf: - *4 - - *311 + - *313 required: - environment - wait_timer @@ -65704,9 +66059,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: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 requestBody: required: true content: @@ -65753,7 +66108,7 @@ paths: application/json: schema: type: array - items: &613 + items: &615 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -65859,7 +66214,7 @@ paths: - created_at - updated_at examples: - default: &614 + default: &616 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -65915,9 +66270,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 requestBody: required: false content: @@ -65961,9 +66316,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: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 requestBody: required: false content: @@ -66017,9 +66372,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *470 - - *471 - - *498 + - *472 + - *473 + - *500 responses: '200': description: Response @@ -66156,8 +66511,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -66175,9 +66530,9 @@ paths: type: integer secrets: type: array - items: *505 + items: *507 examples: - default: *506 + default: *508 headers: Link: *43 x-github: @@ -66202,16 +66557,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response content: application/json: - schema: *507 + schema: *509 examples: - default: *508 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66233,17 +66588,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *470 - - *471 + - *472 + - *473 - *294 responses: '200': description: Response content: application/json: - schema: *505 + schema: *507 examples: - default: &640 + default: &642 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -66269,8 +66624,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *470 - - *471 + - *472 + - *473 - *294 requestBody: required: true @@ -66328,8 +66683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *470 - - *471 + - *472 + - *473 - *294 responses: '204': @@ -66355,9 +66710,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *470 - - *471 - - *492 + - *472 + - *473 + - *494 - *19 responses: '200': @@ -66374,9 +66729,9 @@ paths: type: integer variables: type: array - items: *509 + items: *511 examples: - default: *510 + default: *512 headers: Link: *43 x-github: @@ -66399,8 +66754,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -66452,17 +66807,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *470 - - *471 + - *472 + - *473 - *297 responses: '200': description: Response content: application/json: - schema: *509 + schema: *511 examples: - default: &641 + default: &643 value: name: USERNAME value: octocat @@ -66488,8 +66843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *470 - - *471 + - *472 + - *473 - *297 requestBody: required: true @@ -66532,8 +66887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *470 - - *471 + - *472 + - *473 - *297 responses: '204': @@ -66559,8 +66914,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -66578,7 +66933,7 @@ paths: type: integer workflows: type: array - items: &511 + items: &513 title: Workflow description: A GitHub Actions workflow type: object @@ -66685,9 +67040,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *470 - - *471 - - &512 + - *472 + - *473 + - &514 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -66702,7 +67057,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *513 examples: default: value: @@ -66735,9 +67090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *470 - - *471 - - *512 + - *472 + - *473 + - *514 responses: '204': description: Response @@ -66762,9 +67117,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *470 - - *471 - - *512 + - *472 + - *473 + - *514 responses: '204': description: Response @@ -66815,9 +67170,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *470 - - *471 - - *512 + - *472 + - *473 + - *514 responses: '204': description: Response @@ -66844,19 +67199,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: - - *470 - - *471 - - *512 - - *513 + - *472 + - *473 - *514 - *515 - *516 - - *17 - - *19 - *517 - - *496 - *518 + - *17 + - *19 - *519 + - *498 + - *520 + - *521 responses: '200': description: Response @@ -66872,9 +67227,9 @@ paths: type: integer workflow_runs: type: array - items: *497 + items: *499 examples: - default: *520 + default: *522 headers: Link: *43 x-github: @@ -66907,9 +67262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *470 - - *471 - - *512 + - *472 + - *473 + - *514 responses: '200': description: Response @@ -66970,8 +67325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *470 - - *471 + - *472 + - *473 - *106 - *17 - *104 @@ -67135,8 +67490,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -67173,8 +67528,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: - - *470 - - *471 + - *472 + - *473 - name: assignee in: path required: true @@ -67210,8 +67565,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -67323,8 +67678,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *104 - *105 @@ -67381,7 +67736,7 @@ paths: initiator: type: string examples: - default: *521 + default: *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67401,8 +67756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -67410,7 +67765,7 @@ paths: application/json: schema: type: array - items: &522 + items: &524 title: Autolink reference description: An autolink reference. type: object @@ -67464,8 +67819,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -67504,9 +67859,9 @@ paths: description: response content: application/json: - schema: *522 + schema: *524 examples: - default: &523 + default: &525 value: id: 1 key_prefix: TICKET- @@ -67537,9 +67892,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: - - *470 - - *471 - - &524 + - *472 + - *473 + - &526 name: autolink_id description: The unique identifier of the autolink. in: path @@ -67551,9 +67906,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *524 examples: - default: *523 + default: *525 '404': *6 x-github: githubCloudOnly: false @@ -67573,9 +67928,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: - - *470 - - *471 - - *524 + - *472 + - *473 + - *526 responses: '204': description: Response @@ -67599,8 +67954,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response if Dependabot is enabled @@ -67648,8 +68003,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -67670,8 +68025,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -67691,8 +68046,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *470 - - *471 + - *472 + - *473 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -67730,7 +68085,7 @@ paths: - url protected: type: boolean - protection: &526 + protection: &528 title: Branch Protection description: Branch Protection type: object @@ -67772,7 +68127,7 @@ paths: required: - contexts - checks - enforce_admins: &529 + enforce_admins: &531 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -67787,7 +68142,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &531 + required_pull_request_reviews: &533 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -67808,7 +68163,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *311 + items: *313 apps: description: The list of apps with review dismissal access. @@ -67837,7 +68192,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *311 + items: *313 apps: description: The list of apps allowed to bypass pull request requirements. @@ -67863,7 +68218,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &528 + restrictions: &530 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -67926,7 +68281,7 @@ paths: type: string teams: type: array - items: *311 + items: *313 apps: type: array items: @@ -68140,9 +68495,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *470 - - *471 - - &527 + - *472 + - *473 + - &529 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). @@ -68156,14 +68511,14 @@ paths: description: Response content: application/json: - schema: &537 + schema: &539 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &587 + commit: &589 title: Commit description: Commit type: object @@ -68197,7 +68552,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &525 + properties: &527 name: type: string example: '"Chris Wanstrath"' @@ -68212,7 +68567,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *525 + properties: *527 nullable: true message: type: string @@ -68233,7 +68588,7 @@ paths: required: - sha - url - verification: &647 + verification: &649 title: Verification type: object properties: @@ -68303,7 +68658,7 @@ paths: type: integer files: type: array - items: &600 + items: &602 title: Diff Entry description: Diff Entry type: object @@ -68387,7 +68742,7 @@ paths: - self protected: type: boolean - protection: *526 + protection: *528 protection_url: type: string format: uri @@ -68494,7 +68849,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *482 + '301': *484 '404': *6 x-github: githubCloudOnly: false @@ -68516,15 +68871,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response content: application/json: - schema: *526 + schema: *528 examples: default: value: @@ -68718,9 +69073,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: true content: @@ -68975,7 +69330,7 @@ paths: url: type: string format: uri - required_status_checks: &534 + required_status_checks: &536 title: Status Check Policy description: Status Check Policy type: object @@ -69051,7 +69406,7 @@ paths: items: *4 teams: type: array - items: *311 + items: *313 apps: type: array items: *5 @@ -69069,7 +69424,7 @@ paths: items: *4 teams: type: array - items: *311 + items: *313 apps: type: array items: *5 @@ -69127,7 +69482,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *528 + restrictions: *530 required_conversation_resolution: type: object properties: @@ -69239,9 +69594,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '204': description: Response @@ -69266,17 +69621,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: &530 + default: &532 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -69298,17 +69653,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: *530 + default: *532 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69327,9 +69682,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '204': description: Response @@ -69354,17 +69709,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: &532 + default: &534 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -69460,9 +69815,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: false content: @@ -69560,9 +69915,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *533 examples: - default: *532 + default: *534 '422': *15 x-github: githubCloudOnly: false @@ -69583,9 +69938,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '204': description: Response @@ -69612,17 +69967,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: &533 + default: &535 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -69645,17 +70000,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response content: application/json: - schema: *529 + schema: *531 examples: - default: *533 + default: *535 '404': *6 x-github: githubCloudOnly: false @@ -69675,9 +70030,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '204': description: Response @@ -69702,17 +70057,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response content: application/json: - schema: *534 + schema: *536 examples: - default: &535 + default: &537 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -69738,9 +70093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: false content: @@ -69792,9 +70147,9 @@ paths: description: Response content: application/json: - schema: *534 + schema: *536 examples: - default: *535 + default: *537 '404': *6 '422': *15 x-github: @@ -69816,9 +70171,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '204': description: Response @@ -69842,9 +70197,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response @@ -69878,9 +70233,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: false content: @@ -69947,9 +70302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: false content: @@ -70013,9 +70368,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: content: application/json: @@ -70081,15 +70436,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response content: application/json: - schema: *528 + schema: *530 examples: default: value: @@ -70180,9 +70535,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '204': description: Response @@ -70205,9 +70560,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: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response @@ -70217,7 +70572,7 @@ paths: type: array items: *5 examples: - default: &536 + default: &538 value: - id: 1 slug: octoapp @@ -70274,9 +70629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: true content: @@ -70310,7 +70665,7 @@ paths: type: array items: *5 examples: - default: *536 + default: *538 '422': *15 x-github: githubCloudOnly: false @@ -70331,9 +70686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: true content: @@ -70367,7 +70722,7 @@ paths: type: array items: *5 examples: - default: *536 + default: *538 '422': *15 x-github: githubCloudOnly: false @@ -70388,9 +70743,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: true content: @@ -70424,7 +70779,7 @@ paths: type: array items: *5 examples: - default: *536 + default: *538 '422': *15 x-github: githubCloudOnly: false @@ -70446,9 +70801,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: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response @@ -70456,9 +70811,9 @@ paths: application/json: schema: type: array - items: *311 + items: *313 examples: - default: *383 + default: *385 '404': *6 x-github: githubCloudOnly: false @@ -70478,9 +70833,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: false content: @@ -70516,9 +70871,9 @@ paths: application/json: schema: type: array - items: *311 + items: *313 examples: - default: *383 + default: *385 '422': *15 x-github: githubCloudOnly: false @@ -70539,9 +70894,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: false content: @@ -70577,9 +70932,9 @@ paths: application/json: schema: type: array - items: *311 + items: *313 examples: - default: *383 + default: *385 '422': *15 x-github: githubCloudOnly: false @@ -70600,9 +70955,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: content: application/json: @@ -70637,9 +70992,9 @@ paths: application/json: schema: type: array - items: *311 + items: *313 examples: - default: *383 + default: *385 '422': *15 x-github: githubCloudOnly: false @@ -70661,9 +71016,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: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 responses: '200': description: Response @@ -70697,9 +71052,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: true content: @@ -70757,9 +71112,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: true content: @@ -70817,9 +71172,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: true content: @@ -70879,9 +71234,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 requestBody: required: true content: @@ -70903,7 +71258,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *539 examples: default: value: @@ -71017,8 +71372,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *470 - - *471 + - *472 + - *473 - *99 - *100 - *101 @@ -71032,9 +71387,9 @@ paths: application/json: schema: type: array - items: *306 + items: *308 examples: - default: *307 + default: *309 '404': *6 '500': *40 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -71054,8 +71409,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *470 - - *471 + - *472 + - *473 - name: bypass_request_number in: path required: true @@ -71069,7 +71424,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *308 examples: default: value: @@ -71128,8 +71483,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *470 - - *471 + - *472 + - *473 - *99 - *100 - *101 @@ -71143,9 +71498,9 @@ paths: application/json: schema: type: array - items: *309 + items: *311 examples: - default: *310 + default: *312 '404': *6 '403': *29 '500': *40 @@ -71169,8 +71524,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *470 - - *471 + - *472 + - *473 - name: bypass_request_number in: path required: true @@ -71182,7 +71537,7 @@ paths: description: A single bypass request. content: application/json: - schema: *309 + schema: *311 examples: default: value: @@ -71240,8 +71595,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *470 - - *471 + - *472 + - *473 - name: bypass_request_number in: path required: true @@ -71312,8 +71667,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *470 - - *471 + - *472 + - *473 - name: bypass_response_id in: path required: true @@ -71346,8 +71701,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -71626,7 +71981,7 @@ paths: description: Response content: application/json: - schema: &539 + schema: &541 title: CheckRun description: A check performed on the code of a given code change type: object @@ -71745,8 +72100,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *538 - deployment: &865 + items: *540 + deployment: &867 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -72026,9 +72381,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *470 - - *471 - - &540 + - *472 + - *473 + - &542 name: check_run_id description: The unique identifier of the check run. in: path @@ -72040,9 +72395,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: - default: &541 + default: &543 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -72142,9 +72497,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *470 - - *471 - - *540 + - *472 + - *473 + - *542 requestBody: required: true content: @@ -72384,9 +72739,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *541 examples: - default: *541 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72406,9 +72761,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *470 - - *471 - - *540 + - *472 + - *473 + - *542 - *17 - *19 responses: @@ -72503,9 +72858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *470 - - *471 - - *540 + - *472 + - *473 + - *542 responses: '201': description: Response @@ -72549,8 +72904,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -72572,7 +72927,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &544 + schema: &546 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -72636,7 +72991,7 @@ paths: nullable: true pull_requests: type: array - items: *538 + items: *540 nullable: true app: title: GitHub app @@ -72658,12 +73013,12 @@ paths: type: string format: date-time nullable: true - head_commit: &896 + head_commit: &898 title: Simple Commit description: A commit. type: object - properties: *542 - required: *543 + properties: *544 + required: *545 latest_check_runs_count: type: integer check_runs_url: @@ -72691,7 +73046,7 @@ paths: - check_runs_url - pull_requests examples: - default: &545 + default: &547 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -72982,9 +73337,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *544 + schema: *546 examples: - default: *545 + default: *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73003,8 +73358,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -73313,9 +73668,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *470 - - *471 - - &546 + - *472 + - *473 + - &548 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -73327,9 +73682,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *546 examples: - default: *545 + default: *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73352,17 +73707,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: - - *470 - - *471 - - *546 - - &593 + - *472 + - *473 + - *548 + - &595 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &594 + - &596 name: status description: Returns check runs with the specified `status`. in: query @@ -73401,9 +73756,9 @@ paths: type: integer check_runs: type: array - items: *539 + items: *541 examples: - default: &595 + default: &597 value: total_count: 1 check_runs: @@ -73505,9 +73860,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *470 - - *471 - - *546 + - *472 + - *473 + - *548 responses: '201': description: Response @@ -73540,21 +73895,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: - - *470 - - *471 - - *315 - - *316 + - *472 + - *473 + - *317 + - *318 - *19 - *17 - - &562 + - &564 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: *547 - - &563 + schema: *549 + - &565 name: pr description: The number of the pull request for the results you want to list. in: query @@ -73579,13 +73934,13 @@ paths: be returned. in: query required: false - schema: *317 + schema: *319 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *548 + schema: *550 responses: '200': description: Response @@ -73601,7 +73956,7 @@ paths: updated_at: *131 url: *128 html_url: *129 - instances_url: *549 + instances_url: *551 state: *109 fixed_at: *133 dismissed_by: @@ -73612,11 +73967,11 @@ paths: required: *21 nullable: true dismissed_at: *132 - dismissed_reason: *550 - dismissed_comment: *551 - rule: *552 - tool: *553 - most_recent_instance: *554 + dismissed_reason: *552 + dismissed_comment: *553 + rule: *554 + tool: *555 + most_recent_instance: *556 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -73742,7 +74097,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &555 + '403': &557 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -73769,9 +74124,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: - - *470 - - *471 - - &556 + - *472 + - *473 + - &558 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -73785,7 +74140,7 @@ paths: description: Response content: application/json: - schema: &557 + schema: &559 type: object properties: number: *123 @@ -73793,7 +74148,7 @@ paths: updated_at: *131 url: *128 html_url: *129 - instances_url: *549 + instances_url: *551 state: *109 fixed_at: *133 dismissed_by: @@ -73804,8 +74159,8 @@ paths: required: *21 nullable: true dismissed_at: *132 - dismissed_reason: *550 - dismissed_comment: *551 + dismissed_reason: *552 + dismissed_comment: *553 rule: type: object properties: @@ -73859,8 +74214,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *553 - most_recent_instance: *554 + tool: *555 + most_recent_instance: *556 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -73959,7 +74314,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *555 + '403': *557 '404': *6 '503': *190 x-github: @@ -73979,9 +74334,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: - - *470 - - *471 - - *556 + - *472 + - *473 + - *558 requestBody: required: true content: @@ -73996,8 +74351,8 @@ paths: enum: - open - dismissed - dismissed_reason: *550 - dismissed_comment: *551 + dismissed_reason: *552 + dismissed_comment: *553 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -74016,7 +74371,7 @@ paths: description: Response content: application/json: - schema: *557 + schema: *559 examples: default: value: @@ -74092,7 +74447,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &561 + '403': &563 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -74119,15 +74474,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: - - *470 - - *471 - - *556 + - *472 + - *473 + - *558 responses: '200': description: Response content: application/json: - schema: &558 + schema: &560 type: object properties: status: @@ -74153,13 +74508,13 @@ paths: - description - started_at examples: - default: &559 + default: &561 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &560 + '400': &562 description: Bad Request content: application/json: @@ -74170,7 +74525,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': *555 + '403': *557 '404': *6 '503': *190 x-github: @@ -74195,29 +74550,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: - - *470 - - *471 - - *556 + - *472 + - *473 + - *558 responses: '200': description: OK content: application/json: - schema: *558 + schema: *560 examples: - default: *559 + default: *561 '202': description: Accepted content: application/json: - schema: *558 + schema: *560 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *560 + '400': *562 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -74249,9 +74604,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: - - *470 - - *471 - - *556 + - *472 + - *473 + - *558 requestBody: required: false content: @@ -74296,8 +74651,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *560 - '403': *561 + '400': *562 + '403': *563 '404': *6 '422': description: Unprocessable Entity @@ -74321,13 +74676,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: - - *470 - - *471 - - *556 + - *472 + - *473 + - *558 - *19 - *17 - - *562 - - *563 + - *564 + - *565 responses: '200': description: Response @@ -74335,7 +74690,7 @@ paths: application/json: schema: type: array - items: *554 + items: *556 examples: default: value: @@ -74374,7 +74729,7 @@ paths: end_column: 50 classifications: - source - '403': *555 + '403': *557 '404': *6 '503': *190 x-github: @@ -74408,25 +74763,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: - - *470 - - *471 - - *315 - - *316 + - *472 + - *473 + - *317 + - *318 - *19 - *17 - - *563 + - *565 - 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: *547 + schema: *549 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &566 + schema: &568 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -74447,23 +74802,23 @@ paths: application/json: schema: type: array - items: &567 + items: &569 type: object properties: - ref: *547 - commit_sha: &575 + ref: *549 + commit_sha: &577 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: *564 + analysis_key: *566 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *565 + category: *567 error: type: string example: error reading field xyz @@ -74487,8 +74842,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *566 - tool: *553 + sarif_id: *568 + tool: *555 deletable: type: boolean warning: @@ -74549,7 +74904,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *555 + '403': *557 '404': *6 '503': *190 x-github: @@ -74585,8 +74940,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: - - *470 - - *471 + - *472 + - *473 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -74599,7 +74954,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *569 examples: response: summary: application/json response @@ -74653,7 +75008,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *555 + '403': *557 '404': *6 '422': description: Response if analysis could not be processed @@ -74740,8 +75095,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: - - *470 - - *471 + - *472 + - *473 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -74794,7 +75149,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': *561 + '403': *563 '404': *6 '503': *190 x-github: @@ -74816,8 +75171,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -74825,7 +75180,7 @@ paths: application/json: schema: type: array - items: &568 + items: &570 title: CodeQL Database description: A CodeQL database. type: object @@ -74936,7 +75291,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': *555 + '403': *557 '404': *6 '503': *190 x-github: @@ -74965,8 +75320,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: - - *470 - - *471 + - *472 + - *473 - name: language in: path description: The language of the CodeQL database. @@ -74978,7 +75333,7 @@ paths: description: Response content: application/json: - schema: *568 + schema: *570 examples: default: value: @@ -75010,9 +75365,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': &602 + '302': &604 description: Found - '403': *555 + '403': *557 '404': *6 '503': *190 x-github: @@ -75034,8 +75389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *470 - - *471 + - *472 + - *473 - name: language in: path description: The language of the CodeQL database. @@ -75045,7 +75400,7 @@ paths: responses: '204': description: Response - '403': *561 + '403': *563 '404': *6 '503': *190 x-github: @@ -75073,8 +75428,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -75083,10 +75438,11 @@ paths: type: object additionalProperties: false properties: - language: &569 + language: &571 type: string description: The language targeted by the CodeQL query enum: + - actions - cpp - csharp - go @@ -75162,7 +75518,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &573 + schema: &575 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -75172,7 +75528,7 @@ paths: description: The ID of the variant analysis. controller_repo: *115 actor: *4 - query_language: *569 + query_language: *571 query_pack_url: type: string description: The download url for the query pack. @@ -75219,7 +75575,7 @@ paths: items: type: object properties: - repository: &570 + repository: &572 title: Repository Identifier description: Repository Identifier type: object @@ -75255,7 +75611,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &574 + analysis_status: &576 type: string description: The new status of the CodeQL variant analysis repository task. @@ -75287,7 +75643,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &571 + access_mismatch_repos: &573 type: object properties: repository_count: @@ -75301,7 +75657,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: *570 + items: *572 required: - repository_count - repositories @@ -75323,8 +75679,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *571 - over_limit_repos: *571 + no_codeql_db_repos: *573 + over_limit_repos: *573 required: - access_mismatch_repos - not_found_repos @@ -75340,7 +75696,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &572 + value: &574 summary: Default response value: id: 1 @@ -75492,10 +75848,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *572 + value: *574 repository_lists: summary: Response for a successful variant analysis submission - value: *572 + value: *574 '404': *6 '422': description: Unable to process variant analysis submission @@ -75523,8 +75879,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: - - *470 - - *471 + - *472 + - *473 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -75536,9 +75892,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *575 examples: - default: *572 + default: *574 '404': *6 '503': *190 x-github: @@ -75561,7 +75917,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: - - *470 + - *472 - name: repo in: path description: The name of the controller repository. @@ -75596,7 +75952,7 @@ paths: type: object properties: repository: *115 - analysis_status: *574 + analysis_status: *576 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -75721,8 +76077,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -75807,7 +76163,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *555 + '403': *557 '404': *6 '503': *190 x-github: @@ -75828,8 +76184,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -75921,7 +76277,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *561 + '403': *563 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -75992,8 +76348,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -76001,7 +76357,7 @@ paths: schema: type: object properties: - commit_sha: *575 + commit_sha: *577 ref: type: string description: |- @@ -76059,7 +76415,7 @@ paths: schema: type: object properties: - id: *566 + id: *568 url: type: string description: The REST API URL for checking the status of the upload. @@ -76073,7 +76429,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': *561 + '403': *563 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -76096,8 +76452,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: - - *470 - - *471 + - *472 + - *473 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -76143,7 +76499,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': *555 + '403': *557 '404': description: Not Found if the sarif id does not match any upload '503': *190 @@ -76168,8 +76524,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -76250,8 +76606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *470 - - *471 + - *472 + - *473 - 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 @@ -76371,8 +76727,8 @@ paths: parameters: - *17 - *19 - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -76388,7 +76744,7 @@ paths: type: integer codespaces: type: array - items: *373 + items: *375 examples: default: value: @@ -76686,8 +77042,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -76750,17 +77106,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *373 + schema: *375 examples: - default: *576 + default: *578 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *373 + schema: *375 examples: - default: *576 + default: *578 '400': *14 '401': *25 '403': *29 @@ -76789,8 +77145,8 @@ paths: parameters: - *17 - *19 - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -76854,8 +77210,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: - - *470 - - *471 + - *472 + - *473 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -76890,14 +77246,14 @@ paths: type: integer machines: type: array - items: &822 + items: &824 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *577 - required: *578 + properties: *579 + required: *580 examples: - default: &823 + default: &825 value: total_count: 2 machines: @@ -76937,8 +77293,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *470 - - *471 + - *472 + - *473 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -77022,8 +77378,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: - - *470 - - *471 + - *472 + - *473 - 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 @@ -77089,8 +77445,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -77108,7 +77464,7 @@ paths: type: integer secrets: type: array - items: &582 + items: &584 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -77128,7 +77484,7 @@ paths: - created_at - updated_at examples: - default: *579 + default: *581 headers: Link: *43 x-github: @@ -77151,16 +77507,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response content: application/json: - schema: *580 + schema: *582 examples: - default: *581 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -77180,17 +77536,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *470 - - *471 + - *472 + - *473 - *294 responses: '200': description: Response content: application/json: - schema: *582 + schema: *584 examples: - default: *583 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77210,8 +77566,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: - - *470 - - *471 + - *472 + - *473 - *294 requestBody: required: true @@ -77264,8 +77620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *470 - - *471 + - *472 + - *473 - *294 responses: '204': @@ -77294,8 +77650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *470 - - *471 + - *472 + - *473 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -77337,7 +77693,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &584 + properties: &586 login: type: string example: octocat @@ -77430,7 +77786,7 @@ paths: user_view_type: type: string example: public - required: &585 + required: &587 - avatar_url - events_url - followers_url @@ -77504,8 +77860,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: - - *470 - - *471 + - *472 + - *473 - *138 responses: '204': @@ -77552,8 +77908,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *470 - - *471 + - *472 + - *473 - *138 requestBody: required: false @@ -77580,7 +77936,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &660 + schema: &662 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -77809,8 +78165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *470 - - *471 + - *472 + - *473 - *138 responses: '204': @@ -77842,8 +78198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *470 - - *471 + - *472 + - *473 - *138 responses: '200': @@ -77864,8 +78220,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *584 - required: *585 + properties: *586 + required: *587 nullable: true required: - permission @@ -77920,8 +78276,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -77931,7 +78287,7 @@ paths: application/json: schema: type: array - items: &586 + items: &588 title: Commit Comment description: Commit Comment type: object @@ -77989,7 +78345,7 @@ paths: - created_at - updated_at examples: - default: &589 + default: &591 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -78048,17 +78404,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *470 - - *471 + - *472 + - *473 - *226 responses: '200': description: Response content: application/json: - schema: *586 + schema: *588 examples: - default: &590 + default: &592 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -78115,8 +78471,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *470 - - *471 + - *472 + - *473 - *226 requestBody: required: true @@ -78139,7 +78495,7 @@ paths: description: Response content: application/json: - schema: *586 + schema: *588 examples: default: value: @@ -78190,8 +78546,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *470 - - *471 + - *472 + - *473 - *226 responses: '204': @@ -78213,8 +78569,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *470 - - *471 + - *472 + - *473 - *226 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -78241,9 +78597,9 @@ paths: application/json: schema: type: array - items: *459 + items: *461 examples: - default: *461 + default: *463 headers: Link: *43 '404': *6 @@ -78264,8 +78620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *470 - - *471 + - *472 + - *473 - *226 requestBody: required: true @@ -78298,16 +78654,16 @@ paths: description: Reaction exists content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '201': description: Reaction created content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '422': *15 x-github: githubCloudOnly: false @@ -78329,10 +78685,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *470 - - *471 + - *472 + - *473 - *226 - - *462 + - *464 responses: '204': description: Response @@ -78381,8 +78737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *470 - - *471 + - *472 + - *473 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -78438,9 +78794,9 @@ paths: application/json: schema: type: array - items: *587 + items: *589 examples: - default: &713 + default: &715 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -78534,9 +78890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *470 - - *471 - - &588 + - *472 + - *473 + - &590 name: commit_sha description: The SHA of the commit. in: path @@ -78608,9 +78964,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *470 - - *471 - - *588 + - *472 + - *473 + - *590 - *17 - *19 responses: @@ -78620,9 +78976,9 @@ paths: application/json: schema: type: array - items: *586 + items: *588 examples: - default: *589 + default: *591 headers: Link: *43 x-github: @@ -78650,9 +79006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *470 - - *471 - - *588 + - *472 + - *473 + - *590 requestBody: required: true content: @@ -78687,9 +79043,9 @@ paths: description: Response content: application/json: - schema: *586 + schema: *588 examples: - default: *590 + default: *592 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -78717,9 +79073,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: - - *470 - - *471 - - *588 + - *472 + - *473 + - *590 - *17 - *19 responses: @@ -78729,9 +79085,9 @@ paths: application/json: schema: type: array - items: *591 + items: *593 examples: - default: &705 + default: &707 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79268,11 +79624,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *470 - - *471 + - *472 + - *473 - *19 - *17 - - &592 + - &594 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)" @@ -79287,9 +79643,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *589 examples: - default: &690 + default: &692 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -79402,11 +79758,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: - - *470 - - *471 - - *592 - - *593 + - *472 + - *473 - *594 + - *595 + - *596 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -79440,9 +79796,9 @@ paths: type: integer check_runs: type: array - items: *539 + items: *541 examples: - default: *595 + default: *597 headers: Link: *43 x-github: @@ -79467,9 +79823,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: - - *470 - - *471 - - *592 + - *472 + - *473 + - *594 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -79477,7 +79833,7 @@ paths: schema: type: integer example: 1 - - *593 + - *595 - *17 - *19 responses: @@ -79495,7 +79851,7 @@ paths: type: integer check_suites: type: array - items: *544 + items: *546 examples: default: value: @@ -79695,9 +80051,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: - - *470 - - *471 - - *592 + - *472 + - *473 + - *594 - *17 - *19 responses: @@ -79895,9 +80251,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *470 - - *471 - - *592 + - *472 + - *473 + - *594 - *17 - *19 responses: @@ -79907,7 +80263,7 @@ paths: application/json: schema: type: array - items: &767 + items: &769 title: Status description: The status of a commit. type: object @@ -79988,7 +80344,7 @@ paths: site_admin: false headers: Link: *43 - '301': *482 + '301': *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80016,8 +80372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -80046,20 +80402,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *596 - required: *597 + properties: *598 + required: *599 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &598 + properties: &600 url: type: string format: uri html_url: type: string format: uri - required: &599 + required: &601 - url - html_url nullable: true @@ -80073,26 +80429,26 @@ paths: contributing: title: Community Health File type: object - properties: *598 - required: *599 + properties: *600 + required: *601 nullable: true readme: title: Community Health File type: object - properties: *598 - required: *599 + properties: *600 + required: *601 nullable: true issue_template: title: Community Health File type: object - properties: *598 - required: *599 + properties: *600 + required: *601 nullable: true pull_request_template: title: Community Health File type: object - properties: *598 - required: *599 + properties: *600 + required: *601 nullable: true required: - code_of_conduct @@ -80219,8 +80575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *470 - - *471 + - *472 + - *473 - *19 - *17 - name: basehead @@ -80263,8 +80619,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *587 - merge_base_commit: *587 + base_commit: *589 + merge_base_commit: *589 status: type: string enum: @@ -80284,10 +80640,10 @@ paths: example: 6 commits: type: array - items: *587 + items: *589 files: type: array - items: *600 + items: *602 required: - url - html_url @@ -80573,8 +80929,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *470 - - *471 + - *472 + - *473 - name: path description: path parameter in: path @@ -80717,7 +81073,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &601 + response-if-content-is-a-file: &603 summary: Response if content is a file value: type: file @@ -80849,7 +81205,7 @@ paths: - size - type - url - - &718 + - &720 title: Content File description: Content File type: object @@ -81050,7 +81406,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *601 + response-if-content-is-a-file: *603 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -81119,7 +81475,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *602 + '302': *604 '304': *37 x-github: githubCloudOnly: false @@ -81142,8 +81498,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *470 - - *471 + - *472 + - *473 - name: path description: path parameter in: path @@ -81236,7 +81592,7 @@ paths: description: Response content: application/json: - schema: &603 + schema: &605 title: File Commit description: File Commit type: object @@ -81388,7 +81744,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *605 examples: example-for-creating-a-file: value: @@ -81442,7 +81798,7 @@ paths: schema: oneOf: - *3 - - &642 + - &644 description: Repository rule violation was detected type: object properties: @@ -81463,7 +81819,7 @@ paths: items: type: object properties: - placeholder_id: &759 + placeholder_id: &761 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -81495,8 +81851,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *470 - - *471 + - *472 + - *473 - name: path description: path parameter in: path @@ -81557,7 +81913,7 @@ paths: description: Response content: application/json: - schema: *603 + schema: *605 examples: default: value: @@ -81612,8 +81968,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *470 - - *471 + - *472 + - *473 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -81736,22 +82092,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *470 - - *471 - - *331 - - *332 + - *472 + - *473 - *333 - *334 + - *335 + - *336 - 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 - - *335 - - *604 - - *336 - *337 + - *606 + - *338 + - *339 - *106 - name: per_page description: The number of results per page (max 100). For more information, @@ -81770,7 +82126,7 @@ paths: application/json: schema: type: array - items: &607 + items: &609 type: object description: A Dependabot alert. properties: @@ -81816,7 +82172,7 @@ paths: - unknown - direct - transitive - security_advisory: *605 + security_advisory: *607 security_vulnerability: *127 url: *128 html_url: *129 @@ -81847,7 +82203,7 @@ paths: nullable: true maxLength: 280 fixed_at: *133 - auto_dismissed_at: *606 + auto_dismissed_at: *608 required: - number - state @@ -82077,9 +82433,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *470 - - *471 - - &608 + - *472 + - *473 + - &610 name: alert_number in: path description: |- @@ -82094,7 +82450,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: default: value: @@ -82207,9 +82563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *470 - - *471 - - *608 + - *472 + - *473 + - *610 requestBody: required: true content: @@ -82254,7 +82610,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: default: value: @@ -82383,8 +82739,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -82402,7 +82758,7 @@ paths: type: integer secrets: type: array - items: &611 + items: &613 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -82455,16 +82811,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response content: application/json: - schema: *609 + schema: *611 examples: - default: *610 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82484,15 +82840,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *470 - - *471 + - *472 + - *473 - *294 responses: '200': description: Response content: application/json: - schema: *611 + schema: *613 examples: default: value: @@ -82518,8 +82874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *470 - - *471 + - *472 + - *473 - *294 requestBody: required: true @@ -82572,8 +82928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *470 - - *471 + - *472 + - *473 - *294 responses: '204': @@ -82596,8 +82952,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: - - *470 - - *471 + - *472 + - *473 - 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 @@ -82757,8 +83113,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -82997,8 +83353,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -83073,7 +83429,7 @@ paths: - version - url additionalProperties: false - metadata: &612 + metadata: &614 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83106,7 +83462,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *612 + metadata: *614 resolved: type: object description: A collection of resolved package dependencies. @@ -83119,7 +83475,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *612 + metadata: *614 relationship: type: string description: A notation of whether a dependency is requested @@ -83248,8 +83604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *470 - - *471 + - *472 + - *473 - name: sha description: The SHA recorded at creation time. in: query @@ -83289,9 +83645,9 @@ paths: application/json: schema: type: array - items: *613 + items: *615 examples: - default: *614 + default: *616 headers: Link: *43 x-github: @@ -83357,8 +83713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -83439,7 +83795,7 @@ paths: description: Response content: application/json: - schema: *613 + schema: *615 examples: simple-example: summary: Simple example @@ -83512,9 +83868,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *470 - - *471 - - &615 + - *472 + - *473 + - &617 name: deployment_id description: deployment_id parameter in: path @@ -83526,7 +83882,7 @@ paths: description: Response content: application/json: - schema: *613 + schema: *615 examples: default: value: @@ -83591,9 +83947,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *470 - - *471 - - *615 + - *472 + - *473 + - *617 responses: '204': description: Response @@ -83615,9 +83971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *470 - - *471 - - *615 + - *472 + - *473 + - *617 - *17 - *19 responses: @@ -83627,7 +83983,7 @@ paths: application/json: schema: type: array - items: &616 + items: &618 title: Deployment Status description: The status of a deployment. type: object @@ -83788,9 +84144,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *470 - - *471 - - *615 + - *472 + - *473 + - *617 requestBody: required: true content: @@ -83865,9 +84221,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *618 examples: - default: &617 + default: &619 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -83923,9 +84279,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *470 - - *471 - - *615 + - *472 + - *473 + - *617 - name: status_id in: path required: true @@ -83936,9 +84292,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *618 examples: - default: *617 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -83965,12 +84321,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *470 - - *471 - - *618 - - *619 + - *472 + - *473 - *620 - *621 + - *622 + - *623 - *17 - *19 responses: @@ -83980,9 +84336,9 @@ paths: application/json: schema: type: array - items: *622 + items: *624 examples: - default: *623 + default: *625 '404': *6 '403': *29 '500': *40 @@ -84006,8 +84362,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *470 - - *471 + - *472 + - *473 - name: alert_number in: path required: true @@ -84019,7 +84375,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *622 + schema: *624 examples: default: value: @@ -84075,8 +84431,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *470 - - *471 + - *472 + - *473 - name: alert_number in: path required: true @@ -84135,12 +84491,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *470 - - *471 + - *472 + - *473 - *99 - *100 - *101 - - *624 + - *626 - *17 - *19 responses: @@ -84150,9 +84506,9 @@ paths: application/json: schema: type: array - items: *625 + items: *627 examples: - default: *626 + default: *628 '404': *6 '403': *29 '500': *40 @@ -84177,8 +84533,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *470 - - *471 + - *472 + - *473 - name: alert_number in: path required: true @@ -84190,7 +84546,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *625 + schema: *627 examples: default: value: @@ -84248,8 +84604,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *470 - - *471 + - *472 + - *473 - name: alert_number in: path required: true @@ -84318,8 +84674,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -84376,8 +84732,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -84394,7 +84750,7 @@ paths: type: integer environments: type: array - items: &628 + items: &630 title: Environment description: Details of a deployment environment type: object @@ -84446,7 +84802,7 @@ paths: type: type: string example: wait_timer - wait_timer: &630 + wait_timer: &632 type: integer example: 30 description: The amount of time to delay a job after @@ -84483,11 +84839,11 @@ paths: items: type: object properties: - type: *627 + type: *629 reviewer: anyOf: - *4 - - *311 + - *313 required: - id - node_id @@ -84507,7 +84863,7 @@ paths: - id - node_id - type - deployment_branch_policy: &631 + deployment_branch_policy: &633 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -84623,9 +84979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *470 - - *471 - - &629 + - *472 + - *473 + - &631 name: environment_name in: path required: true @@ -84638,9 +84994,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *630 examples: - default: &632 + default: &634 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -84724,9 +85080,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 requestBody: required: false content: @@ -84735,7 +85091,7 @@ paths: type: object nullable: true properties: - wait_timer: *630 + wait_timer: *632 prevent_self_review: type: boolean example: false @@ -84752,13 +85108,13 @@ paths: items: type: object properties: - type: *627 + type: *629 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *631 + deployment_branch_policy: *633 additionalProperties: false examples: default: @@ -84778,9 +85134,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *630 examples: - default: *632 + default: *634 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -84804,9 +85160,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 responses: '204': description: Default response @@ -84831,9 +85187,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 - *17 - *19 responses: @@ -84851,7 +85207,7 @@ paths: example: 2 branch_policies: type: array - items: &633 + items: &635 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -84908,9 +85264,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 requestBody: required: true content: @@ -84956,9 +85312,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *635 examples: - example-wildcard: &634 + example-wildcard: &636 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -85000,10 +85356,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *470 - - *471 - - *629 - - &635 + - *472 + - *473 + - *631 + - &637 name: branch_policy_id in: path required: true @@ -85015,9 +85371,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *635 examples: - default: *634 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85036,10 +85392,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *470 - - *471 - - *629 - - *635 + - *472 + - *473 + - *631 + - *637 requestBody: required: true content: @@ -85067,9 +85423,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *635 examples: - default: *634 + default: *636 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85088,10 +85444,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *470 - - *471 - - *629 - - *635 + - *472 + - *473 + - *631 + - *637 responses: '204': description: Response @@ -85116,9 +85472,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: - - *629 - - *471 - - *470 + - *631 + - *473 + - *472 responses: '200': description: List of deployment protection rules @@ -85134,7 +85490,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &636 + items: &638 title: Deployment protection rule description: Deployment protection rule type: object @@ -85153,7 +85509,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &637 + app: &639 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -85252,9 +85608,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: - - *629 - - *471 - - *470 + - *631 + - *473 + - *472 requestBody: content: application/json: @@ -85275,9 +85631,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *636 + schema: *638 examples: - default: &638 + default: &640 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -85312,9 +85668,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: - - *629 - - *471 - - *470 + - *631 + - *473 + - *472 - *19 - *17 responses: @@ -85333,7 +85689,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *637 + items: *639 examples: default: value: @@ -85368,10 +85724,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: - - *470 - - *471 - - *629 - - &639 + - *472 + - *473 + - *631 + - &641 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -85383,9 +85739,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *638 examples: - default: *638 + default: *640 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85406,10 +85762,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: - - *629 - - *471 - - *470 - - *639 + - *631 + - *473 + - *472 + - *641 responses: '204': description: Response @@ -85435,9 +85791,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 - *17 - *19 responses: @@ -85455,9 +85811,9 @@ paths: type: integer secrets: type: array - items: *505 + items: *507 examples: - default: *506 + default: *508 headers: Link: *43 x-github: @@ -85482,17 +85838,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 responses: '200': description: Response content: application/json: - schema: *507 + schema: *509 examples: - default: *508 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85514,18 +85870,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 - *294 responses: '200': description: Response content: application/json: - schema: *505 + schema: *507 examples: - default: *640 + default: *642 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85547,9 +85903,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 - *294 requestBody: required: true @@ -85607,9 +85963,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 - *294 responses: '204': @@ -85635,10 +85991,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *470 - - *471 - - *629 - - *492 + - *472 + - *473 + - *631 + - *494 - *19 responses: '200': @@ -85655,9 +86011,9 @@ paths: type: integer variables: type: array - items: *509 + items: *511 examples: - default: *510 + default: *512 headers: Link: *43 x-github: @@ -85680,9 +86036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 requestBody: required: true content: @@ -85734,18 +86090,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *470 - - *471 - - *629 + - *472 + - *473 + - *631 - *297 responses: '200': description: Response content: application/json: - schema: *509 + schema: *511 examples: - default: *641 + default: *643 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85766,10 +86122,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *470 - - *471 + - *472 + - *473 - *297 - - *629 + - *631 requestBody: required: true content: @@ -85811,10 +86167,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *470 - - *471 + - *472 + - *473 - *297 - - *629 + - *631 responses: '204': description: Response @@ -85836,8 +86192,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -85905,8 +86261,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *470 - - *471 + - *472 + - *473 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -86065,8 +86421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: false content: @@ -86098,9 +86454,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: *483 + default: *485 '400': *14 '422': *15 '403': *29 @@ -86121,8 +86477,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -86182,7 +86538,7 @@ paths: schema: oneOf: - *259 - - *642 + - *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86207,8 +86563,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *470 - - *471 + - *472 + - *473 - name: file_sha in: path required: true @@ -86307,8 +86663,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -86417,7 +86773,7 @@ paths: description: Response content: application/json: - schema: &643 + schema: &645 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -86631,15 +86987,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *470 - - *471 - - *588 + - *472 + - *473 + - *590 responses: '200': description: Response content: application/json: - schema: *643 + schema: *645 examples: default: value: @@ -86695,9 +87051,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *470 - - *471 - - &644 + - *472 + - *473 + - &646 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. @@ -86714,7 +87070,7 @@ paths: application/json: schema: type: array - items: &645 + items: &647 title: Git Reference description: Git references within a repository type: object @@ -86789,17 +87145,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *470 - - *471 - - *644 + - *472 + - *473 + - *646 responses: '200': description: Response content: application/json: - schema: *645 + schema: *647 examples: - default: &646 + default: &648 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -86828,8 +87184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -86858,9 +87214,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *647 examples: - default: *646 + default: *648 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -86886,9 +87242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *470 - - *471 - - *644 + - *472 + - *473 + - *646 requestBody: required: true content: @@ -86917,9 +87273,9 @@ paths: description: Response content: application/json: - schema: *645 + schema: *647 examples: - default: *646 + default: *648 '422': *15 '409': *114 x-github: @@ -86937,9 +87293,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *470 - - *471 - - *644 + - *472 + - *473 + - *646 responses: '204': description: Response @@ -86994,8 +87350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -87062,7 +87418,7 @@ paths: description: Response content: application/json: - schema: &648 + schema: &650 title: Git Tag description: Metadata for a Git tag type: object @@ -87113,7 +87469,7 @@ paths: - sha - type - url - verification: *647 + verification: *649 required: - sha - url @@ -87123,7 +87479,7 @@ paths: - tag - message examples: - default: &649 + default: &651 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -87196,8 +87552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *470 - - *471 + - *472 + - *473 - name: tag_sha in: path required: true @@ -87208,9 +87564,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *650 examples: - default: *649 + default: *651 '404': *6 '409': *114 x-github: @@ -87234,8 +87590,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -87308,7 +87664,7 @@ paths: description: Response content: application/json: - schema: &650 + schema: &652 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -87404,8 +87760,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *470 - - *471 + - *472 + - *473 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -87428,7 +87784,7 @@ paths: description: Response content: application/json: - schema: *650 + schema: *652 examples: default-response: summary: Default response @@ -87487,8 +87843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -87498,7 +87854,7 @@ paths: application/json: schema: type: array - items: &651 + items: &653 title: Webhook description: Webhooks for repositories. type: object @@ -87552,7 +87908,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &904 + last_response: &906 title: Hook Response type: object properties: @@ -87626,8 +87982,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: false content: @@ -87679,9 +88035,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: &652 + default: &654 value: type: Repository id: 12345678 @@ -87729,17 +88085,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *470 - - *471 - - *345 + - *472 + - *473 + - *347 responses: '200': description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: *652 + default: *654 '404': *6 x-github: githubCloudOnly: false @@ -87759,9 +88115,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *470 - - *471 - - *345 + - *472 + - *473 + - *347 requestBody: required: true content: @@ -87806,9 +88162,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: *652 + default: *654 '422': *15 '404': *6 x-github: @@ -87829,9 +88185,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *470 - - *471 - - *345 + - *472 + - *473 + - *347 responses: '204': description: Response @@ -87855,9 +88211,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: - - *470 - - *471 - - *345 + - *472 + - *473 + - *347 responses: '200': description: Response @@ -87884,9 +88240,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: - - *470 - - *471 - - *345 + - *472 + - *473 + - *347 requestBody: required: false content: @@ -87930,11 +88286,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *470 - - *471 - - *345 + - *472 + - *473 + - *347 - *17 - - *346 + - *348 responses: '200': description: Response @@ -87942,9 +88298,9 @@ paths: application/json: schema: type: array - items: *347 + items: *349 examples: - default: *348 + default: *350 '400': *14 '422': *15 x-github: @@ -87963,18 +88319,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: - - *470 - - *471 - - *345 + - *472 + - *473 + - *347 - *16 responses: '200': description: Response content: application/json: - schema: *349 + schema: *351 examples: - default: *350 + default: *352 '400': *14 '422': *15 x-github: @@ -87993,9 +88349,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: - - *470 - - *471 - - *345 + - *472 + - *473 + - *347 - *16 responses: '202': *39 @@ -88018,9 +88374,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *470 - - *471 - - *345 + - *472 + - *473 + - *347 responses: '204': description: Response @@ -88045,9 +88401,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *470 - - *471 - - *345 + - *472 + - *473 + - *347 responses: '204': description: Response @@ -88070,8 +88426,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response if immutable releases are enabled @@ -88117,8 +88473,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': *150 '409': *114 @@ -88138,8 +88494,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': *150 '409': *114 @@ -88196,14 +88552,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response content: application/json: - schema: &653 + schema: &655 title: Import description: A repository import from an external source. type: object @@ -88302,7 +88658,7 @@ paths: - html_url - authors_url examples: - default: &656 + default: &658 value: vcs: subversion use_lfs: true @@ -88318,7 +88674,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': &654 + '503': &656 description: Unavailable due to service under maintenance. content: application/json: @@ -88347,8 +88703,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -88396,7 +88752,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *655 examples: default: value: @@ -88421,7 +88777,7 @@ paths: type: string '422': *15 '404': *6 - '503': *654 + '503': *656 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88449,8 +88805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: false content: @@ -88499,7 +88855,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *655 examples: example-1: summary: Example 1 @@ -88547,7 +88903,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': *654 + '503': *656 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88570,12 +88926,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response - '503': *654 + '503': *656 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88601,9 +88957,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *470 - - *471 - - &844 + - *472 + - *473 + - &846 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -88617,7 +88973,7 @@ paths: application/json: schema: type: array - items: &655 + items: &657 title: Porter Author description: Porter Author type: object @@ -88671,7 +89027,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': *654 + '503': *656 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88696,8 +89052,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *470 - - *471 + - *472 + - *473 - name: author_id in: path required: true @@ -88727,7 +89083,7 @@ paths: description: Response content: application/json: - schema: *655 + schema: *657 examples: default: value: @@ -88740,7 +89096,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *654 + '503': *656 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88764,8 +89120,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -88806,7 +89162,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *654 + '503': *656 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88834,8 +89190,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -88862,11 +89218,11 @@ paths: description: Response content: application/json: - schema: *653 + schema: *655 examples: - default: *656 + default: *658 '422': *15 - '503': *654 + '503': *656 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88889,8 +89245,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -88898,8 +89254,8 @@ paths: application/json: schema: *22 examples: - default: *657 - '301': *482 + default: *659 + '301': *484 '404': *6 x-github: githubCloudOnly: false @@ -88919,8 +89275,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -88928,12 +89284,12 @@ paths: application/json: schema: anyOf: - - *363 + - *365 - type: object properties: {} additionalProperties: false examples: - default: &659 + default: &661 value: limit: collaborators_only origin: repository @@ -88958,13 +89314,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: application/json: - schema: *658 + schema: *660 examples: default: summary: Example request body @@ -88976,9 +89332,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *365 examples: - default: *659 + default: *661 '409': description: Response x-github: @@ -89000,8 +89356,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -89024,8 +89380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -89035,9 +89391,9 @@ paths: application/json: schema: type: array - items: *660 + items: *662 examples: - default: &837 + default: &839 value: - id: 1 repository: @@ -89168,9 +89524,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *470 - - *471 - - *367 + - *472 + - *473 + - *369 requestBody: required: false content: @@ -89199,7 +89555,7 @@ paths: description: Response content: application/json: - schema: *660 + schema: *662 examples: default: value: @@ -89330,9 +89686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *470 - - *471 - - *367 + - *472 + - *473 + - *369 responses: '204': description: Response @@ -89363,8 +89719,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *470 - - *471 + - *472 + - *473 - 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 @@ -89412,7 +89768,7 @@ paths: required: false schema: type: string - - *371 + - *373 - name: sort description: What to sort results by. in: query @@ -89437,7 +89793,7 @@ paths: type: array items: *227 examples: - default: &670 + default: &672 value: - id: 1 node_id: MDU6SXNzdWUx @@ -89585,7 +89941,7 @@ paths: state_reason: completed headers: Link: *43 - '301': *482 + '301': *484 '422': *15 '404': *6 x-github: @@ -89614,8 +89970,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -89699,7 +90055,7 @@ paths: application/json: schema: *227 examples: - default: &667 + default: &669 value: id: 1 node_id: MDU6SXNzdWUx @@ -89855,7 +90211,7 @@ paths: '422': *15 '503': *190 '404': *6 - '410': *661 + '410': *663 x-github: triggersNotification: true githubCloudOnly: false @@ -89883,8 +90239,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *470 - - *471 + - *472 + - *473 - *237 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -89905,9 +90261,9 @@ paths: application/json: schema: type: array - items: *662 + items: *664 examples: - default: &669 + default: &671 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -89965,17 +90321,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *470 - - *471 + - *472 + - *473 - *226 responses: '200': description: Response content: application/json: - schema: *662 + schema: *664 examples: - default: &663 + default: &665 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -90029,8 +90385,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *470 - - *471 + - *472 + - *473 - *226 requestBody: required: true @@ -90053,9 +90409,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *664 examples: - default: *663 + default: *665 '422': *15 x-github: githubCloudOnly: false @@ -90073,8 +90429,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *470 - - *471 + - *472 + - *473 - *226 responses: '204': @@ -90095,8 +90451,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *470 - - *471 + - *472 + - *473 - *226 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -90123,9 +90479,9 @@ paths: application/json: schema: type: array - items: *459 + items: *461 examples: - default: *461 + default: *463 headers: Link: *43 '404': *6 @@ -90146,8 +90502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *470 - - *471 + - *472 + - *473 - *226 requestBody: required: true @@ -90180,16 +90536,16 @@ paths: description: Reaction exists content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '201': description: Reaction created content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '422': *15 x-github: githubCloudOnly: false @@ -90211,10 +90567,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *470 - - *471 + - *472 + - *473 - *226 - - *462 + - *464 responses: '204': description: Response @@ -90234,8 +90590,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -90245,7 +90601,7 @@ paths: application/json: schema: type: array - items: &666 + items: &668 title: Issue Event description: Issue Event type: object @@ -90288,8 +90644,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *664 - required: *665 + properties: *666 + required: *667 nullable: true label: title: Issue Event Label @@ -90333,7 +90689,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *311 + requested_team: *313 dismissed_review: title: Issue Event Dismissed Review type: object @@ -90596,8 +90952,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *470 - - *471 + - *472 + - *473 - name: event_id in: path required: true @@ -90608,7 +90964,7 @@ paths: description: Response content: application/json: - schema: *666 + schema: *668 examples: default: value: @@ -90801,7 +91157,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *661 + '410': *663 '403': *29 x-github: githubCloudOnly: false @@ -90835,9 +91191,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *470 - - *471 - - &668 + - *472 + - *473 + - &670 name: issue_number description: The number that identifies the issue. in: path @@ -90851,10 +91207,10 @@ paths: application/json: schema: *227 examples: - default: *667 - '301': *482 + default: *669 + '301': *484 '404': *6 - '410': *661 + '410': *663 '304': *37 x-github: githubCloudOnly: false @@ -90879,9 +91235,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: false content: @@ -90987,13 +91343,13 @@ paths: application/json: schema: *227 examples: - default: *667 + default: *669 '422': *15 '503': *190 '403': *29 - '301': *482 + '301': *484 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91011,9 +91367,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: false content: @@ -91041,7 +91397,7 @@ paths: application/json: schema: *227 examples: - default: *667 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91057,9 +91413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: content: application/json: @@ -91086,7 +91442,7 @@ paths: application/json: schema: *227 examples: - default: *667 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91108,9 +91464,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: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - name: assignee in: path required: true @@ -91150,9 +91506,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - *217 - *17 - *19 @@ -91163,13 +91519,13 @@ paths: application/json: schema: type: array - items: *662 + items: *664 examples: - default: *669 + default: *671 headers: Link: *43 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91198,9 +91554,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: true content: @@ -91222,16 +91578,16 @@ paths: description: Response content: application/json: - schema: *662 + schema: *664 examples: - default: *663 + default: *665 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *661 + '410': *663 '422': *15 '404': *6 x-github: @@ -91259,9 +91615,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: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - *17 - *19 responses: @@ -91273,12 +91629,12 @@ paths: type: array items: *227 examples: - default: *670 + default: *672 headers: Link: *43 - '301': *482 + '301': *484 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91306,9 +91662,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: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: true content: @@ -91332,15 +91688,15 @@ paths: application/json: schema: *227 examples: - default: *667 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *482 + '301': *484 '403': *29 - '410': *661 + '410': *663 '422': *15 '404': *6 x-github: @@ -91371,9 +91727,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: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -91387,13 +91743,13 @@ paths: application/json: schema: *227 examples: - default: *667 - '301': *482 + default: *669 + '301': *484 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *661 + '410': *663 x-github: triggersNotification: true githubCloudOnly: false @@ -91419,9 +91775,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: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - *17 - *19 responses: @@ -91433,12 +91789,12 @@ paths: type: array items: *227 examples: - default: *670 + default: *672 headers: Link: *43 - '301': *482 + '301': *484 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91455,9 +91811,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - *17 - *19 responses: @@ -91471,7 +91827,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &673 + - &675 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -91525,7 +91881,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &674 + - &676 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -91661,7 +92017,7 @@ paths: - performed_via_github_app - assignee - assigner - - &675 + - &677 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -91712,7 +92068,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &676 + - &678 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -91763,7 +92119,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &677 + - &679 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -91817,7 +92173,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &678 + - &680 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -91851,7 +92207,7 @@ paths: properties: *212 required: *213 review_requester: *4 - requested_team: *311 + requested_team: *313 requested_reviewer: *4 required: - review_requester @@ -91864,7 +92220,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &679 + - &681 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -91898,7 +92254,7 @@ paths: properties: *212 required: *213 review_requester: *4 - requested_team: *311 + requested_team: *313 requested_reviewer: *4 required: - review_requester @@ -91911,7 +92267,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &680 + - &682 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -91971,7 +92327,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &681 + - &683 title: Locked Issue Event description: Locked Issue Event type: object @@ -92019,7 +92375,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &682 + - &684 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -92085,7 +92441,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &683 + - &685 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -92151,7 +92507,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &684 + - &686 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -92217,7 +92573,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &685 + - &687 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -92308,7 +92664,7 @@ paths: color: red headers: Link: *43 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92325,9 +92681,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - *17 - *19 responses: @@ -92337,7 +92693,7 @@ paths: application/json: schema: type: array - items: &671 + items: &673 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -92384,7 +92740,7 @@ paths: - color - default examples: - default: &672 + default: &674 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -92402,9 +92758,9 @@ paths: default: false headers: Link: *43 - '301': *482 + '301': *484 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92421,9 +92777,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: false content: @@ -92482,12 +92838,12 @@ paths: application/json: schema: type: array - items: *671 + items: *673 examples: - default: *672 - '301': *482 + default: *674 + '301': *484 '404': *6 - '410': *661 + '410': *663 '422': *15 x-github: githubCloudOnly: false @@ -92504,9 +92860,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: false content: @@ -92566,12 +92922,12 @@ paths: application/json: schema: type: array - items: *671 + items: *673 examples: - default: *672 - '301': *482 + default: *674 + '301': *484 '404': *6 - '410': *661 + '410': *663 '422': *15 x-github: githubCloudOnly: false @@ -92588,15 +92944,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 responses: '204': description: Response - '301': *482 + '301': *484 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92615,9 +92971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - name: name in: path required: true @@ -92630,7 +92986,7 @@ paths: application/json: schema: type: array - items: *671 + items: *673 examples: default: value: @@ -92641,9 +92997,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *482 + '301': *484 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92663,9 +93019,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: false content: @@ -92693,7 +93049,7 @@ paths: '204': description: Response '403': *29 - '410': *661 + '410': *663 '404': *6 '422': *15 x-github: @@ -92711,9 +93067,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 responses: '204': description: Response @@ -92743,9 +93099,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 responses: '200': description: Response @@ -92753,10 +93109,10 @@ paths: application/json: schema: *227 examples: - default: *667 - '301': *482 + default: *669 + '301': *484 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92773,9 +93129,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - 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. @@ -92801,13 +93157,13 @@ paths: application/json: schema: type: array - items: *459 + items: *461 examples: - default: *461 + default: *463 headers: Link: *43 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92825,9 +93181,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: true content: @@ -92859,16 +93215,16 @@ paths: description: Response content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '201': description: Response content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '422': *15 x-github: githubCloudOnly: false @@ -92890,10 +93246,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *470 - - *471 - - *668 - - *462 + - *472 + - *473 + - *670 + - *464 responses: '204': description: Response @@ -92922,9 +93278,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: true content: @@ -92948,7 +93304,7 @@ paths: application/json: schema: *227 examples: - default: *667 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -92981,9 +93337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - *17 - *19 responses: @@ -92995,11 +93351,11 @@ paths: type: array items: *227 examples: - default: *670 + default: *672 headers: Link: *43 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93027,9 +93383,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: true content: @@ -93058,14 +93414,14 @@ paths: application/json: schema: *227 examples: - default: *667 + default: *669 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *661 + '410': *663 '422': *15 '404': *6 x-github: @@ -93085,9 +93441,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 requestBody: required: true content: @@ -93120,7 +93476,7 @@ paths: application/json: schema: *227 examples: - default: *667 + default: *669 '403': *29 '404': *6 '422': *7 @@ -93142,9 +93498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *470 - - *471 - - *668 + - *472 + - *473 + - *670 - *17 - *19 responses: @@ -93159,8 +93515,6 @@ paths: description: Timeline Event type: object anyOf: - - *673 - - *674 - *675 - *676 - *677 @@ -93172,6 +93526,8 @@ paths: - *683 - *684 - *685 + - *686 + - *687 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -93480,7 +93836,7 @@ paths: type: string comments: type: array - items: &707 + items: &709 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -93689,7 +94045,7 @@ paths: type: string comments: type: array - items: *586 + items: *588 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -93978,7 +94334,7 @@ paths: headers: Link: *43 '404': *6 - '410': *661 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93995,8 +94351,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -94006,7 +94362,7 @@ paths: application/json: schema: type: array - items: &686 + items: &688 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -94072,8 +94428,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -94109,9 +94465,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *688 examples: - default: &687 + default: &689 value: id: 1 key: ssh-rsa AAA... @@ -94145,9 +94501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *470 - - *471 - - &688 + - *472 + - *473 + - &690 name: key_id description: The unique identifier of the key. in: path @@ -94159,9 +94515,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *688 examples: - default: *687 + default: *689 '404': *6 x-github: githubCloudOnly: false @@ -94179,9 +94535,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *470 - - *471 - - *688 + - *472 + - *473 + - *690 responses: '204': description: Response @@ -94201,8 +94557,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -94212,9 +94568,9 @@ paths: application/json: schema: type: array - items: *671 + items: *673 examples: - default: *672 + default: *674 headers: Link: *43 '404': *6 @@ -94235,8 +94591,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -94272,9 +94628,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *673 examples: - default: &689 + default: &691 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94306,8 +94662,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *470 - - *471 + - *472 + - *473 - name: name in: path required: true @@ -94318,9 +94674,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *673 examples: - default: *689 + default: *691 '404': *6 x-github: githubCloudOnly: false @@ -94337,8 +94693,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *470 - - *471 + - *472 + - *473 - name: name in: path required: true @@ -94377,7 +94733,7 @@ paths: description: Response content: application/json: - schema: *671 + schema: *673 examples: default: value: @@ -94403,8 +94759,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *470 - - *471 + - *472 + - *473 - name: name in: path required: true @@ -94430,8 +94786,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -94467,8 +94823,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *470 - - *471 + - *472 + - *473 responses: '202': *39 '403': @@ -94496,8 +94852,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -94523,9 +94879,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *470 - - *471 - - *562 + - *472 + - *473 + - *564 responses: '200': description: Response @@ -94670,8 +95026,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -94736,8 +95092,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -94771,9 +95127,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *587 + schema: *589 examples: - default: *690 + default: *692 '204': description: Response when already merged '404': @@ -94798,8 +95154,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *470 - - *471 + - *472 + - *473 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -94840,12 +95196,12 @@ paths: application/json: schema: type: array - items: &691 + items: &693 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *403 - required: *404 + properties: *405 + required: *406 examples: default: value: @@ -94901,8 +95257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -94942,9 +95298,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *693 examples: - default: &692 + default: &694 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -95003,9 +95359,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *470 - - *471 - - &693 + - *472 + - *473 + - &695 name: milestone_number description: The number that identifies the milestone. in: path @@ -95017,9 +95373,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *693 examples: - default: *692 + default: *694 '404': *6 x-github: githubCloudOnly: false @@ -95036,9 +95392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *470 - - *471 - - *693 + - *472 + - *473 + - *695 requestBody: required: false content: @@ -95076,9 +95432,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *693 examples: - default: *692 + default: *694 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95094,9 +95450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *470 - - *471 - - *693 + - *472 + - *473 + - *695 responses: '204': description: Response @@ -95117,9 +95473,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: - - *470 - - *471 - - *693 + - *472 + - *473 + - *695 - *17 - *19 responses: @@ -95129,9 +95485,9 @@ paths: application/json: schema: type: array - items: *671 + items: *673 examples: - default: *672 + default: *674 headers: Link: *43 x-github: @@ -95150,12 +95506,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: - - *470 - - *471 - - *694 - - *695 - - *217 + - *472 + - *473 - *696 + - *697 + - *217 + - *698 - *17 - *19 responses: @@ -95167,7 +95523,7 @@ paths: type: array items: *240 examples: - default: *697 + default: *699 headers: Link: *43 x-github: @@ -95191,8 +95547,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: false content: @@ -95250,14 +95606,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response content: application/json: - schema: &698 + schema: &700 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -95382,7 +95738,7 @@ paths: - custom_404 - public examples: - default: &699 + default: &701 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -95423,8 +95779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -95478,9 +95834,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *700 examples: - default: *699 + default: *701 '422': *15 '409': *114 x-github: @@ -95503,8 +95859,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -95611,8 +95967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -95638,8 +95994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -95649,7 +96005,7 @@ paths: application/json: schema: type: array - items: &700 + items: &702 title: Page Build description: Page Build type: object @@ -95743,8 +96099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *470 - - *471 + - *472 + - *473 responses: '201': description: Response @@ -95789,16 +96145,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response content: application/json: - schema: *700 + schema: *702 examples: - default: &701 + default: &703 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -95846,8 +96202,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *470 - - *471 + - *472 + - *473 - name: build_id in: path required: true @@ -95858,9 +96214,9 @@ paths: description: Response content: application/json: - schema: *700 + schema: *702 examples: - default: *701 + default: *703 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95880,8 +96236,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -95986,9 +96342,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: - - *470 - - *471 - - &702 + - *472 + - *473 + - &704 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -96046,9 +96402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *470 - - *471 - - *702 + - *472 + - *473 + - *704 responses: '204': *150 '404': *6 @@ -96075,8 +96431,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -96334,8 +96690,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Private vulnerability reporting status @@ -96372,8 +96728,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: - - *470 - - *471 + - *472 + - *473 responses: '204': *150 '422': *14 @@ -96394,8 +96750,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: - - *470 - - *471 + - *472 + - *473 responses: '204': *150 '422': *14 @@ -96417,8 +96773,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -96428,7 +96784,7 @@ paths: type: array items: *151 examples: - default: *703 + default: *705 '403': *29 '404': *6 x-github: @@ -96450,8 +96806,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -96467,7 +96823,7 @@ paths: required: - properties examples: - default: *704 + default: *706 responses: '204': description: No Content when custom property values are successfully created @@ -96505,8 +96861,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *470 - - *471 + - *472 + - *473 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -96566,9 +96922,9 @@ paths: application/json: schema: type: array - items: *591 + items: *593 examples: - default: *705 + default: *707 headers: Link: *43 '304': *37 @@ -96600,8 +96956,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -96666,7 +97022,7 @@ paths: description: Response content: application/json: - schema: &709 + schema: &711 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -96777,8 +97133,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *403 - required: *404 + properties: *405 + required: *406 nullable: true active_lock_reason: type: string @@ -96823,7 +97179,7 @@ paths: nullable: true requested_teams: type: array - items: *437 + items: *439 nullable: true head: type: object @@ -96862,14 +97218,14 @@ paths: _links: type: object properties: - comments: *405 - commits: *405 - statuses: *405 - html: *405 - issue: *405 - review_comments: *405 - review_comment: *405 - self: *405 + comments: *407 + commits: *407 + statuses: *407 + html: *407 + issue: *407 + review_comments: *407 + review_comment: *407 + self: *407 required: - comments - commits @@ -96880,7 +97236,7 @@ paths: - review_comment - self author_association: *214 - auto_merge: *706 + auto_merge: *708 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -96972,7 +97328,7 @@ paths: - merged_by - review_comments examples: - default: &710 + default: &712 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -97499,8 +97855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *470 - - *471 + - *472 + - *473 - name: sort in: query required: false @@ -97529,9 +97885,9 @@ paths: application/json: schema: type: array - items: *707 + items: *709 examples: - default: &712 + default: &714 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97608,17 +97964,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: - - *470 - - *471 + - *472 + - *473 - *226 responses: '200': description: Response content: application/json: - schema: *707 + schema: *709 examples: - default: &708 + default: &710 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97693,8 +98049,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: - - *470 - - *471 + - *472 + - *473 - *226 requestBody: required: true @@ -97717,9 +98073,9 @@ paths: description: Response content: application/json: - schema: *707 + schema: *709 examples: - default: *708 + default: *710 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97735,8 +98091,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: - - *470 - - *471 + - *472 + - *473 - *226 responses: '204': @@ -97758,8 +98114,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: - - *470 - - *471 + - *472 + - *473 - *226 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -97786,9 +98142,9 @@ paths: application/json: schema: type: array - items: *459 + items: *461 examples: - default: *461 + default: *463 headers: Link: *43 '404': *6 @@ -97809,8 +98165,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: - - *470 - - *471 + - *472 + - *473 - *226 requestBody: required: true @@ -97843,16 +98199,16 @@ paths: description: Reaction exists content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '201': description: Reaction created content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '422': *15 x-github: githubCloudOnly: false @@ -97874,10 +98230,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *470 - - *471 + - *472 + - *473 - *226 - - *462 + - *464 responses: '204': description: Response @@ -97920,9 +98276,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *470 - - *471 - - &711 + - *472 + - *473 + - &713 name: pull_number description: The number that identifies the pull request. in: path @@ -97935,9 +98291,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *709 + schema: *711 examples: - default: *710 + default: *712 '304': *37 '404': *6 '406': @@ -97972,9 +98328,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 requestBody: required: false content: @@ -98016,9 +98372,9 @@ paths: description: Response content: application/json: - schema: *709 + schema: *711 examples: - default: *710 + default: *712 '422': *15 '403': *29 x-github: @@ -98040,9 +98396,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: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 requestBody: required: true content: @@ -98102,17 +98458,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *373 + schema: *375 examples: - default: *576 + default: *578 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *373 + schema: *375 examples: - default: *576 + default: *578 '401': *25 '403': *29 '404': *6 @@ -98142,9 +98498,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: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 - *237 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -98165,9 +98521,9 @@ paths: application/json: schema: type: array - items: *707 + items: *709 examples: - default: *712 + default: *714 headers: Link: *43 x-github: @@ -98200,9 +98556,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: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 requestBody: required: true content: @@ -98307,7 +98663,7 @@ paths: description: Response content: application/json: - schema: *707 + schema: *709 examples: example-for-a-multi-line-comment: value: @@ -98395,9 +98751,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: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 - *226 requestBody: required: true @@ -98420,7 +98776,7 @@ paths: description: Response content: application/json: - schema: *707 + schema: *709 examples: default: value: @@ -98506,9 +98862,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 - *17 - *19 responses: @@ -98518,9 +98874,9 @@ paths: application/json: schema: type: array - items: *587 + items: *589 examples: - default: *713 + default: *715 headers: Link: *43 x-github: @@ -98550,9 +98906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 - *17 - *19 responses: @@ -98562,7 +98918,7 @@ paths: application/json: schema: type: array - items: *600 + items: *602 examples: default: value: @@ -98600,9 +98956,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: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 responses: '204': description: Response if pull request has been merged @@ -98625,9 +98981,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 requestBody: required: false content: @@ -98738,9 +99094,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: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 responses: '200': description: Response @@ -98756,7 +99112,7 @@ paths: items: *4 teams: type: array - items: *311 + items: *313 required: - users - teams @@ -98815,9 +99171,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: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 requestBody: required: false content: @@ -98854,7 +99210,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *593 examples: default: value: @@ -99390,9 +99746,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: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 requestBody: required: true content: @@ -99426,7 +99782,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *593 examples: default: value: @@ -99931,9 +100287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 - *17 - *19 responses: @@ -99943,7 +100299,7 @@ paths: application/json: schema: type: array - items: &714 + items: &716 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -100094,9 +100450,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: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 requestBody: required: false content: @@ -100182,9 +100538,9 @@ paths: description: Response content: application/json: - schema: *714 + schema: *716 examples: - default: &716 + default: &718 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -100247,10 +100603,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: - - *470 - - *471 - - *711 - - &715 + - *472 + - *473 + - *713 + - &717 name: review_id description: The unique identifier of the review. in: path @@ -100262,9 +100618,9 @@ paths: description: Response content: application/json: - schema: *714 + schema: *716 examples: - default: &717 + default: &719 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -100323,10 +100679,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: - - *470 - - *471 - - *711 - - *715 + - *472 + - *473 + - *713 + - *717 requestBody: required: true content: @@ -100349,7 +100705,7 @@ paths: description: Response content: application/json: - schema: *714 + schema: *716 examples: default: value: @@ -100411,18 +100767,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: - - *470 - - *471 - - *711 - - *715 + - *472 + - *473 + - *713 + - *717 responses: '200': description: Response content: application/json: - schema: *714 + schema: *716 examples: - default: *716 + default: *718 '422': *7 '404': *6 x-github: @@ -100449,10 +100805,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: - - *470 - - *471 - - *711 - - *715 + - *472 + - *473 + - *713 + - *717 - *17 - *19 responses: @@ -100535,9 +100891,9 @@ paths: _links: type: object properties: - self: *405 - html: *405 - pull_request: *405 + self: *407 + html: *407 + pull_request: *407 required: - self - html @@ -100687,10 +101043,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: - - *470 - - *471 - - *711 - - *715 + - *472 + - *473 + - *713 + - *717 requestBody: required: true content: @@ -100718,7 +101074,7 @@ paths: description: Response content: application/json: - schema: *714 + schema: *716 examples: default: value: @@ -100781,10 +101137,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: - - *470 - - *471 - - *711 - - *715 + - *472 + - *473 + - *713 + - *717 requestBody: required: true content: @@ -100819,9 +101175,9 @@ paths: description: Response content: application/json: - schema: *714 + schema: *716 examples: - default: *717 + default: *719 '404': *6 '422': *7 '403': *29 @@ -100843,9 +101199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *470 - - *471 - - *711 + - *472 + - *473 + - *713 requestBody: required: false content: @@ -100908,8 +101264,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *470 - - *471 + - *472 + - *473 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -100922,9 +101278,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *720 examples: - default: &719 + default: &721 value: type: file encoding: base64 @@ -100966,8 +101322,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: - - *470 - - *471 + - *472 + - *473 - name: dir description: The alternate path to look for a README file in: path @@ -100987,9 +101343,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *720 examples: - default: *719 + default: *721 '404': *6 '422': *15 x-github: @@ -101011,8 +101367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -101022,7 +101378,7 @@ paths: application/json: schema: type: array - items: &720 + items: &722 title: Release description: A release. type: object @@ -101093,7 +101449,7 @@ paths: author: *4 assets: type: array - items: &721 + items: &723 title: Release Asset description: Data related to a release. type: object @@ -101280,8 +101636,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -101357,9 +101713,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *722 examples: - default: &724 + default: &726 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -101464,9 +101820,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *470 - - *471 - - &722 + - *472 + - *473 + - &724 name: asset_id description: The unique identifier of the asset. in: path @@ -101478,9 +101834,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *723 examples: - default: &723 + default: &725 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 @@ -101515,7 +101871,7 @@ paths: type: User site_admin: false '404': *6 - '302': *602 + '302': *604 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101531,9 +101887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *470 - - *471 - - *722 + - *472 + - *473 + - *724 requestBody: required: false content: @@ -101561,9 +101917,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *723 examples: - default: *723 + default: *725 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101579,9 +101935,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *470 - - *471 - - *722 + - *472 + - *473 + - *724 responses: '204': description: Response @@ -101605,8 +101961,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -101691,16 +102047,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response content: application/json: - schema: *720 + schema: *722 examples: - default: *724 + default: *726 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101717,8 +102073,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *470 - - *471 + - *472 + - *473 - name: tag description: tag parameter in: path @@ -101731,9 +102087,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *722 examples: - default: *724 + default: *726 '404': *6 x-github: githubCloudOnly: false @@ -101755,9 +102111,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *470 - - *471 - - &725 + - *472 + - *473 + - &727 name: release_id description: The unique identifier of the release. in: path @@ -101771,9 +102127,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: *720 + schema: *722 examples: - default: *724 + default: *726 '401': description: Unauthorized x-github: @@ -101791,9 +102147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *470 - - *471 - - *725 + - *472 + - *473 + - *727 requestBody: required: false content: @@ -101857,9 +102213,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *722 examples: - default: *724 + default: *726 '404': description: Not Found if the discussion category name is invalid content: @@ -101880,9 +102236,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *470 - - *471 - - *725 + - *472 + - *473 + - *727 responses: '204': description: Response @@ -101902,9 +102258,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *470 - - *471 - - *725 + - *472 + - *473 + - *727 - *17 - *19 responses: @@ -101914,7 +102270,7 @@ paths: application/json: schema: type: array - items: *721 + items: *723 examples: default: value: @@ -101996,9 +102352,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: - - *470 - - *471 - - *725 + - *472 + - *473 + - *727 - name: name in: query required: true @@ -102024,7 +102380,7 @@ paths: description: Response for successful upload content: application/json: - schema: *721 + schema: *723 examples: response-for-successful-upload: value: @@ -102079,9 +102435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *470 - - *471 - - *725 + - *472 + - *473 + - *727 - 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. @@ -102105,9 +102461,9 @@ paths: application/json: schema: type: array - items: *459 + items: *461 examples: - default: *461 + default: *463 headers: Link: *43 '404': *6 @@ -102128,9 +102484,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *470 - - *471 - - *725 + - *472 + - *473 + - *727 requestBody: required: true content: @@ -102160,16 +102516,16 @@ paths: description: Reaction exists content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '201': description: Reaction created content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 '422': *15 x-github: githubCloudOnly: false @@ -102191,10 +102547,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *470 - - *471 - - *725 - - *462 + - *472 + - *473 + - *727 + - *464 responses: '204': description: Response @@ -102218,9 +102574,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *470 - - *471 - - *527 + - *472 + - *473 + - *529 - *17 - *19 responses: @@ -102237,7 +102593,7 @@ paths: oneOf: - allOf: - *165 - - &726 + - &728 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -102258,67 +102614,67 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *166 - - *726 + - *728 - allOf: - *167 - - *726 + - *728 - allOf: - *168 - - *726 + - *728 - allOf: - - *727 - - *726 + - *729 + - *728 - allOf: - *169 - - *726 + - *728 - allOf: - *170 - - *726 + - *728 - allOf: - *171 - - *726 + - *728 - allOf: - *172 - - *726 + - *728 - allOf: - *173 - - *726 + - *728 - allOf: - *174 - - *726 + - *728 - allOf: - *175 - - *726 + - *728 - allOf: - *176 - - *726 + - *728 - allOf: - *177 - - *726 + - *728 - allOf: - *178 - - *726 + - *728 - allOf: - *179 - - *726 + - *728 - allOf: - *180 - - *726 + - *728 - allOf: - *181 - - *726 + - *728 - allOf: - *182 - - *726 + - *728 - allOf: - *183 - - *726 + - *728 - allOf: - *184 - - *726 + - *728 - allOf: + - *730 - *728 - - *726 examples: default: value: @@ -102357,8 +102713,8 @@ paths: category: repos subcategory: rules parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 - name: includes_parents @@ -102369,7 +102725,7 @@ paths: schema: type: boolean default: true - - *729 + - *731 responses: '200': description: Response @@ -102424,8 +102780,8 @@ paths: category: repos subcategory: rules parameters: - - *470 - - *471 + - *472 + - *473 requestBody: description: Request body required: true @@ -102454,7 +102810,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *730 + items: *732 required: - name - enforcement @@ -102487,7 +102843,7 @@ paths: application/json: schema: *185 examples: - default: &739 + default: &741 value: id: 42 name: super cool ruleset @@ -102534,12 +102890,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *470 - - *471 - - *731 - - *101 - - *732 + - *472 + - *473 - *733 + - *101 + - *734 + - *735 - *17 - *19 responses: @@ -102547,9 +102903,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *736 examples: - default: *735 + default: *737 '404': *6 '500': *40 x-github: @@ -102570,17 +102926,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *470 - - *471 - - *736 + - *472 + - *473 + - *738 responses: '200': description: Response content: application/json: - schema: *737 + schema: *739 examples: - default: *738 + default: *740 '404': *6 '500': *40 x-github: @@ -102608,8 +102964,8 @@ paths: category: repos subcategory: rules parameters: - - *470 - - *471 + - *472 + - *473 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102631,7 +102987,7 @@ paths: application/json: schema: *185 examples: - default: *739 + default: *741 '404': *6 '500': *40 put: @@ -102649,8 +103005,8 @@ paths: category: repos subcategory: rules parameters: - - *470 - - *471 + - *472 + - *473 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102684,7 +103040,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *730 + items: *732 examples: default: value: @@ -102714,7 +103070,7 @@ paths: application/json: schema: *185 examples: - default: *739 + default: *741 '404': *6 '500': *40 delete: @@ -102732,8 +103088,8 @@ paths: category: repos subcategory: rules parameters: - - *470 - - *471 + - *472 + - *473 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102756,8 +103112,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 - name: ruleset_id @@ -102775,7 +103131,7 @@ paths: type: array items: *189 examples: - default: *422 + default: *424 '404': *6 '500': *40 x-github: @@ -102794,8 +103150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *470 - - *471 + - *472 + - *473 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102813,7 +103169,7 @@ paths: description: Response content: application/json: - schema: *423 + schema: *425 examples: default: value: @@ -102868,21 +103224,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: - - *470 - - *471 - - *424 - - *425 + - *472 + - *473 - *426 - *427 + - *428 + - *429 - *106 - *19 - *17 - - *740 - - *741 - - *428 - - *429 + - *742 + - *743 - *430 - *431 + - *432 + - *433 responses: '200': description: Response @@ -102890,7 +103246,7 @@ paths: application/json: schema: type: array - items: &745 + items: &747 type: object properties: number: *123 @@ -102909,8 +103265,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *742 - resolution: *743 + state: *744 + resolution: *745 resolved_at: type: string format: date-time @@ -103006,7 +103362,7 @@ paths: pull request. ' - oneOf: *744 + oneOf: *746 nullable: true has_more_locations: type: boolean @@ -103155,16 +103511,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: - - *470 - - *471 - - *556 - - *431 + - *472 + - *473 + - *558 + - *433 responses: '200': description: Response content: application/json: - schema: *745 + schema: *747 examples: default: value: @@ -103216,9 +103572,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: - - *470 - - *471 - - *556 + - *472 + - *473 + - *558 requestBody: required: true content: @@ -103226,8 +103582,8 @@ paths: schema: type: object properties: - state: *742 - resolution: *743 + state: *744 + resolution: *745 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -103246,7 +103602,7 @@ paths: description: Response content: application/json: - schema: *745 + schema: *747 examples: default: value: @@ -103321,9 +103677,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: - - *470 - - *471 - - *556 + - *472 + - *473 + - *558 - *19 - *17 responses: @@ -103334,7 +103690,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &926 + items: &928 type: object properties: type: @@ -103360,8 +103716,6 @@ paths: example: commit details: oneOf: - - *746 - - *747 - *748 - *749 - *750 @@ -103373,6 +103727,8 @@ paths: - *756 - *757 - *758 + - *759 + - *760 examples: default: value: @@ -103458,8 +103814,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -103467,14 +103823,14 @@ paths: schema: type: object properties: - reason: &760 + reason: &762 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *759 + placeholder_id: *761 required: - reason - placeholder_id @@ -103491,7 +103847,7 @@ paths: schema: type: object properties: - reason: *760 + reason: *762 expire_at: type: string format: date-time @@ -103537,8 +103893,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: - - *470 - - *471 + - *472 + - *473 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -103553,7 +103909,7 @@ paths: properties: incremental_scans: type: array - items: &761 + items: &763 description: Information on a single scan performed by secret scanning on the repository type: object @@ -103579,15 +103935,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *761 + items: *763 backfill_scans: type: array - items: *761 + items: *763 custom_pattern_backfill_scans: type: array items: allOf: - - *761 + - *763 - type: object properties: pattern_name: @@ -103657,8 +104013,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *470 - - *471 + - *472 + - *473 - *106 - name: sort description: The property to sort the results by. @@ -103702,9 +104058,9 @@ paths: application/json: schema: type: array - items: *762 + items: *764 examples: - default: *763 + default: *765 '400': *14 '404': *6 x-github: @@ -103727,8 +104083,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -103801,7 +104157,7 @@ paths: login: type: string description: The username of the user credited. - type: *436 + type: *438 required: - login - type @@ -103888,9 +104244,9 @@ paths: description: Response content: application/json: - schema: *762 + schema: *764 examples: - default: &765 + default: &767 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -104123,8 +104479,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -104228,7 +104584,7 @@ paths: description: Response content: application/json: - schema: *762 + schema: *764 examples: default: value: @@ -104375,17 +104731,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: - - *470 - - *471 - - *764 + - *472 + - *473 + - *766 responses: '200': description: Response content: application/json: - schema: *762 + schema: *764 examples: - default: *765 + default: *767 '403': *29 '404': *6 x-github: @@ -104409,9 +104765,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: - - *470 - - *471 - - *764 + - *472 + - *473 + - *766 requestBody: required: true content: @@ -104484,7 +104840,7 @@ paths: login: type: string description: The username of the user credited. - type: *436 + type: *438 required: - login - type @@ -104570,10 +104926,10 @@ paths: description: Response content: application/json: - schema: *762 + schema: *764 examples: - default: *765 - add_credit: *765 + default: *767 + add_credit: *767 '403': *29 '404': *6 '422': @@ -104611,9 +104967,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: - - *470 - - *471 - - *764 + - *472 + - *473 + - *766 responses: '202': *39 '400': *14 @@ -104640,17 +104996,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: - - *470 - - *471 - - *764 + - *472 + - *473 + - *766 responses: '202': description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: *483 + default: *485 '400': *14 '422': *15 '403': *29 @@ -104676,8 +105032,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -104776,8 +105132,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -104786,7 +105142,7 @@ paths: application/json: schema: type: array - items: &766 + items: &768 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -104819,8 +105175,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -104896,8 +105252,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -104993,8 +105349,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -105148,8 +105504,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -105159,7 +105515,7 @@ paths: application/json: schema: type: array - items: *766 + items: *768 examples: default: value: @@ -105192,8 +105548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *470 - - *471 + - *472 + - *473 - name: sha in: path required: true @@ -105247,7 +105603,7 @@ paths: description: Response content: application/json: - schema: *767 + schema: *769 examples: default: value: @@ -105301,8 +105657,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -105334,14 +105690,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &768 + schema: &770 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -105409,8 +105765,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: false content: @@ -105436,7 +105792,7 @@ paths: description: Response content: application/json: - schema: *768 + schema: *770 examples: default: value: @@ -105463,8 +105819,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -105484,8 +105840,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -105564,8 +105920,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: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -105573,7 +105929,7 @@ paths: application/json: schema: type: array - items: &769 + items: &771 title: Tag protection description: Tag protection type: object @@ -105625,8 +105981,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: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -105649,7 +106005,7 @@ paths: description: Response content: application/json: - schema: *769 + schema: *771 examples: default: value: @@ -105680,8 +106036,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: - - *470 - - *471 + - *472 + - *473 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -105718,8 +106074,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *470 - - *471 + - *472 + - *473 - name: ref in: path required: true @@ -105755,8 +106111,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *470 - - *471 + - *472 + - *473 - *17 - *19 responses: @@ -105766,9 +106122,9 @@ paths: application/json: schema: type: array - items: *311 + items: *313 examples: - default: *383 + default: *385 headers: Link: *43 '404': *6 @@ -105788,8 +106144,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *470 - - *471 + - *472 + - *473 - *19 - *17 responses: @@ -105797,7 +106153,7 @@ paths: description: Response content: application/json: - schema: &770 + schema: &772 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -105809,7 +106165,7 @@ paths: required: - names examples: - default: &771 + default: &773 value: names: - octocat @@ -105832,8 +106188,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -105864,9 +106220,9 @@ paths: description: Response content: application/json: - schema: *770 + schema: *772 examples: - default: *771 + default: *773 '404': *6 '422': *7 x-github: @@ -105887,9 +106243,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *470 - - *471 - - &772 + - *472 + - *473 + - &774 name: per description: The time frame to display results for. in: query @@ -105918,7 +106274,7 @@ paths: example: 128 clones: type: array - items: &773 + items: &775 title: Traffic type: object properties: @@ -106005,8 +106361,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -106096,8 +106452,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *470 - - *471 + - *472 + - *473 responses: '200': description: Response @@ -106157,9 +106513,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *470 - - *471 - - *772 + - *472 + - *473 + - *774 responses: '200': description: Response @@ -106178,7 +106534,7 @@ paths: example: 3782 views: type: array - items: *773 + items: *775 required: - uniques - count @@ -106255,8 +106611,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *470 - - *471 + - *472 + - *473 requestBody: required: true content: @@ -106530,8 +106886,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: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -106554,8 +106910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -106577,8 +106933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -106604,8 +106960,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *470 - - *471 + - *472 + - *473 - name: ref in: path required: true @@ -106697,9 +107053,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: *483 + default: *485 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -106850,7 +107206,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &781 + - &783 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -106859,7 +107215,7 @@ paths: schema: type: string example: members - - &786 + - &788 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -106870,7 +107226,7 @@ paths: default: 1 format: int32 example: 1 - - &787 + - &789 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -106912,7 +107268,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &776 + items: &778 allOf: - type: object required: @@ -106987,7 +107343,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: &788 + meta: &790 type: object description: The metadata associated with the creation/updates to the user. @@ -107047,30 +107403,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &777 + '400': &779 description: Bad request content: application/json: - schema: *774 + schema: *776 application/scim+json: - schema: *774 - '401': *775 - '403': &778 + schema: *776 + '401': *777 + '403': &780 description: Permission denied - '429': &779 + '429': &781 description: Too many requests content: application/json: - schema: *774 + schema: *776 application/scim+json: - schema: *774 - '500': &780 + schema: *776 + '500': &782 description: Internal server error content: application/json: - schema: *774 + schema: *776 application/scim+json: - schema: *774 + schema: *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107094,7 +107450,7 @@ paths: required: true content: application/json: - schema: &784 + schema: &786 type: object required: - schemas @@ -107154,9 +107510,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *776 + schema: *778 examples: - group: &782 + group: &784 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -107175,13 +107531,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': *777 - '401': *775 - '403': *778 - '409': &785 + '400': *779 + '401': *777 + '403': *780 + '409': &787 description: Duplicate record detected - '429': *779 - '500': *780 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107198,7 +107554,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: - - &783 + - &785 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -107206,22 +107562,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *781 + - *783 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *776 + schema: *778 examples: - default: *782 - '400': *777 - '401': *775 - '403': *778 + default: *784 + '400': *779 + '401': *777 + '403': *780 '404': *6 - '429': *779 - '500': *780 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107240,13 +107596,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: - - *783 + - *785 - *41 requestBody: required: true content: application/json: - schema: *784 + schema: *786 examples: group: summary: Group @@ -107272,17 +107628,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *776 + schema: *778 examples: - group: *782 - groupWithMembers: *782 - '400': *777 - '401': *775 - '403': *778 + group: *784 + groupWithMembers: *784 + '400': *779 + '401': *777 + '403': *780 '404': *6 - '409': *785 - '429': *779 - '500': *780 + '409': *787 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107306,13 +107662,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: - - *783 + - *785 - *41 requestBody: required: true content: application/json: - schema: &795 + schema: &797 type: object required: - Operations @@ -107372,17 +107728,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *776 + schema: *778 examples: - updateGroup: *782 - addMembers: *782 - '400': *777 - '401': *775 - '403': *778 + updateGroup: *784 + addMembers: *784 + '400': *779 + '401': *777 + '403': *780 '404': *6 - '409': *785 - '429': *779 - '500': *780 + '409': *787 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107398,17 +107754,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: - - *783 + - *785 - *41 responses: '204': description: Group was deleted, no content - '400': *777 - '401': *775 - '403': *778 + '400': *779 + '401': *777 + '403': *780 '404': *6 - '429': *779 - '500': *780 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107442,8 +107798,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *786 - - *787 + - *788 + - *789 - *41 responses: '200': @@ -107476,7 +107832,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &790 + items: &792 allOf: - type: object required: @@ -107555,7 +107911,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &789 + roles: &791 type: array description: The roles assigned to the user. items: @@ -107611,7 +107967,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *788 + meta: *790 startIndex: type: integer description: A starting index for the returned page @@ -107648,11 +108004,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *777 - '401': *775 - '403': *778 - '429': *779 - '500': *780 + '400': *779 + '401': *777 + '403': *780 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107676,7 +108032,7 @@ paths: required: true content: application/json: - schema: &793 + schema: &795 type: object required: - schemas @@ -107758,9 +108114,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *789 + roles: *791 examples: - user: &794 + user: &796 summary: User value: schemas: @@ -107807,9 +108163,9 @@ paths: description: User has been created content: application/scim+json: - schema: *790 + schema: *792 examples: - user: &791 + user: &793 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -107835,13 +108191,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: *791 - '400': *777 - '401': *775 - '403': *778 - '409': *785 - '429': *779 - '500': *780 + enterpriseOwner: *793 + '400': *779 + '401': *777 + '403': *780 + '409': *787 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107858,7 +108214,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: - - &792 + - &794 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -107871,15 +108227,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *790 + schema: *792 examples: - default: *791 - '400': *777 - '401': *775 - '403': *778 + default: *793 + '400': *779 + '401': *777 + '403': *780 '404': *6 - '429': *779 - '500': *780 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107901,30 +108257,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: - - *792 + - *794 - *41 requestBody: required: true content: application/json: - schema: *793 + schema: *795 examples: - user: *794 + user: *796 responses: '200': description: User was updated content: application/scim+json: - schema: *790 + schema: *792 examples: - user: *791 - '400': *777 - '401': *775 - '403': *778 + user: *793 + '400': *779 + '401': *777 + '403': *780 '404': *6 - '409': *785 - '429': *779 - '500': *780 + '409': *787 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -107959,13 +108315,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: - - *792 + - *794 - *41 requestBody: required: true content: application/json: - schema: *795 + schema: *797 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -108005,18 +108361,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *790 + schema: *792 examples: - userMultiValuedProperties: *791 - userSingleValuedProperties: *791 - disableUser: *791 - '400': *777 - '401': *775 - '403': *778 + userMultiValuedProperties: *793 + userSingleValuedProperties: *793 + disableUser: *793 + '400': *779 + '401': *777 + '403': *780 '404': *6 - '409': *785 - '429': *779 - '500': *780 + '409': *787 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108036,17 +108392,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: - - *792 + - *794 - *41 responses: '204': description: User was deleted, no content - '400': *777 - '401': *775 - '403': *778 + '400': *779 + '401': *777 + '403': *780 '404': *6 - '429': *779 - '500': *780 + '429': *781 + '500': *782 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -108133,7 +108489,7 @@ paths: example: 1 Resources: type: array - items: &796 + items: &798 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -108364,22 +108720,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &797 + '404': &799 description: Resource not found content: application/json: - schema: *774 + schema: *776 application/scim+json: - schema: *774 - '403': &798 + schema: *776 + '403': &800 description: Forbidden content: application/json: - schema: *774 + schema: *776 application/scim+json: - schema: *774 - '400': *777 - '429': *779 + schema: *776 + '400': *779 + '429': *781 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -108405,9 +108761,9 @@ paths: description: Response content: application/scim+json: - schema: *796 + schema: *798 examples: - default: &799 + default: &801 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -108430,17 +108786,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *797 - '403': *798 - '500': *780 + '404': *799 + '403': *800 + '500': *782 '409': description: Conflict content: application/json: - schema: *774 + schema: *776 application/scim+json: - schema: *774 - '400': *777 + schema: *776 + '400': *779 requestBody: required: true content: @@ -108538,17 +108894,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *83 - - *792 + - *794 responses: '200': description: Response content: application/scim+json: - schema: *796 + schema: *798 examples: - default: *799 - '404': *797 - '403': *798 + default: *801 + '404': *799 + '403': *800 '304': *37 x-github: githubCloudOnly: true @@ -108572,18 +108928,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *83 - - *792 + - *794 responses: '200': description: Response content: application/scim+json: - schema: *796 + schema: *798 examples: - default: *799 + default: *801 '304': *37 - '404': *797 - '403': *798 + '404': *799 + '403': *800 requestBody: required: true content: @@ -108696,19 +109052,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *83 - - *792 + - *794 responses: '200': description: Response content: application/scim+json: - schema: *796 + schema: *798 examples: - default: *799 + default: *801 '304': *37 - '404': *797 - '403': *798 - '400': *777 + '404': *799 + '403': *800 + '400': *779 '429': description: Response content: @@ -108799,12 +109155,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *83 - - *792 + - *794 responses: '204': description: Response - '404': *797 - '403': *798 + '404': *799 + '403': *800 '304': *37 x-github: githubCloudOnly: true @@ -108937,7 +109293,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &800 + text_matches: &802 title: Search Result Text Matches type: array items: @@ -109100,7 +109456,7 @@ paths: enum: - author-date - committer-date - - &801 + - &803 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 @@ -109171,7 +109527,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *525 + properties: *527 nullable: true comment_count: type: integer @@ -109191,7 +109547,7 @@ paths: url: type: string format: uri - verification: *647 + verification: *649 required: - author - committer @@ -109210,7 +109566,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *525 + properties: *527 nullable: true parents: type: array @@ -109228,7 +109584,7 @@ paths: type: number node_id: type: string - text_matches: *800 + text_matches: *802 required: - sha - node_id @@ -109421,7 +109777,7 @@ paths: - interactions - created - updated - - *801 + - *803 - *17 - *19 - name: advanced_search @@ -109518,11 +109874,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: type: string state_reason: @@ -109539,8 +109895,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *403 - required: *404 + properties: *405 + required: *406 nullable: true comments: type: integer @@ -109554,7 +109910,7 @@ paths: type: string format: date-time nullable: true - text_matches: *800 + text_matches: *802 pull_request: type: object properties: @@ -109598,7 +109954,7 @@ paths: timeline_url: type: string format: uri - type: *368 + type: *370 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -109779,7 +110135,7 @@ paths: enum: - created - updated - - *801 + - *803 - *17 - *19 responses: @@ -109823,7 +110179,7 @@ paths: nullable: true score: type: number - text_matches: *800 + text_matches: *802 required: - id - node_id @@ -109909,7 +110265,7 @@ paths: - forks - help-wanted-issues - updated - - *801 + - *803 - *17 - *19 responses: @@ -110148,7 +110504,7 @@ paths: - admin - pull - push - text_matches: *800 + text_matches: *802 temp_clone_token: type: string allow_merge_commit: @@ -110449,7 +110805,7 @@ paths: type: string format: uri nullable: true - text_matches: *800 + text_matches: *802 related: type: array nullable: true @@ -110642,7 +110998,7 @@ paths: - followers - repositories - joined - - *801 + - *803 - *17 - *19 responses: @@ -110746,7 +111102,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *800 + text_matches: *802 blog: type: string nullable: true @@ -110825,7 +111181,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &805 + - &807 name: team_id description: The unique identifier of the team. in: path @@ -110837,9 +111193,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *452 + default: *454 '404': *6 x-github: githubCloudOnly: false @@ -110866,7 +111222,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *805 + - *807 requestBody: required: true content: @@ -110929,16 +111285,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *451 + schema: *453 examples: - default: *452 + default: *454 '201': description: Response content: application/json: - schema: *451 + schema: *453 examples: - default: *452 + default: *454 '404': *6 '422': *15 '403': *29 @@ -110966,7 +111322,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *805 + - *807 responses: '204': description: Response @@ -110997,7 +111353,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *805 + - *807 - *106 - *17 - *19 @@ -111008,9 +111364,9 @@ paths: application/json: schema: type: array - items: *453 + items: *455 examples: - default: *806 + default: *808 headers: Link: *43 x-github: @@ -111039,7 +111395,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *805 + - *807 requestBody: required: true content: @@ -111073,9 +111429,9 @@ paths: description: Response content: application/json: - schema: *453 + schema: *455 examples: - default: *454 + default: *456 x-github: triggersNotification: true githubCloudOnly: false @@ -111102,16 +111458,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *805 - - *455 + - *807 + - *457 responses: '200': description: Response content: application/json: - schema: *453 + schema: *455 examples: - default: *454 + default: *456 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111136,8 +111492,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *805 - - *455 + - *807 + - *457 requestBody: required: false content: @@ -111160,9 +111516,9 @@ paths: description: Response content: application/json: - schema: *453 + schema: *455 examples: - default: *807 + default: *809 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111187,8 +111543,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *805 - - *455 + - *807 + - *457 responses: '204': description: Response @@ -111217,8 +111573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *805 - - *455 + - *807 + - *457 - *106 - *17 - *19 @@ -111229,9 +111585,9 @@ paths: application/json: schema: type: array - items: *456 + items: *458 examples: - default: *808 + default: *810 headers: Link: *43 x-github: @@ -111260,8 +111616,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *805 - - *455 + - *807 + - *457 requestBody: required: true content: @@ -111283,9 +111639,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *458 examples: - default: *457 + default: *459 x-github: triggersNotification: true githubCloudOnly: false @@ -111312,17 +111668,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *805 - - *455 - - *458 + - *807 + - *457 + - *460 responses: '200': description: Response content: application/json: - schema: *456 + schema: *458 examples: - default: *457 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111347,9 +111703,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *805 - - *455 - - *458 + - *807 + - *457 + - *460 requestBody: required: true content: @@ -111371,9 +111727,9 @@ paths: description: Response content: application/json: - schema: *456 + schema: *458 examples: - default: *809 + default: *811 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111398,9 +111754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *805 - - *455 - - *458 + - *807 + - *457 + - *460 responses: '204': description: Response @@ -111429,9 +111785,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: - - *805 - - *455 - - *458 + - *807 + - *457 + - *460 - 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. @@ -111457,9 +111813,9 @@ paths: application/json: schema: type: array - items: *459 + items: *461 examples: - default: *461 + default: *463 headers: Link: *43 x-github: @@ -111488,9 +111844,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: - - *805 - - *455 - - *458 + - *807 + - *457 + - *460 requestBody: required: true content: @@ -111522,9 +111878,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111550,8 +111906,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: - - *805 - - *455 + - *807 + - *457 - 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. @@ -111577,9 +111933,9 @@ paths: application/json: schema: type: array - items: *459 + items: *461 examples: - default: *461 + default: *463 headers: Link: *43 x-github: @@ -111608,8 +111964,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: - - *805 - - *455 + - *807 + - *457 requestBody: required: true content: @@ -111641,9 +111997,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *461 examples: - default: *460 + default: *462 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111667,7 +112023,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *805 + - *807 - *17 - *19 responses: @@ -111677,9 +112033,9 @@ paths: application/json: schema: type: array - items: *365 + items: *367 examples: - default: *366 + default: *368 headers: Link: *43 x-github: @@ -111705,7 +112061,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *805 + - *807 - name: role description: Filters members returned by their role in the team. in: query @@ -111756,7 +112112,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *805 + - *807 - *138 responses: '204': @@ -111793,7 +112149,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *805 + - *807 - *138 responses: '204': @@ -111833,7 +112189,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *805 + - *807 - *138 responses: '204': @@ -111870,16 +112226,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: - - *805 + - *807 - *138 responses: '200': description: Response content: application/json: - schema: *467 + schema: *469 examples: - response-if-user-is-a-team-maintainer: *810 + response-if-user-is-a-team-maintainer: *812 '404': *6 x-github: githubCloudOnly: false @@ -111912,7 +112268,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: - - *805 + - *807 - *138 requestBody: required: false @@ -111938,9 +112294,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *469 examples: - response-if-users-membership-with-team-is-now-pending: *811 + response-if-users-membership-with-team-is-now-pending: *813 '403': description: Forbidden if team synchronization is set up '422': @@ -111974,7 +112330,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: - - *805 + - *807 - *138 responses: '204': @@ -112003,7 +112359,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *805 + - *807 - *17 - *19 responses: @@ -112013,9 +112369,9 @@ paths: application/json: schema: type: array - items: *468 + items: *470 examples: - default: *812 + default: *814 headers: Link: *43 '404': *6 @@ -112041,16 +112397,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: - - *805 - - *469 + - *807 + - *471 responses: '200': description: Response content: application/json: - schema: *468 + schema: *470 examples: - default: *813 + default: *815 '404': description: Not Found if project is not managed by this team x-github: @@ -112074,8 +112430,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: - - *805 - - *469 + - *807 + - *471 requestBody: required: false content: @@ -112142,8 +112498,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: - - *805 - - *469 + - *807 + - *471 responses: '204': description: Response @@ -112170,7 +112526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *805 + - *807 - *17 - *19 responses: @@ -112182,7 +112538,7 @@ paths: type: array items: *284 examples: - default: *390 + default: *392 headers: Link: *43 '404': *6 @@ -112212,15 +112568,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: - - *805 - - *470 - - *471 + - *807 + - *472 + - *473 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *814 + schema: *816 examples: alternative-response-with-extra-repository-information: value: @@ -112371,9 +112727,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: - - *805 - - *470 - - *471 + - *807 + - *472 + - *473 requestBody: required: false content: @@ -112423,9 +112779,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: - - *805 - - *470 - - *471 + - *807 + - *472 + - *473 responses: '204': description: Response @@ -112454,15 +112810,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: - - *805 + - *807 responses: '200': description: Response content: application/json: - schema: *472 + schema: *474 examples: - default: *473 + default: *475 '403': *29 '404': *6 x-github: @@ -112489,7 +112845,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: - - *805 + - *807 requestBody: required: true content: @@ -112546,7 +112902,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *474 examples: default: value: @@ -112577,7 +112933,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *805 + - *807 - *17 - *19 responses: @@ -112587,9 +112943,9 @@ paths: application/json: schema: type: array - items: *311 + items: *313 examples: - response-if-child-teams-exist: *815 + response-if-child-teams-exist: *817 headers: Link: *43 '404': *6 @@ -112622,7 +112978,7 @@ paths: application/json: schema: oneOf: - - &817 + - &819 title: Private User description: Private User type: object @@ -112825,7 +113181,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *816 + - *818 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -112978,7 +113334,7 @@ paths: description: Response content: application/json: - schema: *817 + schema: *819 examples: default: value: @@ -113181,9 +113537,9 @@ paths: type: integer codespaces: type: array - items: *373 + items: *375 examples: - default: *374 + default: *376 '304': *37 '500': *40 '401': *25 @@ -113322,17 +113678,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *373 + schema: *375 examples: - default: *576 + default: *578 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *373 + schema: *375 examples: - default: *576 + default: *578 '401': *25 '403': *29 '404': *6 @@ -113376,7 +113732,7 @@ paths: type: integer secrets: type: array - items: &818 + items: &820 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -113416,7 +113772,7 @@ paths: - visibility - selected_repositories_url examples: - default: *579 + default: *581 headers: Link: *43 x-github: @@ -113492,7 +113848,7 @@ paths: description: Response content: application/json: - schema: *818 + schema: *820 examples: default: value: @@ -113638,7 +113994,7 @@ paths: type: array items: *284 examples: - default: *819 + default: *821 '401': *25 '403': *29 '404': *6 @@ -113782,15 +114138,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: - - *375 + - *377 responses: '200': description: Response content: application/json: - schema: *373 + schema: *375 examples: - default: *576 + default: *578 '304': *37 '500': *40 '401': *25 @@ -113816,7 +114172,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: - - *375 + - *377 requestBody: required: false content: @@ -113846,9 +114202,9 @@ paths: description: Response content: application/json: - schema: *373 + schema: *375 examples: - default: *576 + default: *578 '401': *25 '403': *29 '404': *6 @@ -113870,7 +114226,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: - - *375 + - *377 responses: '202': *39 '304': *37 @@ -113899,13 +114255,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: - - *375 + - *377 responses: '202': description: Response content: application/json: - schema: &820 + schema: &822 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -113946,7 +114302,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &821 + default: &823 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -113978,7 +114334,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *375 + - *377 - name: export_id in: path required: true @@ -113991,9 +114347,9 @@ paths: description: Response content: application/json: - schema: *820 + schema: *822 examples: - default: *821 + default: *823 '404': *6 x-github: githubCloudOnly: false @@ -114014,7 +114370,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *375 + - *377 responses: '200': description: Response @@ -114030,9 +114386,9 @@ paths: type: integer machines: type: array - items: *822 + items: *824 examples: - default: *823 + default: *825 '304': *37 '500': *40 '401': *25 @@ -114061,7 +114417,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: - - *375 + - *377 requestBody: required: true content: @@ -114111,13 +114467,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *481 + repository: *483 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *577 - required: *578 + properties: *579 + required: *580 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -114891,15 +115247,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: - - *375 + - *377 responses: '200': description: Response content: application/json: - schema: *373 + schema: *375 examples: - default: *576 + default: *578 '304': *37 '500': *40 '400': *14 @@ -114931,15 +115287,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: - - *375 + - *377 responses: '200': description: Response content: application/json: - schema: *373 + schema: *375 examples: - default: *576 + default: *578 '500': *40 '401': *25 '403': *29 @@ -114969,9 +115325,9 @@ paths: application/json: schema: type: array - items: *384 + items: *386 examples: - default: &834 + default: &836 value: - id: 197 name: hello_docker @@ -115072,7 +115428,7 @@ paths: application/json: schema: type: array - items: &824 + items: &826 title: Email description: Email type: object @@ -115137,9 +115493,9 @@ paths: application/json: schema: type: array - items: *824 + items: *826 examples: - default: &836 + default: &838 value: - email: octocat@github.com verified: true @@ -115214,7 +115570,7 @@ paths: application/json: schema: type: array - items: *824 + items: *826 examples: default: value: @@ -115470,7 +115826,7 @@ paths: application/json: schema: type: array - items: &825 + items: &827 title: GPG Key description: A unique encryption key type: object @@ -115601,7 +115957,7 @@ paths: - subkeys - revoked examples: - default: &850 + default: &852 value: - id: 3 name: Octocat's GPG Key @@ -115686,9 +116042,9 @@ paths: description: Response content: application/json: - schema: *825 + schema: *827 examples: - default: &826 + default: &828 value: id: 3 name: Octocat's GPG Key @@ -115745,7 +116101,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: - - &827 + - &829 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -115757,9 +116113,9 @@ paths: description: Response content: application/json: - schema: *825 + schema: *827 examples: - default: *826 + default: *828 '404': *6 '304': *37 '403': *29 @@ -115782,7 +116138,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: - - *827 + - *829 responses: '204': description: Response @@ -116058,12 +116414,12 @@ paths: application/json: schema: anyOf: - - *363 + - *365 - type: object properties: {} additionalProperties: false examples: - default: *364 + default: *366 '204': description: Response when there are no restrictions x-github: @@ -116087,7 +116443,7 @@ paths: required: true content: application/json: - schema: *658 + schema: *660 examples: default: value: @@ -116098,7 +116454,7 @@ paths: description: Response content: application/json: - schema: *363 + schema: *365 examples: default: value: @@ -116179,7 +116535,7 @@ paths: - closed - all default: open - - *371 + - *373 - name: sort description: What to sort results by. in: query @@ -116204,7 +116560,7 @@ paths: type: array items: *227 examples: - default: *372 + default: *374 headers: Link: *43 '404': *6 @@ -116237,7 +116593,7 @@ paths: application/json: schema: type: array - items: &828 + items: &830 title: Key description: Key type: object @@ -116338,9 +116694,9 @@ paths: description: Response content: application/json: - schema: *828 + schema: *830 examples: - default: &829 + default: &831 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -116373,15 +116729,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: - - *688 + - *690 responses: '200': description: Response content: application/json: - schema: *828 + schema: *830 examples: - default: *829 + default: *831 '404': *6 '304': *37 '403': *29 @@ -116404,7 +116760,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: - - *688 + - *690 responses: '204': description: Response @@ -116437,7 +116793,7 @@ paths: application/json: schema: type: array - items: &830 + items: &832 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -116505,7 +116861,7 @@ paths: - account - plan examples: - default: &831 + default: &833 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -116567,9 +116923,9 @@ paths: application/json: schema: type: array - items: *830 + items: *832 examples: - default: *831 + default: *833 headers: Link: *43 '304': *37 @@ -116609,7 +116965,7 @@ paths: application/json: schema: type: array - items: *376 + items: *378 examples: default: value: @@ -116717,7 +117073,7 @@ paths: description: Response content: application/json: - schema: *376 + schema: *378 examples: default: value: @@ -116800,7 +117156,7 @@ paths: description: Response content: application/json: - schema: *376 + schema: *378 examples: default: value: @@ -116868,7 +117224,7 @@ paths: application/json: schema: type: array - items: *378 + items: *380 examples: default: value: @@ -117121,7 +117477,7 @@ paths: description: Response content: application/json: - schema: *378 + schema: *380 examples: default: value: @@ -117301,7 +117657,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *379 + - *381 - name: exclude in: query required: false @@ -117314,7 +117670,7 @@ paths: description: Response content: application/json: - schema: *378 + schema: *380 examples: default: value: @@ -117508,7 +117864,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *379 + - *381 responses: '302': description: Response @@ -117534,7 +117890,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *379 + - *381 responses: '204': description: Response @@ -117563,8 +117919,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *379 - - *832 + - *381 + - *834 responses: '204': description: Response @@ -117588,7 +117944,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *379 + - *381 - *17 - *19 responses: @@ -117600,7 +117956,7 @@ paths: type: array items: *284 examples: - default: *390 + default: *392 headers: Link: *43 '404': *6 @@ -117679,7 +118035,7 @@ paths: - docker - nuget - container - - *833 + - *835 - *19 - *17 responses: @@ -117689,10 +118045,10 @@ paths: application/json: schema: type: array - items: *384 + items: *386 examples: - default: *834 - '400': *835 + default: *836 + '400': *837 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117712,16 +118068,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: - - *386 - - *387 + - *388 + - *389 responses: '200': description: Response content: application/json: - schema: *384 + schema: *386 examples: - default: &851 + default: &853 value: id: 40201 name: octo-name @@ -117834,8 +118190,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: - - *386 - - *387 + - *388 + - *389 responses: '204': description: Response @@ -117865,8 +118221,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: - - *386 - - *387 + - *388 + - *389 - name: token description: package token schema: @@ -117898,8 +118254,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: - - *386 - - *387 + - *388 + - *389 - *19 - *17 - name: state @@ -117919,7 +118275,7 @@ paths: application/json: schema: type: array - items: *388 + items: *390 examples: default: value: @@ -117968,15 +118324,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: - - *386 - - *387 + - *388 - *389 + - *391 responses: '200': description: Response content: application/json: - schema: *388 + schema: *390 examples: default: value: @@ -118012,9 +118368,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: - - *386 - - *387 + - *388 - *389 + - *391 responses: '204': description: Response @@ -118044,9 +118400,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: - - *386 - - *387 + - *388 - *389 + - *391 responses: '204': description: Response @@ -118083,9 +118439,9 @@ paths: application/json: schema: type: array - items: *824 + items: *826 examples: - default: *836 + default: *838 headers: Link: *43 '304': *37 @@ -118198,7 +118554,7 @@ paths: type: array items: *74 examples: - default: &843 + default: &845 summary: Default response value: - id: 1296269 @@ -118502,9 +118858,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *483 examples: - default: *483 + default: *485 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -118542,9 +118898,9 @@ paths: application/json: schema: type: array - items: *660 + items: *662 examples: - default: *837 + default: *839 headers: Link: *43 '304': *37 @@ -118567,7 +118923,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *367 + - *369 responses: '204': description: Response @@ -118590,7 +118946,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *367 + - *369 responses: '204': description: Response @@ -118623,7 +118979,7 @@ paths: application/json: schema: type: array - items: &838 + items: &840 title: Social account description: Social media account type: object @@ -118638,7 +118994,7 @@ paths: - provider - url examples: - default: &839 + default: &841 value: - provider: twitter url: https://twitter.com/github @@ -118700,9 +119056,9 @@ paths: application/json: schema: type: array - items: *838 + items: *840 examples: - default: *839 + default: *841 '422': *15 '304': *37 '404': *6 @@ -118789,7 +119145,7 @@ paths: application/json: schema: type: array - items: &840 + items: &842 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -118809,16 +119165,14 @@ paths: - title - created_at examples: - default: &855 + default: &857 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: @@ -118875,13 +119229,12 @@ paths: description: Response content: application/json: - schema: *840 + schema: *842 examples: - default: &841 + default: &843 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 @@ -118908,7 +119261,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: - - &842 + - &844 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -118920,9 +119273,9 @@ paths: description: Response content: application/json: - schema: *840 + schema: *842 examples: - default: *841 + default: *843 '404': *6 '304': *37 '403': *29 @@ -118945,7 +119298,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: - - *842 + - *844 responses: '204': description: Response @@ -118974,7 +119327,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: - - &856 + - &858 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 @@ -118999,11 +119352,11 @@ paths: type: array items: *74 examples: - default-response: *843 + default-response: *845 application/vnd.github.v3.star+json: schema: type: array - items: &857 + items: &859 title: Starred Repository description: Starred Repository type: object @@ -119159,8 +119512,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: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response if this repository is starred by you @@ -119188,8 +119541,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: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -119213,8 +119566,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: - - *470 - - *471 + - *472 + - *473 responses: '204': description: Response @@ -119249,7 +119602,7 @@ paths: type: array items: *284 examples: - default: *390 + default: *392 headers: Link: *43 '304': *37 @@ -119286,7 +119639,7 @@ paths: application/json: schema: type: array - items: *451 + items: *453 examples: default: value: @@ -119372,10 +119725,10 @@ paths: application/json: schema: oneOf: - - *817 - - *816 + - *819 + - *818 examples: - default-response: &845 + default-response: &847 summary: Default response value: login: octocat @@ -119410,7 +119763,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &846 + response-with-git-hub-plan-information: &848 summary: Response with GitHub plan information value: login: octocat @@ -119473,7 +119826,7 @@ paths: required: true schema: type: string - - *402 + - *404 requestBody: required: true description: Details of the draft item to create in the project. @@ -119507,9 +119860,9 @@ paths: description: Response content: application/json: - schema: *408 + schema: *410 examples: - draft_issue: *409 + draft_issue: *411 '304': *37 '403': *29 '401': *25 @@ -119532,7 +119885,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *844 + - *846 - *17 responses: '200': @@ -119581,11 +119934,11 @@ paths: application/json: schema: oneOf: - - *817 - - *816 + - *819 + - *818 examples: - default-response: *845 - response-with-git-hub-plan-information: *846 + default-response: *847 + response-with-git-hub-plan-information: *848 '404': *6 x-github: githubCloudOnly: false @@ -119635,8 +119988,8 @@ paths: required: - subject_digests examples: - default: *847 - withPredicateType: *848 + default: *849 + withPredicateType: *850 responses: '200': description: Response @@ -119689,7 +120042,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *849 + default: *851 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -119894,7 +120247,7 @@ paths: initiator: type: string examples: - default: *521 + default: *523 '201': description: Response content: @@ -119933,9 +120286,9 @@ paths: application/json: schema: type: array - items: *384 + items: *386 examples: - default: *834 + default: *836 '403': *29 '401': *25 x-github: @@ -120319,9 +120672,9 @@ paths: application/json: schema: type: array - items: *825 + items: *827 examples: - default: *850 + default: *852 headers: Link: *43 x-github: @@ -120425,7 +120778,7 @@ paths: application/json: schema: *22 examples: - default: *657 + default: *659 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120549,7 +120902,7 @@ paths: - docker - nuget - container - - *833 + - *835 - *138 - *19 - *17 @@ -120560,12 +120913,12 @@ paths: application/json: schema: type: array - items: *384 + items: *386 examples: - default: *834 + default: *836 '403': *29 '401': *25 - '400': *835 + '400': *837 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120585,17 +120938,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *386 - - *387 + - *388 + - *389 - *138 responses: '200': description: Response content: application/json: - schema: *384 + schema: *386 examples: - default: *851 + default: *853 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120616,8 +120969,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *386 - - *387 + - *388 + - *389 - *138 responses: '204': @@ -120650,8 +121003,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *386 - - *387 + - *388 + - *389 - *138 - name: token description: package token @@ -120684,8 +121037,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: - - *386 - - *387 + - *388 + - *389 - *138 responses: '200': @@ -120694,7 +121047,7 @@ paths: application/json: schema: type: array - items: *388 + items: *390 examples: default: value: @@ -120752,16 +121105,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: - - *386 - - *387 + - *388 - *389 + - *391 - *138 responses: '200': description: Response content: application/json: - schema: *388 + schema: *390 examples: default: value: @@ -120796,10 +121149,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *386 - - *387 - - *138 + - *388 - *389 + - *138 + - *391 responses: '204': description: Response @@ -120831,10 +121184,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *386 - - *387 - - *138 + - *388 - *389 + - *138 + - *391 responses: '204': description: Response @@ -120875,9 +121228,9 @@ paths: application/json: schema: type: array - items: *400 + items: *402 examples: - default: *401 + default: *403 headers: Link: *43 '304': *37 @@ -120899,16 +121252,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *402 + - *404 - *138 responses: '200': description: Response content: application/json: - schema: *400 + schema: *402 examples: - default: *401 + default: *403 headers: Link: *43 '304': *37 @@ -120930,7 +121283,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *402 + - *404 - *138 - *17 - *104 @@ -120942,9 +121295,9 @@ paths: application/json: schema: type: array - items: *406 + items: *408 examples: - default: *852 + default: *854 headers: Link: *43 '304': *37 @@ -120966,17 +121319,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *402 - - *853 + - *404 + - *855 - *138 responses: '200': description: Response content: application/json: - schema: *406 + schema: *408 examples: - default: *854 + default: *856 headers: Link: *43 '304': *37 @@ -120999,7 +121352,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: - - *402 + - *404 - *138 - *104 - *105 @@ -121032,9 +121385,9 @@ paths: application/json: schema: type: array - items: *410 + items: *412 examples: - default: *411 + default: *413 headers: Link: *43 '304': *37 @@ -121056,7 +121409,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - *138 - - *402 + - *404 requestBody: required: true description: Details of the item to add to the project. @@ -121093,10 +121446,10 @@ paths: description: Response content: application/json: - schema: *408 + schema: *410 examples: - issue: *409 - pull_request: *409 + issue: *411 + pull_request: *411 '304': *37 '403': *29 '401': *25 @@ -121116,9 +121469,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: - - *402 + - *404 - *138 - - *412 + - *414 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -121138,9 +121491,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *412 examples: - default: *411 + default: *413 headers: Link: *43 '304': *37 @@ -121161,9 +121514,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *402 + - *404 - *138 - - *412 + - *414 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -121233,13 +121586,13 @@ paths: description: Response content: application/json: - schema: *410 + schema: *412 examples: - text_field: *411 - number_field: *411 - date_field: *411 - single_select_field: *411 - iteration_field: *411 + text_field: *413 + number_field: *413 + date_field: *413 + single_select_field: *413 + iteration_field: *413 '401': *25 '403': *29 '404': *6 @@ -121259,9 +121612,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *402 + - *404 - *138 - - *412 + - *414 responses: '204': description: Response @@ -121481,7 +121834,7 @@ paths: type: array items: *284 examples: - default: *390 + default: *392 headers: Link: *43 x-github: @@ -121511,9 +121864,9 @@ paths: description: Response content: application/json: - schema: *438 + schema: *440 examples: - default: *439 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121541,9 +121894,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *445 examples: - default: *444 + default: *446 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121704,9 +122057,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *447 examples: - default: *446 + default: *448 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121963,9 +122316,9 @@ paths: application/json: schema: type: array - items: *838 + items: *840 examples: - default: *839 + default: *841 headers: Link: *43 x-github: @@ -121995,9 +122348,9 @@ paths: application/json: schema: type: array - items: *840 + items: *842 examples: - default: *855 + default: *857 headers: Link: *43 x-github: @@ -122022,7 +122375,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *138 - - *856 + - *858 - *106 - *17 - *19 @@ -122034,11 +122387,11 @@ paths: schema: anyOf: - type: array - items: *857 + items: *859 - type: array items: *74 examples: - default-response: *843 + default-response: *845 headers: Link: *43 x-github: @@ -122069,7 +122422,7 @@ paths: type: array items: *284 examples: - default: *390 + default: *392 headers: Link: *43 x-github: @@ -122197,7 +122550,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &858 + enterprise: &860 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -122255,7 +122608,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &859 + installation: &861 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -122274,7 +122627,7 @@ x-webhooks: required: - id - node_id - organization: &860 + organization: &862 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -122334,13 +122687,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &861 + repository: &863 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &898 + properties: &900 id: description: Unique identifier of the repository example: 42 @@ -123023,7 +123376,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &899 + required: &901 - archive_url - assignees_url - blobs_url @@ -123174,10 +123527,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -123253,11 +123606,11 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - rule: &862 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + rule: &864 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) @@ -123480,11 +123833,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - rule: *862 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + rule: *864 sender: *4 required: - action @@ -123667,11 +124020,11 @@ x-webhooks: - everyone required: - from - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - rule: *862 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + rule: *864 sender: *4 required: - action @@ -123744,7 +124097,7 @@ x-webhooks: required: true content: application/json: - schema: &882 + schema: &884 title: Exemption request cancellation event type: object properties: @@ -123752,11 +124105,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - exemption_request: &863 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + exemption_request: &865 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -123989,7 +124342,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &864 + items: &866 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -124060,6 +124413,261 @@ x-webhooks: externalDocs: url: https://docs.github.com/enterprise-cloud@latest//webhooks/webhook-events-and-payloads#bypass_request_secret_scanning parameters: + - name: User-Agent + in: header + example: GitHub-Hookshot/123abc + schema: + type: string + - name: X-Github-Hook-Id + in: header + example: 12312312 + schema: + type: string + - name: X-Github-Event + in: header + example: issues + schema: + type: string + - name: X-Github-Hook-Installation-Target-Id + in: header + example: 123123 + schema: + type: string + - name: X-Github-Hook-Installation-Target-Type + in: header + example: repository + schema: + type: string + - name: X-GitHub-Delivery + in: header + example: 0b989ba4-242f-11e5-81e1-c7b6966d2516 + schema: + type: string + - name: X-Hub-Signature-256 + in: header + example: sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e + schema: + type: string + requestBody: + required: true + content: + application/json: + schema: &885 + title: Exemption request completed event + type: object + properties: + action: + type: string + enum: + - completed + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + exemption_request: *865 + sender: *4 + required: + - action + - exemption_request + - sender + responses: + '200': + description: Return a 200 status to indicate that the data was received + successfully + x-github: + githubCloudOnly: true + category: webhooks + subcategory: bypass_request_secret_scanning + supported-webhook-types: + - repository + - organization + - app + bypass-request-secret-scanning-created: + post: + summary: |- + This event occurs when there is activity related to a user's request to bypass secret scanning push protection. + + For more information, see "[Enabling delegated bypass for push protection](https://docs.github.com/enterprise-cloud@latest//code-security/secret-scanning/using-advanced-secret-scanning-and-push-protection-features/delegated-bypass-for-push-protection/about-delegated-bypass-for-push-protection#enabling-delegated-bypass-for-push-protection)." + + To subscribe to this event, a GitHub App must have at least read-level access for the "Secret scanning alerts" repository permission. + + Note: Delegated bypass for push protection is currently in public preview and subject to change. + description: A secret scanning push protection bypass request was created. + operationId: exemption-request-secret-scanning/created + externalDocs: + url: https://docs.github.com/enterprise-cloud@latest//webhooks/webhook-events-and-payloads#bypass_request_secret_scanning + parameters: + - name: User-Agent + in: header + example: GitHub-Hookshot/123abc + schema: + type: string + - name: X-Github-Hook-Id + in: header + example: 12312312 + schema: + type: string + - name: X-Github-Event + in: header + example: issues + schema: + type: string + - name: X-Github-Hook-Installation-Target-Id + in: header + example: 123123 + schema: + type: string + - name: X-Github-Hook-Installation-Target-Type + in: header + example: repository + schema: + type: string + - name: X-GitHub-Delivery + in: header + example: 0b989ba4-242f-11e5-81e1-c7b6966d2516 + schema: + type: string + - name: X-Hub-Signature-256 + in: header + example: sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e + schema: + type: string + requestBody: + required: true + content: + application/json: + schema: &882 + title: Exemption request created event + type: object + properties: + action: + type: string + enum: + - created + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + exemption_request: *865 + sender: *4 + required: + - action + - exemption_request + - sender + responses: + '200': + description: Return a 200 status to indicate that the data was received + successfully + x-github: + githubCloudOnly: true + category: webhooks + subcategory: bypass_request_secret_scanning + supported-webhook-types: + - repository + - organization + - app + bypass-request-secret-scanning-response-dismissed: + post: + summary: |- + This event occurs when there is activity related to a user's request to bypass secret scanning push protection. + + For more information, see "[Enabling delegated bypass for push protection](https://docs.github.com/enterprise-cloud@latest//code-security/secret-scanning/using-advanced-secret-scanning-and-push-protection-features/delegated-bypass-for-push-protection/about-delegated-bypass-for-push-protection#enabling-delegated-bypass-for-push-protection)." + + To subscribe to this event, a GitHub App must have at least read-level access for the "Secret scanning alerts" repository permission. + + Note: Delegated bypass for push protection is currently in public preview and subject to change. + description: A secret scanning push protection bypass response was dismissed. + operationId: exemption-request-secret-scanning/response-dismissed + externalDocs: + url: https://docs.github.com/enterprise-cloud@latest//webhooks/webhook-events-and-payloads#bypass_request_secret_scanning + parameters: + - name: User-Agent + in: header + example: GitHub-Hookshot/123abc + schema: + type: string + - name: X-Github-Hook-Id + in: header + example: 12312312 + schema: + type: string + - name: X-Github-Event + in: header + example: issues + schema: + type: string + - name: X-Github-Hook-Installation-Target-Id + in: header + example: 123123 + schema: + type: string + - name: X-Github-Hook-Installation-Target-Type + in: header + example: repository + schema: + type: string + - name: X-GitHub-Delivery + in: header + example: 0b989ba4-242f-11e5-81e1-c7b6966d2516 + schema: + type: string + - name: X-Hub-Signature-256 + in: header + example: sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e + schema: + type: string + requestBody: + required: true + content: + application/json: + schema: &886 + title: Exemption response dismissed event + type: object + properties: + action: + type: string + enum: + - response_dismissed + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + exemption_request: *865 + exemption_response: *866 + sender: *4 + required: + - action + - exemption_request + - exemption_response + - sender + responses: + '200': + description: Return a 200 status to indicate that the data was received + successfully + x-github: + githubCloudOnly: true + category: webhooks + subcategory: bypass_request_secret_scanning + supported-webhook-types: + - repository + - organization + - app + bypass-request-secret-scanning-response-submitted: + post: + summary: |- + This event occurs when there is activity related to a user's request to bypass secret scanning push protection. + + For more information, see "[Enabling delegated bypass for push protection](https://docs.github.com/enterprise-cloud@latest//code-security/secret-scanning/using-advanced-secret-scanning-and-push-protection-features/delegated-bypass-for-push-protection/about-delegated-bypass-for-push-protection#enabling-delegated-bypass-for-push-protection)." + + To subscribe to this event, a GitHub App must have at least read-level access for the "Secret scanning alerts" repository permission. + + Note: Delegated bypass for push protection is currently in public preview and subject to change. + description: A response either approving or rejecting the secret scanning push + protection bypass request was submitted. + operationId: exemption-request-secret-scanning/response-submitted + externalDocs: + url: https://docs.github.com/enterprise-cloud@latest//webhooks/webhook-events-and-payloads#bypass_request_secret_scanning + parameters: - name: User-Agent in: header example: GitHub-Hookshot/123abc @@ -124100,261 +124708,6 @@ x-webhooks: content: application/json: schema: &883 - title: Exemption request completed event - type: object - properties: - action: - type: string - enum: - - completed - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - exemption_request: *863 - sender: *4 - required: - - action - - exemption_request - - sender - responses: - '200': - description: Return a 200 status to indicate that the data was received - successfully - x-github: - githubCloudOnly: true - category: webhooks - subcategory: bypass_request_secret_scanning - supported-webhook-types: - - repository - - organization - - app - bypass-request-secret-scanning-created: - post: - summary: |- - This event occurs when there is activity related to a user's request to bypass secret scanning push protection. - - For more information, see "[Enabling delegated bypass for push protection](https://docs.github.com/enterprise-cloud@latest//code-security/secret-scanning/using-advanced-secret-scanning-and-push-protection-features/delegated-bypass-for-push-protection/about-delegated-bypass-for-push-protection#enabling-delegated-bypass-for-push-protection)." - - To subscribe to this event, a GitHub App must have at least read-level access for the "Secret scanning alerts" repository permission. - - Note: Delegated bypass for push protection is currently in public preview and subject to change. - description: A secret scanning push protection bypass request was created. - operationId: exemption-request-secret-scanning/created - externalDocs: - url: https://docs.github.com/enterprise-cloud@latest//webhooks/webhook-events-and-payloads#bypass_request_secret_scanning - parameters: - - name: User-Agent - in: header - example: GitHub-Hookshot/123abc - schema: - type: string - - name: X-Github-Hook-Id - in: header - example: 12312312 - schema: - type: string - - name: X-Github-Event - in: header - example: issues - schema: - type: string - - name: X-Github-Hook-Installation-Target-Id - in: header - example: 123123 - schema: - type: string - - name: X-Github-Hook-Installation-Target-Type - in: header - example: repository - schema: - type: string - - name: X-GitHub-Delivery - in: header - example: 0b989ba4-242f-11e5-81e1-c7b6966d2516 - schema: - type: string - - name: X-Hub-Signature-256 - in: header - example: sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e - schema: - type: string - requestBody: - required: true - content: - application/json: - schema: &880 - title: Exemption request created event - type: object - properties: - action: - type: string - enum: - - created - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - exemption_request: *863 - sender: *4 - required: - - action - - exemption_request - - sender - responses: - '200': - description: Return a 200 status to indicate that the data was received - successfully - x-github: - githubCloudOnly: true - category: webhooks - subcategory: bypass_request_secret_scanning - supported-webhook-types: - - repository - - organization - - app - bypass-request-secret-scanning-response-dismissed: - post: - summary: |- - This event occurs when there is activity related to a user's request to bypass secret scanning push protection. - - For more information, see "[Enabling delegated bypass for push protection](https://docs.github.com/enterprise-cloud@latest//code-security/secret-scanning/using-advanced-secret-scanning-and-push-protection-features/delegated-bypass-for-push-protection/about-delegated-bypass-for-push-protection#enabling-delegated-bypass-for-push-protection)." - - To subscribe to this event, a GitHub App must have at least read-level access for the "Secret scanning alerts" repository permission. - - Note: Delegated bypass for push protection is currently in public preview and subject to change. - description: A secret scanning push protection bypass response was dismissed. - operationId: exemption-request-secret-scanning/response-dismissed - externalDocs: - url: https://docs.github.com/enterprise-cloud@latest//webhooks/webhook-events-and-payloads#bypass_request_secret_scanning - parameters: - - name: User-Agent - in: header - example: GitHub-Hookshot/123abc - schema: - type: string - - name: X-Github-Hook-Id - in: header - example: 12312312 - schema: - type: string - - name: X-Github-Event - in: header - example: issues - schema: - type: string - - name: X-Github-Hook-Installation-Target-Id - in: header - example: 123123 - schema: - type: string - - name: X-Github-Hook-Installation-Target-Type - in: header - example: repository - schema: - type: string - - name: X-GitHub-Delivery - in: header - example: 0b989ba4-242f-11e5-81e1-c7b6966d2516 - schema: - type: string - - name: X-Hub-Signature-256 - in: header - example: sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e - schema: - type: string - requestBody: - required: true - content: - application/json: - schema: &884 - title: Exemption response dismissed event - type: object - properties: - action: - type: string - enum: - - response_dismissed - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - exemption_request: *863 - exemption_response: *864 - sender: *4 - required: - - action - - exemption_request - - exemption_response - - sender - responses: - '200': - description: Return a 200 status to indicate that the data was received - successfully - x-github: - githubCloudOnly: true - category: webhooks - subcategory: bypass_request_secret_scanning - supported-webhook-types: - - repository - - organization - - app - bypass-request-secret-scanning-response-submitted: - post: - summary: |- - This event occurs when there is activity related to a user's request to bypass secret scanning push protection. - - For more information, see "[Enabling delegated bypass for push protection](https://docs.github.com/enterprise-cloud@latest//code-security/secret-scanning/using-advanced-secret-scanning-and-push-protection-features/delegated-bypass-for-push-protection/about-delegated-bypass-for-push-protection#enabling-delegated-bypass-for-push-protection)." - - To subscribe to this event, a GitHub App must have at least read-level access for the "Secret scanning alerts" repository permission. - - Note: Delegated bypass for push protection is currently in public preview and subject to change. - description: A response either approving or rejecting the secret scanning push - protection bypass request was submitted. - operationId: exemption-request-secret-scanning/response-submitted - externalDocs: - url: https://docs.github.com/enterprise-cloud@latest//webhooks/webhook-events-and-payloads#bypass_request_secret_scanning - parameters: - - name: User-Agent - in: header - example: GitHub-Hookshot/123abc - schema: - type: string - - name: X-Github-Hook-Id - in: header - example: 12312312 - schema: - type: string - - name: X-Github-Event - in: header - example: issues - schema: - type: string - - name: X-Github-Hook-Installation-Target-Id - in: header - example: 123123 - schema: - type: string - - name: X-Github-Hook-Installation-Target-Type - in: header - example: repository - schema: - type: string - - name: X-GitHub-Delivery - in: header - example: 0b989ba4-242f-11e5-81e1-c7b6966d2516 - schema: - type: string - - name: X-Hub-Signature-256 - in: header - example: sha256=6dcb09b5b57875f334f61aebed695e2e4193db5e - schema: - type: string - requestBody: - required: true - content: - application/json: - schema: &881 title: Exemption response submitted event type: object properties: @@ -124362,12 +124715,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - exemption_request: *863 - exemption_response: *864 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + exemption_request: *865 + exemption_response: *866 sender: *4 required: - action @@ -124451,7 +124804,7 @@ x-webhooks: type: string enum: - completed - check_run: &866 + check_run: &868 title: CheckRun description: A check performed on the code of a given code change type: object @@ -124504,7 +124857,7 @@ x-webhooks: type: string pull_requests: type: array - items: *538 + items: *540 repository: *284 status: example: completed @@ -124542,7 +124895,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *865 + deployment: *867 details_url: example: https://example.com type: string @@ -124592,7 +124945,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *538 + items: *540 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -124627,10 +124980,10 @@ x-webhooks: - output - app - pull_requests - installation: *859 - enterprise: *858 - organization: *860 - repository: *861 + installation: *861 + enterprise: *860 + organization: *862 + repository: *863 sender: *4 required: - check_run @@ -125023,11 +125376,11 @@ x-webhooks: type: string enum: - created - check_run: *866 - installation: *859 - enterprise: *858 - organization: *860 - repository: *861 + check_run: *868 + installation: *861 + enterprise: *860 + organization: *862 + repository: *863 sender: *4 required: - check_run @@ -125423,11 +125776,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *866 - installation: *859 - enterprise: *858 - organization: *860 - repository: *861 + check_run: *868 + installation: *861 + enterprise: *860 + organization: *862 + repository: *863 requested_action: description: The action requested by the user. type: object @@ -125832,11 +126185,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *866 - installation: *859 - enterprise: *858 - organization: *860 - repository: *861 + check_run: *868 + installation: *861 + enterprise: *860 + organization: *862 + repository: *863 sender: *4 required: - check_run @@ -126813,10 +127166,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -127501,10 +127854,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -128183,10 +128536,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -128352,7 +128705,7 @@ x-webhooks: required: - login - id - dismissed_comment: *551 + dismissed_comment: *553 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -128497,20 +128850,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &867 + commit_oid: &869 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: *858 - installation: *859 - organization: *860 - ref: &868 + enterprise: *860 + installation: *861 + organization: *862 + ref: &870 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: *861 + repository: *863 sender: *4 required: - action @@ -128675,7 +129028,7 @@ x-webhooks: required: - login - id - dismissed_comment: *551 + dismissed_comment: *553 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -128905,12 +129258,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *867 - enterprise: *858 - installation: *859 - organization: *860 - ref: *868 - repository: *861 + commit_oid: *869 + enterprise: *860 + installation: *861 + organization: *862 + ref: *870 + repository: *863 sender: *4 required: - action @@ -129005,7 +129358,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *551 + dismissed_comment: *553 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -129176,12 +129529,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *867 - enterprise: *858 - installation: *859 - organization: *860 - ref: *868 - repository: *861 + commit_oid: *869 + enterprise: *860 + installation: *861 + organization: *862 + ref: *870 + repository: *863 sender: *4 required: - action @@ -129347,7 +129700,7 @@ x-webhooks: required: - login - id - dismissed_comment: *551 + dismissed_comment: *553 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -129513,12 +129866,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *867 - enterprise: *858 - installation: *859 - organization: *860 - ref: *868 - repository: *861 + commit_oid: *869 + enterprise: *860 + installation: *861 + organization: *862 + ref: *870 + repository: *863 sender: *4 required: - action @@ -129618,7 +129971,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *551 + dismissed_comment: *553 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -129786,16 +130139,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *861 + repository: *863 sender: *4 required: - action @@ -129892,7 +130245,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *551 + dismissed_comment: *553 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130032,12 +130385,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *867 - enterprise: *858 - installation: *859 - organization: *860 - ref: *868 - repository: *861 + commit_oid: *869 + enterprise: *860 + installation: *861 + organization: *862 + ref: *870 + repository: *863 sender: *4 required: - action @@ -130294,10 +130647,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -130377,18 +130730,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *860 - pusher_type: &869 + organization: *862 + pusher_type: &871 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &870 + ref: &872 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -130398,7 +130751,7 @@ x-webhooks: enum: - tag - branch - repository: *861 + repository: *863 sender: *4 required: - ref @@ -130481,9 +130834,9 @@ x-webhooks: enum: - created definition: *152 - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 sender: *4 required: - action @@ -130568,9 +130921,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 sender: *4 required: - action @@ -130648,9 +131001,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *152 - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 sender: *4 required: - action @@ -130728,9 +131081,9 @@ x-webhooks: enum: - updated definition: *152 - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 sender: *4 required: - action @@ -130807,10 +131160,10 @@ x-webhooks: type: string enum: - updated - enterprise: *858 - installation: *859 - repository: *861 - organization: *860 + enterprise: *860 + installation: *861 + repository: *863 + organization: *862 sender: *4 new_property_values: type: array @@ -130895,18 +131248,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *858 - installation: *859 - organization: *860 - pusher_type: *869 - ref: *870 + enterprise: *860 + installation: *861 + organization: *862 + pusher_type: *871 + ref: *872 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *861 + repository: *863 sender: *4 required: - ref @@ -130990,11 +131343,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *607 - installation: *859 - organization: *860 - enterprise: *858 - repository: *861 + alert: *609 + installation: *861 + organization: *862 + enterprise: *860 + repository: *863 sender: *4 required: - action @@ -131078,11 +131431,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *607 - installation: *859 - organization: *860 - enterprise: *858 - repository: *861 + alert: *609 + installation: *861 + organization: *862 + enterprise: *860 + repository: *863 sender: *4 required: - action @@ -131166,11 +131519,11 @@ x-webhooks: type: string enum: - created - alert: *607 - installation: *859 - organization: *860 - enterprise: *858 - repository: *861 + alert: *609 + installation: *861 + organization: *862 + enterprise: *860 + repository: *863 sender: *4 required: - action @@ -131252,11 +131605,11 @@ x-webhooks: type: string enum: - dismissed - alert: *607 - installation: *859 - organization: *860 - enterprise: *858 - repository: *861 + alert: *609 + installation: *861 + organization: *862 + enterprise: *860 + repository: *863 sender: *4 required: - action @@ -131338,11 +131691,11 @@ x-webhooks: type: string enum: - fixed - alert: *607 - installation: *859 - organization: *860 - enterprise: *858 - repository: *861 + alert: *609 + installation: *861 + organization: *862 + enterprise: *860 + repository: *863 sender: *4 required: - action @@ -131425,11 +131778,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *607 - installation: *859 - organization: *860 - enterprise: *858 - repository: *861 + alert: *609 + installation: *861 + organization: *862 + enterprise: *860 + repository: *863 sender: *4 required: - action @@ -131511,11 +131864,11 @@ x-webhooks: type: string enum: - reopened - alert: *607 - installation: *859 - organization: *860 - enterprise: *858 - repository: *861 + alert: *609 + installation: *861 + organization: *862 + enterprise: *860 + repository: *863 sender: *4 required: - action @@ -131592,9 +131945,9 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - key: &871 + enterprise: *860 + installation: *861 + key: &873 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -131630,8 +131983,8 @@ x-webhooks: - verified - created_at - read_only - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -131708,11 +132061,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - key: *871 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + key: *873 + organization: *862 + repository: *863 sender: *4 required: - action @@ -132273,12 +132626,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 - workflow: &875 + workflow: &877 title: Workflow type: object nullable: true @@ -133004,13 +133357,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *613 + deployment: *615 pull_requests: type: array - items: *709 - repository: *861 - organization: *860 - installation: *859 + items: *711 + repository: *863 + organization: *862 + installation: *861 sender: *4 responses: '200': @@ -133081,7 +133434,7 @@ x-webhooks: type: string enum: - approved - approver: &872 + approver: &874 type: object properties: avatar_url: @@ -133124,11 +133477,11 @@ x-webhooks: type: string comment: type: string - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - reviewers: &873 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + reviewers: &875 type: array items: type: object @@ -133207,7 +133560,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &874 + workflow_job_run: &876 type: object properties: conclusion: @@ -133938,18 +134291,18 @@ x-webhooks: type: string enum: - rejected - approver: *872 + approver: *874 comment: type: string - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - reviewers: *873 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + reviewers: *875 sender: *4 since: type: string - workflow_job_run: *874 + workflow_job_run: *876 workflow_job_runs: type: array items: @@ -134653,13 +135006,13 @@ x-webhooks: type: string enum: - requested - enterprise: *858 + enterprise: *860 environment: type: string - installation: *859 - organization: *860 - repository: *861 - requestor: &885 + installation: *861 + organization: *862 + repository: *863 + requestor: &887 title: User type: object nullable: true @@ -136558,12 +136911,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 - workflow: *875 + workflow: *877 workflow_run: title: Deployment Workflow Run type: object @@ -137243,7 +137596,7 @@ x-webhooks: type: string enum: - answered - answer: &878 + answer: &880 type: object properties: author_association: @@ -137400,7 +137753,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &876 + discussion: &878 title: Discussion description: A Discussion in a repository. type: object @@ -137686,7 +138039,7 @@ x-webhooks: - id labels: type: array - items: *671 + items: *673 required: - repository_url - category @@ -137708,10 +138061,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -137838,11 +138191,11 @@ x-webhooks: - from required: - category - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -137925,11 +138278,11 @@ x-webhooks: type: string enum: - closed - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -138011,7 +138364,7 @@ x-webhooks: type: string enum: - created - comment: &877 + comment: &879 type: object properties: author_association: @@ -138168,11 +138521,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -138255,12 +138608,12 @@ x-webhooks: type: string enum: - deleted - comment: *877 - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + comment: *879 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -138355,12 +138708,12 @@ x-webhooks: - from required: - body - comment: *877 - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + comment: *879 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -138444,11 +138797,11 @@ x-webhooks: type: string enum: - created - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -138530,11 +138883,11 @@ x-webhooks: type: string enum: - deleted - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -138634,11 +138987,11 @@ x-webhooks: type: string required: - from - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -138720,10 +139073,10 @@ x-webhooks: type: string enum: - labeled - discussion: *876 - enterprise: *858 - installation: *859 - label: &879 + discussion: *878 + enterprise: *860 + installation: *861 + label: &881 title: Label type: object properties: @@ -138755,8 +139108,8 @@ x-webhooks: - color - default - description - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -138839,11 +139192,11 @@ x-webhooks: type: string enum: - locked - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -138925,11 +139278,11 @@ x-webhooks: type: string enum: - pinned - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -139011,11 +139364,11 @@ x-webhooks: type: string enum: - reopened - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -139100,16 +139453,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *876 - new_repository: *861 + new_discussion: *878 + new_repository: *863 required: - new_discussion - new_repository - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -139192,10 +139545,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *876 - old_answer: *878 - organization: *860 - repository: *861 + discussion: *878 + old_answer: *880 + organization: *862 + repository: *863 sender: *4 required: - action @@ -139277,12 +139630,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *876 - enterprise: *858 - installation: *859 - label: *879 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + label: *881 + organization: *862 + repository: *863 sender: *4 required: - action @@ -139365,11 +139718,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -139451,11 +139804,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *876 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + discussion: *878 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -139524,7 +139877,7 @@ x-webhooks: required: true content: application/json: - schema: *880 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139587,7 +139940,7 @@ x-webhooks: required: true content: application/json: - schema: *881 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139653,7 +140006,7 @@ x-webhooks: required: true content: application/json: - schema: *882 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139719,7 +140072,7 @@ x-webhooks: required: true content: application/json: - schema: *883 + schema: *885 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139785,7 +140138,7 @@ x-webhooks: required: true content: application/json: - schema: *880 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139851,7 +140204,7 @@ x-webhooks: required: true content: application/json: - schema: *884 + schema: *886 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139917,7 +140270,7 @@ x-webhooks: required: true content: application/json: - schema: *881 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -139982,7 +140335,7 @@ x-webhooks: required: true content: application/json: - schema: *882 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140047,7 +140400,7 @@ x-webhooks: required: true content: application/json: - schema: *883 + schema: *885 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140112,7 +140465,7 @@ x-webhooks: required: true content: application/json: - schema: *880 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140177,7 +140530,7 @@ x-webhooks: required: true content: application/json: - schema: *884 + schema: *886 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140243,7 +140596,7 @@ x-webhooks: required: true content: application/json: - schema: *881 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140310,7 +140663,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *858 + enterprise: *860 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -140970,9 +141323,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *859 - organization: *860 - repository: *861 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - forkee @@ -141118,9 +141471,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 pages: description: The pages that were updated. type: array @@ -141157,7 +141510,7 @@ x-webhooks: - action - sha - html_url - repository: *861 + repository: *863 sender: *4 required: - pages @@ -141233,10 +141586,10 @@ x-webhooks: type: string enum: - created - enterprise: *858 + enterprise: *860 installation: *22 - organization: *860 - repositories: &886 + organization: *862 + repositories: &888 description: An array of repository objects that the installation can access. type: array @@ -141262,8 +141615,8 @@ x-webhooks: - name - full_name - private - repository: *861 - requester: *885 + repository: *863 + requester: *887 sender: *4 required: - action @@ -141338,11 +141691,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 + enterprise: *860 installation: *22 - organization: *860 - repositories: *886 - repository: *861 + organization: *862 + repositories: *888 + repository: *863 requester: nullable: true sender: *4 @@ -141418,11 +141771,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *858 + enterprise: *860 installation: *22 - organization: *860 - repositories: *886 - repository: *861 + organization: *862 + repositories: *888 + repository: *863 requester: nullable: true sender: *4 @@ -141498,10 +141851,10 @@ x-webhooks: type: string enum: - added - enterprise: *858 + enterprise: *860 installation: *22 - organization: *860 - repositories_added: &887 + organization: *862 + repositories_added: &889 description: An array of repository objects, which were added to the installation. type: array @@ -141547,15 +141900,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *861 - repository_selection: &888 + repository: *863 + repository_selection: &890 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *885 + requester: *887 sender: *4 required: - action @@ -141634,10 +141987,10 @@ x-webhooks: type: string enum: - removed - enterprise: *858 + enterprise: *860 installation: *22 - organization: *860 - repositories_added: *887 + organization: *862 + repositories_added: *889 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -141664,9 +142017,9 @@ x-webhooks: - name - full_name - private - repository: *861 - repository_selection: *888 - requester: *885 + repository: *863 + repository_selection: *890 + requester: *887 sender: *4 required: - action @@ -141745,11 +142098,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *858 + enterprise: *860 installation: *22 - organization: *860 - repositories: *886 - repository: *861 + organization: *862 + repositories: *888 + repository: *863 requester: nullable: true sender: *4 @@ -141928,10 +142281,10 @@ x-webhooks: type: string required: - from - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 target_type: type: string @@ -142010,11 +142363,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *858 + enterprise: *860 installation: *22 - organization: *860 - repositories: *886 - repository: *861 + organization: *862 + repositories: *888 + repository: *863 requester: nullable: true sender: *4 @@ -142266,8 +142619,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -143061,8 +143414,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143078,7 +143431,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -143411,8 +143764,8 @@ x-webhooks: - state - locked - assignee - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -143492,7 +143845,7 @@ x-webhooks: type: string enum: - deleted - comment: &889 + comment: &891 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -143657,8 +144010,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -144448,8 +144801,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144465,7 +144818,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -144800,8 +145153,8 @@ x-webhooks: - state - locked - assignee - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -144881,7 +145234,7 @@ x-webhooks: type: string enum: - edited - changes: &918 + changes: &920 description: The changes to the comment. type: object properties: @@ -144893,9 +145246,9 @@ x-webhooks: type: string required: - from - comment: *889 - enterprise: *858 - installation: *859 + comment: *891 + enterprise: *860 + installation: *861 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -145688,8 +146041,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145705,7 +146058,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -146038,8 +146391,8 @@ x-webhooks: - state - locked - assignee - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -146129,9 +146482,9 @@ x-webhooks: type: number blocking_issue: *227 blocking_issue_repo: *74 - installation: *859 - organization: *860 - repository: *861 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -146225,9 +146578,9 @@ x-webhooks: type: number blocking_issue: *227 blocking_issue_repo: *74 - installation: *859 - organization: *860 - repository: *861 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -146320,9 +146673,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *227 - installation: *859 - organization: *860 - repository: *861 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -146416,9 +146769,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *227 - installation: *859 - organization: *860 - repository: *861 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -146503,10 +146856,10 @@ x-webhooks: type: string enum: - assigned - assignee: *885 - enterprise: *858 - installation: *859 - issue: &892 + assignee: *887 + enterprise: *860 + installation: *861 + issue: &894 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -147295,11 +147648,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147315,7 +147668,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -147416,8 +147769,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -147497,8 +147850,8 @@ x-webhooks: type: string enum: - closed - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -148292,11 +148645,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148312,7 +148665,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -148548,8 +148901,8 @@ x-webhooks: required: - state - closed_at - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -148628,8 +148981,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149414,11 +149767,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149434,7 +149787,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -149534,8 +149887,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -149614,8 +149967,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -150422,11 +150775,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150442,7 +150795,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -150521,7 +150874,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &890 + milestone: &892 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150659,8 +151012,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -150759,8 +151112,8 @@ x-webhooks: type: string required: - from - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -151549,11 +151902,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151566,7 +151919,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *368 + type: *370 title: description: Title of the issue type: string @@ -151670,9 +152023,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *879 - organization: *860 - repository: *861 + label: *881 + organization: *862 + repository: *863 sender: *4 required: - action @@ -151752,8 +152105,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152541,11 +152894,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152558,7 +152911,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *368 + type: *370 title: description: Title of the issue type: string @@ -152662,9 +153015,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *879 - organization: *860 - repository: *861 + label: *881 + organization: *862 + repository: *863 sender: *4 required: - action @@ -152744,8 +153097,8 @@ x-webhooks: type: string enum: - locked - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153557,11 +153910,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153574,7 +153927,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *368 + type: *370 title: description: Title of the issue type: string @@ -153655,8 +154008,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -153735,8 +154088,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154542,11 +154895,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154562,7 +154915,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -154640,9 +154993,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *890 - organization: *860 - repository: *861 + milestone: *892 + organization: *862 + repository: *863 sender: *4 required: - action @@ -155510,11 +155863,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155607,7 +155960,7 @@ x-webhooks: required: - login - id - type: *368 + type: *370 required: - id - number @@ -156076,8 +156429,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156866,11 +157219,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156886,7 +157239,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -156986,8 +157339,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -157067,9 +157420,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *858 - installation: *859 - issue: &891 + enterprise: *860 + installation: *861 + issue: &893 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -157852,11 +158205,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157872,7 +158225,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -157972,8 +158325,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -158052,8 +158405,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -158863,11 +159216,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158961,9 +159314,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *368 - organization: *860 - repository: *861 + type: *370 + organization: *862 + repository: *863 sender: *4 required: - action @@ -159829,11 +160182,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159849,7 +160202,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -160417,11 +160770,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *858 - installation: *859 - issue: *891 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + issue: *893 + organization: *862 + repository: *863 sender: *4 required: - action @@ -160501,12 +160854,12 @@ x-webhooks: type: string enum: - typed - enterprise: *858 - installation: *859 - issue: *892 - type: *368 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + issue: *894 + type: *370 + organization: *862 + repository: *863 sender: *4 required: - action @@ -160587,7 +160940,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &921 + assignee: &923 title: User type: object nullable: true @@ -160657,11 +161010,11 @@ x-webhooks: required: - login - id - enterprise: *858 - installation: *859 - issue: *892 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + issue: *894 + organization: *862 + repository: *863 sender: *4 required: - action @@ -160740,12 +161093,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *858 - installation: *859 - issue: *892 - label: *879 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + issue: *894 + label: *881 + organization: *862 + repository: *863 sender: *4 required: - action @@ -160825,8 +161178,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -161636,11 +161989,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *802 - issue_dependencies_summary: *803 + sub_issues_summary: *804 + issue_dependencies_summary: *805 issue_field_values: type: array - items: *804 + items: *806 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161656,7 +162009,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *368 + type: *370 updated_at: type: string format: date-time @@ -161734,8 +162087,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -161815,11 +162168,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *858 - installation: *859 - issue: *891 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + issue: *893 + organization: *862 + repository: *863 sender: *4 required: - action @@ -161898,12 +162251,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *858 - installation: *859 - issue: *892 - type: *368 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + issue: *894 + type: *370 + organization: *862 + repository: *863 sender: *4 required: - action @@ -161983,11 +162336,11 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - label: *879 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + label: *881 + organization: *862 + repository: *863 sender: *4 required: - action @@ -162065,11 +162418,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - label: *879 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + label: *881 + organization: *862 + repository: *863 sender: *4 required: - action @@ -162179,11 +162532,11 @@ x-webhooks: type: string required: - from - enterprise: *858 - installation: *859 - label: *879 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + label: *881 + organization: *862 + repository: *863 sender: *4 required: - action @@ -162265,9 +162618,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *858 - installation: *859 - marketplace_purchase: &893 + enterprise: *860 + installation: *861 + marketplace_purchase: &895 title: Marketplace Purchase type: object required: @@ -162350,8 +162703,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *860 - previous_marketplace_purchase: &894 + organization: *862 + previous_marketplace_purchase: &896 title: Marketplace Purchase type: object properties: @@ -162431,7 +162784,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *861 + repository: *863 sender: *4 required: - action @@ -162511,10 +162864,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *858 - installation: *859 - marketplace_purchase: *893 - organization: *860 + enterprise: *860 + installation: *861 + marketplace_purchase: *895 + organization: *862 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -162597,7 +162950,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *861 + repository: *863 sender: *4 required: - action @@ -162679,10 +163032,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *858 - installation: *859 - marketplace_purchase: *893 - organization: *860 + enterprise: *860 + installation: *861 + marketplace_purchase: *895 + organization: *862 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -162764,7 +163117,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *861 + repository: *863 sender: *4 required: - action @@ -162845,8 +163198,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 marketplace_purchase: title: Marketplace Purchase type: object @@ -162928,9 +163281,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *860 - previous_marketplace_purchase: *894 - repository: *861 + organization: *862 + previous_marketplace_purchase: *896 + repository: *863 sender: *4 required: - action @@ -163010,12 +163363,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *858 - installation: *859 - marketplace_purchase: *893 - organization: *860 - previous_marketplace_purchase: *894 - repository: *861 + enterprise: *860 + installation: *861 + marketplace_purchase: *895 + organization: *862 + previous_marketplace_purchase: *896 + repository: *863 sender: *4 required: - action @@ -163117,11 +163470,11 @@ x-webhooks: type: string required: - to - enterprise: *858 - installation: *859 - member: *885 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + member: *887 + organization: *862 + repository: *863 sender: *4 required: - action @@ -163221,11 +163574,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *858 - installation: *859 - member: *885 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + member: *887 + organization: *862 + repository: *863 sender: *4 required: - action @@ -163304,11 +163657,11 @@ x-webhooks: type: string enum: - removed - enterprise: *858 - installation: *859 - member: *885 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + member: *887 + organization: *862 + repository: *863 sender: *4 required: - action @@ -163386,11 +163739,11 @@ x-webhooks: type: string enum: - added - enterprise: *858 - installation: *859 - member: *885 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + member: *887 + organization: *862 + repository: *863 scope: description: The scope of the membership. Currently, can only be `team`. @@ -163466,7 +163819,7 @@ x-webhooks: required: - login - id - team: &895 + team: &897 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -163689,11 +164042,11 @@ x-webhooks: type: string enum: - removed - enterprise: *858 - installation: *859 - member: *885 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + member: *887 + organization: *862 + repository: *863 scope: description: The scope of the membership. Currently, can only be `team`. @@ -163770,7 +164123,7 @@ x-webhooks: required: - login - id - team: *895 + team: *897 required: - action - scope @@ -163852,8 +164205,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *859 - merge_group: &897 + installation: *861 + merge_group: &899 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -163872,15 +164225,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *896 + head_commit: *898 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -163966,10 +164319,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *859 - merge_group: *897 - organization: *860 - repository: *861 + installation: *861 + merge_group: *899 + organization: *862 + repository: *863 sender: *4 required: - action @@ -164042,7 +164395,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 + enterprise: *860 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -164151,16 +164504,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *859 - organization: *860 + installation: *861 + organization: *862 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *898 - required: *899 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -164241,11 +164594,11 @@ x-webhooks: type: string enum: - closed - enterprise: *858 - installation: *859 - milestone: *890 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + milestone: *892 + organization: *862 + repository: *863 sender: *4 required: - action @@ -164324,9 +164677,9 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - milestone: &900 + enterprise: *860 + installation: *861 + milestone: &902 title: Milestone description: A collection of related issues and pull requests. type: object @@ -164463,8 +164816,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -164543,11 +164896,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - milestone: *890 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + milestone: *892 + organization: *862 + repository: *863 sender: *4 required: - action @@ -164657,11 +165010,11 @@ x-webhooks: type: string required: - from - enterprise: *858 - installation: *859 - milestone: *890 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + milestone: *892 + organization: *862 + repository: *863 sender: *4 required: - action @@ -164741,11 +165094,11 @@ x-webhooks: type: string enum: - opened - enterprise: *858 - installation: *859 - milestone: *900 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + milestone: *902 + organization: *862 + repository: *863 sender: *4 required: - action @@ -164824,11 +165177,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *885 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + blocked_user: *887 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -164907,11 +165260,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *885 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + blocked_user: *887 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -164987,7 +165340,7 @@ x-webhooks: enum: - created definition: *146 - enterprise: *858 + enterprise: *860 sender: *4 required: - action @@ -165067,8 +165420,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 sender: *4 required: - action @@ -165141,8 +165494,8 @@ x-webhooks: enum: - updated definition: *146 - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 sender: *4 required: - action @@ -165214,9 +165567,9 @@ x-webhooks: type: string enum: - updated - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 sender: *4 new_property_values: type: array @@ -165304,9 +165657,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - membership: &901 + enterprise: *860 + installation: *861 + membership: &903 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -165413,8 +165766,8 @@ x-webhooks: - role - organization_url - user - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -165492,11 +165845,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *858 - installation: *859 - membership: *901 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + membership: *903 + organization: *862 + repository: *863 sender: *4 required: - action @@ -165575,8 +165928,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -165692,10 +166045,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 - user: *885 + user: *887 required: - action - invitation @@ -165773,11 +166126,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *858 - installation: *859 - membership: *901 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + membership: *903 + organization: *862 + repository: *863 sender: *4 required: - action @@ -165864,11 +166217,11 @@ x-webhooks: properties: from: type: string - enterprise: *858 - installation: *859 - membership: *901 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + membership: *903 + organization: *862 + repository: *863 sender: *4 required: - action @@ -165944,9 +166297,9 @@ x-webhooks: type: string enum: - published - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 package: description: Information about the package. type: object @@ -166445,7 +166798,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &902 + items: &904 title: Ruby Gems metadata type: object properties: @@ -166540,7 +166893,7 @@ x-webhooks: - owner - package_version - registry - repository: *861 + repository: *863 sender: *4 required: - action @@ -166616,9 +166969,9 @@ x-webhooks: type: string enum: - updated - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 package: description: Information about the package. type: object @@ -166971,7 +167324,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *902 + items: *904 source_url: type: string format: uri @@ -167041,7 +167394,7 @@ x-webhooks: - owner - package_version - registry - repository: *861 + repository: *863 sender: *4 required: - action @@ -167218,12 +167571,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *858 + enterprise: *860 id: type: integer - installation: *859 - organization: *860 - repository: *861 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - id @@ -167300,7 +167653,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &903 + personal_access_token_request: &905 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -167446,10 +167799,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *858 - organization: *860 + enterprise: *860 + organization: *862 sender: *4 - installation: *859 + installation: *861 required: - action - personal_access_token_request @@ -167526,11 +167879,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *903 - enterprise: *858 - organization: *860 + personal_access_token_request: *905 + enterprise: *860 + organization: *862 sender: *4 - installation: *859 + installation: *861 required: - action - personal_access_token_request @@ -167606,11 +167959,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *903 - enterprise: *858 - organization: *860 + personal_access_token_request: *905 + enterprise: *860 + organization: *862 sender: *4 - installation: *859 + installation: *861 required: - action - personal_access_token_request @@ -167685,11 +168038,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *903 - organization: *860 - enterprise: *858 + personal_access_token_request: *905 + organization: *862 + enterprise: *860 sender: *4 - installation: *859 + installation: *861 required: - action - personal_access_token_request @@ -167794,7 +168147,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *904 + last_response: *906 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -167826,8 +168179,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 zen: description: Random string of GitHub zen. @@ -168072,10 +168425,10 @@ x-webhooks: - from required: - note - enterprise: *858 - installation: *859 - organization: *860 - project_card: &905 + enterprise: *860 + installation: *861 + organization: *862 + project_card: &907 title: Project Card type: object properties: @@ -168194,7 +168547,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *861 + repository: *863 sender: *4 required: - action @@ -168275,11 +168628,11 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - organization: *860 - project_card: *905 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + project_card: *907 + repository: *863 sender: *4 required: - action @@ -168359,9 +168712,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 project_card: title: Project Card type: object @@ -168489,8 +168842,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *898 - required: *899 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -168584,11 +168937,11 @@ x-webhooks: - from required: - note - enterprise: *858 - installation: *859 - organization: *860 - project_card: *905 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + project_card: *907 + repository: *863 sender: *4 required: - action @@ -168682,9 +169035,9 @@ x-webhooks: - from required: - column_id - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 project_card: allOf: - title: Project Card @@ -168874,7 +169227,7 @@ x-webhooks: type: string required: - after_id - repository: *861 + repository: *863 sender: *4 required: - action @@ -168954,10 +169307,10 @@ x-webhooks: type: string enum: - closed - enterprise: *858 - installation: *859 - organization: *860 - project: &907 + enterprise: *860 + installation: *861 + organization: *862 + project: &909 title: Project type: object properties: @@ -169081,7 +169434,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *861 + repository: *863 sender: *4 required: - action @@ -169161,10 +169514,10 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - organization: *860 - project_column: &906 + enterprise: *860 + installation: *861 + organization: *862 + project_column: &908 title: Project Column type: object properties: @@ -169203,7 +169556,7 @@ x-webhooks: - name - created_at - updated_at - repository: *861 + repository: *863 sender: *4 required: - action @@ -169282,18 +169635,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - organization: *860 - project_column: *906 + enterprise: *860 + installation: *861 + organization: *862 + project_column: *908 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *898 - required: *899 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -169383,11 +169736,11 @@ x-webhooks: type: string required: - from - enterprise: *858 - installation: *859 - organization: *860 - project_column: *906 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + project_column: *908 + repository: *863 sender: *4 required: - action @@ -169467,11 +169820,11 @@ x-webhooks: type: string enum: - moved - enterprise: *858 - installation: *859 - organization: *860 - project_column: *906 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + project_column: *908 + repository: *863 sender: *4 required: - action @@ -169551,11 +169904,11 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - organization: *860 - project: *907 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + project: *909 + repository: *863 sender: *4 required: - action @@ -169635,18 +169988,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - organization: *860 - project: *907 + enterprise: *860 + installation: *861 + organization: *862 + project: *909 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *898 - required: *899 + properties: *900 + required: *901 nullable: true sender: *4 required: @@ -169748,11 +170101,11 @@ x-webhooks: type: string required: - from - enterprise: *858 - installation: *859 - organization: *860 - project: *907 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + project: *909 + repository: *863 sender: *4 required: - action @@ -169831,11 +170184,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *858 - installation: *859 - organization: *860 - project: *907 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + project: *909 + repository: *863 sender: *4 required: - action @@ -169916,9 +170269,9 @@ x-webhooks: type: string enum: - closed - installation: *859 - organization: *860 - projects_v2: *400 + installation: *861 + organization: *862 + projects_v2: *402 sender: *4 required: - action @@ -169999,9 +170352,9 @@ x-webhooks: type: string enum: - created - installation: *859 - organization: *860 - projects_v2: *400 + installation: *861 + organization: *862 + projects_v2: *402 sender: *4 required: - action @@ -170082,9 +170435,9 @@ x-webhooks: type: string enum: - deleted - installation: *859 - organization: *860 - projects_v2: *400 + installation: *861 + organization: *862 + projects_v2: *402 sender: *4 required: - action @@ -170201,9 +170554,9 @@ x-webhooks: type: string to: type: string - installation: *859 - organization: *860 - projects_v2: *400 + installation: *861 + organization: *862 + projects_v2: *402 sender: *4 required: - action @@ -170286,7 +170639,7 @@ x-webhooks: type: string enum: - archived - changes: &911 + changes: &913 type: object properties: archived_at: @@ -170300,9 +170653,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *859 - organization: *860 - projects_v2_item: &908 + installation: *861 + organization: *862 + projects_v2_item: &910 title: Projects v2 Item description: An item belonging to a project type: object @@ -170320,7 +170673,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *407 + content_type: *409 creator: *4 created_at: type: string @@ -170437,9 +170790,9 @@ x-webhooks: nullable: true to: type: string - installation: *859 - organization: *860 - projects_v2_item: *908 + installation: *861 + organization: *862 + projects_v2_item: *910 sender: *4 required: - action @@ -170521,9 +170874,9 @@ x-webhooks: type: string enum: - created - installation: *859 - organization: *860 - projects_v2_item: *908 + installation: *861 + organization: *862 + projects_v2_item: *910 sender: *4 required: - action @@ -170604,9 +170957,9 @@ x-webhooks: type: string enum: - deleted - installation: *859 - organization: *860 - projects_v2_item: *908 + installation: *861 + organization: *862 + projects_v2_item: *910 sender: *4 required: - action @@ -170712,7 +171065,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &909 + - &911 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -170734,7 +171087,7 @@ x-webhooks: required: - id - name - - &910 + - &912 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -170768,8 +171121,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *909 - - *910 + - *911 + - *912 required: - field_value - type: object @@ -170785,9 +171138,9 @@ x-webhooks: nullable: true required: - body - installation: *859 - organization: *860 - projects_v2_item: *908 + installation: *861 + organization: *862 + projects_v2_item: *910 sender: *4 required: - action @@ -170882,9 +171235,9 @@ x-webhooks: to: type: string nullable: true - installation: *859 - organization: *860 - projects_v2_item: *908 + installation: *861 + organization: *862 + projects_v2_item: *910 sender: *4 required: - action @@ -170967,10 +171320,10 @@ x-webhooks: type: string enum: - restored - changes: *911 - installation: *859 - organization: *860 - projects_v2_item: *908 + changes: *913 + installation: *861 + organization: *862 + projects_v2_item: *910 sender: *4 required: - action @@ -171052,9 +171405,9 @@ x-webhooks: type: string enum: - reopened - installation: *859 - organization: *860 - projects_v2: *400 + installation: *861 + organization: *862 + projects_v2: *402 sender: *4 required: - action @@ -171135,14 +171488,14 @@ x-webhooks: type: string enum: - created - installation: *859 - organization: *860 - projects_v2_status_update: &914 + installation: *861 + organization: *862 + projects_v2_status_update: &916 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *912 - required: *913 + properties: *914 + required: *915 sender: *4 required: - action @@ -171223,9 +171576,9 @@ x-webhooks: type: string enum: - deleted - installation: *859 - organization: *860 - projects_v2_status_update: *914 + installation: *861 + organization: *862 + projects_v2_status_update: *916 sender: *4 required: - action @@ -171361,9 +171714,9 @@ x-webhooks: type: string format: date nullable: true - installation: *859 - organization: *860 - projects_v2_status_update: *914 + installation: *861 + organization: *862 + projects_v2_status_update: *916 sender: *4 required: - action @@ -171434,10 +171787,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - repository @@ -171514,13 +171867,13 @@ x-webhooks: type: string enum: - assigned - assignee: *885 - enterprise: *858 - installation: *859 - number: &915 + assignee: *887 + enterprise: *860 + installation: *861 + number: &917 description: The pull request number. type: integer - organization: *860 + organization: *862 pull_request: title: Pull Request type: object @@ -173803,7 +174156,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 sender: *4 required: - action @@ -173885,11 +174238,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 number: type: integer - organization: *860 + organization: *862 pull_request: title: Pull Request type: object @@ -176167,7 +176520,7 @@ x-webhooks: - draft reason: type: string - repository: *861 + repository: *863 sender: *4 required: - action @@ -176249,11 +176602,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 number: type: integer - organization: *860 + organization: *862 pull_request: title: Pull Request type: object @@ -178531,7 +178884,7 @@ x-webhooks: - draft reason: type: string - repository: *861 + repository: *863 sender: *4 required: - action @@ -178613,13 +178966,13 @@ x-webhooks: type: string enum: - closed - enterprise: *858 - installation: *859 - number: *915 - organization: *860 - pull_request: &916 + enterprise: *860 + installation: *861 + number: *917 + organization: *862 + pull_request: &918 allOf: - - *709 + - *711 - type: object properties: allow_auto_merge: @@ -178681,7 +179034,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *861 + repository: *863 sender: *4 required: - action @@ -178762,12 +179115,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *858 - installation: *859 - number: *915 - organization: *860 - pull_request: *916 - repository: *861 + enterprise: *860 + installation: *861 + number: *917 + organization: *862 + pull_request: *918 + repository: *863 sender: *4 required: - action @@ -178847,11 +179200,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *858 - milestone: *691 - number: *915 - organization: *860 - pull_request: &917 + enterprise: *860 + milestone: *693 + number: *917 + organization: *862 + pull_request: &919 title: Pull Request type: object properties: @@ -181114,7 +181467,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 sender: *4 required: - action @@ -181193,11 +181546,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 number: type: integer - organization: *860 + organization: *862 pull_request: title: Pull Request type: object @@ -183479,7 +183832,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *861 + repository: *863 sender: *4 required: - action @@ -183603,12 +183956,12 @@ x-webhooks: type: string required: - from - enterprise: *858 - installation: *859 - number: *915 - organization: *860 - pull_request: *916 - repository: *861 + enterprise: *860 + installation: *861 + number: *917 + organization: *862 + pull_request: *918 + repository: *863 sender: *4 required: - action @@ -183688,11 +184041,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 number: type: integer - organization: *860 + organization: *862 pull_request: title: Pull Request type: object @@ -185959,7 +186312,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 sender: *4 required: - action @@ -186039,11 +186392,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *858 - installation: *859 - label: *879 - number: *915 - organization: *860 + enterprise: *860 + installation: *861 + label: *881 + number: *917 + organization: *862 pull_request: title: Pull Request type: object @@ -188325,7 +188678,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 sender: *4 required: - action @@ -188406,10 +188759,10 @@ x-webhooks: type: string enum: - locked - enterprise: *858 - installation: *859 - number: *915 - organization: *860 + enterprise: *860 + installation: *861 + number: *917 + organization: *862 pull_request: title: Pull Request type: object @@ -190689,7 +191042,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 sender: *4 required: - action @@ -190769,12 +191122,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *858 - milestone: *691 - number: *915 - organization: *860 - pull_request: *917 - repository: *861 + enterprise: *860 + milestone: *693 + number: *917 + organization: *862 + pull_request: *919 + repository: *863 sender: *4 required: - action @@ -190853,12 +191206,12 @@ x-webhooks: type: string enum: - opened - enterprise: *858 - installation: *859 - number: *915 - organization: *860 - pull_request: *916 - repository: *861 + enterprise: *860 + installation: *861 + number: *917 + organization: *862 + pull_request: *918 + repository: *863 sender: *4 required: - action @@ -190939,12 +191292,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *858 - installation: *859 - number: *915 - organization: *860 - pull_request: *916 - repository: *861 + enterprise: *860 + installation: *861 + number: *917 + organization: *862 + pull_request: *918 + repository: *863 sender: *4 required: - action @@ -191024,12 +191377,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *858 - installation: *859 - number: *915 - organization: *860 - pull_request: *916 - repository: *861 + enterprise: *860 + installation: *861 + number: *917 + organization: *862 + pull_request: *918 + repository: *863 sender: *4 required: - action @@ -191395,9 +191748,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 pull_request: type: object properties: @@ -193567,7 +193920,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *861 + repository: *863 sender: *4 required: - action @@ -193647,7 +194000,7 @@ x-webhooks: type: string enum: - deleted - comment: &919 + comment: &921 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -193932,9 +194285,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 pull_request: type: object properties: @@ -196092,7 +196445,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *861 + repository: *863 sender: *4 required: - action @@ -196172,11 +196525,11 @@ x-webhooks: type: string enum: - edited - changes: *918 - comment: *919 - enterprise: *858 - installation: *859 - organization: *860 + changes: *920 + comment: *921 + enterprise: *860 + installation: *861 + organization: *862 pull_request: type: object properties: @@ -198337,7 +198690,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *861 + repository: *863 sender: *4 required: - action @@ -198418,9 +198771,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 pull_request: title: Simple Pull Request type: object @@ -200593,7 +200946,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *861 + repository: *863 review: description: The review that was affected. type: object @@ -200840,9 +201193,9 @@ x-webhooks: type: string required: - from - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 pull_request: title: Simple Pull Request type: object @@ -202896,8 +203249,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *861 - review: &920 + repository: *863 + review: &922 description: The review that was affected. type: object properties: @@ -203130,12 +203483,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 number: description: The pull request number. type: integer - organization: *860 + organization: *862 pull_request: title: Pull Request type: object @@ -205418,7 +205771,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 requested_reviewer: title: User type: object @@ -205502,12 +205855,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 number: description: The pull request number. type: integer - organization: *860 + organization: *862 pull_request: title: Pull Request type: object @@ -207797,7 +208150,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 requested_team: title: Team description: Groups of organization members that gives permissions @@ -207989,12 +208342,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 number: description: The pull request number. type: integer - organization: *860 + organization: *862 pull_request: title: Pull Request type: object @@ -210279,7 +210632,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 requested_reviewer: title: User type: object @@ -210364,12 +210717,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *858 - installation: *859 + enterprise: *860 + installation: *861 number: description: The pull request number. type: integer - organization: *860 + organization: *862 pull_request: title: Pull Request type: object @@ -212645,7 +212998,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 requested_team: title: Team description: Groups of organization members that gives permissions @@ -212826,9 +213179,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 pull_request: title: Simple Pull Request type: object @@ -215003,8 +215356,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *861 - review: *920 + repository: *863 + review: *922 sender: *4 required: - action @@ -215084,9 +215437,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 pull_request: title: Simple Pull Request type: object @@ -217156,7 +217509,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *861 + repository: *863 sender: *4 thread: type: object @@ -217543,9 +217896,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 pull_request: title: Simple Pull Request type: object @@ -219601,7 +219954,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *861 + repository: *863 sender: *4 thread: type: object @@ -219991,10 +220344,10 @@ x-webhooks: type: string before: type: string - enterprise: *858 - installation: *859 - number: *915 - organization: *860 + enterprise: *860 + installation: *861 + number: *917 + organization: *862 pull_request: title: Pull Request type: object @@ -222265,7 +222618,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 sender: *4 required: - action @@ -222347,11 +222700,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *921 - enterprise: *858 - installation: *859 - number: *915 - organization: *860 + assignee: *923 + enterprise: *860 + installation: *861 + number: *917 + organization: *862 pull_request: title: Pull Request type: object @@ -224634,7 +224987,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 sender: *4 required: - action @@ -224713,11 +225066,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *858 - installation: *859 - label: *879 - number: *915 - organization: *860 + enterprise: *860 + installation: *861 + label: *881 + number: *917 + organization: *862 pull_request: title: Pull Request type: object @@ -226990,7 +227343,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 sender: *4 required: - action @@ -227071,10 +227424,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *858 - installation: *859 - number: *915 - organization: *860 + enterprise: *860 + installation: *861 + number: *917 + organization: *862 pull_request: title: Pull Request type: object @@ -229339,7 +229692,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *861 + repository: *863 sender: *4 required: - action @@ -229539,7 +229892,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *858 + enterprise: *860 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -229631,8 +229984,8 @@ x-webhooks: - url - author - committer - installation: *859 - organization: *860 + installation: *861 + organization: *862 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -230207,9 +230560,9 @@ x-webhooks: type: string enum: - published - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 registry_package: type: object properties: @@ -230655,7 +231008,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *902 + items: *904 summary: type: string tag_name: @@ -230709,7 +231062,7 @@ x-webhooks: - owner - package_version - registry - repository: *861 + repository: *863 sender: *4 required: - action @@ -230787,9 +231140,9 @@ x-webhooks: type: string enum: - updated - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 registry_package: type: object properties: @@ -231097,7 +231450,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *902 + items: *904 summary: type: string tag_name: @@ -231146,7 +231499,7 @@ x-webhooks: - owner - package_version - registry - repository: *861 + repository: *863 sender: *4 required: - action @@ -231223,10 +231576,10 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - organization: *860 - release: &922 + enterprise: *860 + installation: *861 + organization: *862 + release: &924 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -231544,7 +231897,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *861 + repository: *863 sender: *4 required: - action @@ -231621,11 +231974,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - organization: *860 - release: *922 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + release: *924 + repository: *863 sender: *4 required: - action @@ -231742,11 +232095,11 @@ x-webhooks: type: boolean required: - to - enterprise: *858 - installation: *859 - organization: *860 - release: *922 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + release: *924 + repository: *863 sender: *4 required: - action @@ -231824,9 +232177,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -232148,7 +232501,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *861 + repository: *863 sender: *4 required: - action @@ -232224,10 +232577,10 @@ x-webhooks: type: string enum: - published - enterprise: *858 - installation: *859 - organization: *860 - release: &923 + enterprise: *860 + installation: *861 + organization: *862 + release: &925 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -232546,7 +232899,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *861 + repository: *863 sender: *4 required: - action @@ -232622,11 +232975,11 @@ x-webhooks: type: string enum: - released - enterprise: *858 - installation: *859 - organization: *860 - release: *922 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + release: *924 + repository: *863 sender: *4 required: - action @@ -232702,11 +233055,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *858 - installation: *859 - organization: *860 - release: *923 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + release: *925 + repository: *863 sender: *4 required: - action @@ -232782,11 +233135,11 @@ x-webhooks: type: string enum: - published - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - repository_advisory: *762 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + repository_advisory: *764 sender: *4 required: - action @@ -232862,11 +233215,11 @@ x-webhooks: type: string enum: - reported - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - repository_advisory: *762 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + repository_advisory: *764 sender: *4 required: - action @@ -232942,10 +233295,10 @@ x-webhooks: type: string enum: - archived - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -233022,10 +233375,10 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -233103,10 +233456,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -233190,10 +233543,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -233305,10 +233658,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -233380,10 +233733,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 status: type: string @@ -233464,10 +233817,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -233544,10 +233897,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -233641,10 +233994,10 @@ x-webhooks: - name required: - repository - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -233724,10 +234077,10 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 repository_ruleset: *185 sender: *4 required: @@ -233806,10 +234159,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 repository_ruleset: *185 sender: *4 required: @@ -233888,10 +234241,10 @@ x-webhooks: type: string enum: - edited - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 repository_ruleset: *185 changes: type: object @@ -233953,16 +234306,16 @@ x-webhooks: properties: added: type: array - items: *730 + items: *732 deleted: type: array - items: *730 + items: *732 updated: type: array items: type: object properties: - rule: *730 + rule: *732 changes: type: object properties: @@ -234196,10 +234549,10 @@ x-webhooks: - from required: - owner - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -234277,10 +234630,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -234358,7 +234711,7 @@ x-webhooks: type: string enum: - create - alert: &924 + alert: &926 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -234479,10 +234832,10 @@ x-webhooks: type: string enum: - open - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -234688,10 +235041,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -234769,11 +235122,11 @@ x-webhooks: type: string enum: - reopen - alert: *924 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + alert: *926 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -234972,10 +235325,10 @@ x-webhooks: enum: - fixed - open - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -235053,7 +235406,7 @@ x-webhooks: type: string enum: - created - alert: &925 + alert: &927 type: object properties: number: *123 @@ -235171,10 +235524,10 @@ x-webhooks: properties: *20 required: *21 nullable: true - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -235255,11 +235608,11 @@ x-webhooks: type: string enum: - created - alert: *925 - installation: *859 - location: *926 - organization: *860 - repository: *861 + alert: *927 + installation: *861 + location: *928 + organization: *862 + repository: *863 sender: *4 required: - location @@ -235497,11 +235850,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *925 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + alert: *927 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -235579,11 +235932,11 @@ x-webhooks: type: string enum: - reopened - alert: *925 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + alert: *927 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -235661,11 +236014,11 @@ x-webhooks: type: string enum: - resolved - alert: *925 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + alert: *927 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -235743,11 +236096,11 @@ x-webhooks: type: string enum: - validated - alert: *925 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + alert: *927 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -235873,10 +236226,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *861 - enterprise: *858 - installation: *859 - organization: *860 + repository: *863 + enterprise: *860 + installation: *861 + organization: *862 sender: *4 required: - action @@ -235954,11 +236307,11 @@ x-webhooks: type: string enum: - published - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - security_advisory: &927 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + security_advisory: &929 description: The details of the security advisory, including summary, description, and severity. type: object @@ -236141,11 +236494,11 @@ x-webhooks: type: string enum: - updated - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 - security_advisory: *927 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 + security_advisory: *929 sender: *4 required: - action @@ -236218,10 +236571,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -236405,11 +236758,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *416 - enterprise: *858 - installation: *859 - organization: *860 - repository: *481 + security_and_analysis: *418 + enterprise: *860 + installation: *861 + organization: *862 + repository: *483 sender: *4 required: - changes @@ -236487,12 +236840,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 - sponsorship: &928 + sponsorship: &930 type: object properties: created_at: @@ -236793,12 +237146,12 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 - sponsorship: *928 + sponsorship: *930 required: - action - sponsorship @@ -236886,12 +237239,12 @@ x-webhooks: type: string required: - from - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 - sponsorship: *928 + sponsorship: *930 required: - action - changes @@ -236968,17 +237321,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &929 + effective_date: &931 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 - sponsorship: *928 + sponsorship: *930 required: - action - sponsorship @@ -237052,7 +237405,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &930 + changes: &932 type: object properties: tier: @@ -237096,13 +237449,13 @@ x-webhooks: - from required: - tier - effective_date: *929 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + effective_date: *931 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 - sponsorship: *928 + sponsorship: *930 required: - action - changes @@ -237179,13 +237532,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *930 - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + changes: *932 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 - sponsorship: *928 + sponsorship: *930 required: - action - changes @@ -237259,10 +237612,10 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -237345,10 +237698,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -237768,15 +238121,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *858 + enterprise: *860 id: description: The unique identifier of the status. type: integer - installation: *859 + installation: *861 name: type: string - organization: *860 - repository: *861 + organization: *862 + repository: *863 sender: *4 sha: description: The Commit SHA. @@ -237891,9 +238244,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *227 - installation: *859 - organization: *860 - repository: *861 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -237983,9 +238336,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *227 - installation: *859 - organization: *860 - repository: *861 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -238075,9 +238428,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *227 - installation: *859 - organization: *860 - repository: *861 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -238167,9 +238520,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *227 - installation: *859 - organization: *860 - repository: *861 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -238246,12 +238599,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 - team: &931 + team: &933 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -238474,9 +238827,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 repository: title: Repository description: A git repository @@ -238934,7 +239287,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *931 + team: *933 required: - action - team @@ -239010,9 +239363,9 @@ x-webhooks: type: string enum: - created - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 repository: title: Repository description: A git repository @@ -239470,7 +239823,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *931 + team: *933 required: - action - team @@ -239547,9 +239900,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 repository: title: Repository description: A git repository @@ -240007,7 +240360,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *931 + team: *933 required: - action - team @@ -240151,9 +240504,9 @@ x-webhooks: - from required: - permissions - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 repository: title: Repository description: A git repository @@ -240611,7 +240964,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *931 + team: *933 required: - action - changes @@ -240689,9 +241042,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *858 - installation: *859 - organization: *860 + enterprise: *860 + installation: *861 + organization: *862 repository: title: Repository description: A git repository @@ -241149,7 +241502,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *931 + team: *933 required: - action - team @@ -241225,10 +241578,10 @@ x-webhooks: type: string enum: - started - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 required: - action @@ -241301,16 +241654,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *858 + enterprise: *860 inputs: type: object nullable: true additionalProperties: true - installation: *859 - organization: *860 + installation: *861 + organization: *862 ref: type: string - repository: *861 + repository: *863 sender: *4 workflow: type: string @@ -241392,10 +241745,10 @@ x-webhooks: type: string enum: - completed - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 workflow_job: allOf: @@ -241632,7 +241985,7 @@ x-webhooks: type: string required: - conclusion - deployment: *613 + deployment: *615 required: - action - repository @@ -241711,10 +242064,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 workflow_job: allOf: @@ -241974,7 +242327,7 @@ x-webhooks: required: - status - steps - deployment: *613 + deployment: *615 required: - action - repository @@ -242053,10 +242406,10 @@ x-webhooks: type: string enum: - queued - enterprise: *858 - installation: *859 - organization: *860 - repository: *861 + enterprise: *860 + installation: *861 + organization: *862 + repository: *863 sender: *4 workflow_job: type: object @@ -242191,7 +242544,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *613 + deployment: *615 required: - action - repository @@ -242270,10 +242623,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *858 - installation: *859 - organization: *860 - {"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}